.vaccine-orb {
      position: fixed; border-radius: 50%; pointer-events: none; filter: blur(1px); z-index: 0;
    }
    .vaccine-orb-1 { width: 500px; height: 500px; top: -90px; left: -70px; background: rgba(122,191,165,0.22); animation: dark-float 22s ease-in-out infinite; }
    .vaccine-orb-2 { width: 380px; height: 380px; bottom: -70px; right: -50px; background: rgba(195,224,212,0.18); animation: dark-float 26s ease-in-out infinite reverse; }
    .vaccine-orb-3 { width: 280px; height: 280px; top: 40%; left: 60%; background: rgba(184,207,196,0.14); animation: dark-float 18s ease-in-out infinite; animation-delay: -7s; }
    .vaccine-orb-4 { width: 200px; height: 200px; top: 65%; left: 18%; background: rgba(122,191,165,0.10); animation: dark-float 24s ease-in-out infinite; animation-delay: -11s; }
    @keyframes dark-float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(20px, -30px) scale(1.05); }
      66% { transform: translate(-15px, 20px) scale(0.97); }
    }
    #vaccine-particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

   

   

    /* Reveal animation */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }
    .d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.40s; } .d6 { transition-delay: 0.48s; }

    /* Glass card */
    .glass-card {
      background: var(--glass-bg); border: 1.5px solid var(--glass-border);
      backdrop-filter: blur(20px) saturate(1.4); border-radius: var(--r-card);
      box-shadow: var(--sh-card);
    }
    .glass-card-dark {
      background: linear-gradient(160deg, rgba(14,30,26,0.85), rgba(28,22,36,0.9));
      border: 1.5px solid rgba(195,224,212,0.22);
      backdrop-filter: blur(20px) saturate(1.4); border-radius: var(--r-card);
      box-shadow: var(--sh-card);
    }

    /* Typography */
    h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
    h1 { font-size: clamp(52px, 6vw, 86px); }
    h2 { font-size: clamp(36px, 4vw, 52px); }
    h3 { font-size: clamp(22px, 2.5vw, 28px); }
    em { font-style: italic; background: linear-gradient(135deg, var(--mint), var(--sage)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    p { font-size: 17px; line-height: 1.75; }
    .section-label { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; display: block; }
    .section-label-sage { color: var(--sage); }
    .section-pad { padding: 100px 0; }
    @media (max-width: 768px) { .section-pad { padding: 64px 0; } }

    /* Feature bullets */
    .feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
    .feature-bullets li { font-size: 15px; color: var(--ink-mid); display: flex; gap: 10px; align-items: flex-start; }
    .feature-bullets li::before { content: '✓'; color: var(--mint); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
    .feature-bullets-dark li { color: rgba(253,249,244,0.75); }
    .feature-bullets-dark li::before { color: var(--mint); }

    /* Disclaimer */
    .medical-disclaimer { font-size: 13px; color: var(--ink-soft); font-style: italic; line-height: 1.6; margin-top: 20px; padding: 12px 16px; border-left: 2px solid rgba(195,224,212,0.5); background: rgba(195,224,212,0.06); border-radius: 0 8px 8px 0; }
    .medical-disclaimer-dark { color: rgba(253,249,244,0.5); border-left-color: rgba(195,224,212,0.35); background: rgba(195,224,212,0.06); }

    /* CTA buttons */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, #8b7cba, #c98472);
      color: #fff; padding: 16px 36px; border-radius: var(--r-pill);
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
      cursor: pointer; border: none; transition: transform 0.45s, box-shadow 0.45s;
    }
    .btn-primary:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(139,124,186,0.4); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: rgba(253,249,244,0.70);
      padding: 16px 36px; border-radius: var(--r-pill);
      border: 1.5px solid rgba(195,224,212,0.3); font-size: 15px;
      cursor: pointer; transition: border-color 0.3s, color 0.3s;
    }
    .btn-ghost:hover { border-color: rgba(195,224,212,0.6); color: var(--cream); }
    .btn-mint-pill {
      display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
      background: rgba(195,224,212,0.15); color: var(--mint);
      border: 1px solid rgba(195,224,212,0.3); border-radius: var(--r-pill);
      padding: 8px 18px; cursor: pointer; transition: background 0.2s;
    }
    .btn-mint-pill:hover { background: rgba(195,224,212,0.25); }

    /* ─────────────────── SECTION 3: HERO ─────────────────── */
    #hero {
      background: var(--ink);
      min-height: 100vh; padding: 60px 56px 80px;
      display: flex; flex-direction: column; justify-content: center;
    }
    @media (max-width: 768px) { #hero { padding: 48px 24px 64px; } }
    .hero-grid { display: grid; grid-template-columns: 52fr 48fr; gap: 60px; align-items: center; margin: 0 auto; }
    @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
    .hero-eyebrow {
      display: inline-block; font-size: 13px; color: rgba(195,224,212,0.90);
      border: 1px solid rgba(195,224,212,0.35); border-radius: var(--r-pill);
      padding: 8px 18px; margin-bottom: 28px; letter-spacing: 0.04em;
      background: rgba(195,224,212,0.06); backdrop-filter: blur(8px);
    }
    .hero-h1 { color: var(--cream); margin-bottom: 28px; font-size:clamp(52px,6vw,60px);line-height:1.08; }
    .hero-answer { font-size: 18px; color: rgba(253,249,244,0.65); max-width: 460px; line-height: 1.75; margin-bottom: 40px; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .hero-trust { margin-top: 48px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
    .trust-chip { font-size: 12px; color: rgba(253,249,244,0.5); display: flex; align-items: center; gap: 5px; }
    .trust-chip::before { content: '·'; color: rgba(195,224,212,0.4); }
    .trust-chip:first-child::before { display: none; }

    /* Hero phone visual */
    .phone-frame {
      width: 280px; background: linear-gradient(160deg, #0e1e1a, #1c1624);
      border: 1.5px solid rgba(195,224,212,0.22); border-radius: 40px;
      padding: 20px 20px 28px; box-shadow: 0 40px 120px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative; overflow: hidden;
    }
    .phone-header { font-size: 12px; color: rgba(195,224,212,0.75); margin-bottom: 16px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
    .timeline-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(195,224,212,0.08); opacity: 0; transform: translateX(-8px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .timeline-item.tl-visible { opacity: 1; transform: translateX(0); }
    .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(195,224,212,0.3); flex-shrink: 0; margin-top: 4px; }
    .tl-dot.done { background: var(--mint); }
    .tl-dot.active { background: var(--mint); box-shadow: 0 0 0 0 rgba(195,224,212,0.6); animation: pulse-dot 2s infinite; }
    @keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(195,224,212,0.6); } 70% { box-shadow: 0 0 0 8px rgba(195,224,212,0); } 100% { box-shadow: 0 0 0 0 rgba(195,224,212,0); } }
    .tl-content { flex: 1; }
    .tl-age { font-size: 10px; color: rgba(195,224,212,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
    .tl-vaccines { font-size: 12px; color: rgba(253,249,244,0.85); margin: 2px 0; line-height: 1.4; }
    .tl-status { font-size: 10px; }
    .tl-status.done { color: var(--mint); }
    .tl-status.active { color: var(--mint); font-weight: 500; }
    .tl-status.upcoming { color: rgba(253,249,244,0.35); }
    .phone-disclaimer { font-size: 9px; color: rgba(253,249,244,0.30); font-style: italic; margin-top: 12px; line-height: 1.5; }

    /* ─────────────────── SECTION 4: SOCIAL PROOF ─────────────────── */
    #social-proof {
      background: rgba(255,255,255,0.04); border-top: 1px solid rgba(195,224,212,0.12);
      border-bottom: 1px solid rgba(195,224,212,0.12); padding: 28px 0;
      position: relative; z-index: 2;
    }
    .proof-strip { display: flex; justify-content: space-around; align-items: center; gap: 32px; flex-wrap: wrap; }
    .proof-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(195,224,212,0.15); }
    .proof-item:last-child { border-right: none; }
    .proof-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--cream); line-height: 1; }
    .proof-label { font-size: 12px; color: rgba(253,249,244,0.50); margin-top: 4px; max-width: 120px; line-height: 1.4; }

    /* ─────────────────── SECTION 5: RECORD KEEPING ─────────────────── */
    #record-keeping { background: var(--cream); }
    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    @media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
    .two-col.visual-left .col-text { order: 2; }
    .two-col.visual-left .col-visual { order: 1; }
    @media (max-width: 900px) { .two-col.visual-left .col-text, .two-col.visual-left .col-visual { order: unset; } }

    .problem-card { background: rgba(100,90,115,0.08); border: 1.5px solid rgba(100,90,115,0.15); border-radius: var(--r-card); padding: 28px; margin-bottom: 20px; }
    .problem-card-header { font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
    .strike-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .strike-list li { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; opacity: 0.65; }
    .problem-caption { font-size: 11px; color: var(--ink-soft); font-style: italic; margin-top: 12px; }
    .solution-card { background: rgba(195,224,212,0.12); border: 1.5px solid rgba(195,224,212,0.3); border-radius: var(--r-card); padding: 28px; }
    .solution-card-header { font-size: 14px; font-weight: 500; color: var(--ink-mid); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .check-list li { font-size: 14px; color: var(--ink-mid); display: flex; gap: 8px; }
    .check-list li::before { content: '✓'; color: var(--mint); font-weight: 700; }
    .card-label { font-size: 12px; font-weight: 500; color: var(--ink-soft); margin-top: 12px; font-style: italic; }
    .arrow-bridge { text-align: center; font-size: 20px; color: var(--mint); margin: 8px 0; }

    /* ─────────────────── SCHEDULE CARD ─────────────────── */
    .schedule-card { background: linear-gradient(160deg, #0e1e1a, #1c1624); border-radius: var(--r-card); padding: 28px; border: 1.5px solid rgba(195,224,212,0.22); box-shadow: var(--sh-card); }
    .schedule-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .schedule-title { font-size: 13px; color: rgba(195,224,212,0.80); font-weight: 500; }
    .schedule-toggle { font-size: 11px; color: var(--mint); border: 1px solid rgba(195,224,212,0.25); border-radius: 6px; padding: 4px 10px; cursor: pointer; }
    .sched-row { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(195,224,212,0.07); }
    .sched-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
    .sched-dot.done { background: var(--mint); }
    .sched-dot.active { background: var(--mint); animation: pulse-dot 2s infinite; }
    .sched-dot.upcoming { background: rgba(195,224,212,0.2); }
    .sched-age { font-size: 9px; color: rgba(195,224,212,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
    .sched-vaccines { font-size: 11px; color: rgba(253,249,244,0.80); line-height: 1.4; margin: 2px 0; }
    .sched-status { font-size: 10px; }
    .sched-status.done { color: var(--mint); }
    .sched-status.active { color: var(--mint); font-weight: 500; }
    .sched-status.upcoming { color: rgba(253,249,244,0.30); }
    .sched-active-row { border: 1px solid rgba(195,224,212,0.30); border-radius: 10px; padding: 10px 12px; background: rgba(195,224,212,0.05); margin: 4px -4px; }

    /* ─────────────────── REMINDER CARDS ─────────────────── */
    .reminder-stack { display: flex; flex-direction: column; gap: 16px; }
    .reminder-card {
      border-radius: var(--r-card); padding: 20px 22px;
      border-left: 3px solid var(--mint); opacity: 0; transform: translateX(24px);
      transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
    }
    .reminder-card.rc-visible { opacity: 1; transform: translateX(0); }
    .reminder-card.rc-1 { background: var(--glass-bg); border: 1.5px solid var(--glass-border); border-left: 3px solid var(--mint); backdrop-filter: blur(20px); box-shadow: var(--sh-soft); }
    .reminder-card.rc-2 { background: rgba(195,224,212,0.12); border: 1.5px solid rgba(195,224,212,0.25); border-left: 3px solid var(--mint); }
    .reminder-card.rc-3 { background: rgba(195,224,212,0.18); border: 1.5px solid rgba(195,224,212,0.35); border-left: 3px solid var(--mint); }
    .reminder-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
    .reminder-vaccines { font-size: 13px; color: var(--ink-mid); margin-bottom: 8px; }
    .reminder-action { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--mint); cursor: pointer; }
    .reminder-date { font-size: 11px; color: var(--ink-soft); margin-top: 8px; }
    .prep-list { list-style: none; font-size: 12px; color: var(--ink-mid); display: flex; flex-direction: column; gap: 3px; margin: 8px 0; }

    /* ─────────────────── VACCINE RECORD CARD ─────────────────── */
    .record-card { background: rgba(255,255,255,0.72); border: 1.5px solid rgba(255,255,255,0.85); border-radius: var(--r-card); padding: 32px; box-shadow: var(--sh-card); position: relative; }
    .record-badge { position: absolute; top: 20px; right: 20px; background: var(--mint); color: var(--ink); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: var(--r-pill); }
    .record-header { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 4px; display: flex; gap: 8px; align-items: center; }
    .record-date { font-size: 11px; color: var(--ink-soft); margin-bottom: 20px; }
    .record-field { margin-bottom: 14px; }
    .record-field-label { font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
    .record-field-value { font-size: 14px; color: var(--ink); line-height: 1.5; }
    .record-field-sub { font-size: 12px; color: var(--ink-soft); }
    .record-actions { display: flex; gap: 10px; margin-top: 20px; }

    /* ─────────────────── VISIT LOG ─────────────────── */
    .visit-card { background: var(--glass-bg); border: 1.5px solid var(--glass-border); border-radius: var(--r-card); padding: 24px; backdrop-filter: blur(20px); box-shadow: var(--sh-soft); }
    .visit-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
    .visit-title { font-size: 14px; font-weight: 500; color: var(--ink); }
    .visit-meta { font-size: 11px; color: var(--ink-soft); }
    .visit-badge { font-size: 10px; background: rgba(195,224,212,0.2); color: var(--ink-mid); padding: 4px 10px; border-radius: var(--r-pill); border: 1px solid rgba(195,224,212,0.3); }
    .visit-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(195,224,212,0.1); font-size: 13px; }
    .visit-row-label { color: var(--ink-soft); }
    .visit-row-value { color: var(--ink); font-weight: 400; text-align: right; max-width: 55%; }
    .visit-notes { margin-top: 14px; font-size: 13px; color: var(--ink-mid); line-height: 1.6; background: rgba(195,224,212,0.08); border-radius: 12px; padding: 12px; }
    .visit-actions { display: flex; gap: 10px; margin-top: 16px; }

    /* ─────────────────── POST-VACCINE MONITOR ─────────────────── */
    .monitor-card { background: linear-gradient(160deg, #0d1e1b, #1c1624); border: 1.5px solid rgba(195,224,212,0.22); border-radius: var(--r-card); padding: 28px; box-shadow: var(--sh-card); }
    .monitor-header { font-size: 14px; color: rgba(195,224,212,0.80); font-weight: 500; margin-bottom: 4px; }
    .monitor-sub { font-size: 11px; color: rgba(253,249,244,0.40); margin-bottom: 20px; }
    .progress-track { background: rgba(195,224,212,0.1); border-radius: 999px; height: 8px; position: relative; overflow: visible; margin-bottom: 8px; }
    .progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--mint), var(--sage)); width: 0%; transition: width 1.2s ease-out; }
    .progress-dot { position: absolute; top: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 8px rgba(195,224,212,0.6); transition: left 1.2s ease-out; left: 0%; }
    .progress-labels { display: flex; justify-content: space-between; font-size: 9px; color: rgba(253,249,244,0.35); margin-bottom: 20px; }
    .checkin-row { padding: 9px 0; border-bottom: 1px solid rgba(195,224,212,0.08); }
    .checkin-time { font-size: 10px; color: rgba(195,224,212,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
    .checkin-data { font-size: 12px; color: rgba(253,249,244,0.75); line-height: 1.5; }
    .checkin-note { font-size: 11px; color: rgba(253,249,244,0.45); font-style: italic; }
    .status-chip-ok { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--mint); background: rgba(195,224,212,0.1); border: 1px solid rgba(195,224,212,0.25); border-radius: var(--r-pill); padding: 4px 10px; margin-top: 8px; }
    .cdc-ref { margin-top: 16px; padding: 12px; background: rgba(195,224,212,0.06); border-radius: 10px; }
    .cdc-ref-title { font-size: 10px; color: rgba(253,249,244,0.45); margin-bottom: 6px; letter-spacing: 0.04em; }
    .cdc-ref-item { font-size: 11px; color: rgba(253,249,244,0.50); }
    .emergency-chip {
      margin-top: 16px; display: flex; align-items: center; gap: 8px;
      background: rgba(255,100,100,0.08); border: 1px solid rgba(255,100,100,0.25);
      border-radius: 12px; padding: 12px 14px; font-size: 12px; color: rgba(255,200,200,0.9);
      line-height: 1.5;
    }

    /* ─────────────────── HEALTH HISTORY ─────────────────── */
    .history-card { background: var(--glass-bg); border: 1.5px solid var(--glass-border); border-radius: 40px; padding: 52px; box-shadow: var(--sh-card); border-left: 4px solid var(--mint); backdrop-filter: blur(20px) saturate(1.4); }
    .history-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
    @media (max-width: 768px) { .history-grid { grid-template-columns: 1fr 1fr; } }
    .history-cat { background: rgba(195,224,212,0.08); border: 1px solid rgba(195,224,212,0.15); border-radius: 18px; padding: 20px; }
    .history-cat-icon { font-size: 22px; margin-bottom: 10px; }
    .history-cat-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
    .history-cat-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
    .history-export { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(195,224,212,0.2); }

    /* ─────────────────── SECTION 12: AGE TABS ─────────────────── */
    #vaccine-schedule { background: var(--ink); }
    .section-disclaimer { background: rgba(195,224,212,0.08); border: 1px solid rgba(195,224,212,0.25); border-radius: 16px; padding: 20px 24px; margin-bottom: 48px; font-size: 14px; color: rgba(253,249,244,0.75); line-height: 1.6; }
    .tab-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 28px; }
    .tab-btn {
      font-family: 'DM Sans', sans-serif; font-size: 13px; padding: 9px 18px;
      border-radius: var(--r-pill); border: 1px solid rgba(195,224,212,0.2);
      background: transparent; color: rgba(253,249,244,0.50); cursor: pointer;
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    .tab-btn.active, .tab-btn:hover { background: linear-gradient(135deg, rgba(195,224,212,0.2), rgba(184,207,196,0.2)); color: var(--cream); border-color: rgba(195,224,212,0.40); }
    .tab-btn.active { background: linear-gradient(135deg, rgba(195,224,212,0.25), rgba(184,207,196,0.25)); color: var(--ink); background: var(--mint); border-color: var(--mint); color: var(--ink); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; animation: fadeTab 0.35s ease; }
    @keyframes fadeTab { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
    .tab-content { background: rgba(255,255,255,0.04); border: 1px solid rgba(195,224,212,0.12); border-radius: var(--r-card); padding: 36px; }
    .tab-vaccine-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
    .tab-vaccine-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(253,249,244,0.80); }
    .tab-vaccine-item::before { content: '•'; color: var(--mint); flex-shrink: 0; }
    .tab-section-label { font-size: 11px; color: rgba(195,224,212,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 20px; margin-bottom: 8px; }
    .tab-info { font-size: 13px; color: rgba(253,249,244,0.55); line-height: 1.65; }
    .tab-lunara { font-size: 13px; color: rgba(195,224,212,0.70); background: rgba(195,224,212,0.06); border-radius: 10px; padding: 10px 14px; margin-top: 16px; }

    /* ─────────────────── COMPARISON ─────────────────── */
    #comparison { background: var(--cream-warm); }
    .comparison-table-wrap { overflow-x: auto; border-radius: var(--r-card); box-shadow: var(--sh-card); }
    table.comp-table { width: 100%; border-collapse: collapse; background: var(--glass-bg); backdrop-filter: blur(20px); }
    .comp-table caption { text-align: left; font-size: 11px; color: var(--ink-soft); font-style: italic; padding: 12px 20px; background: rgba(195,224,212,0.06); border-radius: 0 0 var(--r-card) var(--r-card); }
    .comp-table th { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; padding: 18px 20px; border-bottom: 1.5px solid rgba(195,224,212,0.2); text-align: center; }
    .comp-table th.feature-col { text-align: left; color: var(--ink-mid); }
    .comp-table th.lunara-col { background: rgba(195,224,212,0.15); color: var(--ink); border-bottom-color: var(--mint); }
    .comp-table td { font-size: 13px; padding: 13px 20px; border-bottom: 1px solid rgba(195,224,212,0.08); text-align: center; color: var(--ink-mid); }
    .comp-table td.feature-name { text-align: left; color: var(--ink); }
    .comp-table td.lunara-val { background: rgba(195,224,212,0.07); color: var(--ink); font-weight: 500; }
    .comp-table tr:hover td { background: rgba(195,224,212,0.04); }
    .comp-table tr:hover td.lunara-val { background: rgba(195,224,212,0.12); }
    .check-yes { color: var(--mint); font-size: 15px; }
    .check-no { color: rgba(120,110,140,0.5); font-size: 13px; }
    .comp-disclaimer { font-size: 11px; color: var(--ink-soft); font-style: italic; padding: 12px 20px; }

    /* ─────────────────── TESTIMONIALS ─────────────────── */
    #testimonials { background: var(--cream); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial-card { background: var(--glass-bg); border: 1.5px solid var(--glass-border); border-radius: var(--r-card); padding: 32px; box-shadow: var(--sh-soft); backdrop-filter: blur(20px) saturate(1.4); }
    .test-stars { color: #f0c040; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
    .test-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.65; margin-bottom: 20px; }
    .test-author { font-size: 13px; color: var(--ink-soft); }
    .test-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--mint); background: rgba(195,224,212,0.12); border: 1px solid rgba(195,224,212,0.25); border-radius: var(--r-pill); padding: 4px 10px; margin-top: 10px; }

    /* ─────────────────── STATS BAR ─────────────────── */
    #stats-bar { background: var(--ink); padding: 52px 0; position: relative; z-index: 1; }
    .stats-inner { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
    .stat-item { text-align: center; }
    .vaccine-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--cream); }
    .stat-label { font-size: 13px; color: rgba(253,249,244,0.50); margin-top: 4px; max-width: 130px; line-height: 1.4; }

    /* ─────────────────── FAQ ─────────────────── */
    #faq { background: var(--cream-warm); }
    .faq-disclaimer { border-left: 3px solid var(--mint); background: rgba(195,224,212,0.08); border-radius: 0 12px 12px 0; padding: 16px 20px; margin-bottom: 40px; font-size: 14px; color: var(--ink-soft); font-style: italic; line-height: 1.6; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--glass-bg); border: 1.5px solid var(--glass-border); border-radius: 18px; overflow: hidden; backdrop-filter: blur(20px); box-shadow: var(--sh-soft); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center;
      padding: 20px 28px; cursor: pointer; font-size: 16px; font-weight: 400;
      color: var(--ink); background: transparent; border: none; text-align: left; gap: 16px;
      font-family: 'DM Sans', sans-serif;
    }
    .faq-q:hover { background: rgba(195,224,212,0.05); }
    .faq-icon { font-size: 18px; color: var(--mint); flex-shrink: 0; transition: transform 0.3s; }
    .faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
    .faq-a.open { max-height: 400px; }
    .faq-a-inner { padding: 0 28px 24px; font-size: 15px; color: var(--ink-mid); line-height: 1.75; }

    /* ─────────────────── FINAL CTA ─────────────────── */
    #final-cta { background: var(--ink); padding: 120px 0; text-align: center; }
    .milestone-strip { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
    .milestone-chip { font-size: 12px; padding: 7px 16px; border-radius: var(--r-pill); display: flex; align-items: center; gap: 5px; opacity: 0; transform: translateX(-16px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .milestone-chip.mc-visible { opacity: 1; transform: translateX(0); }
    .milestone-chip.done { background: rgba(195,224,212,0.18); color: var(--mint); border: 1px solid rgba(195,224,212,0.3); }
    .milestone-chip.active { background: rgba(195,224,212,0.12); color: var(--mint); border: 1px solid var(--mint); box-shadow: 0 0 16px rgba(195,224,212,0.2); animation: chip-pulse 2.5s infinite; }
    .milestone-chip.future { background: rgba(255,255,255,0.04); color: rgba(253,249,244,0.30); border: 1px solid rgba(255,255,255,0.08); }
    @keyframes chip-pulse { 0%,100%{box-shadow: 0 0 8px rgba(195,224,212,0.2);} 50%{box-shadow: 0 0 22px rgba(195,224,212,0.45);} }
    .cta-eyebrow { font-size: 13px; color: rgba(195,224,212,0.65); letter-spacing: 0.08em; margin-bottom: 24px; display: block; }
    .cta-h2 { color: var(--cream); margin-bottom: 24px; }
    .cta-sub { font-size: 17px; color: rgba(253,249,244,0.65); max-width: 460px; margin: 0 auto 40px; line-height: 1.75; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-trust { margin-top: 32px; font-size: 13px; color: rgba(253,249,244,0.40); }
    .page-final-disclaimer { font-size: 12px; color: rgba(253,249,244,0.25); text-align: center; max-width: 600px; margin: 40px auto 0; line-height: 1.65; }

    /* Footer placeholder */
    footer { background: var(--ink); border-top: 1px solid rgba(195,224,212,0.08); padding: 48px 56px; text-align: center; }
    .footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--cream); font-weight: 300; }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; color: rgba(253,249,244,0.40); transition: color 0.2s; }
    .footer-links a:hover { color: var(--mint); }
    .footer-copy { font-size: 12px; color: rgba(253,249,244,0.25); }

    /* ─── Hero feature mini-pills ─── */
    .hero-feature-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-feature-pill {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; color: rgba(195,224,212,0.85);
      border: 1px solid rgba(195,224,212,0.25); border-radius: var(--r-pill);
      padding: 6px 14px; background: rgba(195,224,212,0.06);
      backdrop-filter: blur(8px);
    }

    /* ─── Phone float + glow ─── */
    @keyframes float-phone { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
    @keyframes float-card-1 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
    @keyframes float-card-2 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
    @keyframes float-card-3 { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-9px); } }
    .hero-phone-wrap { position: relative; display: flex; justify-content: center; animation: float-phone 6s ease-in-out infinite; }
    .phone-mint-glow {
      position: absolute; width: 320px; height: 320px;
      background: rgba(122,191,165,0.22); border-radius: 50%;
      filter: blur(48px); z-index: 0; top: 50%; left: 50%;
      transform: translate(-50%, -50%); pointer-events: none;
    }
    .phone-frame { position: relative; z-index: 1; }
    .phone-dynamic-island {
      width: 80px; height: 22px; background: #000;
      border-radius: 20px; margin: 0 auto 14px; display: block;
    }

    /* ─── Floating hero cards ─── */
    .hero-float-card {
      position: absolute; background: rgba(18,28,24,0.88);
      border: 1.5px solid rgba(195,224,212,0.25); border-radius: 16px;
      padding: 12px 16px; backdrop-filter: blur(18px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35); z-index: 3;
    }
    .hfc-a { top: -18px; right: -28px; animation: float-card-1 5s ease-in-out infinite; }
    .hfc-b { bottom: 90px; left: -36px; animation: float-card-2 7s ease-in-out 1s infinite; }
    .hfc-c { bottom: 200px; right: -32px; animation: float-card-3 5.5s ease-in-out 0.5s infinite; }

    /* ═══════════════════════════════════════════
       MOBILE RESPONSIVE — TOP NOTCH
       ═══════════════════════════════════════════ */

    /* ─── 900px ─── */
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    }

    /* ─── 768px ─── */
    @media (max-width: 768px) {
      /* Hero */
      .hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-phone-wrap { display: none; }
      #hero { min-height: auto; padding: 56px 24px 72px; }
      .hero-answer { font-size: 16px; max-width: 100%; }
      .hero-h1 { font-size: clamp(40px, 9vw, 56px); }

      /* Feature pills */
      .hero-feature-pills { gap: 6px; }
      .hero-feature-pill { font-size: 11px; padding: 5px 12px; }

      /* CTAs */
      .hero-ctas { gap: 12px; }

      /* Social proof — stacked list */
      .proof-strip {
        flex-direction: column; gap: 0; align-items: stretch;
      }
      .proof-item {
        border-right: none; border-bottom: 1px solid rgba(195,224,212,0.12);
        padding: 16px 20px; display: flex; align-items: center;
        justify-content: space-between; gap: 16px; text-align: left;
      }
      .proof-item:last-child { border-bottom: none; }
      .proof-num { font-size: 30px; line-height: 1; }
      .proof-label { text-align: right; max-width: 200px; font-size: 12px; }

      /* Two-column sections */
      .two-col { grid-template-columns: 1fr; gap: 32px; }
      .two-col.visual-left .col-text,
      .two-col.visual-left .col-visual { order: unset; }

      /* Section padding */
      .section-pad { padding: 64px 0; }

      /* History */
      .history-card { padding: 28px 24px; border-radius: 28px; }
      .history-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .history-export { flex-direction: column; align-items: flex-start; gap: 12px; }

      /* Tab nav — horizontal scroll */
      .tab-nav {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; padding-bottom: 6px;
        flex-wrap: nowrap; gap: 6px; margin-bottom: 20px;
        -ms-overflow-style: none;
      }
      .tab-nav::-webkit-scrollbar { display: none; }
      .tab-btn { white-space: nowrap; flex-shrink: 0; font-size: 12px; padding: 8px 14px; }
      .tab-content { padding: 24px 20px; }

      /* Comparison table */
      .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 20px; }
      .comp-table { min-width: 580px; }
      .comp-table th, .comp-table td { font-size: 12px; padding: 10px 14px; }

      /* Testimonials */
      .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
      .testimonial-card { padding: 24px; }

      /* Stats bar — 2×2 grid */
      .stats-inner { flex-wrap: wrap; gap: 0; }
      .stat-item {
        flex: 1 1 50%; padding: 20px 16px;
        border-right: 1px solid rgba(195,224,212,0.1);
        border-bottom: 1px solid rgba(195,224,212,0.1);
      }
      .stat-item:nth-child(even) { border-right: none; }
      .stat-item:nth-last-child(-n+2) { border-bottom: none; }
      .vaccine-stat-num { font-size: 40px; }

      /* FAQ */
      .faq-q { padding: 16px 20px; font-size: 15px; }
      .faq-a-inner { padding: 0 20px 20px; }

      /* Final CTA */
      #final-cta { padding: 80px 0; }
      .milestone-strip { gap: 8px; }
      .milestone-chip { font-size: 11px; padding: 6px 14px; }

      /* Footer */
      footer { padding: 32px 24px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }

      /* Nav */
      .nav-links { display: none; }
    }

    /* ─── 600px ─── */
    @media (max-width: 640px) {
       .hero-eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 12px 20px;
        box-sizing: border-box;
        line-height: 1.4;
        letter-spacing: 0.04em;
    }
     .btn-primary,
    .btn-ghost {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        padding: 0 24px;
        box-sizing: border-box;
        text-align: center;
        margin-left: 0;
    }
     .stats-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }

    .stat-item {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        padding: 18px 14px;
        min-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
    }
      /* Stats: single column */
      .stat-item { flex: 1 1 100%; border-right: none; }
      .stat-item:nth-child(even) { border-right: none; }
      .stat-item:nth-last-child(-n+2) { border-bottom: none; }

      /* History grid: single column */
      .history-grid { grid-template-columns: 1fr; }

      /* Reminder cards */
      .reminder-card { padding: 16px 18px; }
      .reminder-stack { gap: 12px; }

      /* Schedule card */
      .schedule-card { padding: 20px 16px; }
      .sched-vaccines { font-size: 10px; line-height: 1.5; }
      .sched-age { font-size: 8px; }

      /* Monitor card */
      .monitor-card { padding: 20px 16px; }

      /* Section padding */
      .section-pad { padding: 52px 0; }
    }

  
    /* ─── Nav scroll effect ─── */
    body.page-features-vaccines nav.site-nav {
      transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease;
    }
    body.page-features-vaccines nav.site-nav.scrolled {
      padding: 16px 48px;
      background: rgba(14,30,26,0.92);
      backdrop-filter: blur(28px) saturate(1.4);
      -webkit-backdrop-filter: blur(28px) saturate(1.4);
      border-bottom: 1px solid rgba(195,224,212,0.12);
      box-shadow: 0 2px 40px rgba(0,0,0,0.28);
    }
    body.page-features-vaccines .nav-logo { color: #fdf9f4; font-size: 26px; }
    body.page-features-vaccines .nav-links a { color: rgba(253,249,244,0.65); }
    body.page-features-vaccines .nav-links a:hover,
    body.page-features-vaccines .nav-links a.active { color: #fdf9f4; }
    body.page-features-vaccines .nav-hamburger span { background: #fdf9f4; }
    body.page-features-vaccines .nav-cta {
      background: linear-gradient(135deg, #7abfa5, #b8cfc4);
      color: #1c1624; border: none; padding: 10px 24px;
      border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
      cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
    }
    body.page-features-vaccines .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(122,191,165,0.35);
    }
    @media (max-width: 900px) {
      body.page-features-vaccines nav.site-nav.scrolled { padding: 14px 24px; }
    }