
        /* ── body — index.html line 28-34 ── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: 'DM Sans', sans-serif; background: #f7f6f3; color: #1a0f3c; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

        /* ── Nav offset — nav height is 72px in index.html ── */
        .page-pt { padding-top: 72px; }

        /* ── CSS tokens — exact from index.html :root ── */
        :root {
            --green: #16a34a; --green-light: #dcfce7; --green-mid: #22c55e;
            --ink: #0d1a0f; --ink-muted: #4b5563;
            --surface: #f9fafb; --surface2: #f0fdf4; --border: #e5e7eb;
            --radius-lg: 20px; --radius-md: 12px; --radius-sm: 8px;
        }

        /* ── Reveal — exact from index.html line 1089 ── */
        .reveal { opacity:0; transform:translateY(28px); transition:opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
        .reveal.in { opacity:1; transform:none; }

        /* ── Container — index.html line 472-476 ── */
        .container { max-width: 1700px; margin: 0 auto; padding: 0 40px; }

        /* ── Shared typography — exact from index.html lines 1093-1097 ── */
        .s-eyebrow { font-size:.75rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#0d1a0f; margin-bottom:14px; }
        .s-h2 { font-family:'DM Sans',sans-serif; font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:800; line-height:1.05; letter-spacing:-0.03em; color:var(--ink); margin-bottom:18px; }
        .s-h2 em { font-style:normal; color:var(--green); }
        .s-h3 { font-family:'DM Sans',sans-serif; font-size:clamp(1.3rem,2.5vw,1.8rem); font-weight:700; color:var(--ink); }
        .s-body { font-size:1.05rem; color:var(--ink-muted); line-height:1.7; max-width:560px; }

        /* ── Shared buttons — exact from index.html lines 1098-1101 ── */
        .s-btn-green { display:inline-flex; align-items:center; gap:8px; background:var(--green); color:#fff; font-size:.95rem; font-weight:700; padding:14px 32px; border-radius:50px; text-decoration:none; transition:all .25s; box-shadow:0 4px 20px rgba(22,163,74,.3); }
        .s-btn-green:hover { background:#15803d; transform:translateY(-2px); box-shadow:0 8px 28px rgba(22,163,74,.35); }
        .s-btn-outline { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--ink); font-size:.95rem; font-weight:700; padding:13px 30px; border-radius:50px; text-decoration:none; border:2px solid var(--border); transition:all .25s; }
        .s-btn-outline:hover { border-color:var(--green); color:var(--green); }

        /* ══════════════════════════════════════════
           PAGE HERO — navy, canvas animation
           index.html .hero-giant: padding-top:160px; min-height:100vh; bg:#1a0f3c
           ══════════════════════════════════════════ */
        .page-hero {
            padding-top: 160px;
            padding-bottom: 80px;
            min-height: 100vh;
            background: #1a0f3c;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            color: #fff;
        }
        /* Canvas — exact from index.html #hero-squares-canvas */
        #hero-canvas {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            display: block; z-index: 1; pointer-events: none;
        }
        /* Radial overlay */
        .hero-overlay {
            position: absolute; inset: 0; z-index: 2;
            background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(230,57,117,0.10) 0%, transparent 65%);
        }
        .page-hero-inner {
            position: relative; z-index: 10;
            max-width: 900px;
        }

        /* Badge — keeps existing colours */
        .page-hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(230,57,117,0.12); border: 1px solid rgba(230,57,117,0.25);
            color: #f8a4c0; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.15em;
            text-transform: uppercase; padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
        }

        /* H1 — from index.html .h2 (the DM Sans 800 override at line 487):
           clamp(2.5rem,5vw,4.2rem), weight 800, line-height 1.05, letter-spacing -0.03em */
        .page-hero h1 {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: #fff;
            margin-bottom: 24px;
        }
        /* em in hero h1 keeps existing pink colour */
        .page-hero h1 em { font-weight: 800; font-style: italic; color: #e63975; }

        /* Hero subtext — from index.html .body-light: rgba(255,255,255,0.8) + body-lg: 1.2rem, 1.6, weight 500 */
        .page-hero > .container p,
        .page-hero-inner > p {
            font-size: 1.2rem; font-weight: 500;
            color: rgba(255,255,255,0.78); line-height: 1.6;
            max-width: 600px; margin-bottom: 40px;
        }
        .page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

        /* ══════════════════════════════════════════
           SECTION PADDING — from index.html: 140px 0
           ══════════════════════════════════════════ */
        .sec-white { background: #fff; padding: 140px 0; }
        .sec-light { background: #f7f6f3; padding: 140px 0; }

        /* Section header — index.html .section-header: margin-bottom:56px but for larger page use 80px */
        .sec-header { text-align:center; max-width:700px; margin:0 auto 80px; }

        /* ══════════════════════════════════════════
           CARDS GRID — matches index.html .pillars-grid
           index.html line 568-573: grid, repeat(4,1fr), gap:24px, margin-top:80px
           But solutions uses 3-col (6 cards), so repeat(3,1fr) gap:24px
           ══════════════════════════════════════════ */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 80px;
        }

        /* ── Card — exact from index.html .pillar-card (lines 575-628) ── */
        .card {
            background: white;
            border-radius: 24px;
            padding: 40px 32px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(26,15,60,0.08); }

        /* Card icon — index.html .pc-icon-wrap: 56px, border-radius:16px, margin-bottom:24px */
        .card-icon {
            width: 56px; height: 56px;
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 24px;
        }

        /* Card h4 — index.html .pillar-card h3: DM Sans, 1.4rem, 700, #1a0f3c, margin-bottom:12px */
        .card h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a0f3c;
            margin-bottom: 12px;
        }

        /* Card p — index.html .pillar-card p: 1rem, #5a5080, line-height:1.6 */
        .card p {
            font-size: 1rem;
            color: #5a5080;
            line-height: 1.6;
        }



        /* ══════════════════════════════════════════
           PRICING STRIP — CTA section (navy + pink glow)
           ══════════════════════════════════════════ */
        .pricing-strip {
            background: #1a0f3c;
            padding: 140px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-strip::before {
            content: '';
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(230,57,117,0.12) 0%, transparent 65%);
        }
        .pricing-strip > .container { position: relative; z-index: 2; }
        /* h2 — from index.html .h2 (DM Sans 800, clamp, light version) */
        .pricing-strip h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
            color: #fff; margin-bottom: 20px;
        }
        /* p — from index.html body-light: rgba(255,255,255,0.8) + body-lg sizing */
        .pricing-strip p {
            font-size: 1.2rem; font-weight: 500;
            color: rgba(255,255,255,0.78); line-height: 1.6;
            max-width: 560px; margin: 0 auto 40px;
        }

        /* ══════════════════════════════════════════
           FOOTER — sf- classes from index.html
           ══════════════════════════════════════════ */
        .site-footer { background: #0d1a0f; padding: 80px 0 0; }
        .sf-top { display:grid; grid-template-columns:280px 1fr; gap:80px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }

        .sf-brand-desc { font-size:.88rem; line-height:1.7; color:rgba(255,255,255,.5); }
        .sf-socials { display:flex; gap:10px; margin-top:20px; }
        .sf-social { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.5); text-decoration:none; font-size:.72rem; font-weight:700; text-transform:uppercase; transition:all .2s; }
        .sf-social:hover { border-color:#e63975; color:#e63975; }
        .sf-cols { display:grid; grid-template-columns:repeat(5,1fr); gap:32px; }
        .sf-col h5 { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin-bottom:16px; }
        .sf-col ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
        .sf-col ul a { font-size:.85rem; color:rgba(255,255,255,.5); text-decoration:none; transition:color .2s; }
        .sf-col ul a:hover { color:#fff; }
        .sf-bottom { display:flex; justify-content:space-between; align-items:center; padding:20px 0; font-size:.78rem; color:rgba(255,255,255,.3); }
        .sf-bottom a { color:rgba(255,255,255,.35); text-decoration:none; }
        .sf-bottom a:hover { color:#fff; }

        /* ══════════════════════════════════════════
           RESPONSIVE
           ══════════════════════════════════════════ */
        
        
        @media (max-width: 600px) {
            .container { padding: 0 20px; }
            .cards-grid { grid-template-columns: 1fr; }
            .sec-white, .sec-light, .pricing-strip { padding: 80px 0; }
            .sf-cols { grid-template-columns: 1fr 1fr; }
            .sf-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }

        /* ══════════════════════════════════════════
           SITE NAV — fully self-contained
           ══════════════════════════════════════════ */
        .site-nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            height: 72px;
            background: #1a0f3c;
            border-bottom: 1px solid rgba(255,255,255,.08);
            transition: box-shadow .3s;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            padding: 0; margin: 0;
            flex: 1;
            justify-content: center;
        }
        .nav-item { position: relative; }
        .nav-trigger {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 16px;
            font-size: .88rem;
            font-weight: 500;
            color: rgba(255,255,255,.75);
            text-decoration: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background .18s, color .18s;
            white-space: nowrap;
            background: none;
            border: none;
            font-family: 'DM Sans', sans-serif;
            line-height: 1;
        }
        .nav-trigger:hover,
        .nav-item:hover > .nav-trigger {
            background: rgba(255,255,255,.09);
            color: #fff;
        }
        .nav-trigger.active { color: #e63975; font-weight: 600; }
        .nav-trigger .chev { font-size: .57rem; opacity: .5; transition: transform .2s; }
        .nav-item:hover > .nav-trigger .chev { transform: rotate(180deg); opacity: .9; }

        .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
        .btn-ghost-nav {
            text-decoration: none; color: #fff;
            font-size: .875rem; font-weight: 500;
            padding: 10px 24px; border-radius: 50px;
            border: 1.5px solid rgba(255,255,255,.22);
            transition: all .2s;
        }
        .btn-ghost-nav:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
        .btn-pill-nav {
            text-decoration: none; color: #1a0f3c;
            font-size: .875rem; font-weight: 700;
            padding: 11px 26px; border-radius: 50px;
            background: #fff; transition: all .25s;
            box-shadow: 0 4px 14px rgba(0,0,0,.2);
        }
        .btn-pill-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

        /* Dropdown */
        .nav-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 10px;
            box-shadow: 0 24px 64px rgba(0,0,0,.14);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: opacity .2s, transform .2s, visibility .2s;
            transition-delay: 0.12s;
            z-index: 600;
            min-width: 220px;
        }

        .nav-dropdown::before {
          content: "";
          position: absolute;
          top: -12px;
          left: 0;
          right: 0;
          height: 12px;
          background: transparent;
        }

        .nav-item:hover > .nav-dropdown {
            opacity: 1; visibility: visible;
            pointer-events: auto; transform: translateY(0);
            transition-delay: 0s;
        }
        .nav-dropdown.wide {
            min-width: 720px; padding: 22px 18px;
            display: grid; grid-template-columns: repeat(3,1fr); gap: 4px;
        }
        .nav-dropdown.wide2 {
            min-width: 480px; padding: 18px 14px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
        }
        .ndp-item {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 10px 12px; border-radius: 10px;
            text-decoration: none; transition: background .15s;
        }
        .ndp-item:hover { background: #f0fdf4; }
        .ndp-icon {
            width: 32px; height: 32px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: .9rem; flex-shrink: 0;
        }
        .ndp-name { font-size: .84rem; font-weight: 700; color: #0d1a0f; margin-bottom: 1px; }
        .ndp-desc { font-size: .73rem; color: #6b7280; line-height: 1.35; }
        .ndp-simple a {
            display: block; padding: 9px 14px;
            font-size: .84rem; font-weight: 500; color: #374151;
            text-decoration: none; border-radius: 8px; transition: all .15s;
        }
        .ndp-simple a:hover { background: #f0fdf4; color: #16a34a; font-weight: 600; }
        .ndp-label {
            font-size: .62rem; font-weight: 800; letter-spacing: .1em;
            text-transform: uppercase; color: #9ca3af; padding: 4px 14px 8px; display: block;
        }
        .nav-hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 8px; background: none; border: none;
        }
        .nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
        
        @media (max-width: 900px) {
      .site-nav { padding: 0 20px; height: 64px; }
            .nav-menu { display: none; }
            .nav-hamburger { display: flex; }
      .site-nav { padding: 0 20px; height: 64px; }
            .nav-menu { display: none; }
            .nav-hamburger { display: flex; }
    }

    @media (max-width: 1100px) {
      .nav-dropdown.wide { grid-template-columns: 1fr 1fr; min-width: 460px; }
            .cards-grid { grid-template-columns: 1fr 1fr; }
            .sf-top { grid-template-columns: 1fr; }
            .sf-cols { grid-template-columns: repeat(3,1fr); }
      .nav-dropdown.wide { grid-template-columns: 1fr 1fr; min-width: 460px; }
    }

    

    
        /* ── SOLUTIONS: Responsive section padding ── */
        @media (max-width: 1024px) {
          .section-white, .section-light, .section-cream { padding: 100px 0; }
          .page-hero                                      { padding-top: 100px; padding-bottom: 60px; }
        }
        @media (max-width: 768px) {
          .section-white, .section-light, .section-cream { padding: 72px 0; }
          .page-hero                                      { padding-top: 80px; padding-bottom: 48px; }
        }
        @media (max-width: 480px) {
          .section-white, .section-light, .section-cream { padding: 56px 0; }
          .page-hero                                      { padding-top: 64px; padding-bottom: 40px; }
        }
    
        /* ── Container side padding — matches index.html breakpoint system ── */
        @media (max-width: 768px) {
          .container { padding: 0 20px; }
        }
        @media (max-width: 480px) {
          .container { padding: 0 16px; }
        }
        