/* Reversal Health — stylesheet (clinical, modern, teal/navy) */

:root {
    --primary: #0f766e;
    --primary-dark: #0b4f49;
    --primary-light: #14b8a6;
    --navy: #0d2a3a;
    --accent: #ffb347;
    --accent-dark: #e6952e;
    --mint: #d3ede8;
    --sand: #fbf8f3;
    --text: #0f1f26;
    --text-light: #47606c;
    --text-muted: #7d8a92;
    --bg: #ffffff;
    --bg-alt: #f4faf8;
    --bg-cool: #eef6f4;
    --border: #e1ebe8;
    --shadow: 0 2px 10px rgba(13, 42, 58, 0.06);
    --shadow-lg: 0 14px 40px rgba(13, 42, 58, 0.10);
    --radius: 10px;
    --radius-lg: 18px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: .5em;
    letter-spacing: -0.022em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.top-bar {
    background: var(--navy);
    color: #fff;
    font-size: .85rem;
    padding: 10px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar a { color: #fff; opacity: .85; }
.top-bar a:hover { opacity: 1; color: #fff; }
.tb-tag { font-weight: 500; color: rgba(255,255,255,.9); }
.tb-locale { letter-spacing: .05em; font-size: .78rem; }
.btn-small {
    background: var(--accent);
    color: var(--navy) !important;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 600;
    opacity: 1 !important;
    font-size: .82rem;
}
.btn-small:hover { background: var(--accent-dark); }

/* Main header */
.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.025em;
    flex-shrink: 0;
}
.logo-mark { display: inline-flex; color: var(--primary); }
.logo-text strong { color: var(--primary); font-weight: 700; }

.main-nav {
    display: flex;
    gap: 2px;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-link {
    color: var(--text);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .94rem;
    transition: all .2s;
    position: relative;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 230px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .2s;
    z-index: 60;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: .92rem;
    font-weight: 500;
}
.dropdown-menu a:hover { background: var(--bg-cool); color: var(--primary); }

.header-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}
.header-cta:hover { background: var(--primary-dark); }

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 32px;
    height: 28px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid transparent;
    transition: all .2s;
    cursor: pointer;
    text-align: center;
    letter-spacing: .01em;
}
.btn-primary {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-accent {
    background: var(--accent);
    color: var(--navy) !important;
    border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff !important; }
.btn-dark {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
}
.btn-dark:hover { background: #000; border-color: #000; }
.btn-white {
    background: #fff;
    color: var(--primary-dark) !important;
    border-color: #fff;
}
.btn-white:hover { background: var(--mint); }
.btn-outline-white {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--primary-dark) !important; }

/* Hero */
.hero {
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 90px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    right: -120px; bottom: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(20,184,166,.3), transparent 65%);
    border-radius: 50%;
}
.hero::after {
    content: "";
    position: absolute;
    left: -80px; top: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(255,179,71,.18), transparent 65%);
    border-radius: 50%;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero h1 em { font-style: normal; color: var(--primary-light); }
.hero p { color: rgba(255,255,255,.82); font-size: 1.14rem; margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
}
.hero-card {
    background: #fff;
    color: var(--navy);
    border-radius: var(--radius);
    padding: 20px 22px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.hero-card .hc-label {
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}
.hero-card .hc-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-card .hc-sub { font-size: .82rem; color: var(--text-muted); }

/* Pillar row */
.pillars {
    background: var(--bg-alt);
    padding: 60px 0;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all .2s;
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--primary-light); }
.pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--mint);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}
.pillar h3 { margin: 0; font-size: 1.2rem; }
.pillar p { margin: 0; font-size: .95rem; }

/* Sections */
section.block { padding: 80px 0; }
section.block.alt { background: var(--bg-alt); }
section.block.dark { background: var(--navy); color: #fff; }
section.block.dark h1, section.block.dark h2, section.block.dark h3 { color: #fff; }
section.block.dark p { color: rgba(255,255,255,.8); }
.section-head {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}
.section-head h2 { margin: 0; max-width: 720px; }
.section-head .section-link { color: var(--primary); font-weight: 600; font-size: .94rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; color: var(--text-light); font-size: 1.08rem; }

/* Outcome stats */
.outcomes-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
}
.outcome {
    padding: 24px 0;
    border-top: 4px solid var(--primary);
}
.outcome .num {
    display: block;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
}
.outcome .num sup { font-size: .5em; color: var(--primary); vertical-align: super; font-weight: 600; }
.outcome .lbl { color: var(--text-light); font-size: .95rem; font-weight: 500; }

/* Grids */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.85);
    font-size: 2.4rem;
    font-weight: 800;
    position: relative;
}
.card-thumb .thumb-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(13,42,58,.85);
    color: #fff;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
}
.card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.card-title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 700;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--primary); }
.card-excerpt { font-size: .94rem; color: var(--text-light); margin-bottom: 16px; flex: 1; }
.card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* Testimonial card */
.testimonial {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}
.testimonial .tstat {
    display: flex;
    gap: 16px;
    margin-bottom: 6px;
}
.testimonial .tstat-item {
    padding: 8px 14px;
    background: var(--mint);
    color: var(--primary-dark);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
}
.testimonial blockquote {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.55;
    font-weight: 500;
    border: 0;
    margin: 0;
    padding: 0;
}
.testimonial .tattr {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial .tattr strong { color: var(--navy); font-size: .95rem; display: block; }
.testimonial .tattr small { color: var(--text-muted); font-size: .82rem; }

/* Feature row */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.feature-row.flip .feature-visual { order: 2; }
.feature-visual {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    padding: 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.feature-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 60%);
}
.feature-badge {
    position: relative;
    background: #fff;
    color: var(--navy);
    padding: 16px 22px;
    border-radius: var(--radius);
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    max-width: 280px;
}
.feature-badge strong { display: block; font-size: 1.1rem; margin-bottom: 2px; }
.feature-badge small { color: var(--text-muted); font-size: .82rem; }

/* How-it-works steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step {
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.step h4 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; font-size: .92rem; }

/* Logo strip */
.logo-strip {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.logo-strip .ls-title {
    text-align: center;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 26px;
    font-weight: 700;
}
.logo-strip .ls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 44px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

/* Newsletter block (magazine) */
.spark-block {
    background: var(--bg-cool);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.spark-block h2 { margin-bottom: 14px; }
.spark-block p { font-size: 1rem; }
.spark-icons {
    display: flex;
    gap: 28px;
    margin: 22px 0;
    flex-wrap: wrap;
}
.spark-icons .si {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--text);
    font-weight: 600;
}
.spark-icons .si span {
    width: 30px; height: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--primary);
    font-weight: 800;
}
.spark-form { display: flex; gap: 8px; }
.spark-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: .95rem;
    background: #fff;
}
.spark-form input:focus { outline: none; border-color: var(--primary); }

/* CTA banner */
.cta-banner {
    background: var(--primary);
    color: #fff;
    padding: 64px 0;
}
.cta-banner h2 { color: #fff; }
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner p { color: rgba(255,255,255,.88); margin: 0; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page hero */
.page-hero {
    background: var(--bg-alt);
    padding: 70px 0 60px;
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 720px; font-size: 1.1rem; }
.page-hero .breadcrumb {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
}
.page-hero .breadcrumb a { color: var(--primary); }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2, .prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; color: var(--text-light); }
.prose li { margin-bottom: .5em; line-height: 1.6; }

/* Price / plan cards */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .2s;
}
.plan.highlight {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.plan.highlight::before {
    content: "Most Popular";
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}
.plan h3 { margin: 0; }
.plan .plan-price { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.plan .plan-price small { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 0; }
.plan ul li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: var(--text-light);
    font-size: .94rem;
}
.plan ul li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 8px;
    color: var(--primary);
    font-weight: 800;
}

/* Contact form */
.contact-form {
    display: grid;
    gap: 18px;
    max-width: 640px;
}
.contact-form label { font-weight: 600; font-size: .88rem; color: var(--text); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: #fff;
    font-family: inherit;
    font-size: .95rem;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: .95rem;
}
.alert-success { background: var(--mint); color: var(--primary-dark); border: 1px solid var(--primary); }
.alert-error { background: #fde8e8; color: #8b2d2d; border: 1px solid #e0a0a0; }

/* Partners strip */
.partners {
    margin: 42px 0 18px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}
.partners h5 {
    color: rgba(255,255,255,.65);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .75rem;
    margin-bottom: 16px;
    font-weight: 700;
}
.partner-logos {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.75);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 64px 0 30px;
    font-size: .92rem;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #fff; }
.site-footer h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 30px;
}
.footer-brand p { color: rgba(255,255,255,.65); margin: 16px 0; max-width: 320px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}
.footer-logo .logo-mark { color: var(--primary-light); }
.footer-logo strong { color: var(--primary-light); }
.social { display: flex; gap: 10px; margin-top: 6px; }
.social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    text-transform: lowercase;
}
.social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.footer-bottom p { color: rgba(255,255,255,.55); margin: 0; max-width: 760px; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}
.faq-q::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    color: var(--text-light);
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 12px; }

/* Eligibility badges */
.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.badge {
    background: var(--mint);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
}

/* 404 */
.err-wrap { text-align: center; padding: 100px 20px; }
.err-wrap .big { font-size: 9rem; color: var(--primary); line-height: 1; font-weight: 900; letter-spacing: -0.04em; }

/* Responsive */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 16 / 10; max-width: 560px; }
    .main-nav {
        position: fixed;
        inset: 60px 0 0 0;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        transform: translateX(100%);
        transition: transform .3s;
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 40;
        align-items: flex-start;
    }
    body.menu-open .main-nav { transform: translateX(0); }
    .nav-dropdown { width: 100%; }
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; padding-left: 14px;
    }
    .menu-toggle { display: block; }
    .header-cta { display: none; }
    .pillar-grid, .grid-3, .grid-4, .plan-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-row { grid-template-columns: repeat(2, 1fr); }
    .feature-row, .feature-row.flip { grid-template-columns: 1fr; }
    .feature-row.flip .feature-visual { order: 0; }
    .spark-block { grid-template-columns: 1fr; padding: 32px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4, .pillar-grid, .plan-grid, .steps { grid-template-columns: 1fr; }
    .outcomes-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero { padding: 60px 0 70px; }
    section.block { padding: 50px 0; }
    .top-bar-left { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .spark-block { padding: 26px; }
}
