:root {
        --bg: #ffffff;
        --bg2: #08111f;
        --green: #005a3c;
        --green2: #005a3c;
        --green3: #22a050;
        --green4: #005a3c;
        --gl: rgba(0, 90, 60, 0.1);
        --gl2: rgba(0, 90, 60, 0.2);
        --gl3: rgba(0, 90, 60, 0.06);

        --glass: rgba(0, 0, 0, 0.04);
        --glass2: rgba(0, 0, 0, 0.07);
        --glass3: rgba(0, 0, 0, 0.1);
        --gb: rgba(0, 0, 0, 0.1);
        --gb2: rgba(0, 0, 0, 0.18);
        --text: #005a3c;
        --text2: #08111f;
        --text3: #08111f;
        --serif: "Instrument Serif", Georgia, serif;
        --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
        --T: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --r: 20px;
        --rs: 14px;
        --rx: 8px;
        --rm: 14px;
      }

      /* Bootstrap reset */
      a {
        color: inherit;
        text-decoration: none;
      }
      a:hover,
      a:focus {
        color: inherit;
        text-decoration: none;
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        color: var(--text);
        margin-top: 0;
      }
      body {
        color: var(--text);
      }
      .text-muted {
        color: var(--text3) !important;
      }
      .border {
        border-color: var(--gb) !important;
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
      }
      body {
        font-family: var(--sans);
        background: #ffffff;
        color: var(--text);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        font-size: 15px;
        line-height: 1.6;
      }

      /* AMBIENT BACKGROUND ORBS */
      .bg-orbs {
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        background: #ffffff;
      }
      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.18;
      }
      .orb1 {
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(0, 90, 60, 0.25),
          transparent 70%
        );
        top: -200px;
        left: -150px;
        animation: orbDrift1 18s ease-in-out infinite alternate;
      }
      .orb2 {
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(8, 17, 31, 0.12),
          transparent 70%
        );
        bottom: -100px;
        right: -100px;
        animation: orbDrift2 22s ease-in-out infinite alternate;
      }
      .orb3 {
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(0, 90, 60, 0.1),
          transparent 70%
        );
        top: 40%;
        left: 55%;
        animation: orbDrift3 26s ease-in-out infinite alternate;
      }
      @keyframes orbDrift1 {
        to {
          transform: translate(80px, 120px) scale(1.1);
        }
      }
      @keyframes orbDrift2 {
        to {
          transform: translate(-60px, -80px) scale(1.15);
        }
      }
      @keyframes orbDrift3 {
        to {
          transform: translate(-120px, 60px) scale(0.9);
        }
      }

      /* SCROLL PROGRESS */
      #spb {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 2.5px;
        background: #005a3c;
        transform: scaleX(0);
        transform-origin: left;
        z-index: 10001;
      }

      /* NAVBAR */
      #nb {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        height: 64px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: saturate(200%) blur(32px);
        -webkit-backdrop-filter: saturate(200%) blur(32px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition:
          background var(--T),
          box-shadow var(--T);
      }
      #nb.nb--scroll {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
      }
      .nbi {
        max-width: 1280px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 32px;
      }
      .nlogo img {
        height: 30px;
        width: auto;
        display: block;
      }
      .nb-links {
        display: flex;
        gap: 4px;
        list-style: none;
      }
      .nb-links a {
        font-size: 0.78rem;
        color: var(--bg2);
        text-decoration: none;
        padding: 7px 13px;
        border-radius: var(--rx);
        transition: all 0.18s;
        position: relative;
      }
      .nb-links a::after {
        content: "";
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 16px;
        height: 1.5px;
        background: #005a3c;
        transition: transform 0.22s;
      }
      .nb-links a:hover,
      .nb-links a.active {
        color: #005a3c;
        
      }
      .nb-links a.active::after,
      .nb-links a:hover::after {
        transform: translateX(-50%) scaleX(1);
      }
      .nb-cta {
        background: #005a3c;
        color: #fff;
        border: none;
        padding: 9px 22px;
        border-radius: 24px;
        font-size: 0.78rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.22s;
        font-family: var(--sans);
        box-shadow: 0 0 20px rgba(0, 90, 60, 0.25);
        -webkit-tap-highlight-color: transparent;
      }
      .nb-cta:hover {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 4px 30px rgba(0, 90, 60, 0.4);
        color: #fff;
      }
      .ham {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
      }
      .ham span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--bg2);
        border-radius: 2px;
        transition: all 0.3s;
      }
      .ham.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
      }
      .ham.active span:nth-child(2) {
        opacity: 0;
      }
      .ham.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
      }
      #mob {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding-top: 64px;
      }
      #mob.open {
        display: flex;
        animation: fadeIn 0.22s ease;
      }
      #mob a {
        font-size: 1.4rem;
        font-weight: 400;
        color: var(--bg2);
        text-decoration: none;
        font-family: var(--serif);
        font-style: italic;
      }
      #mob a:hover {
        color: #005a3c;
      }
      #mob .nb-cta {
        font-style: normal;
        font-size: 0.95rem;
        padding: 14px 38px;
        margin-top: 8px;
      }

      /* GLASS CARD BASE */
      .gc {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: var(--r);
        transition: all var(--T);
      }
      .gc:hover {
        background: #f9fafb;
        border-color: rgba(0, 90, 60, 0.25);
        box-shadow:
          0 24px 64px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.8),
          0 0 0 1px rgba(0, 90, 60, 0.1);
      }

      /* HERO */
      .hero {
        position: relative;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 110px 32px 80px;
        overflow: hidden;
        z-index: 1;
        background: #ffffff;
      }
      #heroCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
      }
      .hero > * {
        position: relative;
        z-index: 1;
      }
      .hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gl);
        border: 1px solid var(--gl2);
        border-radius: 30px;
        padding: 6px 18px 6px 8px;
        font-size: 0.72rem;
        font-weight: 500;
        color: #005a3c;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 28px;
        animation: fadeInUp 0.5s ease 0.1s both;
      }
      .pill-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #005a3c;
        animation: pulseDot 2.5s infinite;
        flex-shrink: 0;
      }
      .hero-title {
        font-family: var(--serif);
        font-size: clamp(2.8rem, 5.8vw, 5.2rem);
        font-style: italic;
        font-weight: 400;
        line-height: 1.08;
        max-width: 840px;
        margin: 0 auto;
        animation: fadeInUp 0.65s ease 0.22s both;
        color: var(--bg2);
      }
      .hero-title .accent {
        font-style: normal;
        color: #005a3c;
      }
      .hero-rule {
        width: 0;
        height: 2px;
        background: #005a3c;
        margin: 24px auto;
        animation: expandRule 0.7s ease 0.72s both;
      }
      .hero-sub {
        font-size: clamp(1rem, 1.8vw, 1.15rem);
        color: var(--bg2);
        font-weight: 300;
        line-height: 1.75;
        max-width: 570px;
        margin: 0 auto 48px;
        animation: fadeInUp 0.65s ease 0.42s both;
      }
      .typer-wrap {
        display: block;
        margin-top: 4px;
        color: #005a3c;
        font-style: normal;
      }
      #typer {
        border-right: 2px solid #005a3c;
        padding-right: 3px;
        animation: blinkCaret 0.75s step-end infinite;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 0.65s ease 0.58s both;
      }
      .btn-p {
        background: #005a3c;
        color: #fff;
        border: none;
        padding: 15px 36px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.24s;
        font-family: var(--sans);
        box-shadow: 0 4px 28px rgba(0, 90, 60, 0.28);
        
      }
      .btn-p:hover {
        transform: translateY(-3px);
       background-color: #004a32;
        color: white;
      }
      .btn-s {
        background-color: white;
        color: var(--bg2);
        border: 1.5px solid var(--bg2);
        padding: 15px 36px;
        border-radius: 30px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.24s;
        font-family: var(--sans);
        -webkit-tap-highlight-color: transparent;
      }
      .btn-s:hover {
        border-color: #005a3c;
       background-color: #004a32;
        color: white;
        transform: translateY(-3px);
      }
      .hero-stats {
        display: flex;
        gap: 0;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 72px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 48px;
        width: 100%;
        max-width: 800px;
        animation: fadeInUp 0.65s ease 0.75s both;
      }
      .hstat {
        flex: 1;
        min-width: 140px;
        text-align: center;
        padding: 0 24px;
        position: relative;
      }
      .hstat + .hstat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 36px;
        background: rgba(0, 0, 0, 0.12);
      }
      .hstat-n {
        font-family: var(--serif);
        font-size: 2.6rem;
        color: var(--bg2);
        line-height: 1;
        font-style: italic;
      }
      .hstat-l {
        font-size: 0.7rem;
        color: var(--bg2);
        text-transform: uppercase;
        letter-spacing: 0.09em;
        margin-top: 6px;
      }

      /* TRUST BAR */
      .trust {
        position: relative;
        z-index: 1;
        background: var(--gl3);
        border-top: 1px solid var(--gb);
        border-bottom: 1px solid var(--gb);
        padding: 20px 32px;
      }
      .trust-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .trust-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bg2);
        font-weight: 600;
        white-space: nowrap;
      }
      .trust-sep {
        width: 1px;
        height: 16px;
        background: rgba(0, 0, 0, 0.15);
      }
      .trust-items {
        display: flex;
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .trust-item {
        font-size: 0.78rem;
        color: var(--bg2);
        font-weight: 500;
        transition: color 0.2s;
        cursor: default;
      }
      .trust-item:hover {
        color: #005a3c;
      }

      /* SECTIONS */
      section {
        padding: 100px 32px;
        position: relative;
        z-index: 1;
        background: #ffffff;
      }
      .si {
        max-width: 1280px;
        margin: 0 auto;
      }
      .sec-tag {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #005a3c;
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .sec-tag::before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 2px;
        background: #005a3c;
        flex-shrink: 0;
      }
      .sec-h {
        font-family: var(--serif);
        font-size: clamp(2rem, 3.8vw, 2.9rem);
        font-style: italic;
        font-weight: 400;
        line-height: 1.15;
        color: var(--bg2);
      }
      .sec-h strong {
        font-style: normal;
        color: var(--bg2);
      }
      .sec-sub {
        font-size: 0.98rem;
        color: var(--bg2);
        line-height: 1.74;
        max-width: 520px;
        margin-top: 14px;
      }

      /* SERVICES */
      .svc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 56px;
      }
      .svc-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: var(--r);
        padding: 32px 28px;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .svc-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: #005a3c;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .svc-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 50% 0%,
          rgba(0, 90, 60, 0.05),
          transparent 65%
        );
        opacity: 0;
        transition: opacity 0.35s;
        border-radius: var(--r);
      }
      .svc-card:hover {
        background: #f9fafb;
        border-color: rgba(0, 90, 60, 0.25);
        box-shadow:
          0 28px 70px rgba(0, 0, 0, 0.08),
          inset 0 1px 0 rgba(255, 255, 255, 0.8);
      }
      .svc-card:hover::before {
        transform: scaleX(1);
      }
      .svc-card:hover::after {
        opacity: 1;
      }
      .svc-ico {
        font-size: 2.2rem;
        margin-bottom: 18px;
        display: block;
        transition: transform 0.35s;
      }
      .svc-card:hover .svc-ico {
        transform: scale(1.12) rotate(-4deg);
      }
      .svc-num {
        font-size: 0.63rem;
        font-weight: 700;
        color: #005a3c;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .svc-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 10px;
        letter-spacing: -0.01em;
      }
      .svc-body {
        font-size: 0.83rem;
        color: var(--bg2);
        line-height: 1.65;
      }
      .svc-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        margin-top: 16px;
      }
      .svc-tag {
        font-size: 0.63rem;
        background: var(--gl);
        color: #005a3c;
        padding: 3px 10px;
        border-radius: 4px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border: 1px solid var(--gl2);
      }

      /* METRICS */
      .metrics-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 56px;
      }
      .metric {
        padding: 36px 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .metric::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 40px;
        height: 2px;
        background: #005a3c;
        transition: transform 0.4s;
        transform-origin: center;
      }
      .metric:hover::before {
        transform: translateX(-50%) scaleX(1);
      }
      .metric-n {
        font-family: var(--serif);
        font-size: 3rem;
        color: var(--bg2);
        font-style: italic;
        line-height: 1;
      }
      .metric-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bg2);
        margin-top: 10px;
      }
      .metric-desc {
        font-size: 0.78rem;
        color: var(--bg2);
        margin-top: 6px;
        line-height: 1.5;
      }

      /* WHY */
      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 60px;
      }
      .why-card {
        padding: 36px;
      }
      .why-card.hero-card {
        grid-column: 1 / -1;
      }
      .why-ico-wrap {
        width: 52px;
        height: 52px;
        border-radius: var(--rx);
        background: var(--gl);
        border: 1px solid var(--gl2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.5rem;
        transition:
          transform 0.3s,
          background 0.3s;
      }
      .gc:hover .why-ico-wrap {
        transform: scale(1.08) rotate(-4deg);
        background: var(--gl2);
      }
      .why-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 10px;
        letter-spacing: -0.01em;
      }
      .why-body {
        font-size: 0.86rem;
        color: var(--bg2);
        line-height: 1.72;
      }

      /* INDUSTRIES */
      .ind-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        margin-top: 48px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .ind-scroll::-webkit-scrollbar {
        display: none;
      }
      .ind-chip {
        flex-shrink: 0;
        min-width: 155px;
        padding: 20px 22px;
        scroll-snap-align: start;
        cursor: default;
        transition: all 0.28s;
      }
      .ind-chip:hover {
        transform: translateY(-4px);
      }
      .ind-chip:hover .ind-name {
        color: #005a3c;
      }
      .ind-emo {
        font-size: 1.6rem;
        margin-bottom: 10px;
        display: block;
        transition: transform 0.3s;
      }
      .ind-chip:hover .ind-emo {
        transform: scale(1.15);
      }
      .ind-name {
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--bg2);
        transition: color 0.2s;
      }
      .ind-sub {
        font-size: 0.71rem;
        color: var(--bg2);
        margin-top: 3px;
      }

      /* PROCESS */
      .proc-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        margin-top: 64px;
        position: relative;
      }
      .proc-line {
        position: absolute;
        top: 27px;
        left: calc(10% + 20px);
        right: calc(10% + 20px);
        height: 1px;
        background: rgba(0, 0, 0, 0.12);
        z-index: 0;
        overflow: hidden;
      }
      .proc-line-fill {
        height: 100%;
        width: 0;
        background: #005a3c;
        animation: fillLine 1.8s ease 1s forwards;
      }
      .proc-step {
        text-align: center;
        padding: 0 10px;
        position: relative;
        z-index: 1;
      }
      .proc-dot {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--bg2);
        transition: all 0.45s;
      }
      .proc-step.vis .proc-dot {
        border-color: #005a3c;
        background: var(--gl);
        color: #005a3c;
        box-shadow:
          0 0 0 6px rgba(0, 90, 60, 0.1),
          0 0 30px rgba(0, 90, 60, 0.15);
      }
      .proc-num {
        font-size: 0.62rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #005a3c;
        font-weight: 700;
        margin-bottom: 6px;
        opacity: 0;
        transition: opacity 0.4s 0.2s;
      }
      .proc-step.vis .proc-num {
        opacity: 1;
      }
      .proc-title {
        font-size: 0.83rem;
        font-weight: 600;
        color: var(--bg2);
        line-height: 1.3;
        opacity: 0;
        transform: translateY(8px);
        transition:
          opacity 0.4s 0.3s,
          transform 0.4s 0.3s;
      }
      .proc-step.vis .proc-title {
        opacity: 1;
        transform: none;
      }
      .proc-desc {
        font-size: 0.74rem;
        color: var(--bg2);
        line-height: 1.55;
        margin-top: 6px;
        opacity: 0;
        transform: translateY(8px);
        transition:
          opacity 0.4s 0.42s,
          transform 0.4s 0.42s;
      }
      .proc-step.vis .proc-desc {
        opacity: 1;
        transform: none;
      }

      /* TESTIMONIALS */
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 56px;
      }
      .testi-card {
        padding: 28px;
        position: relative;
        overflow: hidden;
      }
      .testi-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1.5px;
        background: #005a3c;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
      }
      .testi-card:hover::before {
        transform: scaleX(1);
      }
      .testi-mark {
        font-family: var(--serif);
        font-size: 4rem;
        color: var(--gl2);
        line-height: 0.8;
        font-style: italic;
        margin-bottom: 14px;
      }
      .testi-quote {
        font-size: 0.87rem;
        color: var(--bg2);
        line-height: 1.74;
        font-style: italic;
        margin-bottom: 22px;
      }
      .testi-line {
        width: 28px;
        height: 1.5px;
        background: #005a3c;
        margin-bottom: 14px;
        transition: width 0.3s;
      }
      .testi-card:hover .testi-line {
        width: 48px;
      }
      .testi-name {
        font-size: 0.87rem;
        font-weight: 600;
        color: var(--bg2);
      }
      .testi-role {
        font-size: 0.73rem;
        color: var(--bg2);
        margin-top: 2px;
      }

      /* CTA BAND */
      .cta-band {
        position: relative;
        z-index: 1;
        padding: 0 32px;
        overflow: hidden;
      }
      .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #f8faf9;
        z-index: -1;
      }
      .cta-band::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 70% 100% at 50% 50%,
          rgba(0, 90, 60, 0.07),
          transparent 65%
        );
        z-index: -1;
      }
      .cta-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 48px;
        align-items: center;
        padding: 80px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }
      .cta-title {
        font-family: var(--serif);
        font-size: clamp(1.8rem, 3.2vw, 2.6rem);
        color: var(--bg2);
        font-style: italic;
        line-height: 1.2;
        font-weight: 400;
      }
      .cta-title strong {
        font-style: normal;
        color: #005a3c;
      }
      .cta-sub {
        font-size: 0.92rem;
        color: var(--bg2);
        margin-top: 12px;
        line-height: 1.7;
      }
      .cta-actions {
        display: flex;
        gap: 14px;
        align-items: center;
        flex-shrink: 0;
        flex-wrap: wrap;
      }

      /* CONTACT */
      .contact-grid {
        display: grid;
        grid-template-columns: 420px 1fr;
        gap: 72px;
        align-items: start;
        margin-top: 64px;
      }
      .ci-head {
        font-family: var(--serif);
        font-size: 1.7rem;
        font-style: italic;
        color: var(--bg2);
        margin-bottom: 14px;
        font-weight: 400;
        line-height: 1.25;
      }
      .ci-desc {
        font-size: 0.9rem;
        color: var(--bg2);
        line-height: 1.74;
        margin-bottom: 32px;
      }
      .ci-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
        transition: transform 0.2s;
      }
      .ci-row:hover {
        transform: translateX(4px);
      }
      .ci-ico {
        width: 40px;
        height: 40px;
        border-radius: var(--rx);
        background: var(--gl);
        border: 1px solid var(--gl2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .ci-row:hover .ci-ico {
        background: var(--gl2);
      }
      .ci-val {
        font-size: 0.86rem;
        color: var(--bg2);
        line-height: 1.55;
      }
      .ci-val a {
        color: #005a3c;
        text-decoration: none;
        transition: color 0.2s;
      }
      .ci-val a:hover {
        color: var(--bg2);
      }
      .cf-wrap {
        padding: 40px;
      }
      .cf-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--bg2);
        font-weight: 600;
        margin-bottom: 7px;
        display: block;
      }
      .cf-input {
        width: 100%;
        background: #ffffff;
        border: 1.5px solid rgba(0, 0, 0, 0.18);
        border-radius: var(--rx);
        padding: 13px 15px;
        color: var(--bg2);
        font-family: var(--sans);
        font-size: 16px;
        transition: all 0.2s;
        -webkit-appearance: none;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        margin-bottom: 18px;
      }
      .cf-input:focus {
        border-color: #005a3c;
        box-shadow: 0 0 0 3px rgba(0, 90, 60, 0.1);
      }
      .cf-input::placeholder {
        color: rgba(8, 17, 31, 0.45);
      }
      .cf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      select.cf-input option {
        background: #ffffff;
        color: var(--bg2);
      }
      textarea.cf-input {
        resize: vertical;
        min-height: 96px;
      }
      .cf-submit {
        width: 100%;
        background: #005a3c;
        color: #fff;
        border: none;
        padding: 15px;
        border-radius: var(--rx);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        font-family: var(--sans);
        transition: all 0.22s;
        box-shadow: 0 4px 24px rgba(0, 90, 60, 0.25);
        margin-top: 4px;
        -webkit-tap-highlight-color: transparent;
      }
      .cf-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 90, 60, 0.35);
      }
      .cf-ok {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 56px 20px;
        gap: 12px;
      }
      .cf-ok-ico {
        font-size: 3rem;
      }
      .cf-ok h4 {
        font-family: var(--serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--bg2);
      }
      .cf-ok p {
        font-size: 0.87rem;
        color: var(--bg2);
        line-height: 1.7;
      }

      /* FAQ */
      .faq-layout {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 80px;
        margin-top: 64px;
        align-items: start;
      }
      .faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        overflow: hidden;
      }
      .faq-btn {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 18px 0;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--bg2);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        font-family: var(--sans);
        -webkit-tap-highlight-color: transparent;
        transition: color 0.18s;
      }
      .faq-btn:hover {
        color: #005a3c;
      }
      .faq-arr {
        font-size: 0.7rem;
        color: #005a3c;
        transition:
          transform 0.28s,
          background 0.2s;
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        background: var(--gl);
        border: 1px solid var(--gl2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .faq-item.open .faq-arr {
        transform: rotate(180deg);
        background: #005a3c;
        border-color: #005a3c;
        color: #fff;
      }
      .faq-body {
        font-size: 0.87rem;
        color: var(--bg2);
        line-height: 1.74;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .faq-item.open .faq-body {
        padding-bottom: 18px;
      }

      /* FOOTER */
      footer {
        position: relative;
        z-index: 1;
        background: var(--bg2);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 72px 32px 40px;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 80px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-width: 1280px;
        margin: 0 auto;
      }
      .footer-logo img {
        height: 28px;
        width: auto;
        margin-bottom: 16px;
        display: block;
      }
      .footer-desc {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.72;
        max-width: 220px;
      }
      .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
      .fl-col h4 {
        font-size: 0.66rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
        margin-bottom: 16px;
        margin-left: 32px;
      }
      .fl-col ul {
        list-style: none;
      }
      .fl-col ul li {
        margin-bottom: 10px;
      }
      .fl-col ul li a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.18s;
        display: inline-flex;
        align-items: center;
        gap: 0;
      }
      .fl-col ul li a::before {
        content: "";
        display: inline-block;
        width: 0;
        height: 1px;
        background: #005a3c;
        transition: width 0.22s;
        margin-right: 0;
      }
      .fl-col ul li a:hover {
        color: rgba(255, 255, 255, 0.95);
      }
      .fl-col ul li a:hover::before {
        width: 10px;
        margin-right: 6px;
      }
      .footer-bottom {
        max-width: 1280px;
        margin: 28px auto 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-copy {
        font-size: 0.74rem;
        color: rgba(255, 255, 255, 0.45);
      }
      .footer-badges {
        display: flex;
        gap: 8px;
      }
      .footer-badge {
        font-size: 0.65rem;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.5);
        padding: 3px 10px;
        border-radius: 4px;
        transition: all 0.2s;
        cursor: pointer;
      }
      .footer-badge:hover {
        color: rgba(255, 255, 255, 0.9);
        border-color: rgba(255, 255, 255, 0.25);
      }

      /* FLOAT WA */
      .fwa {
        position: fixed;
        bottom: calc(24px + env(safe-area-inset-bottom));
        right: 24px;
        z-index: 9999;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #005a3c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.45rem;
        text-decoration: none;
        box-shadow: 0 4px 24px rgba(0, 90, 60, 0.45);
        transition: all 0.24s;
        -webkit-tap-highlight-color: transparent;
        margin-bottom: 50px;
      }
      .fwa::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #005a3c;
        animation: waRipple 2.2s infinite;
      }
      .fwa:hover {
        transform: scale(1.12);
      }

      /* REVEAL */
      .rev {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .rev.vis {
        opacity: 1;
        transform: none;
      }

      /* ANIMATIONS */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      @keyframes pulseDot {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(0, 90, 60, 0.4);
        }
        70% {
          box-shadow: 0 0 0 8px rgba(0, 90, 60, 0);
        }
      }
      @keyframes expandRule {
        from {
          width: 0;
        }
        to {
          width: 60px;
        }
      }
      @keyframes blinkCaret {
        from,
        to {
          border-color: transparent;
        }
        50% {
          border-color: #005a3c;
        }
      }
      @keyframes fillLine {
        to {
          width: 100%;
        }
      }
      @keyframes waRipple {
        0% {
          transform: scale(1);
          opacity: 0.35;
        }
        100% {
          transform: scale(1.8);
          opacity: 0;
        }
      }

      ::-webkit-scrollbar {
        width: 6px;
      }
      ::-webkit-scrollbar-track {
        background: #f5f5f5;
      }
      ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.15);
        border-radius: 3px;
      }

      /* ── 3D HERO BACKGROUND ── */
      .hero-3d-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-3d-wrap canvas {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        display: block;
      }

      /* ── TECH STACK SECTION ── */
      .tech-sec {
        padding: 80px 32px;
        position: relative;
        z-index: 1;
      }
      .tech-globe-wrap {
        position: relative;
        width: 100%;
        height: 500px;
        border-radius: var(--r);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: #f8f9fa;
        margin-top: 48px;
        cursor: grab;
      }
      .tech-globe-wrap:active {
        cursor: grabbing;
      }
      .tech-globe-wrap canvas {
        display: block;
      }
      .tech-hint {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: rgba(8, 17, 31, 0.35);
        letter-spacing: 0.06em;
        pointer-events: none;
        text-transform: uppercase;
        white-space: nowrap;
      }
      .tech-legend {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 22px;
      }
      .tech-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 30px;
        padding: 4px 12px 4px 8px;
        font-size: 0.7rem;
        font-weight: 500;
        color: var(--bg2);
        transition: all 0.22s;
        white-space: nowrap;
      }
      .tech-pill:hover {
        background: var(--gl);
        border-color: var(--gl2);
        color: #005a3c;
      }
      .tp-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
      }

      /* ── STICKY MOBILE CTA ── */
      .mob-cta-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9990;
        background: rgba(8, 17, 31, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        align-items: center;
        gap: 10px;
        transform: translateY(0);
        transition: transform 0.3s ease;
      }
      .mob-cta-bar.hide {
        transform: translateY(120%);
      }
      .mob-cta-btn {
        flex: 1;
        min-height: 48px;
        border: none;
        border-radius: 10px;
        padding: 12px 10px;
        font-family: var(--sans);
        font-size: 0.84rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
      }
      .mob-cta-btn:active {
        opacity: 0.8;
      }
      .mob-cta-primary {
        background: #005a3c;
        color: #fff;
      }
      .mob-cta-wa {
        background: #005a3c;
        color: #fff;
        flex: 0 0 52px;
        font-size: 1.3rem;
      }

      /* ── HOVER-ONLY STATES ── */
      @media (hover: hover) {
        .svc-card:hover {
          transform: translateY(-6px) scale(1.02);
        }
        .gc:hover {
          transform: translateY(-3px);
        }
      }
      @media (hover: none) {
        .svc-card:hover {
          transform: none;
        }
        .gc:hover {
          transform: none;
        }
      }

      .btn-p,
      .btn-s,
      .svc-card,
      .fwa,
      .nb-link,
      .ham {
        touch-action: manipulation;
      }

      /* ═══════════════════════════════════════
   APPROACH PAGE SPECIFIC STYLES
   ═══════════════════════════════════════ */

      /* HERO */
      .ap-hero {
        position: relative;
        min-height: 72vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 32px 72px;
        overflow: hidden;
        z-index: 1;
        background: #ffffff;
      }
      .ap-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(
          ellipse 80% 60% at 50% 0%,
          rgba(0, 90, 60, 0.07) 0%,
          transparent 65%
        );
      }
      .ap-hero > * {
        position: relative;
        z-index: 1;
      }

      .bc-nav {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.72rem;
        color: var(--bg2);
        margin-bottom: 16px;
        animation: fadeInUp 0.5s ease 0.1s both;
      }
      .bc-nav a {
        color: #005a3c;
      }

      .ap-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background:white;
        border: 1px solid var(--gl2);
        border-radius: 30px;
        padding: 5px 16px 5px 8px;
        font-size: 0.72rem;
        font-weight: 500;
        color: #005a3c;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 20px;
        animation: fadeInUp 0.55s ease 0.18s both;
      }
      .eyebrow-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #005a3c;
        animation: pulseDot 2.5s infinite;
        flex-shrink: 0;
      }

      .ap-h1 {
        font-family: var(--serif);
        font-size: clamp(2.2rem, 5.5vw, 4.6rem);
        font-style: italic;
        font-weight: 400;
        line-height: 1.06;
        max-width: 860px;
        margin: 0 auto 16px;
        animation: fadeInUp 0.65s ease 0.28s both;
        color: var(--bg2);
      }
      .ap-h1 strong {
        font-style: normal;
        color: var(--green3);
      }
      .hero-rule {
        width: 0;
        height: 2px;
        background: #005a3c;
        margin: 16px auto;
        animation: expandRule 0.7s ease 0.7s both;
      }
      .ap-sub {
        font-size: clamp(0.95rem, 1.8vw, 1.12rem);
        color: var(--bg2);
        font-weight: 300;
        line-height: 1.72;
        max-width: 660px;
        margin: 0 auto;
        animation: fadeInUp 0.65s ease 0.44s both;
      }

      /* HERO CTAs */
      .hero-cta-row {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 32px;
        animation: fadeInUp 0.65s ease 0.58s both;
      }
      .hero-cta-row .btn-p,
      .hero-cta-row .btn-s {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
      }

      /* HERO PILLS */
      .hero-pills {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 18px;
        animation: fadeInUp 0.65s ease 0.72s both;
      }
      .hero-pill-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 30px;
        padding: 8px 18px;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--bg2);
        text-decoration: none;
        transition: all 0.22s;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 40px;
      }
      .hero-pill-link:hover {
        background: var(--gl);
        color: #005a3c;
        border-color: var(--gl2);
      }

      /* WHEN TO CONTACT — trigger cards */
      .trigger-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 52px;
      }
      .trigger-card {
        padding: 24px 20px 22px;
        border-radius: var(--r);
        cursor: default;
        transition: all var(--T);
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .trig-ico {
        width: 48px;
        height: 48px;
        border-radius: var(--rm);
        background: var(--gl);
        border: 1px solid var(--gl2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        transition: all 0.25s;
        flex-shrink: 0;
      }
      .trig-title {
        font-size: 0.93rem;
        font-weight: 600;
        color: var(--bg2);
        line-height: 1.35;
      }
      .trig-desc {
        font-size: 0.8rem;
        color: var(--bg2);
        line-height: 1.62;
        margin-top: auto;
      }

      /* APPROACH STEPS — vertical timeline */
      .steps-wrap {
        margin-top: 56px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .steps-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
      }
      .steps-list::before {
        content: "";
        position: absolute;
        left: 21px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
          180deg,
          #005a3c 0%,
          rgba(0, 90, 60, 0.3) 70%,
          transparent 100%
        );
        z-index: 0;
      }
      .step-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0 0 36px;
        position: relative;
        z-index: 1;
      }
      .step-item:last-child {
        padding-bottom: 0;
      }
      .step-num {
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #005a3c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
        font-weight: 700;
        color: #005a3c;
        flex-shrink: 0;
        transition: all 0.3s;
        position: relative;
        z-index: 2;
      }
      .step-item:hover .step-num {
        background: var(--gl2);
        box-shadow: 0 0 0 6px rgba(0, 90, 60, 0.1);
      }
      .step-content {
        padding-top: 10px;
      }
      .step-title {
        font-size: 0.96rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 5px;
      }
      .step-desc {
        font-size: 0.83rem;
        color: var(--bg2);
        line-height: 1.65;
      }

      /* Steps visual */
      .steps-visual {
        position: relative;
        min-height: 460px;
        border-radius: var(--r);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
      }
      .steps-visual canvas {
        position: absolute;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        display: block;
      }
      .steps-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 2;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: var(--rm);
        padding: 14px 18px;
        text-align: center;
      }
      .steps-badge-n {
        font-family: var(--serif);
        font-size: 1.8rem;
        color: #005a3c;
        font-style: italic;
        line-height: 1;
      }
      .steps-badge-l {
        font-size: 0.65rem;
        color: var(--bg2);
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-top: 3px;
      }

      /* INLINE CTA BAND */
      .inline-cta-band {
        background: var(--gl3);
        border-top: 1px solid var(--gl2);
        border-bottom: 1px solid var(--gl2);
        padding: 28px 32px;
        position: relative;
        overflow: hidden;
      }
      .inline-cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(
          ellipse 50% 100% at 50% 50%,
          rgba(0, 90, 60, 0.05),
          transparent 65%
        );
      }
      .inline-cta-band .si {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        flex-wrap: wrap;
      }

      /* WHAT WE BUILD section */
      .collab-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
        margin-top: 56px;
      }
      .sec-lead {
        font-size: clamp(1rem, 1.8vw, 1.15rem);
        color: var(--bg2);
        line-height: 1.82;
        margin-bottom: 24px;
      }
      .sec-emphasis {
        font-family: var(--serif);
        font-size: clamp(1.05rem, 1.8vw, 1.25rem);
        font-style: italic;
        color: var(--bg2);
        line-height: 1.6;
        padding: 20px 24px 20px 28px;
        border-left: 3px solid #005a3c;
        background: var(--gl);
        border-radius: 0 var(--rm) var(--rm) 0;
        margin: 24px 0;
      }
      .sec-emphasis span {
        color: #005a3c;
      }

      /* Value pillars */
      .value-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .value-card {
        padding: 22px 20px;
        border-radius: var(--rm);
      }
      .val-ico {
        font-size: 1.4rem;
        margin-bottom: 10px;
      }
      .val-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 5px;
      }
      .val-desc {
        font-size: 0.8rem;
        color: var(--bg2);
        line-height: 1.62;
      }

      /* IMPACT COUNTERS */
      .impact-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 0;
      }
      .impact-card {
        padding: 28px 20px;
        text-align: center;
      }
      .ic-ico {
        font-size: 1.8rem;
        margin-bottom: 12px;
      }
      .ic-n {
        font-family: var(--serif);
        font-size: 2.4rem;
        font-style: italic;
        color: #005a3c;
        line-height: 1;
      }
      .ic-l {
        font-size: 0.67rem;
        color: var(--bg2);
        text-transform: uppercase;
        letter-spacing: 0.09em;
        margin-top: 6px;
      }
      .ic-d {
        font-size: 0.79rem;
        color: var(--bg2);
        margin-top: 4px;
        line-height: 1.4;
      }

      /* CLOSING BAND */
      .closing-band {
        position: relative;
        text-align: center;
        padding: 80px 36px;
        border-radius: 24px;
        overflow: hidden;
      }
      .closing-band::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(
          ellipse 60% 80% at 50% 100%,
          rgba(0, 90, 60, 0.07),
          transparent 60%
        );
      }
      .closing-band > * {
        position: relative;
        z-index: 1;
      }
      .closing-line {
        font-family: var(--serif);
        font-size: clamp(1.3rem, 2.2vw, 1.9rem);
        font-style: italic;
        color: var(--bg2);
        line-height: 1.45;
        margin-bottom: 8px;
      }
      .closing-line.accent {
        color: #005a3c;
      }
      .closing-rule {
        width: 40px;
        height: 2px;
        background: #005a3c;
        margin: 24px auto;
        border-radius: 2px;
      }
      .closing-brand {
        font-size: 0.9rem;
        color: var(--bg2);
        font-weight: 500;
        letter-spacing: 0.04em;
        margin-bottom: 36px;
      }
      .cta-row {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ══════════════════════════════════════════
   CONTACT PAGE — EXTRA STYLES
   ══════════════════════════════════════════ */

      /* STICKY MOBILE CTA */
      .mob-cta-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9990;
        background: rgba(8, 17, 31, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        align-items: center;
        gap: 10px;
        transform: translateY(0);
        transition: transform 0.3s ease;
      }
      .mob-cta-bar.hide {
        transform: translateY(120%);
      }
      .mob-cta-btn {
        flex: 1;
        min-height: 48px;
        border: none;
        border-radius: 10px;
        padding: 12px 10px;
        font-family: var(--sans);
        font-size: 0.84rem;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
      }
      .mob-cta-btn:active {
        opacity: 0.8;
      }
      .mob-cta-primary {
        background: #005a3c;
        color: #fff;
      }
      .mob-cta-wa {
        background: #005a3c;
        color: #fff;
        flex: 0 0 52px;
        font-size: 1.3rem;
      }

      /* CONTACT HERO */
      .contact-hero {
        position: relative;
        min-height: 56vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 32px 64px;
        overflow: hidden;
        z-index: 1;
        background: #ffffff;
      }
      .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: none;
      }

      .bc-nav {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 0.72rem;
        color: var(--bg2);
        margin-bottom: 16px;
        animation: fadeInUp 0.5s ease 0.1s both;
      }
      .bc-nav a {
        color: #005a3c;
      }

      .contact-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gl);
        border: 1px solid var(--gl2);
        border-radius: 30px;
        padding: 5px 16px 5px 8px;
        font-size: 0.72rem;
        font-weight: 500;
        color: #005a3c;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 20px;
        animation: fadeInUp 0.55s ease 0.18s both;
      }
      .contact-eyebrow-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #005a3c;
        animation: pulseDot 2.5s infinite;
        flex-shrink: 0;
      }

      .contact-h1 {
        font-family: var(--serif);
        font-size: clamp(2.6rem, 6vw, 5rem);
        font-style: italic;
        font-weight: 400;
        line-height: 1.06;
        max-width: 780px;
        margin: 0 auto 16px;
        animation: fadeInUp 0.65s ease 0.28s both;
        color: var(--bg2);
      }
      .contact-h1 strong {
        font-style: normal;
        color: #005a3c;
      }
      .contact-sub {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
        color: var(--bg2);
        font-weight: 300;
        line-height: 1.72;
        max-width: 540px;
        margin: 0 auto;
        animation: fadeInUp 0.65s ease 0.44s both;
      }

      /* QUICK CONTACT PILLS */
      .quick-pills {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 32px;
        animation: fadeInUp 0.65s ease 0.58s both;
      }
      .qp-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1.5px solid rgba(0, 0, 0, 0.18);
        border-radius: 30px;
        padding: 9px 18px;
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--bg2);
        text-decoration: none;
        transition: all 0.22s;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px;
      }
      .qp-link:hover {
        background: #005a3c;
        border-color: #005a3c;
        color: #ffffff;
        transform: translateY(-2px);
      }
      .qp-ico {
        font-size: 1rem;
        flex-shrink: 0;
      }

      /* MAIN LAYOUT */
      .contact-main {
        padding: 72px 32px 100px;
        position: relative;
        z-index: 1;
      }
      .contact-inner {
        max-width: 1280px;
        margin: 0 auto;
        background-color: #ffffff;
      }

      /* MAIN GRID */
      .contact-grid {
        display: grid;
        grid-template-columns: 420px 1fr;
        gap: 48px;
        align-items: start;
      }

      /* LEFT COLUMN */
      .left-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      /* INFO CARD */
      .info-card {
        padding: 32px 28px;
      }
      .info-card-title {
        font-family: var(--serif);
        font-size: 1.4rem;
        font-style: italic;
        color: var(--bg2);
        margin-bottom: 8px;
        font-weight: 400;
        line-height: 1.25;
      }
      .info-card-sub {
        font-size: 0.85rem;
        color: var(--bg2);
        line-height: 1.68;
        margin-bottom: 28px;
      }
      .info-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
        transition: transform 0.2s;
      }
      .info-ico {
        min-width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--gl);
        border: 1px solid var(--gl2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .info-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--bg2);
        font-weight: 600;
        margin-bottom: 3px;
      }
      .info-value {
        font-size: 0.88rem;
        color: var(--bg2);
        line-height: 1.5;
      }
      .info-value a {
        color: #005a3c;
        text-decoration: none;
        transition: color 0.18s;
      }
      .info-value a:hover {
        color: var(--bg2);
      }

      /* HOURS CARD */
      .hours-card {
        padding: 26px 28px;
      }
      .hours-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--bg2);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .hours-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #005a3c;
        animation: pulseDot 2.5s infinite;
        flex-shrink: 0;
      }
      .hours-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
      }
      .hours-day {
        font-size: 0.82rem;
        color: var(--bg2);
      }
      .hours-time {
        font-size: 0.82rem;
        color: var(--bg2);
        font-weight: 500;
      }
      .hours-row.closed .hours-day,
      .hours-row.closed .hours-time {
        color: rgba(8, 17, 31, 0.4);
      }
      .hours-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.1);
        margin: 10px 0;
      }

      /* SOCIAL CARD */
      .social-card {
        padding: 22px 28px;
      }
      .social-title {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--bg2);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }
      .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--gl);
        border: 1px solid var(--gl2);
        border-radius: 10px;
        padding: 9px 14px;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--bg2);
        text-decoration: none;
        transition: all 0.2s;
        min-height: 40px;
      }
      .social-link:hover {
        background: var(--gl2);
        color: #005a3c;
        border-color: #005a3c;
      }

      /* MAP CARD */
      .map-card {
        padding: 0;
        overflow: hidden;
      }
      .map-header {
        padding: 18px 24px 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      }
      .map-header-title {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--bg2);
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .map-embed {
        position: relative;
        height: 220px;
      }
      .map-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 0 0 var(--r) var(--r);
      }
      .map-embed::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        border-radius: 0 0 var(--r) var(--r);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
      }

      /* RIGHT COLUMN: FORM */
      .right-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      /* FORM CARD */
      .form-card {
        padding: 42px 34px;
        border: 1.5px solid rgba(8, 17, 31, 0.15);
        border-radius: 28px;
        background: #f8f9fa;
        max-width: 980px;
        margin: auto;
      }
      .form-heading {
        font-family: var(--serif);
        line-height: 1.08;
        color: var(--bg2);
        margin-bottom: 12px;
        font-style: italic;
        font-weight: 400;
        letter-spacing: -0.02em;
      }
      .form-heading strong {
        font-family: var(--serif);
        font-style: normal;
        font-weight: 700;
        color: var(--bg2);
      }
      .form-sub {
        font-size: 1rem;
        color: var(--bg2);
        line-height: 1.7;
        margin-bottom: 34px;
        max-width: 720px;
      }

      /* FORM PROGRESS */
      .form-steps {
        display: flex;
        align-items: center;
        margin-bottom: 36px;
        gap: 18px;
      }
      .fs-step {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.84rem;
        color: var(--bg2);
        font-weight: 500;
        white-space: nowrap;
      }
      .fs-num {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1.5px solid rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 700;
        background: #fff;
        color: var(--bg2);
      }
      .fs-step.active .fs-num {
        background: #ffffff;
        color: var(--bg2);
        border-color: #005a3c;
      }
      .fs-step.done .fs-num {
        background: var(--gl);
        border-color: #005a3c;
        color: #005a3c;
      }
      .fs-line {
        flex: 1;
        height: 1px;
        background: rgba(0, 0, 0, 0.15);
      }

      /* FORM FIELDS */
      .cf-label {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--bg2);
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
      }
      .cf-input {
        width: 100%;
        height: 56px;
        background: #fff;
        border: 1.5px solid rgba(8, 17, 31, 0.18);
        border-radius: 12px;
        padding: 0 16px;
        color: var(--bg2);
        font-family: var(--sans);
        font-size: 1rem;
        transition: all 0.2s ease;
        outline: none;
        margin-bottom: 18px;
        box-sizing: border-box;
      }
      .cf-input:focus {
        border-color: #005a3c;
        box-shadow: 0 0 0 3px rgba(0, 90, 60, 0.1);
      }
      .cf-input::placeholder {
        color: rgba(8, 17, 31, 0.38);
      }
      textarea.cf-input {
        min-height: 130px;
        padding-top: 16px;
        resize: vertical;
      }
      .cf-2col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .cf-3col {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
      }

      /* BUDGET / TIMELINE CHIPS */
      .chip-group {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 16px;
      }
      .chip-option {
        padding: 8px 14px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 30px;
        font-size: 0.76rem;
        font-weight: 500;
        color: var(--bg2);
        cursor: pointer;
        background: #ffffff;
        transition: all 0.18s;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 36px;
        user-select: none;
      }
      .chip-option:hover {
        border-color: #005a3c;
        color: #005a3c;
      }
      .chip-option.selected {
        background: var(--gl2);
        border-color: #005a3c;
        color: #005a3c;
      }

      /* SUBMIT BUTTON */
      .cf-submit {
        width: 100%;
        height: 60px;
        border: none;
        border-radius: 14px;
        background: #005a3c;
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 12px 28px rgba(0, 90, 60, 0.2);
        margin-top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }
      .cf-submit:hover {
        background: #004a32;
        transform: translateY(-2px);
      }
      .cf-submit:active {
        transform: translateY(0);
      }
      .cf-submit-ico {
        font-size: 1.1rem;
      }
      .cf-disclaimer {
        font-size: 0.71rem;
        color: var(--bg2);
        text-align: center;
        margin-top: 12px;
        line-height: 1.5;
      }

      /* SUCCESS STATE */
      .cf-success {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 52px 24px;
        gap: 14px;
      }
      .success-ico-wrap {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--gl2);
        border: 1px solid var(--gl2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      @keyframes popIn {
        from {
          transform: scale(0);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }
      .cf-success h3 {
        font-family: var(--serif);
        font-size: 1.5rem;
        font-style: italic;
        color: var(--bg2);
      }
      .cf-success p {
        font-size: 0.88rem;
        color: var(--bg2);
        line-height: 1.68;
        max-width: 360px;
      }
      .cf-success .next-steps {
        margin-top: 6px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
      }

      /* TRUST BADGES */
      .trust-badges {
        padding: 22px 24px;
      }
      .trust-badges-title {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--bg2);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .trust-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }
      .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: var(--rs);
        background: #ffffff;
        transition: all 0.22s;
      }
      .trust-item:hover {
        border-color: var(--gl2);
        background: var(--gl3);
      }
      .trust-item-ico {
        font-size: 1.4rem;
        margin-bottom: 6px;
      }
      .trust-item-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--bg2);
        line-height: 1.3;
      }

      /* FAQ MINI */
      .faqs {
        padding: 80px 0 100px 0;
        background: #fff;
      }
      .faq-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
        display: grid;
        grid-template-columns: 340px 1fr;
        gap: 80px;
        align-items: start;
      }
      .faq-tag {
        font-size: 0.78rem;
        font-weight: 500;
        color: #005a3c;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        letter-spacing: 0.01em;
      }
      .faq-heading {
        font-family: var(--serif);
        color: var(--bg2);
        margin: 0 0 24px;
        font-weight: 400;
        line-height: 1.15;
      }
      .faq-heading em {
        font-style: italic;
        font-weight: 400;
        font-size: 2.5rem;
        display: block;
        margin-bottom: 4px;
      }
      .faq-heading strong {
        font-style: normal;
        font-weight: 800;
        font-size: 2.6rem;
        display: block;
      }
      .faq-desc {
        font-size: 0.95rem;
        color: var(--bg2);
        line-height: 1.6;
        margin: 0 0 32px;
      }
      .faq-cta {
        display: inline-block;
        background: #005a3c;
        color: #fff;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
        font-family: inherit;
      }
      .faq-cta:hover {
        background: #004a32;
      }
      .faq-right {
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        padding-top: 0;
      }
      .fq {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        overflow: hidden;
      }
      .fq-btn {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 22px 0;
        font-size: 1rem;
        font-weight: 400;
        color: var(--bg2);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.18s;
      }
      .fq-btn:hover {
        color: #005a3c;
      }
      .fq-arr {
        font-size: 0.55rem;
        color: var(--bg2);
        transition: transform 0.25s;
        flex-shrink: 0;
        line-height: 1;
      }
      .fq.open .fq-arr {
        transform: rotate(180deg);
      }
      .fq-body {
        font-size: 0.92rem;
        color: var(--bg2);
        line-height: 1.75;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .fq.open .fq-body {
        padding-bottom: 20px;
        max-height: 300px;
      }

      /* PROCESS MINI */
      .process-mini {
        padding: 28px;
      }
      .process-mini-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--bg2);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 20px;
      }
      .pm-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .pm-step {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 0 0 20px;
        position: relative;
      }
      .pm-step::before {
        content: "";
        position: absolute;
        left: 11px;
        top: 24px;
        bottom: 0;
        width: 1px;
        background: rgba(0, 0, 0, 0.12);
      }
      .pm-step:last-child::before {
        display: none;
      }
      .pm-dot {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        flex-shrink: 0;
        background: var(--gl);
        border: 1.5px solid #005a3c;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        font-weight: 700;
        color: #005a3c;
        margin-top: 1px;
      }
      .pm-title {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 3px;
      }
      .pm-desc {
        font-size: 0.78rem;
        color: var(--bg2);
        line-height: 1.55;
      }

      /* WA CTA CARD */
      .wa-card {
        padding: 28px;
        display: flex;
        gap: 18px;
        align-items: center;
        background: white;
        border-color: rgba(0, 0, 0, 0.15) !important;
      }
      .wa-card:hover {
        border-color: var(--bg2) !important;
      }
      .wa-ico-big {
        font-size: 2.4rem;
        flex-shrink: 0;
      }
      .wa-content h4 {
        font-size: 0.97rem;
        font-weight: 600;
        color: var(--bg2);
        margin-bottom: 4px;
      }
      .wa-content p {
        font-size: 0.82rem;
        color: var(--bg2);
        line-height: 1.6;
        margin-bottom: 12px;
      }
      .wa-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: #005a3c;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 0.83rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 40px;
      }
      .wa-btn:hover {
        background: #004a32;
        color: #fff;
        transform: translateY(-1px);
      }

       /* ═══════════════════════════════════════
         RESPONSIVE — COMPLETE
         ═══════════════════════════════════════ */

      /* ── 1099px ── */
      @media (max-width: 1099px) {
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .faq-layout {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .cta-inner {
          grid-template-columns: 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr;
        }
        .proc-steps {
          grid-template-columns: 1fr 1fr 1fr;
          gap: 24px;
        }
        .proc-line {
          display: none;
        }
        .metrics-grid {
          grid-template-columns: 1fr 1fr;
        }
        .trigger-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .steps-wrap {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .steps-visual {
          min-height: 320px;
          order: -1;
        }
        .collab-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .impact-row {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* ── 991px ── */
      @media (max-width: 991px) {
        .nb-links,
        .nb-cta {
          display: none !important;
        }
        .ham {
          display: flex !important;
        }
        .svc-grid {
          grid-template-columns: 1fr 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .why-card.hero-card {
          grid-column: unset;
        }
        .testi-grid {
          grid-template-columns: 1fr 1fr;
        }
        .footer-links {
          grid-template-columns: 1fr 1fr;
        }
        .trigger-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* ── 768px ── */
      @media (max-width: 768px) {
        .ap-hero {
          padding: 96px 24px 56px;
          min-height: 64vh;
          background: #ffffff;
          color: var(--bg2);
        }
        section {
          padding: 72px 24px !important;
          background: #ffffff;
          color: var(--bg2);
        }
        .hero-title {
          font-size: clamp(2.4rem, 7vw, 3.2rem);
        }
        .sec-h {
          font-size: clamp(1.7rem, 4.5vw, 2.2rem);
        }
        .svc-grid {
          grid-template-columns: 1fr 1fr !important;
        }
        .steps-visual {
          min-height: 260px;
        }
        .inline-cta-band {
          padding: 24px;
          background: #ffffff;
        }
        .trigger-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        .value-grid {
          grid-template-columns: 1fr 1fr;
        }
        .val-desc {
          font-size: 0.79rem;
          color: var(--bg2);
        }
        .closing-band {
          padding: 56px 24px;
          background: #ffffff;
        }
        .steps-list::before {
          left: 19px;
        }
        /* Footer 768px */
        footer {
          padding: 56px 24px 32px;
        }
        .footer-top {
          gap: 32px;
          padding-bottom: 40px;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
        }
        .footer-badges {
          flex-wrap: wrap;
        }
      }

      /* ── 640px ── */
      @media (max-width: 640px) {
        .mob-cta-bar {
          display: flex;
        }
        body {
          padding-bottom: calc(70px + env(safe-area-inset-bottom));
          background: #ffffff;
          color: var(--bg2);
        }
        .ap-hero {
          padding: 86px 20px 48px;
          min-height: 80svh;
          background: #ffffff;
        }
        section {
          padding: 60px 20px !important;
          background: #ffffff;
        }
        .nbi {
          padding: 0 20px;
        }
        .ap-h1 {
          font-size: clamp(2rem, 7.5vw, 2.6rem);
          color: #005a3c;
        }
        .hero-title {
          font-size: clamp(2rem, 8vw, 2.6rem);
        }
        .hero-sub {
          font-size: 0.95rem;
        }
        .hero-pill {
          font-size: 0.68rem;
          padding: 5px 14px 5px 8px;
        }
        .hero-cta-row {
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }
        .hero-cta-row .btn-p,
        .hero-cta-row .btn-s {
          width: 100%;
          max-width: 320px;
          color: var(--bg2);
          border-color: #005a3c;
        }
        .hero-pills {
          gap: 7px;
        }
        .hero-pill-link {
          font-size: 0.72rem;
          padding: 6px 12px;
          min-height: 38px;
          color: var(--bg2);
        }
        .svc-grid {
          grid-template-columns: 1fr !important;
        }
        .metrics-grid {
          grid-template-columns: 1fr 1fr !important;
        }
        .si {
          padding: 0 !important;
        }
        .why-grid {
          grid-template-columns: 1fr !important;
        }
        .proc-grid {
          grid-template-columns: 1fr !important;
        }
        .testi-grid {
          grid-template-columns: 1fr !important;
        }
        .ind-track {
          gap: 12px;
        }
        .cta-band {
          padding: 48px 20px !important;
        }
        .cf-row {
          grid-template-columns: 1fr !important;
        }
        .cf-input {
          font-size: 16px;
        }
        .cf-wrap {
          padding: 28px 20px;
        }
        .hstats {
          gap: 0;
        }
        .hstat {
          min-width: 130px;
        }
        .proc-steps {
          grid-template-columns: 1fr 1fr;
        }
        .trigger-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }
        .trigger-card {
          padding: 18px 14px;
          color: var(--bg2);
        }
        .trig-ico {
          width: 40px;
          height: 40px;
          font-size: 1rem;
          background: rgba(0, 90, 60, 0.08);
          color: #005a3c;
          border-color: rgba(0, 90, 60, 0.2);
        }
        .trig-title {
          font-size: 0.84rem;
          color: var(--bg2);
        }
        .trig-desc {
          font-size: 0.76rem;
          display: none;
          color: var(--bg2);
        }
        .steps-list::before {
          left: 17px;
          background: rgba(0, 90, 60, 0.2);
        }
        .step-item {
          gap: 14px;
        }
        .step-num {
          min-width: 36px;
          height: 36px;
          font-size: 0.7rem;
          background: rgba(0, 90, 60, 0.1);
          color: #005a3c;
        }
        .step-title {
          font-size: 0.88rem;
          color: var(--bg2);
        }
        .step-desc {
          font-size: 0.8rem;
          color: var(--bg2);
        }
        .steps-visual {
          min-height: 220px;
        }
        .value-grid {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }
        .value-card {
          padding: 18px 14px;
          min-height: 64px;
          color: var(--bg2);
        }
        .val-ico {
          font-size: 1.2rem;
          margin-bottom: 7px;
          color: #005a3c;
        }
        .val-title {
          font-size: 0.84rem;
          color: var(--bg2);
        }
        .val-desc {
          font-size: 0.76rem;
          color: var(--bg2);
        }
        .sol-item {
          min-height: 60px;
          color: var(--bg2);
        }
        .impact-row {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 12px;
        }
        .ic-n {
          font-size: 2rem;
          color: #005a3c;
        }
        .closing-band {
          padding: 48px 20px;
          background: #ffffff;
        }
        .cta-row {
          flex-direction: column;
          align-items: stretch;
        }
        .cta-row .btn-p,
        .cta-row .btn-s {
          text-align: center;
          min-height: 50px;
          justify-content: center;
          color: var(--bg2);
          border-color: #005a3c;
        }
        .inline-cta-band {
          padding: 20px;
          background: #ffffff;
        }
        .inline-cta-band .si {
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
        }
        .inline-cta-band .si > div:last-child {
          width: 100%;
          display: flex;
          gap: 10px;
        }
        .inline-cta-band .si .btn-p,
        .inline-cta-band .si .btn-s {
          flex: 1;
          min-height: 48px;
          justify-content: center;
          text-align: center;
          color: var(--bg2);
        }
        .sec-emphasis {
          padding: 16px 18px 16px 20px;
          font-size: 1rem;
          color: var(--bg2);
        }
        /* Footer 640px */
        footer {
          padding: 48px 20px 28px;
        }
        .footer-top {
          grid-template-columns: 1fr;
          gap: 28px;
          padding-bottom: 32px;
        }
        .footer-links {
          grid-template-columns: 1fr 1fr;
          gap: 20px;
        }
        .fl-col h4 {
          margin-left: 0;
          margin-bottom: 12px;
          font-size: 0.65rem;
        }
        .fl-col ul li {
          margin-bottom: 8px;
        }
        .fl-col ul li a {
          font-size: 0.8rem;
        }
        .footer-logo img {
          height: 24px;
        }
        .footer-desc {
          font-size: 0.79rem;
          max-width: 100%;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
          margin-top: 20px;
        }
        .footer-copy {
          font-size: 0.7rem;
        }
        .footer-badge {
          font-size: 0.62rem;
          padding: 3px 8px;
        }
      }

      /* ── 420px ── */
      @media (max-width: 420px) {
        .hero-title {
          font-size: 1.9rem;
        }
        .ap-h1 {
          font-size: 1.95rem;
          color: #005a3c;
        }
        .metrics-grid {
          grid-template-columns: 1fr 1fr !important;
        }
        .svc-grid {
          grid-template-columns: 1fr !important;
        }
        .proc-steps {
          grid-template-columns: 1fr;
        }
        .tech-legend {
          gap: 6px;
        }
        .tech-pill {
          font-size: 0.67rem;
          padding: 4px 10px 4px 7px;
        }
        .value-grid {
          grid-template-columns: 1fr !important;
        }
        .trigger-grid {
          grid-template-columns: 1fr 1fr;
          gap: 8px;
        }
        .trig-title {
          font-size: 0.8rem;
          color: var(--bg2);
        }
        .trig-desc {
          display: none;
        }
        /* Footer 420px */
        footer {
          padding: 40px 16px 24px;
        }
        .footer-links {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .footer-top {
          gap: 24px;
        }
      }

      /* ── 360px ── */
      @media (max-width: 360px) {
        .hero-title {
          font-size: 1.75rem;
        }
        .ap-h1 {
          font-size: 1.8rem;
          color: #005a3c;
        }
        section {
          padding: 52px 14px !important;
          background: #ffffff;
        }
        .trigger-grid {
          grid-template-columns: 1fr;
        }
        /* Footer 360px */
        footer {
          padding: 36px 14px 20px;
        }
        .footer-links {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .footer-badges {
          gap: 6px;
        }
      }
      @media (hover: hover) {
        .trigger-card:hover .trig-ico {
          background: rgba(0, 90, 60, 0.18);
          border-color: #005a3c;
        }
        .trigger-card:hover {
          transform: translateY(-4px);
        }
        .step-item:hover .step-num {
          background: rgba(0, 90, 60, 0.18);
          box-shadow: 0 0 0 6px rgba(0, 90, 60, 0.12);
        }
        .hero-pill-link:hover {
          background: #f5f5f5;
          color: var(--bg2);
        }
      }

      /* ═══ ADDITIONAL RESPONSIVE FIXES ═══ */

      @media (max-width: 768px) {
        .value-grid {
          grid-template-columns: 1fr 1fr;
        }
        .val-desc {
          font-size: 0.79rem;
          color: var(--bg2);
        }
        section {
          padding: 72px 24px !important;
          background: #ffffff;
        }
        .closing-band {
          padding: 56px 24px;
          background: #ffffff;
        }
        .steps-list::before {
          left: 19px;
        }
      }

      @media (max-width: 640px) {
        .value-grid {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }
        .value-card {
          padding: 18px 14px;
          min-height: 64px;
          color: var(--bg2);
        }
        .val-ico {
          font-size: 1.2rem;
          margin-bottom: 7px;
          color: #005a3c;
        }
        .val-title {
          font-size: 0.84rem;
          color: var(--bg2);
        }
        .val-desc {
          font-size: 0.76rem;
          color: var(--bg2);
        }
        .sol-item {
          min-height: 60px;
          color: var(--bg2);
        }
        .step-item {
          gap: 14px;
        }
        .step-num {
          min-width: 36px;
          height: 36px;
          font-size: 0.7rem;
          background: rgba(0, 90, 60, 0.1);
          color: #005a3c;
        }
        .step-title {
          font-size: 0.88rem;
          color: var(--bg2);
        }
        .step-desc {
          font-size: 0.8rem;
          color: var(--bg2);
        }
        .steps-list::before {
          left: 17px;
        }
        .inline-cta-band {
          padding: 20px;
          background: #ffffff;
        }
        .inline-cta-band .si {
          flex-direction: column;
          align-items: flex-start;
          gap: 14px;
        }
        .inline-cta-band .si > div:last-child {
          width: 100%;
          display: flex;
          gap: 10px;
        }
        .inline-cta-band .si .btn-p,
        .inline-cta-band .si .btn-s {
          flex: 1;
          min-height: 48px;
          justify-content: center;
          text-align: center;
          color: var(--bg2);
        }
        .hero-pills {
          gap: 7px;
        }
        .hero-pill-link {
          font-size: 0.72rem;
          padding: 6px 12px;
          min-height: 38px;
          color: var(--bg2);
        }
      }

      @media (max-width: 420px) {
        .value-grid {
          grid-template-columns: 1fr;
        }
        .trig-desc {
          display: none;
        }
      }

      @media (max-width: 420px) {
        .value-grid {
          grid-template-columns: 1fr !important;
        }
      }
    