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

    :root {
      --navy: #5B2D8E;       /* purple from logo */
      --gold: #E8347A;       /* magenta from logo */
      --gold-light: #F5A623; /* orange/amber from logo bird */
      --cream: #FFF5F8;      /* faint magenta tint */
      --white: #FFFFFF;
      --gray: #6B7280;
      --light-gray: #FDF3F7;
      --dark-text: #1A1A2E;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark-text);
      background: var(--white);
      font-size: 18px;
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--gold-light); }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-cta {
      background: var(--gold);
      color: var(--white) !important;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 600 !important;
    }
    .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

    /* ── TRUST BANNER ── */
    .trust-banner {
      background: var(--gold);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: 0.05em;
    }
    .trust-banner span { margin: 0 12px; opacity: 0.5; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #5B2D8E 0%, #E8347A 60%, #F5A623 100%);
      padding: 100px 40px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(200,146,42,0.08);
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(200,146,42,0.06);
    }
    .hero-tag {
      display: inline-block;
      background: rgba(200,146,42,0.2);
      color: var(--gold-light);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 24px;
      border: 1px solid rgba(200,146,42,0.3);
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      color: var(--white);
      line-height: 1.2;
      max-width: 800px;
      margin: 0 auto 24px;
    }
    .hero h1 em { color: var(--gold-light); font-style: normal; }
    .hero p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.85);
      max-width: 680px;
      margin: 0 auto 48px;
      line-height: 1.8;
    }
    .hero-ctas {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 32px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.4);
      transition: all 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

    /* ── SPLIT AUDIENCE ── */
    .audience {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 320px;
    }
    .audience-card {
      padding: 60px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .audience-card.families {
      background: var(--cream);
    }
    .audience-card.agencies {
      background: var(--navy);
      color: var(--white);
    }
    .audience-card .tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .audience-card.families .tag { color: var(--gold); }
    .audience-card.agencies .tag { color: var(--gold-light); }
    .audience-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .audience-card p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .audience-card.families p { color: var(--gray); }
    .audience-card.agencies p { color: rgba(255,255,255,0.7); }
    .btn-navy {
      display: inline-block;
      background: var(--navy);
      color: var(--white);
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      width: fit-content;
    }
    .btn-gold {
      display: inline-block;
      background: var(--gold);
      color: var(--white);
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      width: fit-content;
    }

    /* ── WHAT WE DO ── */
    .what-we-do {
      padding: 80px 40px;
      text-align: center;
      background: var(--white);
    }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      color: var(--navy);
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.15rem;
      color: var(--gray);
      max-width: 620px;
      margin: 0 auto 56px;
      line-height: 1.8;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .service-card {
      background: var(--light-gray);
      border-radius: 12px;
      padding: 36px 28px;
      text-align: left;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
    }
    .service-icon {
      font-size: 2rem;
      margin-bottom: 16px;
    }
    .service-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ── HOW IT WORKS ── */
    .how-it-works {
      background: linear-gradient(135deg, #5B2D8E 0%, #E8347A 60%, #F5A623 100%);
      padding: 80px 40px;
      text-align: center;
    }
    .how-it-works .section-title { color: var(--white); }
    .how-it-works .section-sub { color: rgba(255,255,255,0.65); }
    .steps {
      display: flex;
      justify-content: center;
      gap: 0;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: rgba(200,146,42,0.3);
      z-index: 0;
    }
    .step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--white);
      font-weight: 800;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .step h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .step p {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }

    /* ── ELIGIBILITY ── */
    .eligibility {
      padding: 80px 40px;
      background: var(--cream);
    }
    .elig-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .elig-content .section-label { text-align: left; }
    .elig-content .section-title { text-align: left; }
    .elig-list {
      list-style: none;
      margin-top: 24px;
    }
    .elig-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 1.05rem;
      color: var(--dark-text);
      line-height: 1.6;
    }
    .elig-list li::before {
      content: '✓';
      width: 22px; height: 22px;
      background: var(--gold);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .elig-img-wrap {
      border-radius: 16px;
      overflow: hidden;
      height: 240px;
      background: #dde8f5;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border: 3px solid var(--gold);
    }
    .elig-img-wrap img { width:100%; height:100%; object-fit:cover; }
    .elig-cta-box {
      background: var(--navy);
      border-radius: 16px;
      padding: 48px 36px;
      text-align: center;
      color: white;
    }
    .elig-cta-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      margin-bottom: 12px;
    }
    .elig-cta-box p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    /* ── FOR AGENCIES ── */
    .for-agencies {
      padding: 80px 40px;
      background: var(--white);
      text-align: center;
    }
    .agency-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto 48px;
    }
    .agency-card {
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: left;
    }
    .agency-card .num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .agency-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .agency-card p {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ── FOOTER ── */
    footer {
      background: #080F1C;
      padding: 48px 40px 32px;
      color: rgba(255,255,255,0.6);
    }
    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-brand .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer-brand .logo span { color: var(--gold-light); }
    .footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
      max-width: 300px;
    }
    .footer-col h4 {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold-light); }
    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-icon {
      width: 40px; height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, opacity 0.2s;
      text-decoration: none;
    }
    .social-icon:hover { transform: translateY(-2px); opacity: 0.85; }
    .social-icon.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }
    .social-icon.linkedin {
      background: #0077B5;
    }
    .social-icon svg { width: 20px; height: 20px; fill: white; }
    .footer-bottom {
      max-width: 1000px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }
    .doe-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,146,42,0.15);
      border: 1px solid rgba(200,146,42,0.3);
      color: var(--gold-light);
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* page nav tabs */
    .page-nav {
      background: var(--light-gray);
      padding: 0 40px;
      display: flex;
      gap: 0;
      border-bottom: 2px solid #E5E7EB;
    }
    .page-nav a {
      padding: 14px 24px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray);
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: all 0.2s;
    }
    .page-nav a.active { color: var(--navy); border-bottom-color: var(--gold); }
    .page-nav a:hover { color: var(--navy); }

    @media (max-width: 768px) {
      .audience { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .steps { flex-direction: column; gap: 24px; }
      .steps::before { display: none; }
      .elig-inner { grid-template-columns: 1fr; }
      .agency-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      nav { padding: 0 20px; }
      .nav-links { display: none; }
    }