
    :root {
      --bg: #ffffff;
      --text: #163026;
      --muted: #4d6b61;
      --brand: #1f9a62;
      --brand-dark: #15744a;
      --line: #dcefe6;
      --blue-soft: rgba(40, 158, 255, 0.22);
      --shell-width: min(1100px, calc(100% - 40px));
    }

    body.layout-fluid {
      --shell-width: min(1360px, calc(100% - 34px));
    }

    body.layout-wide {
      --shell-width: calc(100% - 16px);
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      min-height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family: Manrope, sans-serif;
      overflow-x: hidden;
    }

    body.layout-fluid {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }

    body > .content:first-of-type {
      padding-top: 0 !important;
    }

#mist-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .9;
}

    .bg-orbs {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 2;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(34px);
      opacity: .28;
      animation: orbFloat 18s ease-in-out infinite;
    }

    .orb.o1 { width: 220px; height: 220px; left: -70px; top: 18vh; background: #8ee0b9; }
    .orb.o2 { width: 280px; height: 280px; right: -100px; top: 42vh; background: #95d4ff; animation-delay: 3s; }
    .orb.o3 { width: 180px; height: 180px; left: 40%; bottom: 8vh; background: #a5efd1; animation-delay: 6s; }

    .content {
      position: relative;
      z-index: 6;
      width: var(--shell-width);
      margin: 0 auto;
    }

    body > .content:first-of-type {
      margin-top: 0;
    }

    .topbar {
      margin-top: 0;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.86);
      backdrop-filter: blur(8px);
      gap: 10px;
      position: relative;
      z-index: 6;
    }

    body .topbar {
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      height: 0 !important;
      min-height: 0 !important;
      overflow: hidden !important;
    }

    .info-strip {
      margin-top: 8px;
      border: 1px solid #2f4750;
      border-radius: 10px;
      background: linear-gradient(110deg, #1f2b3a 0%, #243447 48%, #2c4b4f 100%);
      padding: 7px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      font-size: .8rem;
      color: rgba(233, 242, 245, 0.9);
      backdrop-filter: blur(6px);
      position: relative;
      z-index: 6;
    }

    .info-strip b {
      color: #ffffff;
      font-size: .72rem;
      letter-spacing: .2px;
      text-transform: uppercase;
      margin-right: 4px;
    }

    .info-short {
      display: none;
    }

    .info-short-location {
      display: none;
    }

    .info-mobile-actions {
      display: none;
      gap: 8px;
      width: 100%;
    }

    .mini-btn {
      flex: 1;
      border: 1px solid #cfe7dc;
      background: #fff;
      color: #2f6450;
      border-radius: 9px;
      padding: 8px 10px;
      text-decoration: none;
      font-size: .78rem;
      font-weight: 700;
      text-align: center;
    }

    .topbar-note {
      font-size: .9rem;
      color: #2e5d4b;
      font-weight: 600;
    }

    .topbar-right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .view-switch {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #cfe7dc;
      border-radius: 999px;
      padding: 4px;
      background: #fff;
    }

    .view-switch button {
      border: 0;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: .74rem;
      font-weight: 700;
      cursor: pointer;
      background: transparent;
      color: #2f6450;
    }

    .view-switch button.active {
      background: var(--brand);
      color: #fff;
    }

    .lang {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .85rem;
      color: #396a58;
      font-weight: 700;
    }

    .lang a {
      color: inherit;
      text-decoration: none;
    }

    .lang a.active {
      color: #1f4f3f;
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .socials a {
      color: #2a6a8a;
      font-size: .9rem;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease;
    }

    .socials a:hover {
      color: #15744a;
      transform: translateY(-1px);
    }

    header {
      margin-top: 8px;
      border: 1px solid #2f4750;
      border-radius: 14px;
      padding: 12px 18px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
      background: linear-gradient(110deg, #1f2b3a 0%, #243447 48%, #2c4b4f 100%);
      backdrop-filter: blur(8px);
      position: relative;
      z-index: 6;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      position: relative;
      z-index: 1;
      isolation: isolate;
      padding: 8px 12px;
      border-radius: 14px;
    }

    .logo::before {
      content: "";
      position: absolute;
      inset: -2px -4px;
      border-radius: 14px;
      z-index: -1;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 8px 18px rgba(7, 20, 32, 0.16);
      pointer-events: none;
    }

    .logo img {
      height: 72px;
      width: auto;
      display: block;
      filter: contrast(1.08) saturate(1.06);
    }

    .btn {
      border: none;
      border-radius: 10px;
      padding: 10px 14px;
      background: linear-gradient(130deg, var(--brand), var(--brand-dark));
      color: #fff;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
      box-shadow: 0 10px 22px rgba(20, 89, 61, 0.16);
    }

    .btn.pulse {
      animation: pulseRing 2.6s ease-out infinite;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(20, 89, 61, 0.22);
    }

    .btn::after {
      content: "";
      position: absolute;
      top: -120%;
      left: -30%;
      width: 32%;
      height: 300%;
      transform: rotate(20deg);
      background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.45), rgba(255,255,255,0));
      transition: left .65s ease;
    }

    .btn:hover::after { left: 120%; }

    .reveal {
      opacity: 1;
      transform: none;
      transition: opacity .8s cubic-bezier(.2,.75,.2,1), transform .8s cubic-bezier(.2,.75,.2,1);
    }

    body.reveal-enabled .reveal {
      opacity: 0;
      transform: translateY(26px);
    }

    body.reveal-enabled .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    .menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .menu-lang-switch {
      display: none;
    }
    .header-lang-switch {
      display: inline-grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
      border: 1px solid rgba(162, 214, 192, 0.35);
      border-radius: 999px;
      padding: 4px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
    }
    .header-lang {
      text-align: center;
      text-decoration: none;
      font-size: .74rem;
      font-weight: 800;
      color: #d8f2e8;
      border-radius: 999px;
      padding: 7px 10px;
      text-transform: uppercase;
      letter-spacing: .05em;
      min-width: 42px;
    }
    .header-lang:hover {
      color: #ffffff;
      background: rgba(31, 154, 98, 0.22);
    }
    .header-lang.is-active {
      background: linear-gradient(135deg, #34b07a, #1f9a62);
      color: #ffffff;
      box-shadow: 0 6px 14px rgba(20, 89, 61, 0.3);
    }

    .menu a {
      color: rgba(240, 247, 250, 0.96);
      text-decoration: none;
      font-size: .84rem;
      font-weight: 800;
      padding: 9px 13px;
      border-radius: 999px;
      border: 1px solid rgba(150, 204, 184, 0.2);
      background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
      backdrop-filter: blur(4px);
      text-transform: uppercase;
      letter-spacing: .06em;
      transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .menu a:hover {
      color: #eafbf3;
      background: rgba(94, 200, 153, 0.14);
      border-color: rgba(140, 221, 185, 0.46);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(8, 28, 38, 0.2);
    }

    .menu a.is-current {
      color: #ffffff;
      background: linear-gradient(135deg, rgba(34, 166, 108, 0.5), rgba(29, 141, 93, 0.46));
      border-color: rgba(149, 229, 194, 0.56);
      box-shadow: 0 10px 22px rgba(8, 28, 38, 0.24);
    }

    .menu-toggle {
      display: none;
      border: 1px solid #cfe7dc;
      background: #fff;
      color: #2f6450;
      border-radius: 10px;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
    }

    .header-action {
      justify-self: end;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-self: end;
    }

    .hero-wrap {
      width: var(--shell-width);
      margin: 14px auto 0;
      position: relative;
      z-index: 2;
      isolation: isolate;
    }

    .section-divider {
      width: var(--shell-width);
      margin: 8px auto;
      height: 18px;
      position: relative;
      z-index: 6;
      opacity: .7;
      background:
        radial-gradient(circle at 10% 50%, rgba(50, 159, 209, .22), rgba(50, 159, 209, 0) 45%),
        radial-gradient(circle at 50% 50%, rgba(38, 158, 103, .2), rgba(38, 158, 103, 0) 45%),
        radial-gradient(circle at 90% 50%, rgba(50, 159, 209, .22), rgba(50, 159, 209, 0) 45%);
      border-radius: 999px;
      overflow: hidden;
    }

    .section-divider::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(43, 132, 94, .24) 0.6px, transparent 0.6px);
      background-size: 6px 6px;
      opacity: .45;
      pointer-events: none;
    }

    .section-divider::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.65) 50%, transparent 100%);
      transform: translateX(-100%);
      animation: dividerSweep 5.2s ease-in-out infinite;
    }

    .hero-wrap::before {
      content: "";
      position: absolute;
      inset: auto -6% -18px -6%;
      height: 70px;
      background: radial-gradient(60% 100% at 50% 0%, rgba(30, 129, 196, .18), rgba(30, 129, 196, 0));
      z-index: -1;
      pointer-events: none;
    }

    .hero {
      width: 100%;
      aspect-ratio: 1920 / 700;
      display: flex;
      align-items: flex-end;
      position: relative;
      z-index: 2;
      border-radius: 16px;
      overflow: hidden;
      padding-bottom: 26px;
    }

    .slide {
      position: absolute;
      inset: 0;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity .7s ease;
      transform: scale(1.03);
    }

    .slide.s1 { background-image: url('assets/img/hero-main.webp'); }
    .slide.s2 { background-image: url('assets/img/hero-dust.webp'); }
    .slide.s3 { background-image: url('assets/img/hero-odor.webp'); }

    .slide.active { opacity: 1; animation: slowZoom 8s linear both; }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient(100deg, rgba(12, 22, 32, 0.28) 0%, rgba(16, 33, 46, 0.18) 45%, rgba(28, 61, 58, 0.08) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 4;
      width: min(640px, calc(100% - 56px));
      margin-left: 30px;
      color: #f5fbff;
      display: none;
      gap: 12px;
    }

    .hero-content.active {
      display: grid;
    }

    .hero-kicker {
      width: fit-content;
      border: 1px solid rgba(178, 225, 205, 0.42);
      border-radius: 999px;
      background: rgba(16, 46, 44, 0.42);
      color: #d8f5e8;
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .28px;
      padding: 5px 11px;
      text-transform: uppercase;
    }

    .hero-content h1 {
      margin: 0;
      font-size: clamp(1.5rem, 2.6vw, 2.45rem);
      line-height: 1.15;
      letter-spacing: .1px;
      text-wrap: balance;
    }

    .hero-content p {
      margin: 0;
      color: rgba(232, 244, 248, 0.94);
      font-size: .98rem;
      line-height: 1.7;
      max-width: 60ch;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .slider-dots {
      position: absolute;
      left: 30px;
      bottom: 14px;
      z-index: 5;
      display: flex;
      gap: 8px;
    }
    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(206, 235, 222, 0.7);
      background: rgba(19, 40, 38, 0.45);
      color: #f2fffb;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 6;
      transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
    }
    .hero-arrow:hover {
      transform: translateY(-50%) scale(1.04);
      background: rgba(31, 154, 98, 0.62);
      border-color: rgba(190, 241, 218, 0.9);
    }
    .hero-arrow-prev { left: 16px; }
    .hero-arrow-next { right: 16px; }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.85);
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      padding: 0;
    }

    .dot.active {
      background: #ffffff;
      transform: scale(1.25);
    }

    .services {
      margin-top: 22px;
      margin-bottom: 36px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      position: relative;
      z-index: 6;
    }

    .how-it-works {
      margin-top: 18px;
      margin-bottom: 42px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      padding: 26px;
      position: relative;
      z-index: 6;
    }

    .schema {
      margin-top: 10px;
      margin-bottom: 40px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      padding: 26px;
      position: relative;
      z-index: 6;
      box-shadow: 0 18px 38px rgba(16, 74, 51, 0.08);
    }

    .products {
      margin-top: 10px;
      margin-bottom: 38px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      padding: 24px;
      position: relative;
      z-index: 6;
      box-shadow: 0 18px 38px rgba(16, 74, 51, 0.08);
    }

    .products::after,
    .services::after,
    .how-it-works::after,
    .schema::after,
    .projects::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background-image: radial-gradient(rgba(43, 132, 94, .14) 0.55px, transparent 0.55px);
      background-size: 10px 10px;
      opacity: .24;
      mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
    }

    .products-head h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #1f4f3f;
      position: relative;
      padding-left: 14px;
    }

    .products-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(180deg, #31be84, #1f9a62);
    }

    .products-head p {
      margin: 8px 0 0;
      color: #4d6b61;
      font-size: .95rem;
      line-height: 1.65;
    }

    .product-tabs {
      margin-top: 14px;
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
      scroll-snap-type: x mandatory;
      position: sticky;
      top: 10px;
      z-index: 8;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid #dcefe6;
      border-radius: 12px;
      padding: 8px;
      backdrop-filter: blur(6px);
      justify-content: center;
    }

    .product-tabs::-webkit-scrollbar {
      display: none;
      width: 0;
      height: 0;
    }

    .product-tab {
      border: 1px solid #cfe7dc;
      background: #f5fbf8;
      color: #2f6450;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: .82rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      scroll-snap-align: start;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .product-tab.active {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      box-shadow: 0 8px 18px rgba(20, 89, 61, 0.24);
      transform: translateY(-1px);
    }

    .product-row {
      margin-top: 14px;
      overflow: hidden;
      position: relative;
      padding-inline: 2px;
    }

    .product-track {
      display: flex;
      gap: 10px;
      transition: transform .55s ease;
      will-change: transform;
    }

    .product-card {
      flex: 0 0 calc((100% - 40px) / 5);
      border: 1px solid #dcefe6;
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      display: none;
      position: relative;
      scroll-snap-align: start;
    }

    .product-card::after {
      content: "";
      position: absolute;
      top: -120%;
      left: -35%;
      width: 30%;
      height: 320%;
      transform: rotate(20deg);
      background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.42), rgba(255,255,255,0));
      transition: left .65s ease;
      pointer-events: none;
    }

    .product-card:hover::after { left: 130%; }

    .product-card.show {
      display: block;
      animation: fadeIn .35s ease;
    }
    .product-card > a {
      display: block;
      text-decoration: none;
    }

    .product-card img {
      width: 100%;
      height: 170px;
      object-fit: contain;
      object-position: center;
      display: block;
      background: #f7fbf9;
      padding: 8px;
      filter: saturate(0.92) contrast(1.02);
    }

    .product-card-body {
      padding: 10px;
    }

    .product-card-body h3 {
      margin: 0;
      font-size: .92rem;
      color: #2a5b49;
      line-height: 1.35;
    }

    .product-card-body p {
      margin: 6px 0 0;
      font-size: .8rem;
      color: #4d6b61;
      line-height: 1.5;
    }

    .products-action {
      margin-top: 14px;
      display: flex;
      justify-content: center;
    }

    .product-nav {
      margin-top: 12px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .product-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid #9cc9b5;
      background: #eaf6f0;
      padding: 0;
      cursor: pointer;
    }

    .product-dot.active {
      background: var(--brand);
      border-color: var(--brand);
      transform: scale(1.2);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .schema::before {
      content: "";
      position: absolute;
      right: 14px;
      top: 12px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39, 167, 112, .13), rgba(39, 167, 112, 0));
      pointer-events: none;
    }

    .schema-head h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #1f4f3f;
      position: relative;
      padding-left: 14px;
    }

    .schema-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(180deg, #31be84, #1f9a62);
    }

    .schema-head p {
      margin: 8px 0 0;
      color: #4d6b61;
      font-size: .95rem;
      line-height: 1.65;
    }

    .schema-videos {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .schema-video {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .schema-video:hover {
      transform: translateY(-2px);
      border-color: #b9dfcf;
      box-shadow: 0 10px 24px rgba(20, 89, 61, 0.12);
    }

    .schema-video-cover {
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        linear-gradient(130deg, rgba(31, 154, 98, 0.22), rgba(24, 121, 184, 0.18)),
        url('assets/img/slider.jpg') center / cover no-repeat;
    }

    .schema-video:nth-child(2) .schema-video-cover {
      background:
        linear-gradient(130deg, rgba(31, 154, 98, 0.22), rgba(24, 121, 184, 0.18)),
        url('assets/img/slider2.jpg') center / cover no-repeat;
    }

    .schema-video-cover iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .schema-play {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.95);
      color: #1d7b53;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(20, 89, 61, 0.18);
      font-size: 1.1rem;
    }

    .schema-video-body {
      padding: 12px;
    }

    .schema-video-body h3 {
      margin: 0;
      font-size: 1rem;
      color: #2a5b49;
    }

    .schema-video-body a {
      margin-top: 8px;
      display: inline-block;
      color: #1b7f55;
      font-size: .86rem;
      text-decoration: none;
      font-weight: 700;
    }

    .schema-text {
      margin-top: 18px;
      border: 1px solid #d8eee4;
      border-radius: 12px;
      padding: 14px;
      background: linear-gradient(120deg, #f8fcfa, #f1f9f5);
    }

    .schema-text h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.1rem;
    }

    .schema-text p {
      margin: 10px 0 0;
      color: #3f6b5b;
      font-size: .93rem;
      line-height: 1.72;
    }

    .detail-article {
      margin-top: 14px;
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .detail-article h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.22rem;
      line-height: 1.35;
    }

    .detail-block {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 12px;
      align-items: stretch;
    }

    .detail-copy {
      border: 1px solid #dcefe6;
      border-radius: 10px;
      background: #fbfefd;
      padding: 12px;
      display: grid;
      gap: 8px;
    }

    .detail-article p {
      margin: 0;
      color: #3f6b5b;
      font-size: .93rem;
      line-height: 1.76;
    }

    .detail-benefits {
      margin: 0;
      padding-left: 18px;
      color: #2f6450;
      font-size: .9rem;
      line-height: 1.66;
      display: grid;
      gap: 6px;
    }

    .detail-quote {
      margin: 0;
      border-left: 4px solid #31be84;
      background: #f2fbf6;
      color: #2f6450;
      border-radius: 8px;
      padding: 12px 14px;
      font-size: .9rem;
      line-height: 1.7;
      font-style: italic;
    }

    .detail-media {
      margin: 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #d8eee4;
      background: #f4fbf7;
    }

    .detail-media img {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      filter: saturate(0.92) contrast(1.02);
    }

    .detail-media-hero {
      max-width: none;
      width: calc(100% + 36px);
      margin: -18px -18px 6px;
      border-radius: 12px 12px 0 0;
    }

    .detail-media-hero img {
      aspect-ratio: 16 / 7;
      min-height: 300px;
      max-height: 560px;
    }

    .detail-video {
      margin: 0;
      width: 100%;
      max-width: 520px;
      justify-self: center;
    }

    .detail-video .schema-video-cover {
      min-height: 0;
      aspect-ratio: 16 / 9;
      background: #0f1c2a;
    }

    .detail-video .schema-video-cover iframe,
    .detail-video .schema-video-cover img {
      width: 100%;
      height: 100%;
      min-height: 0;
      border: 0;
      display: block;
      object-fit: cover;
    }

    .product-detail-hero {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .product-detail-media {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      aspect-ratio: 4 / 3;
      display: grid;
      place-items: center;
    }

    .product-detail-media img {
      width: 100%;
      height: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      background: #fff;
      padding: 14px;
      display: block;
      filter: saturate(0.92) contrast(1.03);
    }

    .product-detail-info {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: linear-gradient(120deg, #f8fcfa, #f1f9f5);
      padding: 14px;
      display: grid;
      gap: 10px;
    }

    .product-detail-info h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.2rem;
    }

    .product-detail-info p {
      margin: 0;
      color: #3f6b5b;
      font-size: .92rem;
      line-height: 1.72;
    }

    .product-detail-info ul {
      margin: 0;
      padding-left: 16px;
      color: #2f6450;
      font-size: .88rem;
      line-height: 1.6;
      display: grid;
      gap: 4px;
    }

    .product-detail-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 2px;
    }

    .tech-table-wrap {
      margin-top: 14px;
      border: 1px solid #d8eee4;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      position: relative;
      z-index: 1;
    }

    .tech-table {
      width: 100%;
      border-collapse: collapse;
    }

    .tech-table thead th {
      background: linear-gradient(130deg, #e8f6ef, #e9f3fb);
      color: #1f4f3f;
      text-align: left;
      font-size: .85rem;
      letter-spacing: .2px;
      text-transform: uppercase;
      padding: 12px 14px;
      border-bottom: 1px solid #d8eee4;
    }

    .tech-table tbody td {
      padding: 11px 14px;
      font-size: .9rem;
      color: #3f6b5b;
      border-bottom: 1px solid #ecf5f0;
    }

    .tech-table tbody tr:last-child td {
      border-bottom: 0;
    }

    .contact-layout {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .contact-cards {
      display: grid;
      gap: 10px;
    }

    .contact-card {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      padding: 14px;
      display: grid;
      gap: 6px;
    }

    .contact-card h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.02rem;
    }

    .contact-card p {
      margin: 0;
      color: #4d6b61;
      font-size: .9rem;
      line-height: 1.65;
    }

    .contact-card a {
      margin-top: 4px;
      color: #1b7f55;
      text-decoration: none;
      font-size: .85rem;
      font-weight: 700;
    }

    .contact-form {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: linear-gradient(120deg, #f8fcfa, #f1f9f5);
      padding: 14px;
      display: grid;
      gap: 9px;
      align-content: start;
    }

    .contact-form h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.1rem;
    }

    .contact-form p {
      margin: 0 0 2px;
      color: #4d6b61;
      font-size: .9rem;
      line-height: 1.62;
    }

    .contact-form label {
      color: #2f6450;
      font-size: .83rem;
      font-weight: 700;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #cde7db;
      border-radius: 10px;
      background: #fff;
      color: #264f40;
      font-size: .9rem;
      padding: 10px 12px;
      font-family: inherit;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #5dc79a;
      box-shadow: 0 0 0 3px rgba(93, 199, 154, 0.18);
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .form-alert {
      border-radius: 10px;
      padding: 10px 12px;
      font-size: .88rem;
      line-height: 1.5;
      border: 1px solid transparent;
    }

    .form-alert.is-success {
      background: #eaf8f0;
      border-color: #bfe8d0;
      color: #1f6a4b;
    }

    .form-alert.is-error {
      background: #fff2f2;
      border-color: #f2c1c1;
      color: #9a2a2a;
    }

    .site-popup {
      position: fixed;
      inset: 0;
      z-index: 1500;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .site-popup.is-open {
      display: flex;
    }

    .site-popup__overlay {
      position: absolute;
      inset: 0;
      background: rgba(9, 24, 30, 0.58);
      backdrop-filter: blur(3px);
    }

    .site-popup__panel {
      position: relative;
      width: min(560px, 100%);
      border: 1px solid #b9e1d1;
      border-radius: 18px;
      background:
        radial-gradient(circle at 90% 10%, rgba(86, 195, 147, 0.22), transparent 46%),
        radial-gradient(circle at 10% 90%, rgba(96, 170, 230, 0.16), transparent 42%),
        linear-gradient(155deg, rgba(248, 252, 250, 0.93), rgba(237, 247, 242, 0.9));
      backdrop-filter: blur(12px) saturate(1.08);
      box-shadow: 0 30px 80px rgba(13, 43, 33, 0.32);
      padding: 26px 24px 20px;
      animation: popupIn .35s ease both;
      overflow: hidden;
    }

    .site-popup__panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .24;
      background-image: radial-gradient(rgba(18, 90, 60, .22) 0.5px, transparent 0.5px);
      background-size: 4px 4px;
    }

    .site-popup__close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      border: 1px solid #c7e7da;
      background: #fff;
      color: #2c6851;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .site-popup__eyebrow {
      margin: 0 0 8px;
      color: #238d62;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      font-size: .78rem;
    }

    .site-popup__trust {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 0 44px 10px 0;
      position: relative;
      z-index: 1;
    }

    .site-popup__trust span {
      border: 1px solid #bfe3d2;
      border-radius: 999px;
      padding: 4px 9px;
      font-size: .72rem;
      font-weight: 800;
      color: #2d6a53;
      background: rgba(255, 255, 255, 0.72);
    }

    .site-popup h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: clamp(1.25rem, 2.5vw, 1.9rem);
      line-height: 1.24;
    }

    .site-popup__text {
      margin: 12px 0 0;
      color: #3c6656;
      font-size: 1rem;
      line-height: 1.65;
      max-width: 48ch;
    }

    .site-popup__form {
      margin-top: 14px;
      display: grid;
      gap: 8px;
    }

    .site-popup__form label {
      color: #2f6450;
      font-size: .82rem;
      font-weight: 700;
    }

    .site-popup__form input {
      width: 100%;
      border: 1px solid #cde7db;
      border-radius: 10px;
      background: #fff;
      color: #264f40;
      font-size: .92rem;
      padding: 10px 12px;
      font-family: inherit;
      outline: none;
    }

    .site-popup__form input:focus {
      border-color: #5dc79a;
      box-shadow: 0 0 0 3px rgba(93, 199, 154, 0.18);
    }

    .site-popup__form input.is-invalid {
      border-color: #df8f8f;
      box-shadow: 0 0 0 3px rgba(214, 93, 93, 0.14);
    }

    .site-popup__actions {
      margin-top: 18px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
    }

    .site-popup__actions .btn {
      min-width: 150px;
    }

    .site-popup__actions .btn.is-loading {
      opacity: .88;
      pointer-events: none;
      position: relative;
    }

    .site-popup__actions .btn.is-loading::before {
      content: "";
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-top-color: #fff;
      display: inline-block;
      margin-right: 7px;
      animation: btnSpin .75s linear infinite;
    }

    .site-popup__alert {
      border-radius: 10px;
      padding: 9px 11px;
      font-size: .86rem;
      line-height: 1.45;
      border: 1px solid transparent;
      margin-bottom: 3px;
    }

    .site-popup__alert.is-success {
      background: #eaf8f0;
      border-color: #bfe8d0;
      color: #1f6a4b;
    }

    .site-popup__alert.is-error {
      background: #fff2f2;
      border-color: #f2c1c1;
      color: #9a2a2a;
    }

    .site-popup__success {
      margin-top: 18px;
      border: 1px solid #c5e8d7;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      padding: 18px 16px;
      text-align: center;
      display: grid;
      gap: 10px;
      justify-items: center;
    }

    .site-popup__success[hidden] {
      display: none !important;
    }

    .site-popup__success i {
      color: #1f9a62;
      font-size: 1.6rem;
    }

    .site-popup__success h4 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.02rem;
      line-height: 1.45;
    }

    body.popup-open {
      overflow: hidden;
    }

    @keyframes popupIn {
      from {
        transform: translateY(14px) scale(.98);
        opacity: 0;
      }
      to {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    @keyframes btnSpin {
      to {
        transform: rotate(360deg);
      }
    }

    .projects {
      margin-top: 10px;
      margin-bottom: 38px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      padding: 26px;
      position: relative;
      z-index: 6;
    }

    .projects-head h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #ffffff;
      position: relative;
      padding-left: 14px;
    }

    .projects-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(180deg, #7de2bb, #2fc787);
    }

    .projects-head p {
      margin: 8px 0 0;
      color: rgba(241, 247, 252, 0.88);
      font-size: .95rem;
      line-height: 1.65;
    }

    .projects-hero {
      margin: -26px -26px 16px;
      padding: 28px 26px;
      border-radius: 14px 14px 0 0;
      background:
        radial-gradient(700px 180px at 85% 0%, rgba(71, 202, 145, 0.22), transparent 60%),
        radial-gradient(500px 160px at 10% 100%, rgba(89, 167, 226, 0.18), transparent 60%),
        linear-gradient(120deg, #1d2025 0%, #252a31 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
    }

    .projects-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(193, 229, 211, 0.28) 0.55px, transparent 0.55px);
      background-size: 10px 10px;
      opacity: .25;
      pointer-events: none;
      mask-image: linear-gradient(180deg, transparent 0%, black 24%, black 78%, transparent 100%);
    }

    .projects-hero .projects-head {
      position: relative;
      z-index: 1;
    }

    .section-hero-dark {
      margin: -26px -26px 16px;
      padding: 24px 26px;
      border-radius: 14px 14px 0 0;
      background:
        radial-gradient(700px 180px at 85% 0%, rgba(71, 202, 145, 0.18), transparent 60%),
        radial-gradient(500px 160px at 10% 100%, rgba(89, 167, 226, 0.14), transparent 60%),
        linear-gradient(120deg, #1f242b 0%, #2a3139 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: relative;
      overflow: hidden;
    }

    .section-hero-dark::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(193, 229, 211, 0.26) 0.5px, transparent 0.5px);
      background-size: 10px 10px;
      opacity: .24;
      pointer-events: none;
      mask-image: linear-gradient(180deg, transparent 0%, black 24%, black 78%, transparent 100%);
    }

    .section-hero-dark > * {
      position: relative;
      z-index: 1;
    }

    .section-hero-dark h2 {
      color: #fff !important;
    }

    .section-hero-dark p {
      color: rgba(241, 247, 252, 0.88) !important;
    }

    .project-grid {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .project-item {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #d9eee5;
      background: #eef8f3;
      aspect-ratio: 4 / 3;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      transition: transform .5s ease, opacity .5s ease;
    }

    .project-item.in {
      opacity: 1;
      transform: translateY(0);
    }

    .project-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
      filter: saturate(0.9) contrast(1.03);
    }

    .project-item:hover img { transform: scale(1.04); }

    .project-item span {
      position: absolute;
      left: 8px;
      bottom: 8px;
      background: rgba(20, 77, 54, 0.78);
      color: #fff;
      font-size: .72rem;
      border-radius: 999px;
      padding: 4px 8px;
      letter-spacing: .2px;
    }

    .reference-grid {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .reference-card {
      border: 1px solid #dcefe6;
      border-radius: 12px;
      background: #fff;
      min-height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .reference-card:hover {
      transform: translateY(-2px);
      border-color: #b9dfcf;
      box-shadow: 0 10px 22px rgba(20, 89, 61, 0.1);
    }

    .reference-card img {
      width: 185%;
      max-width: none;
      max-height: none;
      height: 150px;
      object-fit: contain;
      display: block;
      filter: grayscale(1) contrast(1.05);
      opacity: .85;
      transition: filter .22s ease, opacity .22s ease;
    }

    .reference-card:hover img {
      filter: grayscale(0);
      opacity: 1;
    }

    .projects-cta {
      margin-top: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 18px 16px;
      background:
        radial-gradient(500px 180px at 90% 0%, rgba(71, 202, 145, 0.16), transparent 60%),
        radial-gradient(360px 140px at 10% 100%, rgba(89, 167, 226, 0.14), transparent 60%),
        linear-gradient(120deg, #1f242b 0%, #2b323a 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .projects-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(193, 229, 211, 0.24) 0.5px, transparent 0.5px);
      background-size: 10px 10px;
      opacity: .22;
      pointer-events: none;
    }

    .projects-cta p {
      margin: 0;
      color: rgba(245, 251, 255, 0.92);
      font-weight: 700;
      font-size: .95rem;
      position: relative;
      z-index: 1;
    }

    .projects-cta .btn {
      position: relative;
      z-index: 1;
    }

    .cta-standalone {
      margin-top: 8px;
      margin-bottom: 34px;
      position: relative;
      z-index: 6;
    }

    .cta-standalone-inner {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 18px 16px;
      background:
        radial-gradient(500px 180px at 90% 0%, rgba(71, 202, 145, 0.16), transparent 60%),
        radial-gradient(360px 140px at 10% 100%, rgba(89, 167, 226, 0.14), transparent 60%),
        linear-gradient(120deg, #1f242b 0%, #2b323a 100%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .cta-standalone-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(193, 229, 211, 0.24) 0.5px, transparent 0.5px);
      background-size: 10px 10px;
      opacity: .22;
      pointer-events: none;
    }

    .cta-standalone-inner p {
      margin: 0;
      color: rgba(245, 251, 255, 0.92);
      font-weight: 700;
      font-size: .95rem;
      position: relative;
      z-index: 1;
    }

    .cta-standalone-inner .btn {
      position: relative;
      z-index: 1;
    }

    .cta-lead {
      position: relative;
      z-index: 1;
      width: 100%;
      display: grid;
      gap: 10px;
    }

    .cta-lead-form {
      display: grid;
      grid-template-columns: minmax(280px, 1.3fr) minmax(190px, 230px) minmax(190px, 230px) auto;
      gap: 14px;
      align-items: center;
    }

    .cta-lead-label {
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.2px;
    }

    .cta-lead-field input[type="text"],
    .cta-lead-field input[type="tel"] {
      width: 100%;
      border: 1px solid rgba(203, 230, 220, 0.42);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.96);
      color: #1e3b32;
      font-size: 1rem;
      font-weight: 600;
      padding: 12px 14px;
      outline: none;
    }

    .cta-lead-field input.is-invalid {
      border-color: #db6a6a;
      box-shadow: 0 0 0 2px rgba(219, 106, 106, 0.15);
    }

    .cta-lead-action .btn {
      min-width: 170px;
      height: 48px;
      white-space: nowrap;
      border-radius: 12px;
    }

    .cta-lead-alert {
      grid-column: 1 / -1;
      border-radius: 10px;
      padding: 9px 11px;
      font-size: .84rem;
      font-weight: 700;
    }

    .cta-lead-alert.is-success {
      background: rgba(44, 166, 110, 0.18);
      color: #d9ffe9;
      border: 1px solid rgba(107, 221, 163, 0.4);
    }

    .cta-lead-alert.is-error {
      background: rgba(193, 69, 69, 0.2);
      color: #ffe3e3;
      border: 1px solid rgba(224, 129, 129, 0.5);
    }

    .faq {
      margin-top: 10px;
      margin-bottom: 38px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.94);
      padding: 26px;
      position: relative;
      z-index: 6;
      box-shadow: 0 18px 38px rgba(16, 74, 51, 0.08);
    }

    .faq::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background-image: radial-gradient(rgba(43, 132, 94, .14) 0.55px, transparent 0.55px);
      background-size: 10px 10px;
      opacity: .24;
      mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
    }

    .faq-head h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #fff;
      position: relative;
      padding-left: 14px;
    }

    .faq-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(180deg, #7de2bb, #2fc787);
    }

    .faq-head p {
      margin: 8px 0 0;
      color: rgba(241, 247, 252, 0.88);
      font-size: .95rem;
      line-height: 1.65;
    }

    .faq-list {
      margin-top: 14px;
      display: grid;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .faq-item {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 16px;
      font-weight: 700;
      color: #2a5b49;
      position: relative;
      padding-right: 44px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid #cfe7dc;
      color: #1f9a62;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: .95rem;
      line-height: 1;
      background: #f5fbf8;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      margin: 0;
      padding: 0 16px 14px;
      color: #4d6b61;
      font-size: .9rem;
      line-height: 1.7;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(6, 15, 24, 0.86);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 60;
      padding: 24px;
    }

    .lightbox.open { display: flex; }

    .lightbox-inner {
      position: relative;
      width: min(1000px, 100%);
      max-height: 90vh;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
      background: #0f1922;
    }

    .lightbox img {
      width: 100%;
      height: auto;
      display: block;
      max-height: 90vh;
      object-fit: contain;
    }

    .lightbox iframe {
      width: min(1100px, 92vw);
      aspect-ratio: 16 / 9;
      max-height: 90vh;
      border: 0;
      display: block;
      background: #000;
    }

    .lightbox-close {
      position: absolute;
      right: 12px;
      top: 12px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, 0.9);
      color: #203645;
      font-size: 1rem;
      cursor: pointer;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 0;
      background: rgba(255, 255, 255, 0.9);
      color: #173647;
      font-size: 1rem;
      cursor: pointer;
      z-index: 2;
    }

    .lightbox-nav.prev { left: 12px; }
    .lightbox-nav.next { right: 12px; }

    @media (max-width: 760px) {
      .cta-lead-form {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .cta-lead-label {
        font-size: 1.2rem;
      }

      .cta-lead-action .btn {
        width: 100%;
      }

      .lightbox-nav {
        width: 34px;
        height: 34px;
      }
    }

    .scroll-progress {
      position: fixed;
      right: 10px;
      top: 20vh;
      width: 4px;
      height: 60vh;
      background: rgba(34, 102, 77, 0.15);
      border-radius: 999px;
      overflow: hidden;
      z-index: 55;
      pointer-events: none;
    }

    .scroll-progress span {
      display: block;
      width: 100%;
      height: 0%;
      background: linear-gradient(180deg, #33c488, #1f9a62);
      border-radius: 999px;
      transition: height .1s linear;
    }

    .footer {
      position: relative;
      z-index: 6;
      margin-bottom: 20px;
      border: 1px solid #2f4750;
      border-radius: 16px;
      background: linear-gradient(110deg, #1f2b3a 0%, #243447 48%, #2c4b4f 100%);
      box-shadow: 0 18px 38px rgba(7, 20, 32, 0.22);
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(151, 223, 195, .18), rgba(151, 223, 195, 0));
      pointer-events: none;
    }

    .footer-top {
      padding: 26px;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 16px;
      border-bottom: 1px solid rgba(204, 231, 219, 0.24);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      position: relative;
      isolation: isolate;
      padding: 8px 12px;
      border-radius: 14px;
      margin-bottom: 10px;
    }

    .footer-logo::before {
      content: "";
      position: absolute;
      inset: -2px -4px;
      border-radius: 14px;
      z-index: -1;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 8px 18px rgba(7, 20, 32, 0.16);
      pointer-events: none;
    }

    .footer-logo img {
      height: 56px;
      width: auto;
      display: block;
      margin-bottom: 0;
      filter: contrast(1.08) saturate(1.06);
    }

    .footer p {
      margin: 0;
      color: rgba(229, 239, 243, 0.9);
      font-size: .9rem;
      line-height: 1.7;
    }

    .footer h4 {
      margin: 0 0 10px;
      color: #ffffff;
      font-size: 1rem;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 7px;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(236, 245, 248, 0.95);
      font-size: .88rem;
    }

    .footer-links a:hover { color: #9de8c3; }

    .footer-contact {
      display: grid;
      gap: 7px;
      color: rgba(236, 245, 248, 0.95);
      font-size: .88rem;
    }

    .footer-contact b {
      color: #ffffff;
      font-size: .78rem;
      letter-spacing: .2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 2px;
    }

    .footer-social {
      margin-top: 10px;
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(222, 240, 233, 0.34);
      background: rgba(255, 255, 255, 0.12);
      color: #e6f4ef;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: .82rem;
    }

    .footer-bottom {
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      color: rgba(224, 236, 241, 0.86);
      font-size: .82rem;
    }

    .services,
    .how-it-works,
    .projects {
      box-shadow: 0 18px 38px rgba(16, 74, 51, 0.08);
    }

    .services::before,
    .how-it-works::before,
    .projects::before {
      content: "";
      position: absolute;
      right: 14px;
      top: 12px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39, 167, 112, .13), rgba(39, 167, 112, 0));
      pointer-events: none;
    }

    @keyframes slowZoom {
      0% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    @keyframes orbFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-18px); }
    }

    @keyframes pulseRing {
      0% { box-shadow: 0 0 0 0 rgba(31,154,98,.25), 0 10px 22px rgba(20, 89, 61, 0.16); }
      70% { box-shadow: 0 0 0 12px rgba(31,154,98,0), 0 10px 22px rgba(20, 89, 61, 0.16); }
      100% { box-shadow: 0 0 0 0 rgba(31,154,98,0), 0 10px 22px rgba(20, 89, 61, 0.16); }
    }

    @keyframes dividerSweep {
      0% { transform: translateX(-100%); }
      50% { transform: translateX(100%); }
      100% { transform: translateX(100%); }
    }

    .how-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: stretch;
    }

    .how-title {
      margin: 0;
      font-size: 1.58rem;
      color: #1f4f3f;
      line-height: 1.25;
    }

    .how-text {
      margin: 12px 0 0;
      color: #4d6b61;
      font-size: .95rem;
      line-height: 1.7;
    }

    .how-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .how-list li {
      border: 1px solid #d8eee4;
      border-radius: 10px;
      padding: 9px 10px;
      font-size: .9rem;
      color: #2f6450;
      background: #f9fdfb;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .how-list i {
      color: var(--brand-dark);
      font-size: .85rem;
    }

    .video-card {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .video-cover {
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, rgba(31, 154, 98, 0.18), rgba(30, 129, 196, 0.2)), url('assets/img/slider2.jpg') center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-cover iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-play {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      color: #1d7b53;
      font-size: 1.2rem;
      box-shadow: 0 10px 26px rgba(20, 89, 61, 0.18);
      text-decoration: none;
    }

    .video-body {
      padding: 12px;
      display: grid;
      gap: 10px;
    }

    .video-body h3 {
      margin: 0;
      font-size: 1rem;
      color: #2a5b49;
    }

    .video-body p {
      margin: 0;
      font-size: .9rem;
      color: #4d6b61;
      line-height: 1.6;
    }

    .services-head {
      margin-bottom: 18px;
    }

    .services-head h2 {
      margin: 0;
      font-size: 1.6rem;
      color: #1f4f3f;
      position: relative;
      padding-left: 14px;
    }

    .services-head h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 24px;
      border-radius: 999px;
      background: linear-gradient(180deg, #31be84, #1f9a62);
    }

    .services-head p {
      margin: 8px 0 0;
      font-size: .95rem;
      color: #4d6b61;
      line-height: 1.6;
    }

    .service-grid {
      overflow: hidden;
      position: relative;
    }

    .service-track {
      display: flex;
      gap: 12px;
      transition: transform .55s ease;
      will-change: transform;
    }

    .service-card {
      border: 1px solid #dcefe6;
      border-radius: 12px;
      padding: 10px;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .5s ease, border-color .2s ease, box-shadow .2s ease, opacity .5s ease;
      flex: 0 0 calc((100% - 24px) / 3);
      opacity: 0;
      transform: translateY(20px);
    }

    .service-card.in {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card:hover {
      transform: translateY(-2px);
      border-color: #b9dfcf;
      box-shadow: 0 8px 20px rgba(20, 89, 61, 0.08);
    }

    .service-media {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #e1f1e9;
      background: #f4fbf7;
    }
    .service-media a {
      display: block;
      text-decoration: none;
    }

    .service-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(1.02);
    }

    .service-body {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 2px 4px 6px;
      flex: 1;
    }

    .service-body > div {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .service-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ecf8f2;
      color: var(--brand-dark);
      flex: 0 0 34px;
      font-size: .95rem;
    }

    .service-title {
      margin: 1px 0 0;
      font-size: .98rem;
      font-weight: 700;
      color: #2a5b49;
      line-height: 1.35;
    }

    .service-text {
      margin: 6px 0 0;
      font-size: .88rem;
      line-height: 1.55;
      color: #4d6b61;
    }

    .service-actions {
      margin-top: auto;
      padding-top: 10px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .service-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      padding: 7px 10px;
      font-size: .78rem;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid #cfe7dc;
    }

    .service-btn.primary {
      background: var(--brand);
      color: #fff;
      border-color: var(--brand);
    }

    .service-btn.ghost {
      background: #fff;
      color: #2f6450;
    }

    .service-nav {
      margin-top: 14px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .service-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid #9cc9b5;
      background: #eaf6f0;
      cursor: pointer;
      padding: 0;
    }

    .service-dot.active {
      background: var(--brand);
      border-color: var(--brand);
      transform: scale(1.2);
    }

    .service-list-page {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .service-feature {
      margin-top: 14px;
      margin-bottom: 14px;
      border: 1px solid #d8eee4;
      border-radius: 14px;
      background: #fff;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      box-shadow: 0 12px 28px rgba(20, 89, 61, 0.09);
    }

    .service-feature-list {
      margin-top: 14px;
      display: grid;
      gap: 14px;
    }

    .service-feature-list .service-feature {
      margin: 0;
    }

    .service-feature-media {
      min-height: 320px;
    }

    .service-feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(1.02);
    }

    .service-feature-body {
      padding: 20px;
      display: grid;
      gap: 10px;
      align-content: center;
      background:
        radial-gradient(420px 180px at 100% 0%, rgba(54, 181, 123, 0.14), transparent 70%),
        linear-gradient(160deg, #ffffff 0%, #f6fbf8 100%);
    }

    .service-feature-kicker {
      display: inline-flex;
      width: fit-content;
      border: 1px solid #cde7db;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: .72rem;
      font-weight: 800;
      color: #1f7e56;
      background: #f3fbf7;
      letter-spacing: .3px;
      text-transform: uppercase;
    }

    .service-feature-body h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.45rem;
      line-height: 1.24;
    }

    .service-feature-body p {
      margin: 0;
      color: #48675c;
      font-size: .93rem;
      line-height: 1.72;
    }

    .service-feature-body ul {
      margin: 0;
      padding-left: 16px;
      color: #2f6450;
      font-size: .88rem;
      line-height: 1.6;
      display: grid;
      gap: 4px;
    }

    .service-list-card {
      border: 1px solid #dcefe6;
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .service-list-card:hover {
      transform: translateY(-2px);
      border-color: #b9dfcf;
      box-shadow: 0 10px 24px rgba(20, 89, 61, 0.1);
    }

    .service-list-media {
      aspect-ratio: 16 / 9;
      background: #f4fbf7;
      overflow: hidden;
    }

    .service-list-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(1.03);
    }

    .service-list-body {
      padding: 14px;
      display: grid;
      gap: 10px;
      height: 100%;
    }

    .service-list-body h3 {
      margin: 0;
      color: #2a5b49;
      font-size: 1.05rem;
      line-height: 1.35;
    }

    .service-list-body p {
      margin: 0;
      color: #4d6b61;
      font-size: .9rem;
      line-height: 1.68;
    }

    .service-list-body .service-btn {
      margin-top: auto;
      width: fit-content;
    }

    .service-hub-page {
      padding: 24px;
    }

    .service-hub-grid {
      display: grid;
      gap: 16px;
      margin-top: 14px;
    }

    .service-hub-card {
      border: 1px solid #d8eee4;
      border-radius: 14px;
      background: #fff;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1.25fr;
      box-shadow: 0 12px 28px rgba(20, 89, 61, 0.09);
    }

    .service-hub-media {
      min-height: 300px;
    }

    .service-hub-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.96) contrast(1.02);
    }

    .service-hub-body {
      padding: 18px;
      display: grid;
      gap: 10px;
      align-content: start;
      background:
        radial-gradient(420px 180px at 100% 0%, rgba(54, 181, 123, 0.14), transparent 70%),
        linear-gradient(160deg, #ffffff 0%, #f6fbf8 100%);
    }

    .service-hub-body h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.38rem;
      line-height: 1.25;
    }

    .service-hub-body p {
      margin: 0;
      color: #4b6b5f;
      font-size: .92rem;
      line-height: 1.68;
    }

    .service-hub-subgrid {
      margin-top: 6px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .service-hub-subitem {
      border: 1px solid #bddfd0;
      border-radius: 10px;
      background: #fff;
      text-decoration: none;
      color: #2f6450;
      display: block;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .service-hub-subitem:hover {
      transform: translateY(-1px);
      border-color: #56b58c;
      box-shadow: 0 12px 24px rgba(20, 89, 61, 0.14);
      background: linear-gradient(135deg, rgba(49, 190, 132, 0.12), rgba(79, 167, 226, 0.08));
    }

    .service-hub-subitem span {
      display: block;
      padding: 11px 12px;
      font-size: .9rem;
      font-weight: 800;
      line-height: 1.36;
      text-transform: uppercase;
      letter-spacing: .02em;
      position: relative;
      padding-left: 32px;
    }

    .service-hub-subitem span::before {
      content: "\f061";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #22895e;
      font-size: .76rem;
    }

    .service-benefits {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .service-benefit {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      padding: 14px;
      display: grid;
      gap: 8px;
    }

    .service-benefit i {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #1f9a62;
      background: #ecf8f2;
      font-size: .95rem;
    }

    .service-benefit h4 {
      margin: 0;
      color: #2a5b49;
      font-size: .98rem;
    }

    .service-benefit p {
      margin: 0;
      color: #4d6b61;
      font-size: .86rem;
      line-height: 1.64;
    }

    .catalog-tabs {
      margin-top: 14px;
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
      border: 1px solid #dcefe6;
      border-radius: 12px;
      padding: 8px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(6px);
    }

    .catalog-tabs::-webkit-scrollbar {
      display: none;
      width: 0;
      height: 0;
    }

    .catalog-tab {
      border: 1px solid #cfe7dc;
      background: #f5fbf8;
      color: #2f6450;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: .82rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .catalog-tab.active {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      box-shadow: 0 8px 18px rgba(20, 89, 61, 0.24);
    }

    .catalog-grid {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .catalog-card {
      display: none;
      border: 1px solid #dcefe6;
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      opacity: 0;
      transform: translateY(10px);
    }

    .catalog-card.show {
      display: block;
      animation: catalogIn .42s ease forwards;
    }

    @keyframes catalogIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .catalog-media {
      aspect-ratio: 16 / 10;
      background: #f4fbf7;
      overflow: hidden;
    }

    .catalog-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(1.03);
    }

    .catalog-body {
      padding: 12px;
      display: grid;
      gap: 8px;
      min-height: 180px;
    }

    .catalog-body h3 {
      margin: 0;
      color: #2a5b49;
      font-size: 1rem;
      line-height: 1.35;
    }

    .catalog-body h3 a {
      color: inherit;
      text-decoration: none;
    }

    .catalog-body p {
      margin: 0;
      color: #4d6b61;
      font-size: .87rem;
      line-height: 1.62;
    }

    .catalog-body .service-btn {
      margin-top: auto;
      width: fit-content;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
      margin-top: 14px;
      align-items: stretch;
    }

    .about-block {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      padding: 16px;
    }

    .about-block h3 {
      margin: 0;
      color: #1f4f3f;
      font-size: 1.2rem;
    }

    .about-block p {
      margin: 10px 0 0;
      color: #4d6b61;
      font-size: .93rem;
      line-height: 1.72;
    }

    .about-side {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      overflow: hidden;
      min-height: 100%;
    }

    .about-side img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      display: block;
      filter: saturate(0.92) contrast(1.03);
    }

    .about-text {
      margin-top: 14px;
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: linear-gradient(120deg, #f8fcfa, #f1f9f5);
      padding: 14px;
    }

    .about-text p {
      margin: 0;
      color: #3f6b5b;
      font-size: .93rem;
      line-height: 1.74;
    }

    .about-text p + p {
      margin-top: 10px;
    }

    .about-metrics {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .about-metric {
      border: 1px solid #d8eee4;
      border-radius: 12px;
      background: #fff;
      padding: 14px 12px;
      text-align: center;
    }

    .about-metric strong {
      display: block;
      color: #1f9a62;
      font-size: 1.25rem;
      line-height: 1.2;
    }

    .about-metric span {
      display: block;
      margin-top: 5px;
      color: #4d6b61;
      font-size: .84rem;
      font-weight: 700;
    }

    @media (max-width: 1060px) {
      header {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 10px 12px;
        gap: 10px;
      }

      .logo img { height: 62px; }
      .menu {
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        scrollbar-width: thin;
      }
      .header-action { justify-self: start; }
      .info-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }
      .hero { border-radius: 14px; }
      .service-card { flex-basis: calc((100% - 12px) / 2); }
      .how-grid { grid-template-columns: 1fr; }
      .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .schema-videos { grid-template-columns: 1fr; }
      .product-card { flex-basis: calc((100% - 20px) / 3); }
      .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .about-grid { grid-template-columns: 1fr; }
      .service-list-page { grid-template-columns: 1fr; }
      .service-feature { grid-template-columns: 1fr; }
      .service-feature-media { min-height: 260px; }
      .service-benefits { grid-template-columns: 1fr; }
      .service-hub-card { grid-template-columns: 1fr; }
      .service-hub-media { min-height: 230px; }
      .detail-block { grid-template-columns: 1fr; }
      .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .product-detail-hero { grid-template-columns: 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      header {
        justify-items: center;
      }
      .logo {
        justify-self: center;
      }
      .topbar {
        flex-direction: column;
        align-items: center;
        padding: 10px 10px;
        text-align: center;
      }
      .topbar-note { font-size: .82rem; }
      .topbar-right {
        justify-content: center;
        width: 100%;
        gap: 8px;
      }
      .view-switch { width: 100%; justify-content: space-between; }
      .view-switch button { flex: 1; }
      .lang {
        font-size: .82rem;
        border: 1px solid #d5ebe1;
        border-radius: 999px;
        padding: 5px 10px;
        background: #fff;
      }
      .socials { display: none; }
      .info-strip {
        padding: 8px 10px;
        font-size: .76rem;
        text-align: center;
      }
      .info-strip b { font-size: .68rem; }
      .info-full { display: none; }
      .info-short { display: block; }
      .info-mobile-actions { display: flex; }
      .info-short { width: 100%; }
      .info-short-location { display: none !important; }
      .logo img { height: 54px; }
      .menu-toggle { display: inline-flex; }
      .menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        padding: 10px;
        border: 1px solid #cde3dc;
        border-radius: 16px;
        background: rgba(245, 250, 248, 0.94);
        backdrop-filter: blur(6px);
      }
      .menu.open { display: flex; }
      .menu a {
        font-size: 1.03rem;
        width: 100%;
        color: #173947;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #c8dde4;
        border-radius: 14px;
        box-shadow: none;
        letter-spacing: .02em;
        padding: 12px 14px;
      }
      .menu a:hover,
      .menu a.is-current {
        background: linear-gradient(135deg, rgba(52, 176, 122, 0.18), rgba(31, 154, 98, 0.1));
        color: #0f3f2f;
        border-color: #7bc9a6;
        box-shadow: 0 6px 14px rgba(20, 89, 61, 0.14);
        transform: none;
      }
      .menu-lang-switch {
        border-color: #bfe3d2;
        background: rgba(255, 255, 255, 0.94);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        border-radius: 999px;
        padding: 4px;
        margin-bottom: 4px;
      }
      .menu-lang {
        text-align: center;
        text-decoration: none;
        color: #35584a;
        font-size: .86rem;
        font-weight: 800;
        padding: 8px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: .04em;
        border: 0;
        background: transparent;
      }
      .menu-lang:hover {
        background: rgba(31, 154, 98, 0.14);
        color: #1f5a45;
      }
      .menu-lang.is-active {
        background: linear-gradient(135deg, #34b07a, #1f9a62);
        color: #fff;
      }
      .header-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 6px;
      }
      .header-lang-switch {
        display: none;
      }
      .header-action {
        width: auto;
        text-align: center;
        justify-content: center;
        padding-inline: 10px;
      }
      .hero-wrap { width: calc(100% - 24px); }
      .hero {
        aspect-ratio: 16 / 11;
        min-height: 320px;
        border-radius: 12px;
        padding-bottom: 18px;
      }
      .slide {
        background-position: 62% center;
      }
      .hero-content {
        width: calc(100% - 30px);
        margin-left: 15px;
        gap: 9px;
      }
      .slider-dots {
        left: 15px;
        bottom: 10px;
      }
      .hero-arrow { display: none; }
      .hero-kicker {
        font-size: .68rem;
        padding: 4px 9px;
      }
      .hero-content h1 {
        font-size: clamp(1.25rem, 7vw, 1.95rem);
        line-height: 1.12;
      }
      .hero-content p {
        font-size: .78rem;
        line-height: 1.45;
        max-width: 44ch;
      }
      .hero-actions .btn {
        width: 100%;
        padding: 11px 12px;
      }
      .section-divider { width: calc(100% - 24px); }
      .services { padding: 18px; }
      .services-head h2,
      .products-head h2,
      .how-title,
      .schema-head h2,
      .projects-head h2 { font-size: 1.35rem; }
      .service-card { flex-basis: 100%; }
      .products { padding: 18px; }
      .product-row { overflow-x: auto; scroll-snap-type: x mandatory; }
      .product-tabs {
        justify-content: flex-start;
        margin-inline: 4px;
      }
      .product-track {
        transform: none !important;
        transition: none;
      }
      .product-card { flex-basis: 86%; }
      .product-card img { height: 140px; }
      .product-tab {
        padding: 7px 10px;
        font-size: .78rem;
      }
      .service-list-body {
        padding: 12px;
      }
      .service-list-body .service-btn {
        width: 100%;
      }
      .detail-article { padding: 14px; }
      .detail-article h3 { font-size: 1.08rem; }
      .detail-media-hero img {
        aspect-ratio: 16 / 9;
        min-height: 220px;
      }
      .detail-media-hero {
        width: calc(100% + 28px);
        margin: -14px -14px 6px;
      }
      .service-hub-page { padding: 18px; }
      .service-hub-body { padding: 12px; }
      .service-hub-body h3 { font-size: 1.2rem; }
      .service-hub-subgrid { grid-template-columns: 1fr; }
      .catalog-grid { grid-template-columns: 1fr; }
      .catalog-body { min-height: 0; }
      .catalog-body .service-btn { width: 100%; }
      .product-detail-media { aspect-ratio: 1 / 1; }
      .product-detail-media img { padding: 10px; }
      .product-detail-actions .btn,
      .product-detail-actions .service-btn { width: 100%; }
      .projects { padding: 18px; }
      .project-grid { grid-template-columns: 1fr; }
      .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .schema { padding: 18px; }
      .section-hero-dark,
      .projects-hero {
        margin: -18px -18px 14px;
        padding: 18px;
      }
      .about-metrics { grid-template-columns: 1fr; }
      .about-side img { min-height: 220px; }
      .faq { padding: 18px; }
      .faq-head h2 { font-size: 1.35rem; }
      .footer-top { grid-template-columns: 1fr; padding: 18px; }
      .footer-bottom { padding: 12px 18px; }
      .scroll-progress { display: none; }
    }

    @media (max-width: 420px) {
      .content { width: calc(100% - 20px); }
      .hero-wrap { width: calc(100% - 20px); }
      .menu { gap: 12px; }
      .product-card { flex-basis: 87%; }
      .product-row { padding-inline: 4px; }
      .service-btn { width: 100%; }
      .btn { width: 100%; }
    }
  



.gallery-tabs {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dcefe6;
  border-radius: 12px;
  padding: 8px;
  background: rgba(255,255,255,0.92);
}

.gallery-tab {
  border: 1px solid #cfe7dc;
  background: #f5fbf8;
  color: #2f6450;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
}

.gallery-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 89, 61, 0.24);
}

.gallery-panel {
  margin-top: 14px;
  display: none;
}

.gallery-panel.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-card {
  border: 1px solid #dcefe6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.gallery-photo-btn {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: #f4fbf7;
  display: block;
}

.gallery-photo-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
}

.gallery-card-body {
  padding: 10px;
}

.gallery-card-body h3 {
  margin: 0;
  color: #2a5b49;
  font-size: .9rem;
  line-height: 1.4;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-video-card {
  border: 1px solid #d8eee4;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.gallery-video-cover {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gallery-video-cover iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gallery-video-btn {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #000;
  position: relative;
}

.gallery-video-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-video-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gallery-video-body {
  padding: 12px;
}

.gallery-video-body h3 {
  margin: 0;
  font-size: 1rem;
  color: #2a5b49;
}

@media (max-width: 1060px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .gallery-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-video-grid { grid-template-columns: 1fr; }
}


/* Products hierarchy layout */
.products-hier .products-layout { display: grid; grid-template-columns: 320px 1fr; gap: 20px; align-items: start; }
.products-sidebar { position: sticky; top: 110px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.82); backdrop-filter: blur(6px); padding: 16px; }
.products-mobile-toggle { display: none; width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #fff; color: var(--ink); font-weight: 800; justify-content: space-between; align-items: center; }
.products-sidebar h3 { margin: 0 0 12px; font-size: 1rem; font-weight: 800; color: var(--ink); }
.products-tree { display: grid; gap: 8px; }
.tree-all, .tree-parent, .tree-child { text-decoration: none; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; transition: .2s ease; }
.tree-all, .tree-parent { display: flex; align-items: center; gap: 8px; padding: 10px 12px; font-weight: 700; }
.tree-parent i { color: var(--brand); }
.tree-parent:hover, .tree-all:hover { border-color: var(--brand); background: rgba(30,160,100,.08); }
.tree-all.active, .tree-parent.active { border-color: var(--brand); background: linear-gradient(90deg, rgba(30,160,100,.14), rgba(30,160,100,.05)); }
.tree-children { display: grid; gap: 6px; margin-top: 6px; padding-left: 12px; }
.tree-child { display: flex; align-items: center; gap: 8px; padding: 8px 10px; font-weight: 600; font-size: .92rem; }
.tree-child i { color: var(--brand); }
.tree-child:hover { border-color: var(--brand); background: rgba(30,160,100,.06); }
.tree-child.active { border-color: var(--brand); background: rgba(30,160,100,.12); }
.products-main { min-width: 0; }
.products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.products-breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; color: var(--muted); font-weight: 700; }
.products-breadcrumb a { text-decoration: none; color: var(--ink); }
.catalog-grid-hier { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-grid-hier .catalog-card { display: none; }
.catalog-grid-hier .catalog-card.show { display: grid; }
.catalog-grid-hier .catalog-media { aspect-ratio: 4 / 3; }
.catalog-grid-hier .catalog-media img { object-fit: contain; background: #fff; padding: 8px; }
.catalog-grid-hier .catalog-body { min-height: 0; gap: 10px; }
.catalog-grid-hier .catalog-body h3 { font-size: 1.05rem; line-height: 1.3; }
.catalog-grid-hier .catalog-body .service-btn { margin-top: 0; }
.catalog-no-result { margin-top: 10px; padding: 14px; border: 1px dashed var(--line-strong); border-radius: 12px; color: var(--muted); font-weight: 700; background: rgba(255,255,255,.7); }

@media (max-width: 1200px) {
  .products-hier .products-layout { grid-template-columns: 280px 1fr; }
  .catalog-grid-hier { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .products-hier .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { position: static; padding: 12px; }
  .products-mobile-toggle { display: flex; }
  .products-sidebar h3 { display: none; }
  .products-sidebar .products-tree { display: none; margin-top: 10px; }
  .products-sidebar.is-open .products-tree { display: grid; }
  .products-sidebar.is-open .products-mobile-toggle i { transform: rotate(180deg); }
  .catalog-grid-hier { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .catalog-grid-hier { grid-template-columns: 1fr; }
}
