
    :root {
      --bg: #ffffff;
      --bg2: #08111f;
      --green: #1a6b3c;
      --green2: #22a050;
      --green3: #34c759;
      --green4: #5de382;
      --gl: rgba(34, 160, 80, .12);
      --gl2: rgba(34, 160, 80, .25);
      --gl3: rgba(34, 160, 80, .08);
      --glass: rgba(255, 255, 255, .055);
      --glass2: rgba(255, 255, 255, .09);
      --glass3: rgba(255, 255, 255, .13);
      --gb: rgba(255, 255, 255, .1);
      --gb2: rgba(255, 255, 255, .18);
      --text: #f0f7f2;
      --text2: rgba(255, 255, 255, .62);
      --text3: rgba(255, 255, 255, .36);
      --serif: 'Instrument Serif', Georgia, serif;
      --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --T: .4s cubic-bezier(.4, 0, .2, 1);
      --r: 20px;
      --rs: 14px;
      --rx: 8px;
      --rm: 10px;
    }

    /* ══════════════════════════════════════════════════════
   BOOTSTRAP RESET — override Bootstrap defaults to keep
   JMDA dark theme. This section MUST come AFTER the
   Bootstrap CSS link and BEFORE all component rules.
   ══════════════════════════════════════════════════════ */

    /* Reset Bootstrap's blue link color */
    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover,
    a:focus {
      color: inherit;
      text-decoration: none;
    }

    /* Reset Bootstrap's heading colors */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: var(--text);
      margin-top: 0;
    }

    /* Reset Bootstrap's body color override */
    body {
      color: var(--text);
    }

    /* Reset Bootstrap's muted text to our theme */
    .text-muted {
      color: var(--text3) !important;
    }

    /* Reset Bootstrap's border color */
    .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: var(--bg);
      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; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.orb1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(26,107,60,.5), transparent 70%); top: -200px; left: -150px; animation: orbDrift1 18s ease-in-out infinite alternate; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(37,99,235,.35), transparent 70%); bottom: -100px; right: -100px; animation: orbDrift2 22s ease-in-out infinite alternate; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(96,165,250,.2), 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(.9); } } */

    /* SCROLL PROGRESS */
    #spb {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--green), var(--green));
      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: rgb(255, 255, 255);
      backdrop-filter: saturate(200%) blur(32px);
      -webkit-backdrop-filter: saturate(200%) blur(32px);
      border-bottom: 1px solid var(--gb);
      transition: background var(--T), box-shadow var(--T);
    }

    #nb.nb--scroll {
      background: rgba(255, 255, 255, 255);
      box-shadow: 0 4px 40px rgba(0, 0, 0, .45);
    }

    .nbi {
      max-width: 1280px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 32px;
    }

    .nlogo img {
      height: 30px;
      width: auto;
      display: block;
    }

    .nb-links {
      display: flex;
      gap: 4px;
      list-style: none;
    }

    .nb-links a {
      font-size: .78rem;
      font-weight: 500;
      color: var(--bg2);
      text-decoration: none;
      padding: 7px 13px;
      border-radius: var(--rx);
      transition: all .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: var(--green3);
      transition: transform .22s;
    }

    .nb-links a:hover,
    .nb-links a.active {
      color: var(--bg2);
      background: var(--glass);
    }

    .nb-links a.active::after,
    .nb-links a:hover::after {
      transform: translateX(-50%) scaleX(1);
    }

    .nb-cta {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 9px 22px;
      border-radius: 24px;
      font-size: .78rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all .22s;
      font-family: var(--sans);
      box-shadow: 0 0 20px rgba(37, 99, 235, .35);
      -webkit-tap-highlight-color: transparent;
    }

    .nb-cta:hover {
      transform: translateY(-1px) scale(1.03);
      box-shadow: 0 4px 30px rgba(96, 165, 250, .5);
      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 .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 {
      height:50vh;
      display: flex;
      animation: fadeIn .22s ease;
    }

    #mob a {
      font-size: 1.rem;
      font-weight: 400;
      color: var(--bg2);
      text-decoration: none;
      font-family: sans-serif;
      font-style: regular;
      font-size
    }

    #mob a:hover {
      color: var(--green3);
    }

    #mob .nb-cta {
      font-style: normal;
      font-size: .95rem;
      padding: 14px 38px;
      margin-top: 8px;
    }

    /* GLASS CARD BASE */
    .gc {
      background: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--bg2);
      border-radius: var(--r);
      transition: all var(--T);
    }

    .gc:hover {
      background: var(--glass2);
      border-color: var(--gb2);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 0 1px rgba(37, 99, 235, .15);
    }

    /* 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;
    }

    #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(--glass2);
      backdrop-filter: blur(16px);
      border: 1px solid var(--gl2);
      border-radius: 30px;
      padding: 6px 18px 6px 8px;
      font-size: .72rem;
      font-weight: 500;
      color: var(--bg2);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeInUp .5s ease .1s both;
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      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 .65s ease .22s both;
      background: var(--green);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-title .accent {
      font-style: normal;
      -webkit-text-fill-color: var(--green);
    }

    .hero-rule {
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--green));
      margin: 24px auto;
      animation: expandRule .7s ease .72s both;
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--text2);
      font-weight: 300;
      line-height: 1.75;
      max-width: 570px;
      margin: 0 auto 48px;
      animation: fadeInUp .65s ease .42s both;
    }

    .typer-wrap {
      display: block;
      margin-top: 4px;
      color: var(--green3);
      font-style: normal;
    }

    #typer {
      border-right: 2px solid var(--green3);
      padding-right: 3px;
      animation: blinkCaret .75s step-end infinite;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp .65s ease .58s both;
    }

    .btn-p {
      background: linear-gradient(135deg, var(--green), var(--green));
      color: #fff;
      border: none;
      padding: 15px 36px;
      border-radius: 30px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all .24s;
      font-family: var(--sans);
      box-shadow: 0 4px 28px rgba(37, 99, 235, .4);
      -webkit-tap-highlight-color: transparent;
    }

    .btn-p:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(96, 165, 250, .55);
      color: #fff;
    }

    .btn-s {
      background: var(--glass2);
      color: var(--green);
      border: 1px solid var(--green);
      padding: 15px 36px;
      border-radius: 30px;
      font-size: .95rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all .24s;
      font-family: var(--sans);
      backdrop-filter: blur(16px);
      -webkit-tap-highlight-color: transparent;
    }

    .btn-s:hover {
      border-color: var(--);
      background: var(--green);
      color: var(--bg);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 0;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 72px;
      border-top: 1px solid var(--gb);
      padding-top: 48px;
      width: 100%;
      max-width: 800px;
      animation: fadeInUp .65s ease .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: var(--bg2);
    }

    .hstat-n {
      font-family: var(--serif);
      font-size: 2.6rem;
      color: #fff;
      line-height: 1;
      font-style: italic;
    }

    .hstat-l {
      font-size: .7rem;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: .09em;
      margin-top: 6px;
    }

    /* TRUST BAR */
    .trust {
      position: relative;
      z-index: 1;
      background: var(--glass);
      backdrop-filter: blur(20px);
      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: .68rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text3);
      font-weight: 600;
      white-space: nowrap;
    }

    .trust-sep {
      width: 1px;
      height: 16px;
      background: var(--gb2);
    }

    .trust-items {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .trust-item {
      font-size: .78rem;
      color: var(--text3);
      font-weight: 500;
      transition: color .2s;
      cursor: default;
    }

    .trust-item:hover {
      color: var(--text);
    }

    /* SECTIONS */
    section {
      padding: 100px 32px;
      position: relative;
      z-index: 1;
    }

    .si {
     
      max-width: 100%;
      padding: 50px 32px;
    }

    .sec-tag {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--green);
      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: var(--green2);
      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: .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: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid var(--gb);
      border-radius: var(--r);
      padding: 32px 28px;
      transition: all .4s cubic-bezier(.23, 1, .32, 1);
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green2), var(--green3), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    }

    .svc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .08), transparent 65%);
      opacity: 0;
      transition: opacity .35s;
      border-radius: var(--r);
    }

    .svc-card:hover {
      background: var(--glass2);
      border-color: rgba(37, 99, 235, .35);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .1);
    }

    .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 .35s;
    }

    .svc-card:hover .svc-ico {
      transform: scale(1.12) rotate(-4deg);
    }

    .svc-num {
      font-size: .63rem;
      font-weight: 700;
      color: var(--green2);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .svc-name {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }

    .svc-body {
      font-size: .83rem;
      color: var(--text2);
      line-height: 1.65;
    }

    .svc-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .svc-tag {
      font-size: .63rem;
      background: var(--gl);
      color: var(--green3);
      padding: 3px 10px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: .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: var(--green2);
      transition: transform .4s;
      transform-origin: center;
    }

    .metric:hover::before {
      transform: translateX(-50%) scaleX(1);
    }

    .metric-n {
      font-family: var(--serif);
      font-size: 3rem;
      color: var(--text);
      font-style: italic;
      line-height: 1;
    }

    .metric-label {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text3);
      margin-top: 10px;
    }

    .metric-desc {
      font-size: .78rem;
      color: var(--text2);
      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 .3s, background .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(--text);
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }

    .why-body {
      font-size: .86rem;
      color: var(--text2);
      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 .28s;
    }

    .ind-chip:hover {
      transform: translateY(-4px);
    }

    .ind-chip:hover .ind-name {
      color: var(--green3);
    }

    .ind-emo {
      font-size: 1.6rem;
      margin-bottom: 10px;
      display: block;
      transition: transform .3s;
    }

    .ind-chip:hover .ind-emo {
      transform: scale(1.15);
    }

    .ind-name {
      font-size: .84rem;
      font-weight: 600;
      color: var(--text);
      transition: color .2s;
    }

    .ind-sub {
      font-size: .71rem;
      color: var(--text3);
      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: var(--gb);
      z-index: 0;
      overflow: hidden;
    }

    .proc-line-fill {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, var(--green2), var(--green3));
      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: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--gb);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text3);
      transition: all .45s;
    }

    .proc-step.vis .proc-dot {
      border-color: var(--green2);
      background: var(--gl);
      color: var(--green3);
      box-shadow: 0 0 0 6px rgba(37, 99, 235, .1), 0 0 30px rgba(37, 99, 235, .2);
    }

    .proc-num {
      font-size: .62rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--green2);
      font-weight: 700;
      margin-bottom: 6px;
      opacity: 0;
      transition: opacity .4s .2s;
    }

    .proc-step.vis .proc-num {
      opacity: 1;
    }

    .proc-title {
      font-size: .83rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s .3s, transform .4s .3s;
    }

    .proc-step.vis .proc-title {
      opacity: 1;
      transform: none;
    }

    .proc-desc {
      font-size: .74rem;
      color: var(--text2);
      line-height: 1.55;
      margin-top: 6px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .4s .42s, transform .4s .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: linear-gradient(90deg, transparent, var(--green2), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .testi-card:hover::before {
      transform: scaleX(1);
    }

    .testi-mark {
      font-family: var(--serif);
      font-size: 4rem;
      color: var(--gl2);
      line-height: .8;
      font-style: italic;
      margin-bottom: 14px;
    }

    .testi-quote {
      font-size: .87rem;
      color: var(--text2);
      line-height: 1.74;
      font-style: italic;
      margin-bottom: 22px;
    }

    .testi-line {
      width: 28px;
      height: 1.5px;
      background: var(--green2);
      margin-bottom: 14px;
      transition: width .3s;
    }

    .testi-card:hover .testi-line {
      width: 48px;
    }

    .testi-name {
      font-size: .87rem;
      font-weight: 600;
      color: var(--text);
    }

    .testi-role {
      font-size: .73rem;
      color: var(--text3);
      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: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: -1;
    }

    .cta-band::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(37, 99, 235, .12), 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 var(--gb);
      border-bottom: 1px solid var(--gb);
    }

    .cta-title {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      color: var(--text);
      font-style: italic;
      line-height: 1.2;
      font-weight: 400;
    }

    .cta-title strong {
      font-style: normal;
      color: var(--green3);
    }

    .cta-sub {
      font-size: .92rem;
      color: var(--text2);
      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(--text);
      margin-bottom: 14px;
      font-weight: 400;
      line-height: 1.25;
    }

    .ci-desc {
      font-size: .9rem;
      color: var(--text2);
      line-height: 1.74;
      margin-bottom: 32px;
    }

    .ci-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      transition: transform .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 .2s;
    }

    .ci-row:hover .ci-ico {
      background: var(--gl2);
    }

    .ci-val {
      font-size: .86rem;
      color: var(--text2);
      line-height: 1.55;
    }

    .ci-val a {
      color: var(--green3);
      text-decoration: none;
      transition: color .2s;
    }

    .ci-val a:hover {
      color: var(--green4);
    }

    .cf-wrap {
      padding: 40px;
    }

    .cf-label {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--text2);
      font-weight: 600;
      margin-bottom: 7px;
      display: block;
    }

    .cf-input {
      width: 100%;
      background: rgba(255, 255, 255, .07);
      border: 1px solid var(--gb);
      border-radius: var(--rx);
      padding: 13px 15px;
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      transition: all .2s;
      -webkit-appearance: none;
      outline: none;
      -webkit-tap-highlight-color: transparent;
      margin-bottom: 18px;
    }

    .cf-input:focus {
      border-color: var(--green3);
      background: rgba(255, 255, 255, .1);
      box-shadow: 0 0 0 3px rgba(96, 165, 250, .15);
    }

    .cf-input::placeholder {
      color: var(--text3);
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    select.cf-input option {
      background: #0f1e3a;
      color: var(--text);
    }

    textarea.cf-input {
      resize: vertical;
      min-height: 96px;
    }

    .cf-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--green2), var(--green3));
      color: #fff;
      border: none;
      padding: 15px;
      border-radius: var(--rx);
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      font-family: var(--sans);
      transition: all .22s;
      box-shadow: 0 4px 24px rgba(37, 99, 235, .35);
      margin-top: 4px;
      -webkit-tap-highlight-color: transparent;
    }

    .cf-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(96, 165, 250, .5);
    }

    .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(--text);
    }

    .cf-ok p {
      font-size: .87rem;
      color: var(--text2);
      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 var(--gb);
      overflow: hidden;
    }

    .faq-btn {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 18px 0;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: var(--sans);
      -webkit-tap-highlight-color: transparent;
      transition: color .18s;
    }

    .faq-btn:hover {
      color: var(--green3);
    }

    .faq-arr {
      font-size: .7rem;
      color: var(--green2);
      transition: transform .28s, background .2s;
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: var(--glass);
      backdrop-filter: blur(8px);
      border: 1px solid var(--gb);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-item.open .faq-arr {
      transform: rotate(180deg);
      background: var(--green2);
      border-color: var(--green2);
      color: #fff;
    }

    .faq-body {
      font-size: .87rem;
      color: var(--text2);
      line-height: 1.74;
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
    }

    .faq-item.open .faq-body {
      padding-bottom: 18px;
    }

    /* FOOTER */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg2);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gb);
  padding: 72px 32px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gb);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-desc {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.72;
  max-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col h4 {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text);
  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: .82rem;
  color: var(--text);
  text-decoration: none;
  transition: color .18s;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.fl-col ul li a ::before{
  width: 10px;
  margin-right: 6px;
  color: var(--bg);
}

.fl-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--green2);
  transition: width .22s;
  margin-right: 0;
}


.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: .74rem;
  color: var(--text3);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  font-size: .65rem;
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gb);
  color: var(--text3);
  padding: 3px 10px;
  border-radius: 4px;
  transition: all .2s;
  cursor: pointer;
}

.footer-badge:hover {
  color: var(--bg);
  border-color: var(--gb2);
}
    /* 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: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.45rem;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
      transition: all .24s;
      -webkit-tap-highlight-color: transparent;
    }

    .fwa::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25d366;
      animation: waRipple 2.2s infinite;
    }

    .fwa:hover {
      transform: scale(1.12);
    }

    /* REVEAL */
    .rev {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s ease, transform .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(96, 165, 250, .5);
      }

      70% {
        box-shadow: 0 0 0 8px rgba(96, 165, 250, 0);
      }
    }

    @keyframes expandRule {
      from {
        width: 0;
      }

      to {
        width: 60px;
      }
    }

    @keyframes blinkCaret {

      from,
      to {
        border-color: transparent;
      }

      50% {
        border-color: var(--green3);
      }
    }

    @keyframes fillLine {
      to {
        width: 100%;
      }
    }

    @keyframes waRipple {
      0% {
        transform: scale(1);
        opacity: .35;
      }

      100% {
        transform: scale(1.8);
        opacity: 0;
      }
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .15);
      border-radius: 3px;
    }

    /* RESPONSIVE */
    @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;
      }
    }

    @media (max-width: 991px) {

      .nb-links,
      .nb-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

      .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;
      }
    }

    @media (max-width: 639px) {
      section {
        padding: 72px 20px;
      }

      .hero {
        padding: 90px 20px 60px;
      }

      .nbi {
        padding: 0 20px;
      }

      .svc-grid {
        grid-template-columns: 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .cf-row {
        grid-template-columns: 1fr;
      }

      .cf-wrap {
        padding: 28px 20px;
      }

      .metrics-grid {
        grid-template-columns: 1fr 1fr;
      }

      .proc-steps {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top {
        gap: 36px;
      }

      .footer-links {
        grid-template-columns: 1fr 1fr;
      }

      .hstats {
        gap: 0;
      }

      .hstat {
        min-width: 130px;
      }
    }

    @media (max-width: 420px) {
      .hero-title {
        font-size: 2.4rem;
      }

      .metrics-grid {
        grid-template-columns: 1fr;
      }

      .proc-steps {
        grid-template-columns: 1fr;
      }
    }

    /* ── 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 var(--gb);
      background: rgba(6, 13, 24, 0.6);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      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: .7rem;
      color: rgba(255, 255, 255, .3);
      letter-spacing: .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: var(--glass);
      border: 1px solid var(--gb);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 30px;
      padding: 4px 12px 4px 8px;
      font-size: .7rem;
      font-weight: 500;
      color: var(--text2);
      transition: all .22s;
      white-space: nowrap;
    }

    .tech-pill:hover {
      background: var(--glass2);
      border-color: var(--gb2);
      color: var(--text);
    }

    .tp-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media(max-width:639px) {
      .tech-globe-wrap {
        height: 340px;
      }

      .tech-sec {
        padding: 60px 20px;
      }
    }


    /* ── STICKY MOBILE CTA ── */
    .mob-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9990;
      background:var(--bg)   !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
      align-items: center;
      gap: 10px;
      transform: translateY(0);
      transition: transform .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: .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-primary {
      background: linear-gradient(135deg, var(--green2), var(--green3));
      color: #fff;
    }

    .mob-cta-wa {
      background: #25d366;
      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);
        border-color: rgba(37, 99, 235, .25);
      }

      .gc:hover {
        transform: translateY(-3px);
      }
    }

    /* PREVENT hover stuck on touch */
    @media(hover:none) {
      .svc-card:hover {
        transform: none;
      }

      .gc:hover {
        transform: none;
      }
    }

    /* ── TOUCH-ACTION on all interactive elements ── */
    .btn-p,
    .btn-s,
    .svc-card,
    .fwa,
    .nb-link,
    .ham {
      touch-action: manipulation;
    }

    /* ── EXTRA BREAKPOINTS ── */
    @media(max-width:768px) {
      .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;
      }

      section {
        padding: 72px 24px !important;
      }
    }

    @media(max-width:640px) {
      .mob-cta-bar {
        display: flex;
      }

      body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
      }

      .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
      }

      .hero-sub {
        font-size: .95rem;
      }

      .hero-pill {
        font-size: .68rem;
        padding: 5px 14px 5px 8px;
      }

      .svc-grid {
        grid-template-columns: 1fr !important;
      }

      .metrics-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      section {
        padding: 60px 20px !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;
      }

      #techGlobeWrap .tech-hint {
        font-size: .62rem;
      }

      .cta-band {
        padding: 48px 20px !important;
      }

      .cf-row {
        grid-template-columns: 1fr !important;
      }

      .cf-input {
        font-size: 16px;
      }
    }

    @media(max-width:420px) {
      .hero-title {
        font-size: 1.9rem;
      }

      .metrics-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      .svc-grid {
        grid-template-columns: 1fr !important;
      }

      .tech-legend {
        gap: 6px;
      }

      .tech-pill {
        font-size: .67rem;
        padding: 4px 10px 4px 7px;
      }
    }

    @media(max-width:360px) {
      .hero-title {
        font-size: 1.75rem;
      }

      section {
        padding: 52px 14px !important;
      }
    }



    /* ═══════════════════════════════════════════════
   WHY JMDA PAGE — ADDITIONAL STYLES
   Same design tokens as jmdanalytics.co.in
   ═══════════════════════════════════════════════ */

    /* 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;
    }

    /* Sticky mobile CTA */
    .mob-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9990;
      background: rgba(6, 13, 24, .97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--gb);
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
      align-items: center;
      gap: 10px;
      transform: translateY(0);
      transition: transform .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: .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-primary {
      background: linear-gradient(135deg, var(--green2), var(--green3));
      color: #fff;
    }

    .mob-cta-wa {
      background: #25d366;
      color: #fff;
      flex: 0 0 52px;
      font-size: 1.3rem;
    }

    /* HERO */
    .why-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;
    }

    .why-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 160, 80, .18) 0%, transparent 65%);
    }

    .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;
    }

    .why-hero>* {
      position: relative;
      z-index: 1;
    }

    .bc-nav {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      color: var(--bg2);
      margin-bottom: 16px;
      animation: fadeInUp .5s ease .1s both;
    }

    .bc-nav a {
      color: var(--bg2);
    }

    .why-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--glass2);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--gl2);
      border-radius: 30px;
      padding: 5px 16px 5px 8px;
      font-size: .72rem;
      font-weight: 500;
      color: var(--green);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeInUp .55s ease .18s both;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green3);
      animation: pulseDot 2.5s infinite;
      flex-shrink: 0;
    }

    .why-h1 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 5.5vw, 4.8rem);
      font-style: italic;
      font-weight: 400;
      line-height: 1.06;
      max-width: 860px;
      margin: 0 auto 16px;
      animation: fadeInUp .65s ease .28s both;
      background: black;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .why-h1 strong {
      font-style: normal;
      -webkit-text-fill-color: var(--green2);
    }

    .hero-rule {
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green2), var(--green4));
      margin: 16px auto;
      animation: expandRule .7s ease .7s both;
    }

    .why-sub {
      font-size: clamp(.95rem, 1.8vw, 1.12rem);
      color: var(--bg2);
      font-weight: 300;
      line-height: 1.72;
      max-width: 640px;
      margin: 0 auto;
      animation: fadeInUp .65s ease .44s both;
    }

    /* PROBLEM */
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 60px;
    }

    .sec-lead {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--bg2);
      line-height: 1.82;
      margin-bottom: 28px;
    }

    .pain-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pain-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px solid var(--gb);
      transition: transform .22s;
    }

    .pain-item:last-child {
      border-bottom: none;
    }

    .pain-ico {
      min-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: .95rem;
      flex-shrink: 0;
      transition: all .22s;
    }

    .pain-text {
      font-size: .9rem;
      color: var(--bg2);
      line-height: 1.58;
      padding-top: 9px;
    }

    .pain-text strong {
      color: var(--bg2);
      font-weight: 600;
    }

    .problem-visual {
      position: relative;
      min-height: 480px;
     overflow: hidden;
    }

    .problem-visual canvas {
      border-style:solid;
    border-style: solid;
    border: 0.5px solid var(--bg2); /* This line already includes 'solid' */
      position: absolute;
      inset: 0;
      width: 100% !important;
      height: 100% !important;
      display: block;
    }

    .vis-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 2;
      background: var(--glass2);
     
      
      border: 1px solid var(--bg2);
      border-radius: var(--rm);
      padding: 14px 20px;
    }

    .vis-badge-n {
      font-family: var(--serif);
      font-size: 1.8rem;
      color: var(--bg2);
      font-style: italic;
      line-height: 1;
    }

    .vis-badge-l {
      font-size: .68rem;
      color: var(--bg2);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: 3px;
    }

    /* STATEMENT BAND */
    .statement-band {
      background: var(--green);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid var(--gb);
      border-bottom: 1px solid var(--gb);
      padding: 64px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .statement-band::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(34, 160, 80, .08), transparent 65%);
    }

    .statement-quote {
      font-family: var(--serif);
      font-size: clamp(1.45rem, 2.8vw, 2.2rem);
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      max-width: 820px;
      margin: 0 auto 18px;
      position: relative;
      z-index: 1;
    }

    .statement-quote em {
      font-style: normal;
      color: var(--green3);
    }

    .statement-sub {
      font-size: .97rem;
      color: var(--text2);
      line-height: 1.72;
      max-width: 640px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* IMPACT COUNTERS */
    .impact-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 56px;
    }

    .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: var(--green3);
      line-height: 1;
    }

    .ic-l {
      font-size: .67rem;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: .09em;
      margin-top: 6px;
    }

    .ic-d {
      font-size: .79rem;
      color: var(--bg2);
      margin-top: 4px;
      line-height: 1.4;
    }

    /* APPROACH + SOLUTIONS */
    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      margin-top: 56px;
    }

    .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 var(--green2);
      background: var(--glass);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 0 var(--rm) var(--rm) 0;
      margin: 24px 0;
    }

    .sec-emphasis span {
      color: var(--bg2);
    }

    .svc-chips {
      display: flex;
      gap: 9px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .svc-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--gl);
      border: 1px solid var(--gl2);
      border-radius: 30px;
      padding: 7px 16px 7px 10px;
      font-size: .78rem;
      font-weight: 500;
      color: var(--green);
      transition: all .2s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }

    .svc-chip-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green2);
      flex-shrink: 0;
    }

    .sol-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sol-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 20px;
      border-radius: var(--rm);
      transition: all .25s;
      cursor: default;
    }

    .sol-check {
      min-width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green2), var(--green3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      color: #fff;
      flex-shrink: 0;
      margin-top: 2px;
      box-shadow: 0 3px 12px rgba(34, 160, 80, .32);
    }

    .sol-title {
      font-size: .92rem;
      font-weight: 600;
      color: var(--bg2);
      margin-bottom: 3px;
    }

    .sol-desc {
      font-size: .82rem;
      color: var(--bg2);
      line-height: 1.62;
    }

    /* CLOSING */
    .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(34, 160, 80, .12), 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(--green);
      line-height: 1.45;
      margin-bottom: 8px;
    }

    .closing-line.accent {
      color: var(--green);
    }

    .closing-rule {
      width: 40px;
      height: 2px;
      background: var(--green);
      margin: 24px auto;
      border-radius: 2px;
    }

    .closing-brand {
      font-size: .9rem;
      color: var(--bg2);
      font-weight: 500;
      letter-spacing: .04em;
      margin-bottom: 36px;
    }

    .cta-row {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 1099px) {
      .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .problem-visual {
        min-height: 340px;
        order: -1;
      }

      .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .impact-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 991px) {

      .nb-links,
      .nb-cta {
        display: none !important;
      }

      .ham {
        display: flex !important;
      }
    }

    @media (max-width: 768px) {
      .why-hero {
        padding: 96px 24px 56px;
        min-height: 64vh;
      }

      section {
        padding: 72px 24px !important;
      }

      .problem-visual {
        min-height: 280px;
      }

      .statement-band {
        padding: 44px 24px;
      }
    }

    @media (max-width: 640px) {
      .mob-cta-bar {
        display: flex;
      }

      body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
      }

      .why-hero {
        padding: 86px 20px 48px;
        min-height: 80svh;
      }

      section {
        padding: 60px 20px !important;
      }

      .nbi {
        padding: 0 20px;
      }

      .why-h1 {
        font-size: clamp(2rem, 7.5vw, 2.6rem);
      }

      .problem-visual {
        min-height: 220px;
      }

      .impact-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .ic-n {
        font-size: 2rem;
      }

      .closing-band {
        padding: 48px 20px;
      }

      .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;
      }

      .sol-item {
        padding: 14px 16px;
      }

      .svc-chips {
        gap: 7px;
      }

      .svc-chip {
        font-size: .74rem;
      }

      .sec-emphasis {
        padding: 16px 18px 16px 20px;
        font-size: 1rem;
      }

      .pain-text {
        font-size: .86rem;
      }
    }

    @media (max-width: 420px) {
      .why-h1 {
        font-size: 1.95rem;
      }

      .problem-grid {
        gap: 28px;
      }
    }

    @media (max-width: 360px) {
      .why-h1 {
        font-size: 1.8rem;
      }

      section {
        padding: 52px 14px !important;
      }
    }

    @media (hover: hover) {
      .pain-item:hover {
        transform: translateX(6px);
      }

      .pain-item:hover .pain-ico {
        background: var(--gl2);
        border-color: var(--green2);
      }

      .sol-item:hover {
        transform: translateX(6px);
        border-color: rgba(34, 160, 80, .3) !important;
      }

      .svc-chip:hover {
        background: var(--gl2);
        color: var(--green3);
        border-color: var(--green2);
      }
    }


    /* ── HERO CTA ROW ── */
    .hero-cta-row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 32px;
      animation: fadeInUp .65s ease .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 QUICK-CONTACT PILLS ── */
    .hero-pills {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
      animation: fadeInUp .65s ease .72s both;
    }

    .hero-pill-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--glass2);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--bg2);
      border-radius: 30px;
      padding: 8px 18px;
      font-size: .78rem;
      font-weight: 500;
      color: var(--bg2);
      text-decoration: none;
      transition: all .22s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
      min-height: 40px;
    }

    .hero-pill-link:hover {
      background: var(--green);
      color: var(--text);
      border-color: rgba(255, 255, 255, .28);
    }

    /* ── INLINE CTA BAND ── */
    .inline-cta-band {
      background: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-top: 1px solid var(--gb);
      border-bottom: 1px solid var(--gb);
      padding: 28px 32px;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .inline-cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(34, 160, 80, .07), transparent 65%);
    }

    .inline-cta-band .si {
      position: relative;
      z-index: 1;
    }

    /* ── ADDITIONAL RESPONSIVE FIXES ── */

    /* Pain items on small mobile */
    @media (max-width: 640px) {
      .pain-item {
        padding: 12px 0;
        gap: 11px;
      }

      .pain-ico {
        min-width: 36px;
        height: 36px;
        font-size: .85rem;
      }

      .pain-text {
        padding-top: 7px;
        font-size: .84rem;
      }

      .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;
      }

      .hero-pills {
        gap: 8px;
      }

      .hero-pill-link {
        font-size: .74rem;
        padding: 7px 14px;
      }

      .inline-cta-band {
        padding: 20px;
      }

      .inline-cta-band .si {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .inline-cta-band .si>div:last-child {
        width: 100%;
      }

      .inline-cta-band .si .btn-p,
      .inline-cta-band .si .btn-s {
        flex: 1;
        text-align: center;
        min-height: 48px;
      }
    }

    /* Fix impact row - force 2-col on 640px */
    @media (max-width: 640px) {
      .impact-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
      }
    }

    /* Fix mob-cta buttons - explicit sizing */
    .mob-cta-btn {
      touch-action: manipulation;
      min-height: 48px;
    }

    /* Fix btn-p/btn-s box-shadow using correct green color */
    .btn-p {
      box-shadow: 0 4px 28px rgba(34, 160, 80, .3) !important;
    }

    .btn-p:hover {
      box-shadow: 0 8px 40px rgba(34, 160, 80, .45) !important;
    }

    /* Ensure solution items have proper tap size on mobile */
    @media (max-width: 640px) {
      .sol-item {
        min-height: 64px;
      }

      .sol-check {
        min-width: 28px;
        height: 28px;
        font-size: .7rem;
      }
    }

    /* Fix approach grid stagger on tablet */
    @media (max-width: 768px) {
      .sol-list.stagger>* {
        transition-delay: 0ms !important;
      }
    }
