    /* ─── RESET ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ─── BRAND TOKENS ───────────────────────────────────── */
    :root {
      --ink:        #0E0F14;
      --ink2:       #13141B;
      --deep-ink:   #03241D;
      --emerald:    #10967A;
      --mint:       #2FCBA4;
      --bone:       #F5F3EC;
      --bone2:      #ECEAE2;
      --slate:      #6B6A66;
      --body-text:  #44443F;
      --muted:      #9A9993;
      --white:      #FFFFFF;
      --max-w:      1160px;
    }

    /* ─── BASE ───────────────────────────────────────────── */
    body {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      background: var(--bone);
      color: var(--body-text);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    h1,h2,h3,h4 { font-weight: 600; line-height: 1.2; color: var(--ink); }
    p { color: var(--body-text); }

    /* ─── CONTAINER ──────────────────────────────────────── */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── NAV ────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(245,243,236,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(14,15,20,.08);
    }
    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav-logo img { height: 25px; width: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--slate);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--emerald); }
    .nav-cta { background: var(--emerald); color: var(--bone) !important; padding: 9px 20px; border-radius: 6px; font-weight: 600; font-size: 0.88rem; line-height: 1; transition: background .2s, transform .15s; white-space: nowrap; display: inline-flex; align-items: center; }

    /* ── NAV DROPDOWN ── */
    .nav-links > li { position: relative; }
    .nav-links > li > a { font-size: 0.88rem; font-weight: 500; color: var(--slate); transition: color .2s; display: flex; align-items: center; gap: 5px; padding: 8px 0; }
    .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--emerald); }
    .nav-links > li > a svg.chevron { width: 16px; height: 16px; fill: currentColor; transition: transform .2s; flex-shrink: 0; opacity: 0.7; }
    .nav-links > li:hover > a svg.chevron { transform: rotate(180deg); opacity: 1; }
    .dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; background: var(--white); border: 1px solid rgba(14,15,20,.08); border-radius: 10px; box-shadow: 0 12px 32px rgba(14,15,20,.1); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 200; }
    .nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown a { display: block; padding: 9px 14px; font-size: 0.83rem; color: var(--slate); border-radius: 6px; transition: background .15s, color .15s; font-weight: 400; }
    .dropdown a:hover { background: rgba(16,150,122,.07); color: var(--emerald); }
    /* Sub-menu (nested dropdown) */
    .dropdown-item-sub { position: relative; }
    .dropdown-item-sub > a { display: flex; align-items: center; justify-content: space-between; }
    .dropdown-item-sub > a svg.sub-chevron { width: 14px; height: 14px; fill: currentColor; opacity: 0.5; transform: rotate(-90deg); flex-shrink: 0; }
    .sub-dropdown { position: absolute; top: 0; left: calc(100% + 4px); min-width: 240px; background: var(--white); border: 1px solid rgba(14,15,20,.08); border-radius: 10px; box-shadow: 0 12px 32px rgba(14,15,20,.1); padding: 8px; opacity: 0; visibility: hidden; transform: translateX(-6px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 201; }
    .dropdown-item-sub:hover .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
    .nav-cta:hover { background: var(--ink) !important; transform: translateY(-1px); color: var(--bone) !important; }
    /* ── NAV CTA BUTTON OVERRIDE (must come after generic link rules) ── */
    .nav-links > li > a.nav-cta,
    .nav-links > li > a.nav-cta.active {
      padding: 10px 24px;
      background: var(--emerald);
      color: var(--bone) !important;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.88rem;
      line-height: 1.4;
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      transition: background .2s, transform .15s;
    }
    .nav-links > li > a.nav-cta:hover,
    .nav-links > li > a.nav-cta.active:hover {
      background: var(--ink) !important;
      color: var(--bone) !important;
      transform: translateY(-1px);
    }

    /* ─── SECTION WRAPPER ────────────────────────────────── */
    .section { padding: 96px 0; }

    /* ─── EYEBROW ────────────────────────────────────────── */
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 14px;
    }

    /* ─── SECTION HEADING ────────────────────────────────── */
    .sh { font-size: clamp(1.8rem, 3vw, 2.4rem); text-align: center; color: var(--ink); }
    .sh-sub { text-align: center; color: var(--slate); max-width: 580px; margin: 0 auto; font-size: 0.95rem; }

    /* ─── BUTTONS ────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all .2s;
      cursor: pointer;
    }
    .btn--emerald { background: var(--emerald); color: var(--bone); }
    .btn--emerald:hover { background: #0B7A63; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(16,150,122,.35); }
    .btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(14,15,20,.2); }
    .btn--ghost:hover { border-color: var(--emerald); color: var(--emerald); }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      background: var(--ink);
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(16,150,122,.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
      min-height: 580px;
    }
    .hero-left { padding: 96px 0; }
    .hero-proposition {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mint);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-proposition::before {
      content: '';
      display: block;
      width: 28px;
      height: 1.5px;
      background: var(--mint);
      flex-shrink: 0;
    }
    .hero-left h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--bone);
      margin-bottom: 22px;
    }
    .hero-left h1 em {
      font-style: normal;
      color: var(--mint);
    }
    .hero-left p {
      font-size: 1.05rem;
      color: rgba(245,243,236,.6);
      max-width: 480px;
      margin-bottom: 36px;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-trust {
      display: flex;
      gap: 28px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(245,243,236,.1);
    }
    .hero-trust-item {
      font-size: 0.8rem;
      color: rgba(245,243,236,.4);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .hero-trust-item::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--mint);
      flex-shrink: 0;
    }
    .hero-panel {
      background: rgba(245,243,236,.06);
      border: 1px solid rgba(47,203,164,.15);
      border-radius: 16px;
      padding: 40px 36px;
    }
    .hero-panel-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mint);
      margin-bottom: 28px;
    }
    .hero-stat { margin-bottom: 28px; }
    .hero-stat:last-child { margin-bottom: 0; }
    .hero-stat-num {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--bone);
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-stat-num span { color: var(--mint); }
    .hero-stat-desc { font-size: 0.82rem; color: rgba(245,243,236,.4); }
    .hero-panel-divider { height: 1px; background: rgba(47,203,164,.12); margin: 24px 0; }

    /* ─── WHO WE ARE ─────────────────────────────────────── */
    .who-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .who-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }
    .who-img-wrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }
    .who-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(16,150,122,.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .who-img-badge {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: var(--emerald);
      color: var(--bone);
      padding: 14px 18px;
      border-radius: 8px;
      text-align: center;
      z-index: 1;
    }
    .who-img-badge-num  { font-size: 1.8rem; font-weight: 700; line-height: 1; }
    .who-img-badge-text { font-size: 0.72rem; font-weight: 500; opacity: .8; margin-top: 2px; }
    .who-text h2 { margin-bottom: 20px; }
    .who-text p  { color: var(--body-text); margin-bottom: 16px; }
    .who-text .btn { margin-top: 8px; }
    .who-creds {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(16,150,122,.2);
      border-radius: 10px;
      margin-top: 32px;
      overflow: hidden;
    }
    .who-cred-item {
      padding: 18px 20px;
      border-right: 1px solid rgba(16,150,122,.2);
      background: var(--white);
    }
    .who-cred-item:last-child { border-right: none; }
    .who-cred-num {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 4px;
    }
    .who-cred-num span { color: var(--emerald); }
    .who-cred-label { font-size: 0.76rem; color: var(--slate); font-weight: 500; line-height: 1.4; }

    /* ─── RESULTS STRIP ──────────────────────────────────── */
    .results-strip {
      background: var(--ink);
      padding: 56px 0;
    }
    .results-strip-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(245,243,236,.3);
      margin-bottom: 36px;
    }
    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(47,203,164,.15);
      border-radius: 12px;
      overflow: hidden;
    }
    .result-cell {
      padding: 32px 36px;
      border-right: 1px solid rgba(47,203,164,.15);
    }
    .result-cell:last-child { border-right: none; }
    .result-num {
      font-size: 3rem;
      font-weight: 700;
      color: var(--mint);
      line-height: 1;
      margin-bottom: 8px;
    }
    .result-title { font-size: 0.95rem; font-weight: 600; color: var(--bone); margin-bottom: 4px; }
    .result-context { font-size: 0.8rem; color: rgba(245,243,236,.35); }
    .results-strip-cta { text-align: center; margin-top: 28px; }
    .results-strip-cta a {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--mint);
      border-bottom: 1px solid rgba(47,203,164,.35);
      padding-bottom: 2px;
      transition: border-color .2s;
    }
    .results-strip-cta a:hover { border-color: var(--mint); }

    /* ─── SERVICES ───────────────────────────────────────── */
    .services-list { margin-top: 56px; }
    .service-row {
      display: grid;
      grid-template-columns: 64px 1fr auto;
      gap: 32px;
      align-items: start;
      padding: 36px 0;
      border-bottom: 1px solid rgba(14,15,20,.08);
    }
    .service-row:first-child { border-top: 1px solid rgba(14,15,20,.08); }
    .service-num {
      font-size: 2.2rem;
      font-weight: 700;
      color: rgba(16,150,122,.2);
      line-height: 1;
      padding-top: 4px;
    }
    .service-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
    .service-body p { font-size: 0.9rem; color: var(--slate); max-width: 560px; }
    .service-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--emerald);
      white-space: nowrap;
      border-bottom: 1px solid rgba(16,150,122,.3);
      padding-bottom: 2px;
      margin-top: 6px;
      transition: border-color .2s;
    }
    .service-link:hover { border-color: var(--emerald); }

    /* ─── PROCESS ────────────────────────────────────────── */
    .steps-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }
    .step-card { padding: 0 24px 0 0; position: relative; }
    .step-card:last-child { padding-right: 0; }
    .step-top {
      display: flex;
      align-items: center;
      margin-bottom: 24px;
      position: relative;
    }
    .step-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--emerald);
      color: var(--bone);
      font-size: 1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .step-connector {
      flex: 1;
      height: 1px;
      background: rgba(16,150,122,.25);
      margin-left: 12px;
    }
    .step-card:last-child .step-connector { display: none; }
    .step-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .step-card p { font-size: 0.85rem; color: var(--slate); margin-bottom: 14px; }
    .step-callout {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--emerald);
      border-left: 2px solid var(--emerald);
      padding-left: 10px;
      line-height: 1.4;
    }

    /* ─── SECTORS ────────────────────────────────────────── */
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 48px;
    }
    .sector-tile {
      background: var(--white);
      border: 1px solid rgba(14,15,20,.08);
      border-radius: 8px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: border-color .2s, box-shadow .2s;
      cursor: default;
    }
    .sector-tile:hover {
      border-color: var(--emerald);
      box-shadow: 0 4px 16px rgba(16,150,122,.1);
    }
    .sector-icon {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      background: rgba(16,150,122,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .sector-icon svg { width: 18px; height: 18px; fill: var(--emerald); }
    .sector-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }

    /* ─── MID CTA STRIP ──────────────────────────────────── */
    .mid-cta { background: var(--emerald); padding: 48px 0; }
    .mid-cta-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .mid-cta-text {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--bone);
      max-width: 560px;
      line-height: 1.4;
    }
    .mid-cta-text span { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
    .btn--ink { background: var(--ink); color: var(--bone); font-weight: 700; }
    .btn--ink:hover { background: var(--deep-ink); transform: translateY(-2px); }

    /* ─── CASE STUDIES ───────────────────────────────────── */
    .cs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .cs-item {
      background: var(--white);
      border: 1px solid rgba(14,15,20,.08);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .cs-item:hover {
      border-color: var(--emerald);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(16,150,122,.12);
    }
    .cs-item-top {
      background: var(--ink);
      padding: 28px 28px 24px;
    }
    .cs-sector-tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(47,203,164,.7);
      margin-bottom: 12px;
      display: block;
    }
    .cs-result-num {
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--bone);
      line-height: 1;
      margin-bottom: 6px;
    }
    .cs-result-label { font-size: 0.85rem; color: rgba(245,243,236,.7); }
    .cs-item-body { padding: 24px 28px; }
    .cs-item-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
    .cs-challenge { font-size: 0.85rem; color: var(--slate); margin-bottom: 16px; }
    .cs-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--emerald);
      border-bottom: 1px solid rgba(16,150,122,.3);
      padding-bottom: 2px;
      transition: border-color .2s;
    }
    .cs-link:hover { border-color: var(--emerald); }
    .cs-cta-row { text-align: center; margin-top: 36px; }

    /* ─── TESTIMONIALS ───────────────────────────────────── */
    .testi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .testi-item {
      background: var(--white);
      border: 1px solid rgba(14,15,20,.08);
      border-radius: 12px;
      padding: 36px;
    }
    .testi-mark {
      font-size: 3rem;
      font-weight: 700;
      color: var(--emerald);
      line-height: .8;
      display: block;
      margin-bottom: 16px;
    }
    .testi-text { font-size: 0.95rem; color: var(--body-text); margin-bottom: 24px; font-style: italic; }
    .testi-divider { height: 1px; background: rgba(14,15,20,.08); margin-bottom: 16px; }
    .testi-name { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
    .testi-role { font-size: 0.8rem; color: var(--slate); margin-top: 2px; }

    /* ─── WHY NOVUS ──────────────────────────────────────── */
    .why-section { background: var(--ink); }
    .why-section .sh { color: var(--bone); }
    .why-section .sh-sub { color: rgba(245,243,236,.5); }
    .why-section .eyebrow { color: var(--mint); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .why-item {
      background: rgba(245,243,236,.04);
      border: 1px solid rgba(47,203,164,.1);
      border-radius: 12px;
      padding: 32px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: border-color .2s;
    }
    .why-item:hover { border-color: rgba(47,203,164,.3); }
    .why-icon-box {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(16,150,122,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .why-icon-box svg { width: 22px; height: 22px; fill: var(--mint); }
    .why-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--bone); margin-bottom: 8px; }
    .why-body p { font-size: 0.85rem; color: rgba(245,243,236,.5); }

    /* ─── FAQ ────────────────────────────────────────────── */
    .faq-list { margin-top: 48px; }
    .faq-item { border-bottom: 1px solid rgba(14,15,20,.1); }
    .faq-item:first-child { border-top: 1px solid rgba(14,15,20,.1); }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 0;
      cursor: pointer;
      font-weight: 500;
      font-size: 0.95rem;
      color: var(--ink);
      gap: 16px;
      user-select: none;
    }
    .faq-question:hover { color: var(--emerald); }
    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(16,150,122,.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .3s;
    }
    .faq-icon svg { width: 14px; height: 14px; fill: var(--emerald); }
    .faq-item.open .faq-icon { background: var(--emerald); transform: rotate(45deg); }
    .faq-item.open .faq-icon svg { fill: var(--bone); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer p { color: var(--slate); font-size: 0.9rem; padding-bottom: 22px; margin: 0; max-width: 740px; }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* ─── CTA / CONTACT ──────────────────────────────────── */
    .cta-section {
      background: var(--bone2);
      border-top: 1px solid rgba(14,15,20,.08);
    }
    .cta-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 96px 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .cta-text .eyebrow { display: block; margin-bottom: 14px; }
    .cta-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; color: var(--ink); }
    .cta-text p { color: var(--slate); margin-bottom: 28px; }
    .cta-promises { display: flex; flex-direction: column; gap: 12px; }
    .cta-promise-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--body-text);
    }
    .cta-check {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(16,150,122,.15);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .cta-check svg { width: 11px; height: 11px; fill: var(--emerald); }
    .contact-form {
      background: var(--white);
      border: 1px solid rgba(14,15,20,.1);
      border-radius: 14px;
      padding: 36px;
      box-shadow: 0 4px 24px rgba(14,15,20,.06);
    }
    .contact-form h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
    .form-group input,
    .form-group textarea {
      background: var(--bone);
      border: 1px solid rgba(14,15,20,.12);
      border-radius: 6px;
      padding: 12px 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.88rem;
      color: var(--ink);
      outline: none;
      transition: border-color .2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--emerald); }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .form-honeypot { display: none; }
    .form-submit {
      width: 100%;
      background: var(--emerald);
      color: var(--bone);
      border: none;
      border-radius: 6px;
      padding: 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, transform .15s;
      margin-top: 4px;
    }
    .form-submit:hover { background: var(--ink); transform: translateY(-1px); }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      background: var(--ink);
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding: 64px 0 48px;
    }
    .footer-brand img { height: 32px; margin-bottom: 16px; }
    .footer-brand p { font-size: 0.85rem; color: rgba(245,243,236,.35); max-width: 260px; line-height: 1.7; }
    .footer-col h4 {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(245,243,236,.4);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 0.85rem; color: rgba(245,243,236,.5); transition: color .2s; }
    .footer-col ul a:hover { color: var(--mint); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(245,243,236,.5);
      margin-bottom: 10px;
    }
    .footer-contact-item svg { width: 14px; height: 14px; fill: var(--mint); flex-shrink: 0; margin-top: 3px; }
    .footer-contact-item a { color: rgba(245,243,236,.5); transition: color .2s; }
    .footer-contact-item a:hover { color: var(--mint); }
    .footer-bottom {
      border-top: 1px solid rgba(47,203,164,.08);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-legal { font-size: 0.75rem; color: rgba(245,243,236,.25); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 0.75rem; color: rgba(245,243,236,.3); transition: color .2s; }
    .footer-links a:hover { color: var(--mint); }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-panel { display: none; }
      .who-grid { grid-template-columns: 1fr; gap: 48px; }
      .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
      .step-connector { display: none; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }


    /* ─── MOBILE NAV ─────────────────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      margin-right: 0;
      border-radius: 6px;
      transition: background .2s;
      flex-shrink: 0;
    }
    .nav-hamburger:hover { background: none; }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav-drawer {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bone);
      z-index: 99;
      overflow-y: auto;
      padding: 8px 0 40px;
      transform: translateX(100%);
      transition: transform .3s cubic-bezier(.4,0,.2,1);
    }
    .mobile-nav-drawer.open { transform: translateX(0); }
    .mobile-nav-item { border-bottom: 1px solid rgba(14,15,20,.07); }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 24px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: color .2s;
      text-decoration: none;
    }
    .mobile-nav-link:hover { color: var(--emerald); }
    .mobile-nav-link svg { width: 18px; height: 18px; fill: var(--muted); transition: transform .3s; flex-shrink: 0; }
    .mobile-nav-item.open > .mobile-nav-link svg { transform: rotate(180deg); }
    .mobile-nav-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: rgba(14,15,20,.025); }
    .mobile-nav-item.open > .mobile-nav-sub { max-height: 700px; }
    .mobile-nav-sub a { display: block; padding: 12px 24px 12px 36px; font-size: 0.88rem; color: var(--slate); border-bottom: 1px solid rgba(14,15,20,.05); transition: color .2s, background .2s; text-decoration: none; }
    .mobile-nav-sub a:last-child { border-bottom: none; }
    .mobile-nav-sub a:hover { color: var(--emerald); background: rgba(16,150,122,.05); }
    .mobile-nav-sub-group { border-top: 1px solid rgba(14,15,20,.06); }
    .mobile-nav-sub-label { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px 12px 36px; font-size: 0.85rem; font-weight: 600; color: var(--emerald); cursor: pointer; }
    .mobile-nav-sub-label svg { width: 16px; height: 16px; fill: var(--emerald); transition: transform .3s; }
    .mobile-nav-sub-group.open .mobile-nav-sub-label svg { transform: rotate(180deg); }
    .mobile-nav-sub-children { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .mobile-nav-sub-group.open .mobile-nav-sub-children { max-height: 300px; }
    .mobile-nav-sub-children a { padding-left: 48px; }
    .mobile-nav-cta { margin: 20px 24px 0; }
    .mobile-nav-cta a { display: block; text-align: center; background: var(--emerald); color: var(--bone); font-weight: 600; font-size: 0.92rem; padding: 14px 24px; border-radius: 8px; transition: background .2s; text-decoration: none; }
    .mobile-nav-cta a:hover { background: #0B7A63; }
    body.nav-open { overflow: hidden; }
    @media (max-width: 900px) {
      .nav-links { display: none !important; }
      .nav-hamburger { display: flex !important; }
      .mobile-nav-drawer { display: block; }
      /* Fix 1: nav padding matches logo left AND hamburger right — both 16px */
      .nav-inner { padding: 0 16px !important; }
    }
        /* ─── MOBILE LAYOUT (single merged block) ──────────── */
    @media (max-width: 768px) {
      /* Global overflow prevention */
      body { overflow-x: hidden; }
      /* Hero: switch from grid to block to remove fixed 420px column constraint */
      .hero { overflow: hidden; }
      .hero-inner { display: block !important; width: 100% !important; max-width: 100% !important; padding: 48px 16px 40px !important; box-sizing: border-box !important; min-height: 0 !important; }
      /* Padding framework — 16px sides on all containers */
      .container { width: 100% !important; max-width: 100% !important; padding: 0 16px !important; box-sizing: border-box !important; }
      .footer-inner { width: 100% !important; max-width: 100% !important; padding: 0 16px !important; box-sizing: border-box !important; }
      .mid-cta-inner { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
      .cta-strip-inner, .mid-cta-inner { flex-direction: column; text-align: center; gap: 24px; padding: 0 16px !important; }
      .cta-strip-inner > div:last-child, .mid-cta-inner > a { width: 100%; justify-content: center; }
      /* Hero layout */
      .hero-panel { display: none; }
      .hero-left { padding: 0; }
      .hero-left h1 { font-size: 1.75rem !important; line-height: 1.2; }
      .hero-left h1 em { font-size: inherit; }
      .hero-left p { max-width: 100%; }
      .hero-btns { flex-direction: column; gap: 12px; }
      .btn { width: 100%; justify-content: center; }
      .btn--ghost-light { width: 100%; justify-content: center; text-align: center; }
      .hero-proposition { font-size: 0.68rem; letter-spacing: .08em; }
      .hero-trust { gap: 10px 20px; flex-wrap: wrap; overflow-x: visible; margin-top: 28px; padding-top: 20px; justify-content: center; }
      .hero-trust-item { font-size: 0.72rem; white-space: nowrap; flex-shrink: 0; }
      /* Stats strip */
      .stats-strip { grid-template-columns: 1fr 1fr; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(47,203,164,.12); padding: 20px 0; }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(47,203,164,.12); }
      .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
      /* Services */
      .service-row { grid-template-columns: 48px 1fr; gap: 16px; }
      .service-link { display: none; }
      /* Who section */
      .who-grid { grid-template-columns: 1fr !important; }
      .who-creds { grid-template-columns: 1fr; }
      .who-cred-item { border-right: none; border-bottom: 1px solid rgba(16,150,122,.2); }
      .who-cred-item:last-child { border-bottom: none; }
      /* Sectors */
      .sectors-grid { grid-template-columns: 1fr 1fr; margin-left: 0; margin-right: 0; }
      .sector-tile { padding: 14px 12px; }
      /* Process steps */
      .steps-row { grid-template-columns: 1fr !important; gap: 0; }
      .step-card { padding: 28px 0; border-bottom: 1px solid rgba(14,15,20,.08); }
      .step-card:last-child { border-bottom: none; }
      .step-top { margin-bottom: 16px; }
      .step-connector { display: none; }
      /* Grids */
      .testi-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr; }
      .result-cell { border-right: none; border-bottom: 1px solid rgba(47,203,164,.12); }
      .result-cell:nth-child(odd) { border-right: 1px solid rgba(47,203,164,.12); }
      .result-cell:last-child { border-bottom: none; }
      .cs-grid { grid-template-columns: 1fr; }
      .cta-inner { display: block !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; padding: 48px 16px !important; }
      .cta-inner > * + * { margin-top: 40px; }
      /* Forms */
      .form-row { grid-template-columns: 1fr !important; }
      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    }
