:root {
      --green: #0d5f3c;
      --green-2: #157a4f;
      --deep-green: #063d2a;
      --mint: #eaf6ef;
      --cream: #f7f4ec;
      --off-white: #fbfaf6;
      --white: #ffffff;
      --charcoal: #151f1a;
      --muted: #6d766f;
      --line: rgba(13, 95, 60, 0.14);
      --gold: #c7a75d;
      --shadow: 0 24px 80px rgba(13, 95, 60, 0.12);
      --ease: cubic-bezier(.19, 1, .22, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--off-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { width: 100%; display: block; object-fit: cover; }
    button, input, select, textarea { font-family: inherit; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 110px 0; position: relative; }
    .serif { font-family: 'Cormorant Garamond', serif; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: '';
      width: 38px;
      height: 1px;
      background: var(--green);
      display: inline-block;
    }
    .section-title {
      font-size: clamp(38px, 6vw, 78px);
      line-height: .95;
      letter-spacing: -0.055em;
      font-weight: 800;
      max-width: 900px;
    }
    .section-title span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
      letter-spacing: -0.035em;
      color: var(--green);
    }
    .section-copy {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      max-width: 680px;
      margin-top: 24px;
    }
    .editorial-head { max-width: 920px; margin-bottom: 58px; }
    .editorial-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .editorial-head.center .eyebrow { justify-content: center; }
    .editorial-head.center .eyebrow::after {
      content: '';
      width: 38px;
      height: 1px;
      background: var(--green);
      display: inline-block;
    }
    .editorial-head.center .section-copy { margin-left: auto; margin-right: auto; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      padding: 15px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: all .55s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 16px 45px rgba(13, 95, 60, 0.24);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      background: var(--deep-green);
      box-shadow: 0 22px 55px rgba(13, 95, 60, 0.32);
    }
    .btn-light {
      background: rgba(255,255,255,.84);
      border-color: rgba(255,255,255,.58);
      color: var(--deep-green);
      backdrop-filter: blur(18px);
    }
    .btn-outline {
      color: var(--green);
      border-color: rgba(13, 95, 60, 0.25);
      background: rgba(255,255,255,.48);
    }
    .btn-outline:hover, .btn-light:hover {
      transform: translateY(-3px);
      border-color: var(--green);
      background: var(--white);
    }

    /* Loading Screen */
    .loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: radial-gradient(circle at center, rgba(234,246,239,.95), var(--off-white) 58%);
      display: grid;
      place-items: center;
      transition: opacity .9s var(--ease), visibility .9s var(--ease);
    }
    .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-inner { text-align: center; position: relative; }
    .loader-glow {
      position: absolute;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,167,93,.36), rgba(13,95,60,.04) 64%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 2s infinite ease-in-out;
    }
    .loader-logo {
      position: relative;
      z-index: 2;
      width: 150px;
      height: 150px;
      margin: 0 auto 18px;
      display: grid;
      place-items: center;
    }
    .loader-logo img { width: 100%; height: 100%; object-fit: contain; }
    .loader-title {
      position: relative;
      z-index: 2;
      font-weight: 900;
      letter-spacing: .18em;
      font-size: 12px;
      color: var(--deep-green);
    }
    .loader-line {
      position: relative;
      z-index: 2;
      margin: 22px auto 0;
      width: 190px;
      height: 2px;
      background: rgba(13,95,60,.12);
      overflow: hidden;
      border-radius: 999px;
    }
    .loader-line::after {
      content: '';
      position: absolute;
      inset: 0;
      width: 42%;
      background: var(--green);
      animation: loadLine 1.4s infinite var(--ease);
      border-radius: inherit;
    }
    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(.94); opacity: .72; }
      50% { transform: translate(-50%, -50%) scale(1.09); opacity: 1; }
    }
    @keyframes loadLine {
      0% { transform: translateX(-105%); }
      100% { transform: translateX(255%); }
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 900;
      padding: 18px 0;
      transition: all .5s var(--ease);
    }
    .navbar.scrolled {
      padding: 10px 0;
      background: rgba(251,250,246,.82);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(13,95,60,.08);
    }
    .nav-wrap {
      width: min(1240px, calc(100% - 34px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      letter-spacing: -.05em;
      color: var(--deep-green);
    }
    .brand-logo {
      width: 64px;
      height: 64px;
      object-fit: contain;
      flex: 0 0 auto;
      filter: drop-shadow(0 10px 18px rgba(13,95,60,.08));
    }
    .brand-text small {
      display: block;
      letter-spacing: .17em;
      font-size: 9px;
      color: rgba(6,61,42,.68);
      font-weight: 800;
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 12px 22px;
      border-radius: 999px;
      background: rgba(255,255,255,.48);
      border: 1px solid rgba(255,255,255,.55);
      backdrop-filter: blur(20px);
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 800;
      color: rgba(21,31,26,.74);
      transition: color .3s ease;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 50%;
      background: var(--green);
      color: var(--white);
      cursor: pointer;
      font-size: 19px;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--cream);
      isolation: isolate;
    }
    .hero-bg { position: absolute; inset: 0; z-index: -3; }
    .hero-bg img {
      height: 100%;
      filter: saturate(.94) contrast(.95);
      transform: scale(1.05);
      animation: slowZoom 16s infinite alternate ease-in-out;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(251,250,246,.95) 0%, rgba(251,250,246,.82) 34%, rgba(251,250,246,.35) 68%, rgba(251,250,246,.13) 100%),
        linear-gradient(180deg, rgba(251,250,246,.2), rgba(6,61,42,.16));
    }
    .sun-orb {
      position: absolute;
      width: 340px;
      height: 340px;
      right: 10%;
      top: 18%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,203,92,.35), rgba(245,203,92,.06) 54%, transparent 70%);
      filter: blur(2px);
      z-index: -1;
    }
    @keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.11); } }
    .hero-content { padding-top: 150px; padding-bottom: 90px; max-width: 790px; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(13,95,60,.12);
      backdrop-filter: blur(18px);
      color: var(--green);
      font-size: 12px;
      letter-spacing: .13em;
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 26px;
      opacity: 0;
      transform: translateY(22px);
      animation: revealUp .9s var(--ease) .2s forwards;
    }
    .hero h1 {
      font-size: clamp(52px, 9vw, 116px);
      line-height: .86;
      letter-spacing: -0.075em;
      font-weight: 900;
      max-width: 980px;
      opacity: 0;
      transform: translateY(30px);
      animation: revealUp 1.1s var(--ease) .38s forwards;
    }
    .hero h1 em {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-style: italic;
      color: var(--green);
      letter-spacing: -.045em;
    }
    .hero p {
      margin-top: 28px;
      color: rgba(21,31,26,.72);
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.75;
      max-width: 650px;
      opacity: 0;
      transform: translateY(30px);
      animation: revealUp 1.1s var(--ease) .56s forwards;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
      opacity: 0;
      transform: translateY(30px);
      animation: revealUp 1.1s var(--ease) .74s forwards;
    }
    .hero-badges {
      position: absolute;
      right: min(7vw, 90px);
      bottom: 70px;
      display: grid;
      gap: 12px;
    }
    .hero-badge {
      width: 260px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,.58);
      border: 1px solid rgba(255,255,255,.72);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0,0,0,.08);
    }
    .hero-badge strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: var(--deep-green);
      letter-spacing: -.05em;
    }
    .hero-badge span {
      display: block;
      margin-top: 8px;
      color: rgba(21,31,26,.68);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.45;
    }
    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 26px;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .2em;
      font-weight: 900;
      color: rgba(6,61,42,.55);
    }
    .scroll-indicator i {
      width: 1px;
      height: 44px;
      background: linear-gradient(var(--green), transparent);
      display: block;
      animation: lineDrop 1.8s infinite ease;
    }
    @keyframes lineDrop {
      0% { transform: scaleY(.35); transform-origin: top; opacity: .3; }
      50% { transform: scaleY(1); opacity: 1; }
      100% { transform: scaleY(.35); transform-origin: bottom; opacity: .3; }
    }
    @keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

    /* Common icon styles */
    .icon-orb {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(13,95,60,.12), rgba(199,167,93,.12));
      border: 1px solid rgba(13,95,60,.12);
      color: var(--green);
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
    }
    .icon-orb svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Trust Strip */
    .trust-strip {
      background: var(--white);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 22px 0;
      overflow: hidden;
    }
    .trust-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 18px;
      align-items: center;
    }
    .trust-item {
      text-align: center;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(6,61,42,.78);
      padding: 14px 10px;
      border-right: 1px solid rgba(13,95,60,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }
    .trust-item:last-child { border-right: 0; }
    .mini-icon {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      background: var(--mint);
      color: var(--green);
      display: grid;
      place-items: center;
      font-size: 14px;
      line-height: 1;
      flex: 0 0 auto;
    }

    /* About */
    .about-preview {
      background:
        radial-gradient(circle at 15% 20%, rgba(13,95,60,.07), transparent 32%),
        var(--off-white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      gap: 60px;
      align-items: center;
    }
    .about-text .quote {
      margin-top: 38px;
      padding-left: 24px;
      border-left: 3px solid var(--green);
      color: var(--deep-green);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.04;
      letter-spacing: -.035em;
    }
    .image-collage {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 18px;
      height: 600px;
    }
    .collage-card {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--mint);
    }
    .collage-card img { height: 100%; transition: transform 1.2s var(--ease); }
    .collage-card:hover img { transform: scale(1.07); }
    .collage-card.small { height: 285px; }
    .collage-stack { display: grid; gap: 18px; align-content: center; }
    .floating-stat {
      position: absolute;
      left: 22px;
      bottom: 22px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.76);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.7);
      max-width: 230px;
    }
    .floating-stat strong {
      font-size: 34px;
      color: var(--green);
      letter-spacing: -.07em;
      display: block;
    }
    .floating-stat span {
      font-size: 12px;
      color: rgba(21,31,26,.68);
      font-weight: 700;
      line-height: 1.4;
    }

    /* Company Foundation */
    .about-deep { background: var(--white); overflow: hidden; }
    .story-panel {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 26px;
      align-items: stretch;
      margin-top: 54px;
    }
    .story-quote-card {
      border-radius: 38px;
      padding: 42px;
      background: linear-gradient(135deg, var(--deep-green), var(--green));
      color: white;
      min-height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      position: relative;
    }
    .story-quote-card::after {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,167,93,.24), transparent 68%);
      right: -90px;
      top: -90px;
    }
    .story-quote-card h3 {
      position: relative;
      z-index: 2;
      font-size: clamp(38px, 5vw, 68px);
      line-height: .9;
      letter-spacing: -.06em;
      max-width: 520px;
    }
    .story-quote-card p {
      position: relative;
      z-index: 2;
      color: rgba(255,255,255,.76);
      line-height: 1.7;
      max-width: 450px;
    }
    .mission-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .mission-card, .cert-card, .blog-card, .contact-card {
      border-radius: 30px;
      background: var(--off-white);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: 0 16px 55px rgba(13,95,60,.06);
      transition: transform .65s var(--ease), box-shadow .65s var(--ease);
    }
    .mission-card:hover, .cert-card:hover, .blog-card:hover, .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 80px rgba(13,95,60,.12);
    }
    .mission-card { padding: 30px; min-height: 220px; }
    .mission-top, .contact-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }
    .mission-card small, .cert-card small, .blog-card small, .contact-card small {
      display: block;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .17em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .mission-top small, .contact-top small { margin-bottom: 0; }
    .mission-card h3, .blog-card h3, .contact-card h3 {
      font-size: 30px;
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 14px;
    }
    .mission-card p, .blog-card p, .contact-card p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }
    .cert-wall {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .cert-card {
      padding: 26px;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .cert-card h4 {
      font-size: 24px;
      color: var(--deep-green);
      letter-spacing: -.04em;
    }

    /* Manufacturing */
    .manufacturing {
      background: linear-gradient(180deg, var(--white), var(--off-white));
      color: var(--charcoal);
      overflow: hidden;
    }
    .manufacturing::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 10%, rgba(13,95,60,.08), transparent 34%),
        radial-gradient(circle at 90% 40%, rgba(199,167,93,.10), transparent 34%);
      pointer-events: none;
    }
    .manu-showcase {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: stretch;
    }
    .manu-hero-visual {
      min-height: 680px;
      border-radius: 42px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
      background: var(--mint);
    }
    .manu-hero-visual img {
      position: absolute;
      inset: 0;
      height: 100%;
      transition: transform 1.2s var(--ease);
    }
    .manu-hero-visual:hover img { transform: scale(1.05); }
    .manu-hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(6,61,42,.82));
    }
    .manu-hero-content {
      position: absolute;
      z-index: 2;
      left: 40px;
      right: 40px;
      bottom: 40px;
      color: white;
    }
    .manu-hero-content small {
      display: block;
      color: #b7f0cf;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .17em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .manu-hero-content h3 {
      font-size: clamp(40px, 5vw, 72px);
      line-height: .9;
      letter-spacing: -.065em;
      max-width: 640px;
      margin-bottom: 18px;
    }
    .manu-hero-content p {
      max-width: 520px;
      color: rgba(255,255,255,.78);
      line-height: 1.65;
    }
    .manu-process-grid {
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      gap: 18px;
    }
    .manu-process-card {
      border-radius: 30px;
      padding: 30px;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: 0 16px 55px rgba(13,95,60,.07);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 20px;
      align-items: start;
      transition: transform .65s var(--ease), box-shadow .65s var(--ease);
    }
    .manu-process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 80px rgba(13,95,60,.13);
    }
    .process-no {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--mint);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
      letter-spacing: -.04em;
    }
    .manu-process-card small {
      display: block;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .manu-process-card h3 {
      font-size: 30px;
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 12px;
    }
    .manu-process-card p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }

    /* Solutions */
    .services { background: var(--cream); overflow: hidden; }
    .solutions-ecosystem {
      position: relative;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 36px;
      align-items: center;
    }
    .ecosystem-center-card {
      min-height: 620px;
      border-radius: 42px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
      background: var(--deep-green);
    }
    .ecosystem-center-card img {
      position: absolute;
      inset: 0;
      height: 100%;
      opacity: .84;
    }
    .ecosystem-center-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,61,42,.1), rgba(6,61,42,.88));
    }
    .ecosystem-center-content {
      position: absolute;
      left: 36px;
      right: 36px;
      bottom: 36px;
      z-index: 2;
      color: white;
    }
    .ecosystem-center-content small {
      display: block;
      color: #b7f0cf;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .ecosystem-center-content h3 {
      font-size: clamp(40px, 5vw, 72px);
      line-height: .9;
      letter-spacing: -.065em;
      margin-bottom: 18px;
    }
    .ecosystem-center-content p {
      color: rgba(255,255,255,.78);
      line-height: 1.65;
      max-width: 530px;
    }
    .ecosystem-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .ecosystem-item {
      min-height: 200px;
      border-radius: 28px;
      padding: 24px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: 0 16px 55px rgba(13,95,60,.06);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .65s var(--ease), box-shadow .65s var(--ease), background .65s var(--ease);
    }
    .ecosystem-item:hover {
      transform: translateY(-6px);
      background: var(--white);
      box-shadow: 0 28px 80px rgba(13,95,60,.13);
    }
    .solution-media {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 22px;
    }
    .ecosystem-item .tag {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background: var(--mint);
      color: var(--green);
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 900;
    }
    .solution-thumb {
      width: 82px;
      height: 62px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(13,95,60,.10);
      box-shadow: 0 12px 30px rgba(13,95,60,.10);
      background: var(--mint);
      flex: 0 0 auto;
    }
    .solution-thumb img { height: 100%; transition: transform .7s var(--ease); }
    .ecosystem-item:hover .solution-thumb img { transform: scale(1.08); }
    .ecosystem-item h3 {
      font-size: 27px;
      line-height: 1;
      letter-spacing: -.055em;
      margin-bottom: 10px;
    }
    .ecosystem-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }

    /* Products */
    .products { background: var(--white); overflow: hidden; }
    .technical-products {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 24px;
      align-items: stretch;
    }
    .tech-product-left {
      border-radius: 40px;
      padding: 36px;
      background:
        radial-gradient(circle at 20% 10%, rgba(13,95,60,.12), transparent 34%),
        var(--off-white);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 620px;
    }
    .tech-product-left small {
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .tech-product-left h3 {
      font-size: clamp(42px, 5vw, 74px);
      line-height: .88;
      letter-spacing: -.07em;
      margin-top: 18px;
      max-width: 500px;
    }
    .tech-product-left p {
      color: var(--muted);
      line-height: 1.7;
      margin-top: 22px;
      max-width: 460px;
    }
    .tech-product-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 34px;
    }
    .tech-product-stat {
      padding: 18px;
      border-radius: 22px;
      background: var(--white);
      border: 1px solid rgba(13,95,60,.08);
    }
    .tech-product-stat strong {
      display: block;
      color: var(--green);
      font-size: 25px;
      letter-spacing: -.05em;
      margin-bottom: 6px;
    }
    .product-name {
      display: block;
      color: var(--deep-green);
      font-size: 15px;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin-bottom: 7px;
    }
    .tech-product-stat span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
    }
    .tech-product-visual {
      border-radius: 40px;
      overflow: hidden;
      min-height: 620px;
      position: relative;
      box-shadow: var(--shadow);
      background: var(--mint);
    }
    .tech-product-visual img {
      position: absolute;
      inset: 0;
      height: 100%;
    }
    .tech-product-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(6,61,42,.76));
    }
    .product-node-grid {
      position: absolute;
      z-index: 2;
      left: 28px;
      right: 28px;
      bottom: 28px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .product-node {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(255,255,255,.72);
      backdrop-filter: blur(16px);
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 14px;
      align-items: center;
    }
    .product-node-img {
      width: 74px;
      height: 68px;
      border-radius: 16px;
      overflow: hidden;
      background: var(--mint);
    }
    .product-node-img img { height: 100%; transition: transform .7s var(--ease); }
    .product-node:hover .product-node-img img { transform: scale(1.08); }
    .product-node small {
      display: block;
      color: var(--green);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .product-node h4 { font-size: 20px; line-height: 1; letter-spacing: -.04em; }

    /* Stats */
    .stats-section {
      background:
        linear-gradient(135deg, rgba(13,95,60,.9), rgba(6,61,42,.96)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=85') center/cover;
      color: var(--white);
      text-align: center;
    }
    .stats-section .section-title { margin: 0 auto; color: white; }
    .stats-section .section-copy {
      margin-left: auto;
      margin-right: auto;
      color: rgba(255,255,255,.76);
    }
    .stats-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .stat-card {
      padding: 34px 22px;
      border-radius: 28px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(16px);
    }
    .stat-card h3 {
      font-size: clamp(38px, 5vw, 66px);
      line-height: .9;
      letter-spacing: -.075em;
    }
    .stat-card p {
      margin-top: 14px;
      color: rgba(255,255,255,.76);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .11em;
    }

    /* Franchise */
    .franchise { background: #0b1712; color: white; overflow: hidden; }
    .franchise::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(199,167,93,.12), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(21,122,79,.32), transparent 32%);
      pointer-events: none;
    }
    .franchise .container { position: relative; z-index: 2; }
    .franchise .eyebrow, .franchise .section-title span { color: #b7f0cf; }
    .franchise .eyebrow::before { background: #b7f0cf; }
    .franchise .section-copy { color: rgba(255,255,255,.72); }
    .section-head-split {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 52px;
    }
    .plans-grid {
      margin-top: 58px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .plan-card {
      min-height: 415px;
      padding: 28px;
      border-radius: 32px;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.13);
      backdrop-filter: blur(18px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all .65s var(--ease);
    }
    .plan-card.featured {
      background: rgba(255,255,255,.12);
      border-color: rgba(183,240,207,.5);
      transform: translateY(-18px);
    }
    .plan-card:hover {
      transform: translateY(-12px);
      border-color: rgba(183,240,207,.55);
      background: rgba(255,255,255,.12);
    }
    .plan-card.featured:hover { transform: translateY(-24px); }
    .plan-card small {
      color: #b7f0cf;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .plan-card h3 {
      margin-top: 18px;
      font-size: 36px;
      line-height: .95;
      letter-spacing: -.06em;
    }
    .plan-card p {
      margin-top: 18px;
      color: rgba(255,255,255,.72);
      line-height: 1.6;
      font-size: 14px;
    }
    .plan-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }
    .plan-card li {
      color: rgba(255,255,255,.84);
      font-size: 13px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .plan-card li::before { content: '✓'; color: #b7f0cf; font-weight: 900; }

    /* Media */
    .media-section {
      background: var(--white);
      padding: 70px 0;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .media-title {
      text-align: center;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: var(--muted);
      font-weight: 900;
      margin-bottom: 30px;
    }
    .logo-marquee {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    }
    .logo-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: marquee 24s linear infinite;
    }
    .logo-pill {
      min-width: 190px;
      height: 76px;
      border-radius: 20px;
      background: var(--off-white);
      border: 1px solid rgba(13,95,60,.08);
      display: grid;
      place-items: center;
      color: rgba(6,61,42,.6);
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-size: 12px;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* Calculator */
    .calculator {
      background:
        radial-gradient(circle at top right, rgba(199,167,93,.17), transparent 34%),
        radial-gradient(circle at left, rgba(13,95,60,.08), transparent 35%),
        var(--cream);
    }
    .calc-panel {
      margin-top: 54px;
      border-radius: 38px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
      padding: 34px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: stretch;
    }
    .calc-form {
      background: var(--white);
      border-radius: 28px;
      padding: 28px;
      border: 1px solid rgba(13,95,60,.08);
    }
    .calc-helper-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .calc-helper-note {
      margin-top: 0;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }
    .form-row { display: grid; gap: 10px; margin-bottom: 18px; }
    .form-row label {
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--deep-green);
    }
    .form-row input, .form-row select {
      width: 100%;
      border: 1px solid rgba(13,95,60,.14);
      background: var(--off-white);
      border-radius: 16px;
      padding: 16px 15px;
      outline: none;
      color: var(--charcoal);
      font-size: 15px;
    }
    .calc-result {
      border-radius: 28px;
      padding: 30px;
      background:
        linear-gradient(135deg, rgba(13,95,60,.93), rgba(6,61,42,.95)),
        url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1000&q=85') center/cover;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 360px;
    }
    .calc-result small {
      color: #b7f0cf;
      font-size: 12px;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 900;
    }
    .calc-result h3 {
      margin-top: 18px;
      font-size: clamp(50px, 7vw, 86px);
      line-height: .85;
      letter-spacing: -.08em;
    }
    .calc-result p {
      color: rgba(255,255,255,.76);
      line-height: 1.65;
      margin-top: 18px;
    }

    /* FAQ */
    .faq { background: var(--off-white); }
    .faq-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: start;
    }
    .accordion { display: grid; gap: 14px; }
    .faq-item {
      background: var(--white);
      border: 1px solid rgba(13,95,60,.1);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(13,95,60,.05);
    }
    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 22px 24px;
      text-align: left;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      cursor: pointer;
      color: var(--charcoal);
      font-size: 16px;
      font-weight: 800;
    }
    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--mint);
      color: var(--green);
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      transition: transform .35s ease;
    }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
    .faq-answer p { padding: 0 24px 24px; color: var(--muted); line-height: 1.7; font-size: 15px; }
    .faq-item.active .faq-answer { max-height: 190px; }
    .faq-item.active .faq-question span:last-child { transform: rotate(45deg); }

    /* Blogs */
    .blogs-section { background: var(--cream); }
    .blogs-grid {
      margin-top: 54px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 20px;
    }
    .blog-featured {
      min-height: 560px;
      border-radius: 38px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }
    .blog-featured img { position: absolute; inset: 0; height: 100%; }
    .blog-featured::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
    }
    .blog-featured .blog-card-content {
      position: absolute;
      z-index: 2;
      left: 34px;
      right: 34px;
      bottom: 34px;
      color: white;
    }
    .blog-featured small {
      color: #b7f0cf;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .17em;
      text-transform: uppercase;
    }
    .blog-featured h3 {
      margin-top: 16px;
      font-size: clamp(34px, 4vw, 58px);
      line-height: .92;
      letter-spacing: -.06em;
      max-width: 620px;
    }
    .blog-list { display: grid; gap: 16px; }
    .blog-card { padding: 26px; min-height: 176px; background: var(--white); }

    /* Contact */
    .contact-hub { background: var(--off-white); }
    .contact-layout {
      margin-top: 54px;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }
    .office-card {
      min-height: 640px;
      border-radius: 40px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }
    .office-card img { position: absolute; inset: 0; height: 100%; }
    .office-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(6,61,42,.86));
    }
    .office-info {
      position: absolute;
      z-index: 2;
      left: 34px;
      right: 34px;
      bottom: 34px;
      color: white;
    }
    .office-info h3 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: .92;
      letter-spacing: -.06em;
      margin-bottom: 16px;
    }
    .office-info p { color: rgba(255,255,255,.76); line-height: 1.65; }
    .contact-right { display: grid; gap: 16px; }
    .contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .contact-card { padding: 26px; background: var(--white); min-height: 160px; }
    .contact-form {
      padding: 28px;
      border-radius: 32px;
      background: var(--white);
      border: 1px solid rgba(13,95,60,.1);
      box-shadow: 0 16px 55px rgba(13,95,60,.06);
    }
    .contact-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .contact-form .form-row.full { grid-column: 1 / -1; }
    .contact-form textarea {
      width: 100%;
      min-height: 118px;
      resize: vertical;
      border: 1px solid rgba(13,95,60,.14);
      background: var(--off-white);
      border-radius: 16px;
      padding: 16px 15px;
      outline: none;
      color: var(--charcoal);
      font-size: 15px;
      font-family: inherit;
    }
    .map-placeholder {
      min-height: 210px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(13,95,60,.92), rgba(6,61,42,.96)),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,.18), transparent 28%);
      color: white;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 26px;
    }
    .map-placeholder h3 { font-size: 30px; letter-spacing: -.05em; margin-bottom: 8px; }
    .map-placeholder p { color: rgba(255,255,255,.76); line-height: 1.6; }

    /* CTA */
    .final-cta {
      padding: 120px 0;
      color: white;
      background:
        linear-gradient(90deg, rgba(6,61,42,.95), rgba(6,61,42,.58)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=90') center/cover;
      position: relative;
      overflow: hidden;
    }
    .final-cta h2 {
      font-size: clamp(44px, 8vw, 96px);
      line-height: .9;
      letter-spacing: -.065em;
      max-width: 920px;
    }
    .final-cta h2 em {
      color: #b7f0cf;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 600;
    }
    .final-cta p {
      max-width: 590px;
      color: rgba(255,255,255,.76);
      line-height: 1.75;
      margin-top: 24px;
      font-size: 18px;
    }
    .final-cta .hero-actions { opacity: 1; transform: none; animation: none; }

    /* Footer */
    .footer {
      background: var(--off-white);
      border-top: 1px solid var(--line);
      padding: 70px 0 30px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
    .footer-brand p {
      margin-top: 20px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 390px;
    }
    .footer-col h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: var(--deep-green);
      margin-bottom: 18px;
    }
    .footer-col a, .footer-col p {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 12px;
      line-height: 1.6;
    }
    .footer-bottom {
      margin-top: 54px;
      padding-top: 24px;
      border-top: 1px solid rgba(13,95,60,.1);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: var(--muted);
      font-size: 13px;
    }

    /* AI Assistant */
    .ai-widget { position: fixed; right: 24px; bottom: 24px; z-index: 850; }
    .ai-button {
      width: 64px;
      height: 64px;
      border: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--deep-green));
      color: white;
      box-shadow: 0 18px 50px rgba(13,95,60,.32);
      cursor: pointer;
      display: grid;
      place-items: center;
      font-size: 24px;
      transition: transform .45s var(--ease);
    }
    .ai-button:hover { transform: translateY(-4px) scale(1.03); }
    .ai-panel {
      position: absolute;
      right: 0;
      bottom: 78px;
      width: min(360px, calc(100vw - 44px));
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(13,95,60,.12);
      backdrop-filter: blur(22px);
      border-radius: 28px;
      box-shadow: 0 25px 90px rgba(0,0,0,.16);
      overflow: hidden;
      transform: translateY(15px) scale(.96);
      opacity: 0;
      visibility: hidden;
      transition: all .45s var(--ease);
    }
    .ai-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .ai-head { padding: 22px; background: linear-gradient(135deg, var(--green), var(--deep-green)); color: white; }
    .ai-head h4 { font-size: 18px; margin-bottom: 6px; }
    .ai-head p { color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
    .ai-body { padding: 20px; display: grid; gap: 10px; }
    .ai-chip {
      border: 1px solid rgba(13,95,60,.12);
      background: var(--off-white);
      color: var(--deep-green);
      border-radius: 16px;
      padding: 12px 14px;
      text-align: left;
      cursor: pointer;
      font-weight: 800;
      font-size: 13px;
      transition: all .3s ease;
    }
    .ai-chip:hover { background: var(--mint); border-color: rgba(13,95,60,.3); }

    /* Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 1100px) {
      .nav-links, .nav-actions .btn-outline { display: none; }
      .menu-toggle { display: grid; place-items: center; }
      .hero-badges { position: static; grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
      .hero-badge { width: auto; }
      .about-grid, .story-panel, .manu-showcase, .solutions-ecosystem, .technical-products, .blogs-grid, .contact-layout, .calc-panel, .faq-wrap {
        grid-template-columns: 1fr;
      }
      .stats-grid, .plans-grid, .cert-wall, .contact-cards { grid-template-columns: repeat(2, 1fr); }
      .plan-card.featured { transform: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 720px) {
      .section { padding: 78px 0; }
      .container { width: min(100% - 28px, 1180px); }
      .navbar { padding: 12px 0; }
      .brand-text { display: none; }
      .brand-logo { width: 54px; height: 54px; }
      .loader-logo { width: 120px; height: 120px; }
      .hero { min-height: auto; }
      .hero-content { padding-top: 128px; padding-bottom: 60px; }
      .hero-overlay {
        background:
          linear-gradient(180deg, rgba(251,250,246,.95) 0%, rgba(251,250,246,.84) 48%, rgba(251,250,246,.42) 100%),
          linear-gradient(180deg, rgba(251,250,246,.2), rgba(6,61,42,.18));
      }
      .hero-actions, .section-head-split, .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-actions .btn { width: 100%; }
      .hero-badges, .mission-grid, .stats-grid, .plans-grid, .cert-wall, .contact-cards, .contact-form-grid, .trust-row, .footer-grid, .tech-product-stats, .calc-helper-grid {
        grid-template-columns: 1fr;
      }
      .trust-item { border-right: 0; border-bottom: 1px solid rgba(13,95,60,.08); }
      .trust-item:last-child { border-bottom: 0; }
      .image-collage { height: auto; grid-template-columns: 1fr; }
      .collage-card, .collage-card.small { height: 360px; }
      .manu-hero-visual, .ecosystem-center-card, .tech-product-left, .tech-product-visual, .office-card { min-height: 500px; }
      .manu-process-grid, .ecosystem-list, .product-node-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .product-node-grid { position: relative; left: auto; right: auto; bottom: auto; padding: 20px; }
      .tech-product-visual { display: grid; align-content: end; }
      .calc-panel { padding: 16px; border-radius: 28px; }
      .ai-widget { right: 16px; bottom: 16px; }
    }
  
    /* === Mobile Premium Fixes v2 === */
    .mobile-menu-panel{position:fixed;inset:84px 14px auto 14px;z-index:899;background:rgba(255,255,255,.94);border:1px solid rgba(13,95,60,.12);border-radius:26px;box-shadow:0 28px 90px rgba(0,0,0,.16);backdrop-filter:blur(24px);padding:14px;display:none;transform:translateY(-12px);opacity:0;transition:all .35s var(--ease)}
    .mobile-menu-panel.open{display:block;transform:translateY(0);opacity:1}
    .mobile-menu-panel a{display:flex;align-items:center;justify-content:space-between;padding:15px 16px;border-radius:16px;color:var(--deep-green);font-size:14px;font-weight:800;border-bottom:1px solid rgba(13,95,60,.06)}
    .mobile-menu-panel a:after{content:'→';opacity:.55}
    .mobile-menu-panel a:last-child{border-bottom:0;background:var(--green);color:white;margin-top:8px;justify-content:center}
    .mobile-menu-panel a:last-child:after{display:none}
    .mobile-quick-cta{display:none}

    @media (max-width:720px){
      .container{width:min(100% - 30px,1180px)}
      .navbar{padding:10px 0}.navbar.scrolled{padding:8px 0}
      .nav-wrap{width:min(100% - 24px,1240px);padding:6px 8px 6px 10px;background:rgba(255,255,255,.78);border:1px solid rgba(13,95,60,.10);border-radius:999px;backdrop-filter:blur(22px);box-shadow:0 14px 50px rgba(13,95,60,.10)}
      .brand-logo{width:46px!important;height:46px!important}.menu-toggle{width:42px;height:42px;font-size:18px}.mobile-menu-panel{inset:78px 14px auto 14px}
      .section{padding:56px 0}.editorial-head{margin-bottom:32px}
      .eyebrow{font-size:10px;letter-spacing:.13em;margin-bottom:14px}.eyebrow:before{width:26px}
      .section-title{font-size:37px;line-height:.98;letter-spacing:-.045em;max-width:100%}
      .section-copy{font-size:14.5px;line-height:1.65;margin-top:16px}
      .hero{min-height:100svh;align-items:flex-start}.hero-bg img{object-position:62% center}
      .hero-overlay{background:linear-gradient(180deg,rgba(251,250,246,.96) 0%,rgba(251,250,246,.88) 44%,rgba(251,250,246,.48) 100%),linear-gradient(180deg,rgba(251,250,246,.1),rgba(6,61,42,.22))}
      .hero-content{padding-top:120px;padding-bottom:30px;max-width:100%}
      .hero-kicker{font-size:10px;letter-spacing:.10em;padding:8px 12px;margin-bottom:18px;line-height:1.3}
      .hero h1{font-size:clamp(42px,13vw,58px);line-height:.88;letter-spacing:-.065em;max-width:96%}
      .hero p{margin-top:18px;font-size:15.5px;line-height:1.6;max-width:95%}
      .hero-actions{margin-top:24px;gap:10px}.hero-actions .btn{width:100%;padding:14px 18px;font-size:13px}.hero-actions .btn-light{display:none}
      .hero-badges{display:flex;overflow-x:auto;gap:10px;margin-top:22px;padding-bottom:8px;scroll-snap-type:x mandatory}.hero-badge{min-width:76%;padding:16px;border-radius:20px;scroll-snap-align:start}.hero-badge strong{font-size:22px}.scroll-indicator{display:none}
      .trust-strip{padding:14px 0}.trust-row{display:flex;overflow-x:auto;gap:10px;scroll-snap-type:x mandatory;padding-bottom:6px}.trust-item{min-width:max-content;border:1px solid rgba(13,95,60,.08);border-radius:999px;background:white;padding:10px 14px;letter-spacing:.06em;font-size:10.5px;scroll-snap-align:start}.trust-item .mini-icon{width:24px;height:24px;border-radius:9px}
      .about-grid,.story-panel,.manu-showcase,.solutions-ecosystem,.technical-products,.blogs-grid,.contact-layout,.calc-panel,.faq-wrap{grid-template-columns:1fr!important;gap:26px}
      .image-collage{grid-template-columns:1fr;height:auto;gap:14px}.collage-card,.collage-card.small{height:330px;border-radius:26px}.collage-stack{grid-template-columns:1fr 1fr}.collage-stack .collage-card.small{height:190px}
      .story-quote-card{min-height:380px;padding:28px;border-radius:28px}.story-quote-card h3{font-size:38px;line-height:.94}
      .mission-grid,.cert-wall{grid-template-columns:1fr!important;gap:12px}.mission-card,.cert-card{padding:22px;min-height:auto;border-radius:22px}.mission-card h3{font-size:25px}.cert-card{flex-direction:row;align-items:center}.cert-card small{margin-bottom:0}
      .manu-hero-visual,.ecosystem-center-card,.tech-product-left,.tech-product-visual,.office-card,.blog-featured{min-height:420px;border-radius:28px}
      .manu-hero-content,.ecosystem-center-content,.office-info,.blog-featured .blog-card-content{left:22px;right:22px;bottom:22px}.manu-hero-content h3,.ecosystem-center-content h3,.office-info h3,.blog-featured h3{font-size:34px;line-height:.94}
      .manu-process-grid{grid-template-rows:auto;gap:12px}.manu-process-card{padding:20px;border-radius:22px;grid-template-columns:48px 1fr;gap:14px}.process-no{width:48px;height:48px;border-radius:15px}.manu-process-card h3{font-size:24px}
      .ecosystem-list,.plans-grid{display:flex!important;overflow-x:auto;gap:14px;scroll-snap-type:x mandatory;padding:2px 2px 12px}.ecosystem-item,.plan-card{min-width:84%;scroll-snap-align:start}.ecosystem-item{min-height:210px;padding:20px;border-radius:22px}.ecosystem-item h3{font-size:24px}.solution-thumb{width:88px;height:66px;border-radius:16px}
      .tech-product-left{padding:24px;min-height:auto;border-radius:28px}.tech-product-left h3{font-size:38px;line-height:.92}.tech-product-stats{grid-template-columns:1fr!important;gap:10px;margin-top:24px}.tech-product-stat{padding:16px;border-radius:18px}
      .tech-product-visual{min-height:auto;display:block;background:transparent;box-shadow:none;border-radius:0;overflow:visible}.tech-product-visual>img{position:relative;height:310px;border-radius:28px;box-shadow:var(--shadow)}.tech-product-visual:after{display:none}.product-node-grid{position:relative;left:auto;right:auto;bottom:auto;grid-template-columns:1fr!important;gap:10px;margin-top:14px}.product-node{background:white;border:1px solid rgba(13,95,60,.10);box-shadow:0 14px 45px rgba(13,95,60,.07)}
      .stats-grid{grid-template-columns:repeat(2,1fr)!important;gap:12px;margin-top:34px}.stat-card{padding:24px 14px;border-radius:22px}.stat-card h3{font-size:38px}.stat-card p{font-size:10px;letter-spacing:.08em}
      .plan-card{min-height:360px;border-radius:26px}.plan-card.featured{transform:none;order:-1}
      .calc-panel{padding:14px;border-radius:24px;margin-top:34px}.calc-form{padding:20px;border-radius:22px}.calc-helper-grid,.contact-form-grid,.contact-cards{grid-template-columns:1fr!important}.calc-helper-note{margin-top:0;margin-bottom:16px}.calc-result{min-height:320px;border-radius:22px}
      .faq-question{padding:18px;font-size:14px}.blog-card{padding:20px;min-height:auto;border-radius:22px}
      .contact-layout{display:flex;flex-direction:column}.contact-right{order:1}.office-card{order:2;min-height:380px}.contact-card{padding:20px;min-height:auto;border-radius:22px}.contact-card h3{font-size:24px;overflow-wrap:anywhere}.contact-form{padding:20px;border-radius:24px}.map-placeholder{min-height:170px;border-radius:22px}
      .final-cta{padding:72px 0}.final-cta h2{font-size:42px;line-height:.92}.final-cta p{font-size:15px}
      .footer{padding:46px 0 26px}.footer-grid{grid-template-columns:1fr!important;gap:24px}.footer-bottom{flex-direction:column;align-items:flex-start;margin-top:30px}
      .ai-button{width:56px;height:56px}.ai-panel{bottom:68px}.mobile-quick-cta{display:grid;position:fixed;left:14px;right:84px;bottom:16px;z-index:840}.mobile-quick-cta .btn{width:100%;padding:14px 16px;box-shadow:0 18px 50px rgba(13,95,60,.28)}
    }
    @media (max-width:380px){.hero h1{font-size:39px}.section-title{font-size:34px}.hero-badge,.ecosystem-item,.plan-card{min-width:88%}}