﻿      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --white: #ffffff;
        --offwhite: #f8fafc;
        --bg2: #eff6ff;
        --navy: #0f1c3f;
        --navy2: #1e3a6e;
        --slate: #475569;
        --muted: #94a3b8;
        --blue: #2563eb;
        --blue2: #1d4ed8;
        --bluelight: #dbeafe;
        --border: #e2e8f0;
        --border2: #cbd5e1;
        --shadow-sm:
          0 1px 3px rgba(15, 28, 63, 0.06), 0 4px 12px rgba(15, 28, 63, 0.04);
        --shadow:
          0 2px 8px rgba(15, 28, 63, 0.08), 0 12px 32px rgba(15, 28, 63, 0.06);
        --shadow-lg:
          0 4px 16px rgba(15, 28, 63, 0.1), 0 24px 48px rgba(15, 28, 63, 0.08);
        --ffd: "Playfair Display", Georgia, serif;
        --ffb: "Outfit", system-ui, sans-serif;
        --r: 10px;
        --rl: 16px;
      }

      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--ffb);
        background: var(--white);
        color: var(--navy);
        font-size: 16px;
        line-height: 1.65;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      ::-webkit-scrollbar {
        width: 4px;
      }
      ::-webkit-scrollbar-track {
        background: var(--offwhite);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--blue);
        border-radius: 2px;
      }

      /* ---- TYPOGRAPHY ---- */
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--ffd);
        font-weight: 700;
        line-height: 1.15;
        color: var(--navy);
      }
      h1 {
        font-size: clamp(2.4rem, 5vw, 4.2rem);
      }
      h2 {
        font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      }
      h3 {
        font-size: clamp(1.15rem, 2vw, 1.4rem);
      }
      p {
        color: var(--slate);
        font-weight: 300;
        line-height: 1.75;
      }
      strong {
        font-weight: 600;
        color: var(--navy);
      }
      em {
        font-style: italic;
        color: var(--blue);
      }

      /* ---- LAYOUT ---- */
      .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 28px;
      }
      .section {
        padding: 96px 0;
      }
      .section-sm {
        padding: 64px 0;
      }
      .tc {
        text-align: center;
      }
      .tc .s-sub {
        margin-left: auto;
        margin-right: auto;
      }

      /* ---- LABELS & TAGS ---- */
      .s-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--ffb);
        font-weight: 600;
        font-size: 0.78rem;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 14px;
      }
      .s-label::before {
        content: "";
        width: 24px;
        height: 2px;
        background: var(--blue);
        border-radius: 2px;
      }
      .s-head {
        margin-bottom: 16px;
      }
      .s-sub {
        max-width: 520px;
        font-size: 1rem;
        margin-bottom: 52px;
      }

      .chip {
        display: inline-block;
        padding: 5px 14px;
        border-radius: 100px;
        background: var(--bluelight);
        color: var(--blue2);
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-family: var(--ffb);
      }

      /* ---- BUTTONS ---- */
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 28px;
        border-radius: 8px;
        cursor: pointer;
        font-family: var(--ffb);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        border: none;
        transition: all 0.2s ease;
      }
      .btn-p {
        background: var(--blue);
        color: #fff;
      }
      .btn-p:hover {
        background: var(--blue2);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
      }
      .btn-o {
        background: var(--white);
        color: var(--navy);
        border: 1.5px solid var(--border2);
      }
      .btn-o:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: var(--bg2);
      }
      .btn-ghost {
        background: transparent;
        color: var(--blue);
        font-weight: 600;
        padding: 0;
      }
      .btn-ghost:hover {
        gap: 12px;
      }

      /* ---- NAV ---- */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transition: box-shadow 0.3s;
      }
      .nav-i {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 28px;
      }
      .logo-img {
        height: 44px;
        width: auto;
        display: block;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 0;
      }
      .nav-links a {
        color: var(--slate);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.18s;
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--navy);
        background: var(--offwhite);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        border: none;
        background: none;
      }
      .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: 0.3s;
      }
      .mobile-nav {
        display: none;
        flex-direction: column;
        padding: 12px 16px 16px;
        border-top: 1px solid var(--border);
        background: white;
        gap: 2px;
      }
      .mobile-nav.open {
        display: flex;
      }
      .mobile-nav a {
        color: var(--slate);
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.95rem;
      }
      .mobile-nav a:hover {
        background: var(--offwhite);
        color: var(--navy);
      }

      /* ---- HERO ---- */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        background: var(--white);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, #eff6ff 0%, transparent 70%);
        pointer-events: none;
      }
      .hero-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }
      .hero-chip {
        margin-bottom: 22px;
      }
      .hero h1 {
        margin-bottom: 22px;
      }
      .hero-sub {
        font-size: 1.08rem;
        margin-bottom: 36px;
        max-width: 480px;
      }
      .hero-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 52px;
      }
      .hero-divider {
        width: 100%;
        height: 1px;
        background: var(--border);
        margin-bottom: 32px;
      }
      .hero-proof {
        display: flex;
        align-items: center;
        gap: 32px;
        flex-wrap: wrap;
      }
      .proof-item {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .proof-num {
        font-family: var(--ffd);
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--navy);
      }
      .proof-label {
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.3;
      }
      .proof-divider {
        width: 1px;
        height: 32px;
        background: var(--border);
      }

      /* Hero right - floating dashboard mockup */
      .hero-visual {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px;
        box-shadow: var(--shadow-lg);
        position: relative;
      }
      .hv-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
      }
      .hv-title {
        font-family: var(--ffd);
        font-size: 1rem;
        font-weight: 600;
      }
      .hv-badge {
        font-size: 0.72rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 100px;
        background: #dcfce7;
        color: #15803d;
      }
      .hv-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
      }
      .hv-row:last-child {
        border-bottom: none;
      }
      .hv-label {
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--slate);
      }
      .hv-val {
        font-size: 0.84rem;
        font-weight: 600;
        color: var(--navy);
      }
      .hv-chip-g {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 100px;
        background: #dcfce7;
        color: #15803d;
        font-weight: 600;
      }
      .hv-chip-b {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 100px;
        background: var(--bluelight);
        color: var(--blue2);
        font-weight: 600;
      }
      .hv-chip-y {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 100px;
        background: #fef9c3;
        color: #a16207;
        font-weight: 600;
      }
      .hv-stat-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 20px;
      }
      .hv-stat {
        background: var(--offwhite);
        border-radius: var(--r);
        padding: 14px;
      }
      .hv-stat-n {
        font-family: var(--ffd);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--blue);
      }
      .hv-stat-l {
        font-size: 0.72rem;
        color: var(--muted);
        font-weight: 500;
        margin-top: 2px;
      }

      /* Floating cards */
      .hv-float-1 {
        position: absolute;
        top: -20px;
        left: -32px;
        background: white;
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 12px 16px;
        box-shadow: var(--shadow-sm);
        display: flex;
        gap: 10px;
        align-items: center;
        animation: floatA 3s ease-in-out infinite;
      }
      .hv-float-2 {
        position: absolute;
        bottom: -16px;
        right: -24px;
        background: white;
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 12px 16px;
        box-shadow: var(--shadow-sm);
        animation: floatB 3.5s ease-in-out infinite;
      }
      @keyframes floatA {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }
      @keyframes floatB {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(5px);
        }
      }
      .float-ico {
        font-size: 1.2rem;
      }
      .float-t {
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--navy);
      }
      .float-s {
        font-size: 0.7rem;
        color: var(--muted);
        margin-top: 1px;
      }

      /* ---- LOGOS / MARQUEE ---- */
      .logos-band {
        background: var(--offwhite);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
        overflow: hidden;
      }
      .logos-label {
        text-align: center;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 16px;
      }
      .mq-wrap {
        overflow: hidden;
      }
      .mq-track {
        display: flex;
        width: max-content;
        animation: marquee 28s linear infinite;
      }
      @keyframes marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .mq-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 36px;
        font-family: var(--ffb);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--muted);
        white-space: nowrap;
        border-right: 1px solid var(--border);
      }
      .mq-ico {
        font-size: 1rem;
      }

      /* ---- PROCESS ---- */
      .process-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        margin-top: 56px;
        position: relative;
      }
      .process-grid::before {
        content: "";
        position: absolute;
        top: 28px;
        left: calc(50% / 3 + 16px);
        right: calc(50% / 3 + 16px);
        height: 1px;
        background: linear-gradient(
          90deg,
          var(--border) 0%,
          var(--blue) 50%,
          var(--border) 100%
        );
        z-index: 0;
      }
      .proc-card {
        background: var(--white);
        border: 1px solid var(--border);
        padding: 36px 28px;
        position: relative;
        z-index: 1;
        transition:
          box-shadow 0.3s,
          border-color 0.3s;
      }
      .proc-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--border2);
      }
      .proc-card:first-child {
        border-radius: var(--r) 0 0 var(--r);
      }
      .proc-card:last-child {
        border-radius: 0 var(--r) var(--r) 0;
      }
      .proc-n {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--bg2);
        border: 2px solid var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 20px;
        font-family: var(--ffb);
      }
      .proc-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
      }
      .proc-card p {
        font-size: 0.875rem;
      }

      /* ---- SERVICE CARDS ---- */
      .svc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 52px;
      }
      .svc-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 36px;
        transition: all 0.25s ease;
        position: relative;
        overflow: hidden;
      }
      .svc-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--border2);
        transform: translateY(-2px);
      }
      .svc-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
        border-radius: 0 0 var(--rl) var(--rl);
      }
      .svc-card:hover::after {
        transform: scaleX(1);
      }
      .svc-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--bg2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 18px;
      }
      .svc-card h3 {
        margin-bottom: 10px;
      }
      .svc-card p {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 0;
      }
      .svc-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--blue);
        font-weight: 600;
        font-size: 0.83rem;
        margin-top: 18px;
        cursor: pointer;
        transition: gap 0.2s;
        text-decoration: none;
      }
      .svc-card:hover .svc-more {
        gap: 10px;
      }

      /* ---- STATS ---- */
      .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: var(--navy);
        border-radius: var(--rl);
        overflow: hidden;
        margin-top: 0;
      }
      .stat-cell {
        padding: 44px 32px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .stat-cell:last-child {
        border-right: none;
      }
      .stat-n {
        font-family: var(--ffd);
        font-size: 2.6rem;
        font-weight: 700;
        color: #fff;
        line-height: 1;
      }
      .stat-n .b {
        color: #93c5fd;
      }
      .stat-l {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.07em;
        margin-top: 8px;
        font-weight: 500;
      }

      /* ---- TESTIMONIALS ---- */
      .test-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 52px;
      }
      .test-card {
        background: var(--offwhite);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 36px;
        transition: box-shadow 0.25s;
      }
      .test-card:hover {
        box-shadow: var(--shadow);
      }
      .stars {
        color: #f59e0b;
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 16px;
      }
      .test-q {
        font-family: var(--ffd);
        font-size: 1.05rem;
        line-height: 1.65;
        color: var(--navy);
        margin-bottom: 24px;
        font-style: italic;
        font-weight: 500;
      }
      .test-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .av {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
      }
      .av-name {
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--navy);
      }
      .av-role {
        font-size: 0.75rem;
        color: var(--muted);
        margin-top: 2px;
      }

      /* ---- GRANTS ---- */
      .grants-wrap {
        background: var(--offwhite);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 56px;
      }
      .grants-grid {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 56px;
        align-items: start;
      }
      .grant-items {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
      }
      .grant-item {
        display: flex;
        gap: 14px;
        padding: 20px;
        background: white;
        border: 1px solid var(--border);
        border-radius: var(--r);
        box-shadow: var(--shadow-sm);
      }
      .gi-ico {
        font-size: 1.3rem;
        flex-shrink: 0;
      }
      .grant-item h4 {
        font-family: var(--ffd);
        font-size: 0.95rem;
        margin-bottom: 5px;
      }
      .grant-item p {
        font-size: 0.83rem;
      }
      .grant-hl {
        background: var(--navy);
        border-radius: var(--rl);
        padding: 36px 28px;
        text-align: center;
        color: white;
      }
      .g-pct {
        font-family: var(--ffd);
        font-size: 5rem;
        font-weight: 700;
        color: #93c5fd;
        line-height: 1;
      }
      .grant-hl h3 {
        color: white;
        margin-top: 8px;
        font-size: 1.2rem;
      }
      .grant-hl p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 0.85rem;
        margin-top: 10px;
      }

      /* ---- CTA BAND ---- */
      .cta-band {
        background: var(--bg2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 96px 0;
        text-align: center;
      }
      .cta-band h2 {
        max-width: 560px;
        margin: 0 auto 18px;
      }
      .cta-band p {
        max-width: 420px;
        margin: 0 auto 40px;
      }
      .cta-acts {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }

      /* ---- FOOTER ---- */
      footer {
        padding: 64px 0 32px;
        background: var(--navy);
      }
      .ft {
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 52px;
      }
      .ft-logo {
        height: 44px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.9;
      }
      .ft-brand p {
        font-size: 0.85rem;
        margin-top: 14px;
        max-width: 240px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.7;
      }
      .ft-col h4 {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.35);
        font-weight: 600;
        margin-bottom: 16px;
      }
      .ft-col a {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.875rem;
        margin-bottom: 10px;
        transition: color 0.18s;
      }
      .ft-col a:hover {
        color: rgba(255, 255, 255, 0.95);
      }
      .ft-bot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .ft-bot p {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.35);
      }

      /* ---- PAGE SYSTEM ---- */
      .page {
        display: none;
      }
      .page.active {
        display: block;
      }

      /* ---- FADE ANIMATIONS ---- */
      .fi {
        opacity: 0;
        transform: translateY(18px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .fi.vis {
        opacity: 1;
        transform: translateY(0);
      }

      /* ============ ABOUT ============ */
      .pg-hero {
        padding: 144px 0 72px;
        background: var(--white);
      }
      .pg-hero .chip {
        margin-bottom: 20px;
      }
      .pg-hero h1 {
        max-width: 700px;
        margin-bottom: 18px;
      }
      .pg-hero .lead {
        max-width: 520px;
        font-size: 1.05rem;
      }

      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        margin-top: 56px;
      }
      .outcome-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
      }
      .outcome-list li {
        display: flex;
        gap: 12px;
        padding: 13px 16px;
        background: var(--offwhite);
        border: 1px solid var(--border);
        border-radius: var(--r);
        font-size: 0.875rem;
        color: var(--slate);
        align-items: flex-start;
      }
      .outcome-list li::before {
        content: "→";
        color: var(--blue);
        font-weight: 700;
        flex-shrink: 0;
      }

      .about-visual {
        border-radius: var(--rl);
        overflow: hidden;
      }

      .founder-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 48px;
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 40px;
        box-shadow: var(--shadow);
        align-items: start;
      }
      .founder-av {
        width: 100px;
        height: 100px;
        border-radius: var(--rl);
        background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--ffd);
        font-size: 2rem;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
      }
      .f-chip {
        margin-bottom: 6px;
      }
      .f-name {
        font-family: var(--ffd);
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 4px;
      }
      .f-role {
        color: var(--muted);
        font-size: 0.85rem;
        margin-bottom: 18px;
        font-weight: 500;
      }
      .f-bio {
        font-size: 0.9rem;
        line-height: 1.78;
      }
      .f-quote {
        margin-top: 20px;
        padding: 18px 20px;
        border-left: 3px solid var(--blue);
        background: var(--bg2);
        border-radius: 0 var(--r) var(--r) 0;
        font-family: var(--ffd);
        font-style: italic;
        font-size: 0.95rem;
        color: var(--navy2);
      }

      .vals-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 44px;
      }
      .val-card {
        background: var(--offwhite);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 28px;
        transition: box-shadow 0.25s;
      }
      .val-card:hover {
        box-shadow: var(--shadow-sm);
      }
      .val-ico {
        font-size: 1.7rem;
        margin-bottom: 12px;
      }
      .val-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
      }
      .val-card p {
        font-size: 0.83rem;
      }

      /* ============ SERVICES ============ */
      .svc-detail-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 52px;
      }
      .sdc {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 40px;
        transition: all 0.25s;
        position: relative;
        overflow: hidden;
      }
      .sdc:hover {
        box-shadow: var(--shadow);
        border-color: var(--border2);
      }
      .sdc-num {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 0.69rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 0.1em;
      }
      .sdc h3 {
        margin: 16px 0 10px;
      }
      .sdc .desc {
        font-size: 0.875rem;
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .sdc-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .sdc-features li {
        display: flex;
        gap: 10px;
        align-items: baseline;
        font-size: 0.82rem;
        color: var(--slate);
      }
      .sdc-features li::before {
        content: "✓";
        color: var(--blue);
        font-weight: 700;
        font-size: 0.8rem;
        flex-shrink: 0;
      }

      .tools-band {
        padding: 0 0 80px;
      }
      .tools-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 26px;
      }
      .tool-badge {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 0.82rem;
        font-weight: 600;
        transition: all 0.18s;
        color: var(--slate);
      }
      .tool-badge:hover {
        border-color: var(--blue);
        color: var(--blue);
        background: var(--bg2);
      }

      .custom-cta {
        padding: 48px;
        background: var(--navy);
        border-radius: var(--rl);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 32px;
        align-items: center;
      }
      .custom-cta h3 {
        color: white;
        font-size: 1.4rem;
        margin-bottom: 6px;
      }
      .custom-cta p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.88rem;
      }
      .custom-cta .btn-p {
        background: white;
        color: var(--navy);
      }
      .custom-cta .btn-p:hover {
        background: var(--bluelight);
        color: var(--blue2);
      }

      /* ============ CASE STUDIES ============ */
      .case-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 52px;
      }
      .case-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 200px;
        transition:
          box-shadow 0.25s,
          border-color 0.25s;
      }
      .case-card:hover {
        box-shadow: var(--shadow);
        border-color: var(--border2);
      }
      .case-body {
        padding: 40px;
      }
      .case-body .chip {
        margin-bottom: 16px;
      }
      .case-body h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
      }
      .case-body .case-p {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 28px;
      }
      .case-results {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 20px;
        border-top: 1px solid var(--border);
      }
      .cr-num {
        font-family: var(--ffd);
        font-size: 1.9rem;
        font-weight: 700;
        color: var(--blue);
        line-height: 1;
      }
      .cr-label {
        font-size: 0.7rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 600;
        margin-top: 2px;
      }
      .case-panel {
        background: var(--offwhite);
        padding: 36px 24px;
        border-left: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .cp-label {
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.09em;
        color: var(--muted);
        font-weight: 600;
      }
      .cp-val {
        font-weight: 700;
        font-size: 0.875rem;
        color: var(--navy);
        margin-top: 3px;
      }

      /* ============ CONTACT ============ */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 48px;
        margin-top: 52px;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .con-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--r);
        padding: 20px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        box-shadow: var(--shadow-sm);
      }
      .con-ico {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background: var(--bg2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        flex-shrink: 0;
      }
      .con-card h4 {
        font-size: 0.875rem;
        margin-bottom: 3px;
      }
      .con-card a,
      .con-card span {
        color: var(--slate);
        font-size: 0.875rem;
        text-decoration: none;
        transition: color 0.18s;
      }
      .con-card a:hover {
        color: var(--blue);
      }
      .expect {
        margin-top: 24px;
        padding: 24px;
        background: var(--offwhite);
        border: 1px solid var(--border);
        border-radius: var(--r);
      }
      .expect h4 {
        font-size: 1rem;
        margin-bottom: 16px;
      }
      .exp-steps {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .exp-step {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .exp-n {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        color: white;
        font-weight: 700;
        flex-shrink: 0;
      }
      .exp-step strong {
        font-size: 0.875rem;
        display: block;
        margin-bottom: 2px;
        color: var(--navy);
      }
      .exp-step p {
        font-size: 0.82rem;
      }

      .form-wrap {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--rl);
        padding: 44px;
        box-shadow: var(--shadow);
      }
      .form-wrap h3 {
        font-size: 1.35rem;
        margin-bottom: 6px;
      }
      .form-wrap > p {
        font-size: 0.875rem;
        margin-bottom: 28px;
      }
      .fg {
        margin-bottom: 18px;
      }
      .fg label {
        display: block;
        font-weight: 600;
        font-size: 0.82rem;
        margin-bottom: 7px;
        color: var(--navy);
      }
      .fg input,
      .fg textarea,
      .fg select {
        width: 100%;
        background: var(--offwhite);
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 11px 14px;
        color: var(--navy);
        font-family: var(--ffb);
        font-size: 0.9rem;
        outline: none;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        -webkit-appearance: none;
      }
      .fg input:focus,
      .fg textarea:focus,
      .fg select:focus {
        border-color: var(--blue);
        background: white;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
      }
      .fg textarea {
        resize: vertical;
        min-height: 115px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .form-success {
        display: none;
        text-align: center;
        padding: 28px;
        background: #dcfce7;
        border: 1px solid #86efac;
        border-radius: var(--r);
        margin-top: 16px;
      }
      .form-success.show {
        display: block;
      }
      .form-success h4 {
        color: #15803d;
        font-size: 1.1rem;
        margin-bottom: 6px;
      }
      .form-success p {
        color: #166534;
      }

      /* ---- RESPONSIVE ---- */
      img,
      video {
        max-width: 100%;
        height: auto;
      }
      body {
        -webkit-tap-highlight-color: transparent;
      }
      .btn {
        min-height: 44px;
        touch-action: manipulation;
      }

      @media (max-width: 960px) {
        .hero-layout {
          grid-template-columns: 1fr;
        }
        .hero-visual {
          display: none;
        }
        .process-grid {
          grid-template-columns: 1fr;
          gap: 2px;
        }
        .process-grid::before {
          display: none;
        }
        .proc-card {
          border-radius: 0 !important;
        }
        .proc-card:first-child {
          border-radius: var(--r) var(--r) 0 0 !important;
        }
        .proc-card:last-child {
          border-radius: 0 0 var(--r) var(--r) !important;
        }
        .svc-grid,
        .svc-detail-grid {
          grid-template-columns: 1fr;
        }
        .stats-row {
          grid-template-columns: repeat(2, 1fr);
        }
        .test-grid {
          grid-template-columns: 1fr;
        }
        .grants-grid {
          grid-template-columns: 1fr;
        }
        .ft {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .founder-card {
          grid-template-columns: 1fr;
        }
        .vals-grid {
          grid-template-columns: 1fr 1fr;
        }
        .case-card {
          grid-template-columns: 1fr;
        }
        .case-panel {
          border-left: none;
          border-top: 1px solid var(--border);
          flex-direction: row;
          flex-wrap: wrap;
          padding: 20px 28px;
          gap: 12px;
        }
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .custom-cta {
          grid-template-columns: 1fr;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        /* Tablet padding reductions */
        .section {
          padding: 72px 0;
        }
        .section-sm {
          padding: 52px 0;
        }
        .pg-hero {
          padding: 110px 0 56px;
        }
        .cta-band {
          padding: 72px 0;
        }
        footer {
          padding: 52px 0 28px;
        }
        .grants-wrap {
          padding: 36px 28px;
        }
        .form-wrap {
          padding: 36px 28px;
        }
        .founder-card {
          padding: 36px 28px;
        }
        .custom-cta {
          padding: 36px 28px;
        }
        .case-body {
          padding: 28px;
        }
        .sdc {
          padding: 28px;
        }
      }
      @media (max-width: 640px) {
        .container {
          padding: 0 16px;
        }
        .stats-row {
          grid-template-columns: 1fr;
        }
        .stat-cell {
          display: flex;
          flex-direction: row;
          align-items: center;
          padding: 20px 24px;
          border-right: none;
          border-bottom: 1px solid rgba(255,255,255,0.08);
          text-align: left;
        }
        .stat-cell:last-child {
          border-bottom: none;
        }
        #stats-bar .stat-n {
          min-width: 80px;
          text-align: left;
          flex-shrink: 0;
          font-size: 2.2rem;
        }
        #stats-bar .stat-l {
          margin-top: 0;
          margin-left: 20px;
          text-align: left;
          font-size: 0.82rem;
        }
        .ft {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .vals-grid {
          grid-template-columns: 1fr;
        }
        .nav-links,
        .nav-links + .btn {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .hero-proof {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 0;
          width: 100%;
          text-align: center;
          border: 1px solid var(--border);
          border-radius: 12px;
          overflow: hidden;
          padding: 0;
        }
        .proof-item {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 4px;
          padding: 16px 8px;
          border-right: 1px solid var(--border);
        }
        .proof-item:last-child {
          border-right: none;
        }
        .proof-divider {
          display: none;
        }
        .proof-num {
          font-size: 1.4rem;
        }
        .proof-label {
          font-size: 0.7rem;
        }
        /* Small phone additions */
        .section {
          padding: 56px 0;
        }
        .section-sm {
          padding: 40px 0;
        }
        .hero {
          padding: 90px 0 56px;
          min-height: auto;
        }
        .pg-hero {
          padding: 96px 0 48px;
        }
        .cta-band {
          padding: 56px 0;
        }
        footer {
          padding: 44px 0 24px;
        }
        .grants-wrap {
          padding: 24px 16px;
        }
        .form-wrap {
          padding: 24px 16px;
        }
        .founder-card {
          padding: 24px 16px;
        }
        .custom-cta {
          padding: 24px 16px;
        }
        .case-body {
          padding: 20px 16px;
        }
        .sdc {
          padding: 20px 16px;
        }
        .test-card {
          padding: 24px 20px;
        }
        .stat-n {
          font-size: 2.2rem;
        }
        .s-sub {
          margin-bottom: 36px;
        }
        .ft-bot {
          flex-direction: column;
          gap: 10px;
          text-align: center;
        }
        /* Prevent iOS Safari auto-zoom on focused inputs */
        .fg input,
        .fg textarea,
        .fg select {
          font-size: 16px;
        }
      }
      @media (max-width: 480px) {
        .container {
          padding: 0 14px;
        }
        .section {
          padding: 48px 0;
        }
        .section-sm {
          padding: 32px 0;
        }
        .hero {
          padding: 82px 0 48px;
        }
        .pg-hero {
          padding: 88px 0 40px;
        }
        .cta-band {
          padding: 48px 0;
        }
        footer {
          padding: 40px 0 20px;
        }
        .nav-i {
          padding: 0 14px;
        }
        /* Stack CTA buttons vertically on very small screens */
        .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }
        .hero-actions .btn {
          width: 100%;
          justify-content: center;
        }
        .cta-acts {
          flex-direction: column;
          align-items: center;
        }
        .cta-acts .btn {
          width: 100%;
          max-width: 320px;
          justify-content: center;
        }
        /* Tighter card padding */
        .grants-wrap {
          padding: 18px 14px;
        }
        .form-wrap {
          padding: 20px 14px;
        }
        .founder-card {
          padding: 20px 14px;
        }
        .custom-cta {
          padding: 20px 14px;
        }
        .case-body {
          padding: 16px 14px;
        }
        .sdc {
          padding: 18px 14px;
        }
        .test-card {
          padding: 18px 14px;
        }
        .proc-card {
          padding: 24px 18px;
        }
        .svc-card {
          padding: 24px 18px;
        }
        .stat-cell {
          padding: 18px 20px;
        }
        #stats-bar .stat-n {
          font-size: 2rem;
        }
        .f-name {
          font-size: 1.4rem;
        }
      }