/* ============================================================
   Omni Health Partners — main stylesheet
   ============================================================ */

/* Fonts */
@font-face { font-family:'Mosafin'; src:url('/src/font/Mosafin-Medium.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'Mosafin'; src:url('/src/font/Mosafin-SemiBold.ttf') format('truetype'); font-weight:600; font-display:swap; }
@font-face { font-family:'Mosafin'; src:url('/src/font/Mosafin-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }
@font-face { font-family:'Mosafin'; src:url('/src/font/Mosafin-ExtraBold.ttf') format('truetype'); font-weight:800; font-display:swap; }
@font-face { font-family:'Mosafin'; src:url('/src/font/Mosafin-Black.ttf') format('truetype'); font-weight:900; font-display:swap; }

/* Tokens */
:root {
    --orange: #fba955;
    --orange-dark: #e89240;
    --teal: #72aca4;
    --teal-dark: #5a948c;
    --slate: #233035;
    --slate-soft: #2c3a40;
    --ink: #1f2a2f;
    --muted: #5f6f77;
    --line: #e5e8e6;
    --bg: #fdfbf7;
    --bg-light: #f5f6f3;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(35,48,53,0.06);
    --shadow-md: 0 10px 30px rgba(35,48,53,0.08);
    --shadow-lg: 0 24px 60px rgba(35,48,53,0.12);
    --radius: 18px;
    --radius-sm: 10px;
    --max: 1200px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Mosafin', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Mosafin', sans-serif; color: var(--slate); line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 5.6vw, 72px); font-weight: 900; }
h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 800; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }
.section-head--light h2, .section-head--light p { color: var(--white); }
.section-head--light p { color: rgba(255,255,255,0.85); }
.section-head--inverse h2, .section-head--inverse p { color: var(--white); }
.section-head--inverse p { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--orange); color: #1a1a1a;
    padding: 14px 28px; border-radius: 999px;
    font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
    border: 2px solid #1a1a1a;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 12px 24px rgba(251,169,85,0.35); }
.btn-primary--large { padding: 18px 36px; font-size: 17px; }
.btn-primary--ghost-on-light { background: var(--orange); }
.btn-ghost {
    display: inline-flex; align-items: center;
    color: var(--white); font-weight: 600; font-size: 15px;
    padding: 12px 4px;
    transition: opacity .2s;
}
.btn-ghost:hover { opacity: 0.8; }
.btn-link { color: var(--teal); font-weight: 700; font-size: 15px; }
.btn-link:hover { text-decoration: underline; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* === Notice bar === */
.notice-bar {
    background: var(--slate); color: rgba(255,255,255,0.95);
    display: flex; justify-content: center; align-items: center;
    gap: 20px; padding: 10px 16px; font-size: 13px;
    flex-wrap: wrap;
}
.notice-divider { opacity: 0.5; }

/* === Sticky header === */
.site-header {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px; gap: 24px;
    background: var(--white); border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 18px rgba(35,48,53,0.06); }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { height: 48px; width: auto; display: block; }
.brand-mark--footer img { height: 88px; filter: brightness(1.15); }
@media (max-width: 600px) {
    .brand-mark img { height: 38px; }
    .brand-mark--footer img { height: 72px; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: var(--ink); font-size: 14px; font-weight: 600;
    position: relative; padding: 6px 0;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--orange); transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-flex; align-items: center;
    background: var(--orange); color: #1a1a1a;
    padding: 10px 22px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    border: 2px solid #1a1a1a;
    transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(251,169,85,0.35); }

/* === Hero === */
.hero {
    position: relative; overflow: hidden;
    padding: 110px 32px 140px;
}
.hero-background { position: absolute; inset: 0; z-index: -1; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; }
.hero-background::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35,48,53,0.10) 0%, rgba(35,48,53,0.55) 70%, var(--bg) 100%);
}
.hero-inner {
    position: relative;
    max-width: 1480px; margin: 0 auto;
    display: grid; grid-template-columns: 0.9fr 1.5fr; gap: 24px; align-items: center;
}
.hero-copy { color: var(--white); }
.hero-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 22px;
}
.hero-copy h1 {
    color: var(--white); margin-bottom: 28px;
    font-size: clamp(44px, 5.6vw, 76px); letter-spacing: -0.02em; line-height: 1.02;
}
.hero-lead { font-size: 19px; max-width: 500px; margin-bottom: 36px; opacity: 0.92; line-height: 1.5; font-weight: 500; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-stars { color: var(--orange); font-size: 16px; letter-spacing: 0.1em; }
.hero-art { display: flex; justify-content: flex-end; }
.hero-art img {
    width: 100%; max-width: 1200px;
    height: auto;
    transform: scale(1.04);
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
    margin-right: -80px;
}
.hero-art.is-visible img,
.hero-art[data-reveal].is-visible img { transform: none; }
@media (max-width: 900px) {
    .hero-art img { max-width: 520px; transform: none; }
}

/* === Lede === */
.lede { background: var(--bg); padding: 100px 0; }
.lede-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lede h2 { line-height: 1.04; }
.lede p { color: var(--muted); font-size: 17px; line-height: 1.6; margin-bottom: 16px; }
.lede b { color: var(--slate); font-weight: 700; }

/* === Conditions === */
.conditions { background: var(--white); padding: 110px 0; }
.condition-grid {
    list-style: none;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.condition-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent, var(--teal));
    transition: transform .3s ease, box-shadow .3s ease;
}
.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.condition-card img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 16px; }
.condition-card h3 { color: var(--slate); margin-bottom: 8px; }
.condition-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.conditions-cta {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin-top: 56px; flex-wrap: wrap;
}
.conditions-cta span { color: var(--muted); font-size: 14px; }

/* === Brands marquee === */
.brands { background: var(--white); padding: 56px 0 64px; overflow: hidden; }
.brands-label {
    text-align: center; font-size: 12px; letter-spacing: 0.32em; color: var(--muted);
    margin-bottom: 32px; font-weight: 700;
}
.brands-track {
    display: flex; align-items: center; gap: 80px;
    width: max-content;
    animation: brands-scroll 35s linear infinite;
}
.brands:hover .brands-track { animation-play-state: paused; }
.brands-track img {
    height: 36px; width: auto; opacity: 0.55; filter: grayscale(100%);
    transition: opacity .25s, filter .25s;
}
.brands-track img:hover { opacity: 1; filter: none; }
@keyframes brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Access (4-up) === */
.access {
    position: relative;
    background: linear-gradient(180deg, var(--slate) 0%, var(--slate-soft) 100%);
    color: var(--white); padding: 130px 0;
}
.access::before, .access::after {
    content: ""; position: absolute; left: 0; right: 0; height: 60px;
    pointer-events: none;
}
.access::before { top: -1px; background: linear-gradient(180deg, var(--white) 0%, transparent 100%); opacity: 0.04; }
.access::after { bottom: -1px; background: linear-gradient(0deg, var(--bg) 0%, transparent 100%); opacity: 0.04; }
.access-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.access-item { text-align: center; padding: 8px; }
.access-icon {
    width: 96px; height: 96px; margin: 0 auto 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
}
.access-icon img { width: 64px; height: 64px; object-fit: contain; }
.access-item h4 { color: var(--teal); margin-bottom: 12px; font-size: 18px; line-height: 1.3; }
.access-item p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.55; }

/* === How-to === */
.howto { background: var(--white); padding: 110px 0; }
.howto-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.howto-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.32em; color: var(--teal); margin-bottom: 18px; text-transform: uppercase; }
.howto-intro h2 { line-height: 1.04; margin-bottom: 32px; }
.howto-stat { padding: 28px 0; margin-bottom: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.howto-stat-num { font-size: 96px; font-weight: 900; line-height: 1; color: var(--teal); margin-bottom: 12px; letter-spacing: -0.02em; }
.howto-stat p { color: var(--muted); font-size: 16px; max-width: 320px; line-height: 1.5; }
.howto-steps { list-style: none; display: grid; gap: 20px; }
.howto-step {
    background: var(--bg-light); border-radius: var(--radius);
    padding: 28px 28px 24px; position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.howto-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.howto-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); color: var(--teal);
    font-weight: 800; font-size: 16px; border: 2px solid var(--teal);
    margin-bottom: 14px;
}
.howto-step h3 { color: var(--slate); margin-bottom: 8px; }
.howto-step p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* === Reviews === */
.reviews { background: var(--bg); padding: 110px 0; }
.rating-stars { color: var(--orange); letter-spacing: 0.12em; }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.review-card {
    background: var(--white); border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card p { color: var(--ink); font-size: 16px; line-height: 1.5; flex: 1; }
.review-card footer { color: var(--muted); font-size: 14px; font-weight: 600; }

/* === Reasons === */
.reasons { background: var(--white); padding: 100px 0; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.reason-card {
    background: var(--bg); border-radius: var(--radius);
    padding: 36px 30px; text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason-card img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 18px; }
.reason-card h3 { color: var(--teal); margin-bottom: 12px; }
.reason-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* === Specialists === */
.specialists { background: var(--white); padding: 110px 0; }
.specialist-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.specialist-card {
    background: var(--white); border-radius: var(--radius);
    padding: 24px; text-align: center;
    box-shadow: var(--shadow-sm);
}
.specialist-photo {
    aspect-ratio: 1; border-radius: 50%;
    margin: 0 auto 18px; max-width: 160px;
    display: flex; align-items: center; justify-content: center;
}
.specialist-photo--placeholder {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white); font-weight: 800; font-size: 22px; letter-spacing: 0.04em;
}
.specialist-card h4 { color: var(--slate); margin-bottom: 4px; }
.specialist-card p { color: var(--muted); font-size: 14px; }
.specialists-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 32px; font-style: italic; }

/* === Pricing === */
.pricing { position: relative; padding: 130px 0; background-size: cover; background-position: center; color: var(--white); }
.pricing-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,48,53,0.78) 0%, rgba(35,48,53,0.65) 50%, rgba(35,48,53,0.85) 100%); }
.pricing .container { position: relative; z-index: 1; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
.price-card {
    position: relative;
    background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius); padding: 36px 32px;
    color: var(--white);
    transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
    background: rgba(251,169,85,0.10);
    border-color: rgba(251,169,85,0.45);
    box-shadow: 0 20px 48px rgba(251,169,85,0.18);
}
.price-badge {
    position: absolute; top: -14px; left: 24px;
    background: var(--orange); color: #1a1a1a;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.price-card header { margin-bottom: 24px; }
.price-card h3 { color: var(--white); margin-bottom: 12px; font-size: 22px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price-amount { font-size: 38px; font-weight: 900; }
.price-suffix { color: rgba(255,255,255,0.7); font-size: 14px; }
.price-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; padding: 0; }
.price-card li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.92); font-size: 15px;
}
.price-card li::before {
    content: "✓"; color: var(--orange); font-weight: 800; flex-shrink: 0;
}
.price-fineprint { color: rgba(255,255,255,0.65); font-size: 13px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); }
.price-save { color: var(--orange); font-weight: 800; margin-top: 14px; }
.price-meta {
    max-width: 720px; margin: 48px auto 0; text-align: center;
    color: rgba(255,255,255,0.78); font-size: 13px;
}
.payment-logos { display: flex; gap: 22px; justify-content: center; align-items: center; margin-top: 22px; }
.payment-logos img { height: 28px; width: auto; opacity: 0.85; filter: brightness(1.1); }

/* === FAQ === */
.faq-section { background: var(--bg); padding: 100px 0; }
.containerfaq { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.faq-container { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 28px; cursor: pointer;
    font-weight: 700; color: var(--slate); font-size: 17px;
    transition: background .2s ease;
}
.faq-question:hover { background: var(--bg-light); }
.faq-toggle { font-size: 24px; color: var(--teal); font-weight: 300; transition: transform .3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .45s ease, padding .3s ease;
    background: var(--bg-light);
}
.faq-answer p { padding: 0 28px; color: var(--muted); line-height: 1.6; font-size: 15px; }
.faq-item.active .faq-question { background: var(--bg-light); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 600px; padding: 0 0 22px; }
.faq-item.active .faq-answer p { padding: 0 28px; }

/* === Final CTA === */
.final-cta {
    position: relative; overflow: hidden;
    background-image: url('/src/img/photos/cta-banner.jpg');
    background-size: cover; background-position: center;
    padding: 130px 0; text-align: center; color: var(--white);
}
.final-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35,48,53,0.55) 0%, rgba(35,48,53,0.70) 100%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.final-cta p { color: rgba(255,255,255,0.95); font-size: 19px; margin-bottom: 32px; }

/* === Contact === */
.contact { background: var(--white); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.contact h2 { margin-bottom: 14px; }
.contact-lede { color: var(--muted); font-size: 17px; margin-bottom: 32px; }
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 700; font-size: 14px; color: var(--slate); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--line); border-radius: 12px;
    font-family: inherit; font-size: 15px;
    background: var(--white); color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(114,172,164,0.20);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { justify-self: start; margin-top: 4px; }
.form-status { font-size: 14px; color: #2c7a4d; min-height: 18px; }
.form-status.error { color: #c0392b; }
.contact-meta { background: var(--bg); border-radius: var(--radius); padding: 32px; }
.contact-meta h3 { color: var(--slate); margin-bottom: 18px; font-size: 18px; }
.contact-meta p { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.5; }
.contact-meta b { color: var(--slate); display: inline-block; }
.soc { display: flex; gap: 14px; margin-top: 8px; }
.soc img { width: 28px; height: 28px; object-fit: contain; transition: transform .25s ease; }
.soc img:hover { transform: translateY(-2px); }

/* === Footer === */
.site-footer { background: var(--slate); color: rgba(255,255,255,0.85); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand .brand-mark { color: var(--white); }
.footer-tagline { font-size: 13px; opacity: 0.7; margin-top: 16px; max-width: 200px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col--meta p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px;
    color: rgba(255,255,255,0.55); font-size: 13px;
    flex-wrap: wrap; gap: 18px;
}
.footer-social { display: flex; gap: 16px; color: rgba(255,255,255,0.7); }
.footer-social svg { transition: color .2s; }
.footer-social svg:hover { color: var(--orange); }

/* === Floating CTA === */
.floating-cta {
    position: fixed; right: 24px; bottom: 24px; z-index: 90;
    background: var(--orange); color: #1a1a1a;
    padding: 14px 24px; border-radius: 999px;
    font-weight: 700; font-size: 15px;
    border: 2px solid #1a1a1a;
    box-shadow: 0 12px 28px rgba(251,169,85,0.45);
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity .3s, transform .3s;
}
.floating-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.floating-cta:hover { transform: translateY(-2px); }

/* === Responsive === */
@media (max-width: 1100px) {
    .access-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .specialist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .site-header { padding: 12px 20px; gap: 16px; }
    .nav-links { display: none; }
    .hero { padding: 56px 20px 80px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-art { order: -1; }
    .hero-art img { max-width: 360px; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .lede-grid { grid-template-columns: 1fr; gap: 28px; }
    .condition-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: 1fr; gap: 20px; }
    .howto-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .floating-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 14px; }
    .container { padding: 0 20px; }
    .containerfaq { padding: 0 20px; }
}
@media (max-width: 560px) {
    .notice-bar { font-size: 11px; gap: 10px; }
    .notice-divider { display: none; }
    .condition-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .specialist-grid { grid-template-columns: 1fr 1fr; }
    .access-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .howto-stat-num { font-size: 72px; }
    .access, .conditions, .lede, .reviews, .reasons, .specialists, .pricing, .faq-section, .final-cta, .contact, .howto { padding: 64px 0; }
}

/* ============================================================
   Polish layer + Eligibility quiz modal
   ============================================================ */

/* Animated number counter */
.howto-stat-num { display: inline-block; }
.howto-stat-num::after { content: ""; }
[data-counter] { font-variant-numeric: tabular-nums; }

/* Refined section vertical rhythm */
.lede, .reasons, .reviews, .conditions, .specialists, .howto, .access, .faq-section, .contact, .final-cta { padding: 120px 0; }
@media (max-width: 900px) {
    .lede, .reasons, .reviews, .conditions, .specialists, .howto, .access, .faq-section, .contact, .final-cta { padding: 80px 0; }
    .pricing { padding: 80px 0; }
    .hero { padding: 80px 20px 100px; }
}

/* Section heads breathe more */
.section-head { margin-bottom: 64px; }
.section-head h2 { font-size: clamp(32px, 3.6vw, 48px); }

/* Conditions card refinement */
.condition-card { padding: 36px 32px; }
.condition-card img { width: 60px; height: 60px; }

/* Reviews polish */
.review-card { padding: 32px 28px; gap: 16px; }
.review-card p { font-size: 17px; line-height: 1.55; }

/* Reasons cards padding */
.reason-card { padding: 44px 32px; }
.reason-card img { width: 80px; height: 80px; margin-bottom: 22px; }

/* Howto step polish */
.howto-step { padding: 32px 32px 28px; }
.howto-stat-num { font-size: 110px; }

/* Specialist photo size */
.specialist-photo { max-width: 140px; }

/* === Eligibility Quiz Modal === */
.quiz-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(15,22,26,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.quiz-overlay.is-open { opacity: 1; pointer-events: auto; }
.quiz-modal {
    background: var(--white); border-radius: 24px;
    width: 100%; max-width: 540px;
    max-height: calc(100vh - 48px);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.30);
    transform: translateY(20px) scale(0.98);
    transition: transform .3s ease;
    display: flex; flex-direction: column;
}
.quiz-overlay.is-open .quiz-modal { transform: none; }
.quiz-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.quiz-progress {
    display: flex; gap: 6px; flex: 1; max-width: 200px;
}
.quiz-progress span {
    flex: 1; height: 4px; border-radius: 999px;
    background: var(--line);
    transition: background .25s ease;
}
.quiz-progress span.is-done { background: var(--teal); }
.quiz-progress span.is-active { background: var(--orange); }
.quiz-close {
    font-size: 24px; line-height: 1;
    color: var(--muted); padding: 4px 8px;
    transition: color .2s ease;
}
.quiz-close:hover { color: var(--slate); }
.quiz-body {
    padding: 32px 28px 24px;
    overflow-y: auto;
    flex: 1;
}
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: quizFade .3s ease; }
@keyframes quizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-eyebrow { color: var(--teal); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.quiz-step h3 {
    color: var(--slate); font-size: 24px; line-height: 1.2;
    margin-bottom: 8px; font-weight: 800;
}
.quiz-step .quiz-help { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 18px;
    background: var(--bg); border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 600; font-size: 15px; color: var(--slate);
    text-align: left; cursor: pointer;
    transition: all .2s ease;
}
.quiz-option:hover { background: var(--white); border-color: var(--teal); transform: translateX(2px); }
.quiz-option.is-selected { background: var(--white); border-color: var(--teal); }
.quiz-option-emoji {
    width: 32px; height: 32px; flex-shrink: 0;
    font-size: 18px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
}
.quiz-option-emoji img {
    width: 32px; height: 32px;
    object-fit: contain; display: block;
}
.quiz-input {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--line); border-radius: 12px;
    font-family: inherit; font-size: 16px; background: var(--white);
}
.quiz-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(114,172,164,0.20); }
.quiz-footer {
    padding: 16px 24px 22px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.quiz-back {
    color: var(--muted); font-weight: 600; font-size: 14px;
    padding: 8px 12px;
    transition: color .2s ease;
}
.quiz-back:hover { color: var(--slate); }
.quiz-back[disabled] { opacity: 0; pointer-events: none; }
.quiz-next {
    background: var(--orange); color: #1a1a1a;
    padding: 12px 24px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    border: 2px solid #1a1a1a;
    transition: transform .2s ease;
}
.quiz-next:hover:not([disabled]) { transform: translateY(-1px); }
.quiz-next[disabled] { opacity: 0.5; pointer-events: none; }

/* Quiz result panel */
.quiz-result { text-align: center; padding: 8px 0 16px; }
.quiz-result-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px; font-weight: 800;
}
.quiz-result h3 { font-size: 22px; margin-bottom: 12px; }
.quiz-result p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Quiz error state */
.quiz-result--error .quiz-result-icon { background: var(--muted); }

@media (max-width: 560px) {
    .quiz-modal { max-width: none; border-radius: 16px; }
    .quiz-step h3 { font-size: 20px; }
}

/* ============================================================
   Sub-page styles (How it works, Pricing)
   ============================================================ */

.page-hero {
    position: relative; overflow: hidden;
    background-image: url('/src/img/photos/Gradient\ Background.jpg');
    background-size: cover; background-position: center;
    color: var(--white);
    padding: 110px 0 130px;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35,48,53,0.35) 0%, rgba(35,48,53,0.55) 100%);
    pointer-events: none;
}
.page-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 100px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; padding: 0 32px; }
.page-hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.32em; color: var(--orange); margin-bottom: 18px; text-transform: uppercase; }
.page-hero h1 { color: var(--white); font-size: clamp(40px, 5vw, 64px); margin-bottom: 22px; line-height: 1.04; }
.page-hero-lead { font-size: 19px; color: rgba(255,255,255,0.85); line-height: 1.5; max-width: 600px; margin: 0 auto; }

/* How-it-works detailed steps */
.how-detail { display: grid; gap: 60px; max-width: 880px; margin: 0 auto; }
.how-detail-step {
    display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start;
    background: var(--white); border-radius: 24px;
    padding: 40px 48px;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}
.how-detail-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how-detail-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 22px;
}
.how-detail-step h2 { font-size: 26px; margin-bottom: 12px; }
.how-detail-step > div > p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
.how-bullets { list-style: none; padding: 0; display: grid; gap: 8px; margin-bottom: 22px; }
.how-bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--slate); font-size: 15px;
}
.how-bullets li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
@media (max-width: 700px) {
    .how-detail-step { grid-template-columns: 1fr; padding: 32px 28px; gap: 16px; }
    .how-detail-num { width: 48px; height: 48px; font-size: 18px; }
}

/* Pricing page toggle */
.pricing-toggle {
    display: inline-flex; align-items: center;
    background: var(--bg); border-radius: 999px;
    padding: 6px;
    margin: 0 auto 56px;
    border: 1px solid var(--line);
}
.pricing-toggle button {
    padding: 10px 22px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    color: var(--muted);
    transition: all .25s ease;
}
.pricing-toggle button.is-active { background: var(--white); color: var(--slate); box-shadow: var(--shadow-sm); }

/* Comparison table */
.compare-wrap { max-width: 920px; margin: 64px auto 0; padding: 0 20px; }
.compare-wrap h3 { text-align: center; margin-bottom: 32px; font-size: 24px; }
.compare-table {
    width: 100%; border-collapse: collapse;
    background: var(--white); border-radius: 18px;
    overflow: hidden; box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare-table th { background: var(--bg); color: var(--slate); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--slate); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-yes { color: var(--teal); font-size: 18px; font-weight: 800; }
.compare-no { color: #c0c5c2; font-weight: 800; }
.compare-pricing { color: var(--muted); font-size: 14px; }
.compare-table .compare-featured { background: rgba(251,169,85,0.08); color: var(--orange-dark); font-weight: 800; }

/* Pricing page hero pricing cards on light background */
.pricing--light { background: var(--bg); color: var(--ink); position: relative; padding: 100px 0; }
.pricing--light .pricing-overlay { display: none; }
.pricing--light h2, .pricing--light h3 { color: var(--slate); }
.pricing--light .section-head--inverse h2,
.pricing--light .section-head--inverse p { color: var(--slate); }
.pricing--light .section-head--inverse p { color: var(--muted); }
.pricing--light .price-card {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.pricing--light .price-card--featured {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 24px 60px rgba(251,169,85,0.18);
}
.pricing--light .price-card h3 { color: var(--slate); }
.pricing--light .price-card li { color: var(--ink); }
.pricing--light .price-suffix { color: var(--muted); }
.pricing--light .price-fineprint { color: var(--muted); border-top-color: var(--line); }
.pricing--light .price-meta { color: var(--muted); }
.pricing--light .payment-logos img { filter: none; opacity: 0.85; }

/* === Kit / What's in the box === */
.kit-section { background: var(--white); padding: 120px 0; }
.kit-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.kit-art { display: flex; justify-content: flex-start; }
.kit-art img { width: 100%; max-width: 620px; height: auto; }
.kit-copy { padding-right: 8px; }
.kit-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.32em; color: var(--teal); margin-bottom: 18px; text-transform: uppercase; }
.kit-copy h2 { line-height: 1.04; margin-bottom: 18px; }
.kit-lead { color: var(--muted); font-size: 17px; line-height: 1.55; margin-bottom: 28px; max-width: 460px; }
.kit-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 16px; }
.kit-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.kit-list b { display: block; color: var(--slate); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.kit-list span { display: block; color: var(--muted); font-size: 14px; line-height: 1.5; }
.kit-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px; margin-top: 2px;
}
@media (max-width: 900px) {
    .kit-grid { grid-template-columns: 1fr; gap: 40px; }
    .kit-art { justify-content: center; }
    .kit-art img { max-width: 480px; }
}

/* === Legal pages === */
.legal-page { background: var(--bg); padding: 80px 0 120px; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.legal-toc {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    padding: 24px 28px; margin: 0 auto 56px;
    display: flex; flex-wrap: wrap; gap: 8px 22px;
    box-shadow: var(--shadow-sm);
}
.legal-toc strong { font-weight: 800; color: var(--slate); margin-right: 12px; font-size: 13px; letter-spacing: 0.04em; }
.legal-toc a { color: var(--teal); font-weight: 600; font-size: 14px; }
.legal-toc a:hover { text-decoration: underline; }
.legal-doc { background: var(--white); border-radius: 16px; padding: 48px 56px; box-shadow: var(--shadow-sm); margin-bottom: 32px; }
.legal-doc h2 { font-size: 28px; margin-bottom: 6px; color: var(--slate); }
.legal-doc .legal-updated { color: var(--muted); font-size: 13px; margin-bottom: 24px; font-style: italic; }
.legal-doc h3 { font-size: 17px; color: var(--slate); margin: 28px 0 8px; font-weight: 700; }
.legal-doc p, .legal-doc li { color: var(--ink); font-size: 15px; line-height: 1.65; margin-bottom: 12px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 14px 22px; padding: 0; }
.legal-doc a { color: var(--teal); }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc .legal-back { display: inline-block; margin-top: 20px; color: var(--muted); font-size: 14px; }
.legal-notice {
    background: rgba(251,169,85,0.10); border: 1px solid rgba(251,169,85,0.30);
    border-radius: 12px; padding: 14px 18px;
    color: var(--slate); font-size: 14px; line-height: 1.5;
    margin-bottom: 32px;
}
@media (max-width: 700px) {
    .legal-doc { padding: 32px 28px; }
    .legal-wrap { padding: 0 20px; }
}

/* === Cookie banner === */
.cookie-banner {
    position: fixed; left: 24px; bottom: 24px; z-index: 110;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 24px 60px rgba(35,48,53,0.18);
    max-width: 420px;
    transform: translateY(20px); opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    pointer-events: none;
}
.cookie-banner.is-open { transform: none; opacity: 1; pointer-events: auto; }
.cookie-banner h4 { color: var(--slate); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.cookie-banner p { color: var(--muted); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.cookie-banner p a { color: var(--teal); font-weight: 700; }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
    flex: 1; min-width: 120px;
    padding: 10px 18px; border-radius: 999px;
    font-weight: 700; font-size: 14px; cursor: pointer;
    border: 2px solid #1a1a1a;
    transition: transform .2s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept { background: var(--orange); color: #1a1a1a; }
.cookie-btn--reject { background: var(--white); color: var(--slate); border-color: var(--line); }
@media (max-width: 600px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 18px 18px; }
}

/* Cookie prefs trigger in footer */
.cookie-trigger {
    color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
    cursor: pointer; padding: 0; text-align: left;
    transition: color .2s ease;
}
.cookie-trigger:hover { color: var(--orange); }

/* ============================================================
   Premium polish layer (Monday demo)
   ============================================================ */

/* Body type — more refined */
body { font-feature-settings: "liga", "kern", "ss01"; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Headlines — tighter */
h1, h2 { letter-spacing: -0.025em; }
h1 { line-height: 1.0; }

/* Hero — calmer, larger, softer overlay */
.hero { padding: 80px 32px 120px; min-height: 86vh; display: flex; align-items: center; }
.hero-background::after {
    background: linear-gradient(180deg, rgba(35,48,53,0.05) 0%, rgba(35,48,53,0.42) 65%, var(--bg) 100%);
}
.hero-inner { gap: 40px; }
.hero-copy h1 { font-size: clamp(46px, 5.8vw, 80px); }
.hero-lead { font-size: 20px; line-height: 1.55; max-width: 520px; }
.hero-trust { padding-top: 6px; }

/* Hero box — gentle float */
.hero-art { position: relative; }
.hero-art img {
    filter: drop-shadow(0 50px 60px rgba(0,0,0,0.35)) drop-shadow(0 20px 30px rgba(0,0,0,0.20));
    animation: heroFloat 7s ease-in-out infinite;
    will-change: transform;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.4deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-art img { animation: none; }
}

/* Notice bar — subtler, more refined */
.notice-bar {
    background: var(--slate);
    padding: 11px 16px; font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
}
.notice-bar span:first-child { color: var(--orange); letter-spacing: 0.18em; font-weight: 700; }

/* Header — slightly more breathing room */
.site-header { padding: 16px 40px; }
.site-header.is-scrolled { padding: 12px 40px; }

/* Section rhythm — more luxurious */
.lede, .reasons, .reviews, .conditions, .kit-section, .howto, .access, .faq-section, .contact, .final-cta { padding: 140px 0; }
@media (max-width: 900px) {
    .lede, .reasons, .reviews, .conditions, .kit-section, .howto, .access, .faq-section, .contact, .final-cta { padding: 88px 0; }
}

/* Section heads — wider breathing room */
.section-head { margin-bottom: 76px; }
.section-head h2 { font-size: clamp(34px, 3.8vw, 52px); letter-spacing: -0.025em; }

/* Cards — premium shadows + lift */
.condition-card, .review-card, .reason-card, .howto-step {
    box-shadow: 0 1px 2px rgba(35,48,53,0.04), 0 8px 24px rgba(35,48,53,0.05);
    transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
}
.condition-card:hover, .review-card:hover, .reason-card:hover, .howto-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 1px 2px rgba(35,48,53,0.04), 0 24px 48px rgba(35,48,53,0.12);
}

/* Buttons — premium shadow lift */
.btn-primary { box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 6px 16px rgba(251,169,85,0.18); }
.btn-primary:hover { box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 16px 32px rgba(251,169,85,0.32); }
.nav-cta { box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(251,169,85,0.18); }

/* Reviews — slightly more refined cards */
.review-card { background: var(--white); border: 1px solid rgba(35,48,53,0.05); }
.review-card p { font-style: italic; }
.review-card p::before { content: "\201C"; color: var(--teal); font-size: 36px; line-height: 0; vertical-align: -10px; margin-right: 6px; font-style: normal; font-family: Georgia, serif; }

/* Conditions card — refined */
.condition-card { padding: 40px 32px; }

/* Kit section — image dominates, breaks out of container */
.kit-section { padding: 140px 0; overflow: hidden; }
.kit-grid { grid-template-columns: 1.7fr 1fr; gap: 32px; align-items: center; max-width: 1480px; margin: 0 auto; padding-left: 20px; padding-right: 32px; }
.kit-art { margin-left: -120px; }
.kit-art img {
    max-width: 1200px;
    width: 100%;
    filter: drop-shadow(0 50px 70px rgba(0,0,0,0.25)) drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.kit-art:hover img { transform: scale(1.02); }
@media (max-width: 1100px) {
    .kit-grid { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
    .kit-art { margin-left: 0; }
    .kit-art img { max-width: 720px; }
    .kit-copy { padding: 0 32px; }
}
.kit-grid { gap: 64px; }
.kit-copy h2 { font-size: clamp(36px, 4vw, 52px); letter-spacing: -0.025em; }
.kit-list b { font-size: 17px; }

/* Howto stat — more drama */
.howto-stat-num { font-size: 132px; letter-spacing: -0.04em; }
.howto-eyebrow { color: var(--teal); }

/* Final CTA — refined */
.final-cta::before { background: linear-gradient(180deg, rgba(35,48,53,0.50) 0%, rgba(35,48,53,0.72) 100%); }
.final-cta h2 { font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.025em; }

/* FAQ — softer borders */
.faq-container { border: 1px solid rgba(35,48,53,0.08); box-shadow: 0 1px 2px rgba(35,48,53,0.04); }

/* Brands marquee — softer fade edges */
.brands { padding: 64px 0 72px; position: relative; }
.brands::before, .brands::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.brands::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.brands::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

/* Floating CTA — premium pulse */
.floating-cta {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 18px 38px rgba(251,169,85,0.45);
}
.floating-cta::before {
    content: ""; position: absolute; inset: -3px; border-radius: 999px;
    border: 2px solid var(--orange); opacity: 0.4; animation: pulse 2.4s ease-out infinite;
    pointer-events: none;
}
.floating-cta { position: fixed; }
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.18); opacity: 0; }
}

/* Subtle scroll-driven hero parallax */
@supports (animation-timeline: scroll()) {
    .hero-art img {
        animation: heroFloat 7s ease-in-out infinite, heroDrift linear both;
        animation-timeline: heroFloat 7s, scroll();
    }
    @keyframes heroDrift {
        to { transform: translateY(-40px); }
    }
}

/* ============================================================
   New content sections (trust strip, press quotes, spotlight,
   knowledge, regulator)
   ============================================================ */

/* === Trust stats strip === */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 44px 0;
}
.trust-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
    align-items: stretch;
    text-align: center;
}
.trust-stat {
    padding: 8px 16px;
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    min-height: 130px;
}
.trust-stat:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 18%; bottom: 18%; width: 1px;
    background: var(--line);
}
.trust-icon {
    width: 32px; height: 32px;
    color: var(--teal);
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 100%; height: 100%; }
.trust-icon-img { width: 36px; height: 36px; object-fit: contain; }
.trust-num {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    font-size: clamp(30px, 2.6vw, 40px);
    color: var(--slate);
    line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.trust-num span {
    display: inline-block;
    font-size: 0.5em; font-weight: 700; color: var(--teal);
    letter-spacing: 0.04em;
    margin-left: 2px;
}
.trust-stat p {
    font-size: 12px; font-weight: 600;
    color: var(--muted); letter-spacing: 0.04em;
    line-height: 1.4; margin: 0;
    max-width: 160px;
}
/* Logo cells */
.trust-stat--logo .trust-logo { margin-bottom: 12px; }
.trust-logo {
    display: inline-flex; align-items: center; justify-content: center;
    height: 52px;
}
.trust-logo--gmc {
    background: #003087;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900; font-size: 26px;
    letter-spacing: -0.04em;
    line-height: 1;
}
.trust-logo--gmc span { display: block; margin-top: -2px; }
.trust-logo--cqc img { height: 100%; width: auto; max-width: 130px; }
.trust-stat--logo p { margin-top: auto; }
@media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
    .trust-stat { min-height: auto; padding: 14px 8px; }
    .trust-stat:nth-child(odd):not(:last-child)::after,
    .trust-stat:nth-child(2n)::after { display: none; }
    .trust-stat:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-stat::after { display: none !important; }
    .trust-stat:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 8px; padding: 8px 0; }
    .trust-stat:nth-child(odd):not(:last-child)::after,
    .trust-stat:nth-child(2n)::after { display: none; }
}
@media (max-width: 560px) {
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-stat::after { display: none !important; }
}

/* === Press quotes === */
.press-quotes { background: var(--white); padding: 110px 0; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.press-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 30px;
    transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
    position: relative;
}
.press-card::before {
    content: "\201C"; position: absolute; top: 12px; left: 24px;
    font-family: Georgia, serif;
    font-size: 96px; line-height: 1; color: var(--teal);
    opacity: 0.2;
}
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.press-card p {
    color: var(--slate); font-size: 18px; line-height: 1.5;
    font-style: italic; margin-bottom: 22px; position: relative; z-index: 1;
}
.press-card footer span {
    display: inline-block;
    font-weight: 800; font-size: 13px; letter-spacing: 0.18em;
    color: var(--orange); text-transform: uppercase;
}
@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; } .press-quotes { padding: 80px 0; } }

/* === Patient spotlight === */
.spotlight { background: var(--bg); padding: 100px 0 60px; }
.spotlight-card {
    background: linear-gradient(135deg, var(--slate) 0%, var(--slate-soft) 100%);
    color: var(--white);
    border-radius: 26px;
    padding: 60px 60px 56px;
    max-width: 980px; margin: 0 auto;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(35,48,53,0.20);
}
.spotlight-card::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(251,169,85,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.spotlight-quote-mark {
    font-family: Georgia, serif;
    font-size: 140px; line-height: 0.9;
    color: var(--orange);
    position: absolute; top: 12px; left: 40px;
    opacity: 0.5;
}
.spotlight-card blockquote {
    position: relative; z-index: 1;
}
.spotlight-card blockquote p {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.4; font-weight: 500;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 720px;
    letter-spacing: -0.01em;
}
.spotlight-card blockquote footer {
    display: flex; flex-direction: column; gap: 4px;
}
.spotlight-card blockquote footer strong {
    font-weight: 800; font-size: 18px; color: var(--white);
}
.spotlight-card blockquote footer span {
    color: var(--teal); font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em;
}
.spotlight-stars {
    position: absolute; bottom: 36px; right: 48px;
    color: var(--orange); font-size: 18px; letter-spacing: 0.18em;
}
@media (max-width: 700px) {
    .spotlight-card { padding: 48px 28px 36px; }
    .spotlight-quote-mark { font-size: 96px; left: 18px; }
    .spotlight-stars { position: static; margin-top: 18px; }
}

/* === Knowledge === */
.knowledge { background: var(--white); padding: 120px 0; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.knowledge-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
}
.knowledge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.knowledge-image {
    height: 180px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex; align-items: flex-end; padding: 18px 22px;
    position: relative; overflow: hidden;
}
.knowledge-image--alt { background: linear-gradient(135deg, var(--orange) 0%, #d8853a 100%); }
.knowledge-image--alt2 { background: linear-gradient(135deg, var(--slate) 0%, var(--slate-soft) 100%); }
.knowledge-image::before {
    content: ""; position: absolute; right: -40px; top: -40px;
    width: 200px; height: 200px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
}
.knowledge-image::after {
    content: ""; position: absolute; right: 20px; top: 20px;
    width: 80px; height: 80px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
}
.knowledge-image span {
    position: relative; z-index: 1;
    font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
}
.knowledge-card h3 {
    padding: 22px 26px 8px;
    font-size: 19px; line-height: 1.3;
    color: var(--slate);
}
.knowledge-card p {
    padding: 0 26px 18px;
    color: var(--muted); font-size: 14px; line-height: 1.55;
}
.knowledge-link {
    display: block;
    padding: 0 26px 26px;
    color: var(--teal); font-weight: 700; font-size: 14px;
}
.knowledge-link:hover { color: var(--teal-dark); }
@media (max-width: 900px) { .knowledge-grid { grid-template-columns: 1fr; } .knowledge { padding: 80px 0; } }

/* === Regulator strip === */
.regulator-strip {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 44px 0;
}
.regulator-inner { text-align: center; }
.regulator-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 0.32em;
    color: var(--muted);
    margin-bottom: 18px; text-transform: uppercase;
}
.regulator-row {
    display: flex; gap: 36px; justify-content: center; align-items: center;
    flex-wrap: wrap;
}
.regulator-row { gap: 28px; }
.regulator-logo {
    height: 56px; width: auto; display: block;
    opacity: 0.9;
    transition: opacity .25s ease, transform .25s ease;
}
.regulator-logo:hover { opacity: 1; transform: translateY(-2px); }
.regulator-text {
    font-family: 'Mosafin', sans-serif;
    font-weight: 800; font-size: 14px;
    color: var(--slate); letter-spacing: 0.04em;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--line);
}
.regulator-text--small {
    font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .regulator-row { gap: 18px; }
    .regulator-logo { height: 44px; }
    .regulator-text { font-size: 12px; padding: 8px 12px; }
    .regulator-text--small { font-size: 10px; }
}

/* === Footer regulator row — CQC + Trustpilot, Releaf style === */
.regulator-strip { display: none; }
.footer-regulators {
    display: flex; justify-content: center; align-items: center;
    gap: 56px; flex-wrap: wrap;
    padding: 32px 32px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 40px;
}
.footer-reg-badge {
    display: inline-flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.78);
    font-size: 14px; font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}
.footer-reg-badge:hover { color: var(--white); transform: translateY(-1px); }
.footer-reg-badge img { height: 56px; width: auto; display: block; }
.footer-reg-badge b {
    color: var(--orange); font-weight: 800; font-size: 15px;
    margin-right: 4px;
}
@media (max-width: 700px) {
    .footer-regulators { gap: 24px; padding: 28px 20px; }
    .footer-reg-badge { font-size: 13px; gap: 10px; }
    .footer-reg-badge img { height: 44px; }
}

/* ============================================================
   Calculator + Science + Ongoing + NHS + Rewards
   ============================================================ */

/* === Pricing calculator === */
.calc-section { background: var(--bg); padding: 100px 0; }
.calc-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 56px 48px;
    box-shadow: var(--shadow-md);
    max-width: 1080px; margin: 0 auto;
}
.calc-control { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.calc-control label {
    display: block;
    font-size: 11px; font-weight: 800; letter-spacing: 0.28em;
    color: var(--muted);
    margin-bottom: 16px; text-transform: uppercase;
}
.calc-value {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    color: var(--slate); margin-bottom: 32px; line-height: 1;
}
.calc-value #calcGramsDisplay { font-size: 84px; letter-spacing: -0.04em; }
.calc-value .calc-unit { font-size: 18px; color: var(--muted); margin-left: 12px; font-weight: 600; letter-spacing: 0; }
.calc-slider {
    --calc-pct: 40%;
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 8px;
    background: linear-gradient(to right, #fba955 0%, #fba955 var(--calc-pct), #e5e8e6 var(--calc-pct), #e5e8e6 100%);
    border-radius: 999px;
    outline: none; cursor: pointer;
    margin: 0;
}
.calc-slider::-webkit-slider-runnable-track {
    height: 8px; background: transparent; border-radius: 999px;
}
.calc-slider::-moz-range-track {
    height: 8px; background: transparent; border-radius: 999px;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 32px; height: 32px;
    background: var(--orange);
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(251,169,85,0.50);
    transition: transform .2s ease;
    margin-top: -12px;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
.calc-slider::-moz-range-thumb {
    width: 32px; height: 32px; background: var(--orange);
    border: 3px solid #1a1a1a; border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(251,169,85,0.50);
}
.calc-range {
    display: flex; justify-content: space-between;
    margin-top: 14px;
    font-size: 13px; color: var(--muted); font-weight: 600;
}
.calc-results {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-bottom: 48px;
}
.calc-result {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 30px;
    transition: transform .3s ease;
}
.calc-result--standard { background: var(--bg); }
.calc-result--featured {
    border: 2px solid var(--orange);
    box-shadow: 0 20px 48px rgba(251,169,85,0.20);
}
.calc-badge {
    position: absolute; top: -14px; left: 24px;
    background: var(--orange); color: #1a1a1a;
    padding: 7px 16px; border-radius: 999px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    border: 2px solid #1a1a1a;
}
.calc-result header { margin-bottom: 18px; }
.calc-result h3 { color: var(--slate); margin-bottom: 4px; font-size: 19px; }
.calc-result header p { color: var(--muted); font-size: 13px; }
.calc-cost { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.calc-cost-amount {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    font-size: 44px; line-height: 1;
    color: var(--slate); letter-spacing: -0.03em;
}
.calc-cost-unit { color: var(--muted); font-size: 14px; }
.calc-cost-year {
    color: var(--muted); font-size: 13px;
    margin-bottom: 18px; padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.calc-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.calc-list li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--ink); font-size: 14px; line-height: 1.5;
}
.calc-list li::before { content: "✓"; color: var(--teal); font-weight: 800; flex-shrink: 0; }
.calc-list--neutral li::before { content: "•"; color: var(--muted); }
.calc-result--featured .calc-list li::before { color: var(--orange); }
.calc-savings {
    text-align: center;
    padding: 36px 24px 8px;
    border-top: 2px dashed var(--line);
}
.calc-savings-eyebrow {
    color: var(--muted); font-size: 12px;
    font-weight: 800; letter-spacing: 0.28em; margin-bottom: 8px;
}
.calc-savings-amount {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    font-size: clamp(64px, 7vw, 96px); line-height: 1;
    color: var(--orange); letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.calc-savings-period {
    font-size: 16px; color: var(--slate); font-weight: 600;
    margin-bottom: 28px;
}
.calc-cta { margin-top: 6px; }
@media (max-width: 800px) {
    .calc-card { padding: 36px 24px; }
    .calc-results { grid-template-columns: 1fr; }
    .calc-value #calcGramsDisplay { font-size: 64px; }
}

/* === Science (THC vs CBD) === */
.science { background: var(--bg); padding: 130px 0; }
.science-eyebrow {
    color: var(--teal);
    font-size: 12px; font-weight: 800; letter-spacing: 0.32em;
    margin-bottom: 14px; text-transform: uppercase;
}
.science-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 28px; max-width: 920px; margin: 0 auto;
}
.science-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 44px 36px;
    transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease;
}
.science-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.science-mark {
    width: 60px; height: 60px;
    margin-bottom: 18px;
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    transition: transform .4s ease;
}
.science-mark svg { width: 100%; height: 100%; }
.science-card--cbd .science-mark { color: var(--teal); }
.science-card:hover .science-mark { transform: rotate(-4deg) scale(1.05); }
.science-formula {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}
.science-card h3 span {
    font-weight: 600; font-size: 16px;
    color: var(--muted); letter-spacing: 0;
}
.science-card h3 { color: var(--slate); font-size: 22px; margin-bottom: 10px; }
.science-lede {
    color: var(--muted); font-size: 15px; line-height: 1.55;
    margin-bottom: 22px; padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.science-card h4 {
    color: var(--slate); font-size: 12px; font-weight: 800;
    letter-spacing: 0.20em; text-transform: uppercase;
    margin-bottom: 14px;
}
.science-card ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.science-card ul li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--ink); font-size: 15px; line-height: 1.5;
}
.science-card:not(.science-card--cbd) ul li::before { content: "•"; color: var(--orange); font-weight: 800; }
.science-card--cbd ul li::before { content: "•"; color: var(--teal); font-weight: 800; }
.science-note {
    text-align: center; max-width: 620px; margin: 48px auto 0;
    color: var(--muted); font-size: 15px; font-style: italic;
}
@media (max-width: 700px) { .science-grid { grid-template-columns: 1fr; } .science { padding: 80px 0; } }

/* === Ongoing care === */
.ongoing { background: var(--white); padding: 120px 0; }
.ongoing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; max-width: 1080px; margin: 0 auto;
}
.ongoing-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ongoing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ongoing-icon {
    margin: 0 auto 22px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 14px 28px rgba(114,172,164,0.32);
}
.ongoing-icon svg { width: 36px; height: 36px; }
.ongoing-card h3 { color: var(--slate); margin-bottom: 10px; font-size: 18px; }
.ongoing-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 800px) {
    .ongoing-grid { grid-template-columns: 1fr; }
    .ongoing { padding: 80px 0; }
}

/* === NHS Login full section === */
.nhs-section {
    background:
        linear-gradient(135deg, rgba(35,48,53,0.92) 0%, rgba(35,48,53,0.86) 100%),
        url('/src/img/photos/Gradient\ Background\ 2.jpg');
    background-size: cover; background-position: center;
    color: var(--white);
    padding: 120px 0;
    position: relative; overflow: hidden;
}
.nhs-section::before {
    content: ""; position: absolute;
    top: -200px; right: -200px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(0,94,184,0.20) 0%, transparent 70%);
    pointer-events: none;
}
.nhs-section::after {
    content: ""; position: absolute;
    bottom: -180px; left: -180px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(114,172,164,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.nhs-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: center;
}
.nhs-card {
    background: rgba(251,169,85,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 2px solid var(--orange);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow:
        0 24px 60px rgba(251,169,85,0.25),
        0 0 0 1px rgba(251,169,85,0.15),
        inset 0 1px 0 rgba(255,255,255,0.08);
    max-width: 360px;
    margin: 0 auto;
    position: relative;
}
.nhs-card::before {
    content: ""; position: absolute; inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(251,169,85,0.55), rgba(251,169,85,0) 50%, rgba(251,169,85,0.45));
    z-index: -1;
    filter: blur(12px);
    opacity: 0.6;
    pointer-events: none;
}
.nhs-logo-large {
    width: 226px; height: 100px; margin: 0 auto;
    background: #005EB8; /* Pantone 300, official NHS blue */
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,94,184,0.20);
}
.nhs-logo-large span {
    color: #FFFFFF;
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: 70px;
    letter-spacing: -0.06em;
    line-height: 1;
    margin-top: -2px; /* visually centre Frutiger-style */
    font-stretch: condensed;
}
.nhs-card-divider {
    width: 1px; height: 28px; background: rgba(255,255,255,0.20);
    margin: 22px auto;
    position: relative;
}
.nhs-card-divider::after {
    content: "+"; position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    background: var(--slate);
    color: var(--orange);
    font-weight: 900; font-size: 16px;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--orange);
    box-shadow: 0 0 16px rgba(251,169,85,0.40);
}
.nhs-card-omni { padding: 4px 12px; }
.nhs-card-omni img { height: 60px; width: auto; margin: 0 auto; filter: brightness(1.25); }
.nhs-card-caption {
    color: rgba(255,255,255,0.70);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.22em; text-transform: uppercase;
    margin-top: 20px;
}
.nhs-eyebrow {
    color: rgba(255,255,255,0.85);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.32em; margin-bottom: 18px;
    text-transform: uppercase;
}
.nhs-content h2 {
    color: var(--white);
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05; margin-bottom: 24px;
    letter-spacing: -0.025em;
}
.nhs-lede {
    color: rgba(255,255,255,0.85);
    font-size: 18px; line-height: 1.55;
    margin-bottom: 28px; max-width: 540px;
}
.nhs-bullets {
    list-style: none; padding: 0; display: grid; gap: 12px;
    margin-bottom: 32px;
}
.nhs-bullets li {
    display: flex; align-items: flex-start; gap: 14px;
    color: var(--white); font-size: 15px; font-weight: 600;
    line-height: 1.5;
}
.nhs-bullets li::before {
    content: "✓";
    background: rgba(255,255,255,0.18);
    color: var(--white);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px;
    flex-shrink: 0; margin-top: 1px;
}
@media (max-width: 900px) {
    .nhs-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .nhs-content h2 { text-align: center; }
    .nhs-bullets li { text-align: left; }
    .nhs-section { padding: 80px 0; }
}

/* === Omni+ Rewards === */
.rewards {
    background:
        linear-gradient(180deg, rgba(35,48,53,0.78) 0%, rgba(35,48,53,0.92) 100%),
        url('/src/img/photos/Gradient\ Background\ 2.jpg');
    background-size: cover; background-position: center;
    padding: 130px 0;
    position: relative; overflow: hidden;
    color: var(--white);
}
.rewards::before {
    content: ""; position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(251,169,85,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.rewards::after {
    content: ""; position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(114,172,164,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.rewards .container { position: relative; z-index: 1; }
.rewards-eyebrow {
    color: var(--orange); font-size: 12px; font-weight: 800;
    letter-spacing: 0.32em; margin-bottom: 14px;
    text-transform: uppercase;
}
.rewards .section-head h2 { color: var(--white); font-size: clamp(36px, 4vw, 56px); }
.rewards .section-head p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 620px; margin: 14px auto 0; }
.rewards-marquee {
    overflow: hidden;
    margin: 56px -32px 64px;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.rewards-track {
    display: flex; gap: 16px;
    width: max-content;
    animation: rewards-scroll 40s linear infinite;
}
.rewards-track span {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-weight: 700; font-size: 15px;
    padding: 14px 24px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
@keyframes rewards-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.rewards:hover .rewards-track { animation-play-state: paused; }
.rewards-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; max-width: 880px; margin: 0 auto;
    text-align: center;
    padding: 36px 0 0;
    border-top: 1px solid rgba(255,255,255,0.10);
}
.rewards-num {
    font-family: 'Mosafin', sans-serif;
    font-weight: 900; font-size: clamp(44px, 5vw, 64px);
    color: var(--orange);
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px;
}
.rewards-num sup { font-size: 0.6em; vertical-align: super; }
.rewards-stat p {
    color: rgba(255,255,255,0.78); font-size: 14px;
    line-height: 1.5; max-width: 200px; margin: 0 auto;
}
.rewards-footnote {
    text-align: center; color: rgba(255,255,255,0.55);
    font-size: 13px; margin-top: 36px; font-style: italic;
}
@media (max-width: 800px) {
    .rewards-stats { grid-template-columns: 1fr; gap: 28px; }
    .rewards { padding: 80px 0; }
}

/* ============================================================
   Mobile menu + responsive polish
   ============================================================ */

/* Hamburger button (hidden on desktop) */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    background: transparent; border: 0;
    cursor: pointer; padding: 0;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: var(--white);
    transform: translateY(-101%);
    transition: transform .4s cubic-bezier(.2,.6,.2,1);
    overflow-y: auto;
    padding: 80px 32px 48px;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu-inner {
    max-width: 480px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu-close {
    position: fixed; top: 18px; right: 22px;
    width: 44px; height: 44px;
    background: transparent; border: 0; cursor: pointer;
    color: var(--slate); font-size: 32px; line-height: 1;
    padding: 0;
}
.mobile-menu-nav {
    display: flex; flex-direction: column; gap: 4px;
    padding-top: 8px;
}
.mobile-menu-nav a {
    display: block;
    color: var(--slate);
    font-size: 24px; font-weight: 800;
    letter-spacing: -0.02em;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    transition: color .2s ease;
}
.mobile-menu-nav a:hover, .mobile-menu-nav a:active { color: var(--orange); }
.mobile-menu-nav a::after { display: none; }
.mobile-menu-cta { margin-top: 32px; width: 100%; }

/* Show hamburger, hide desktop nav on mobile */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-header .nav-links { display: none; }
    .site-header .nav-cta { display: none; }
    .site-header { padding: 12px 20px; }
}

/* Responsive polish — tighten padding everywhere on phones */
@media (max-width: 700px) {
    .lede, .reasons, .reviews, .conditions, .kit-section, .howto, .access,
    .faq-section, .contact, .final-cta, .nhs-section, .rewards, .ongoing,
    .science, .knowledge, .press-quotes, .pricing, .specialists, .calc-section { padding: 64px 0; }
    .section-head { margin-bottom: 36px; }
    .container { padding: 0 20px; }
    .containerfaq { padding: 0 20px; }

    .trust-strip { padding: 28px 0; }
    .trust-grid { padding: 4px 0; }
    .trust-stat::after { display: none !important; }
    .trust-num { font-size: 32px; }
    .trust-stat p { font-size: 12px; }

    .hero-art img { transform: none !important; animation: none; max-width: 100%; margin-right: 0; }
    .hero-copy h1 { font-size: clamp(34px, 9vw, 48px); }
    .hero-lead { font-size: 17px; }

    .kit-art img { max-width: 92%; margin: 0 auto; }
    .kit-art { margin-left: 0 !important; padding-left: 16px; padding-right: 16px; }

    .nhs-card { padding: 28px 22px; max-width: 280px; }
    .nhs-logo-large { width: 180px; height: 80px; }
    .nhs-logo-large span { font-size: 56px; }
    .nhs-card-omni img { height: 44px; }
    .nhs-content h2 { font-size: clamp(28px, 7vw, 38px); }
    .nhs-lede { font-size: 16px; }

    .spotlight-card { padding: 36px 22px 28px; }
    .spotlight-card blockquote p { font-size: 18px; }

    .calc-card { padding: 28px 18px; }
    .calc-result { padding: 24px 22px; }
    .calc-cost-amount { font-size: 36px; }
    .calc-savings-amount { font-size: 56px; }

    .footer-regulators { gap: 18px; padding: 24px 16px 28px; }
    .footer-reg-badge { font-size: 12px; }
    .footer-reg-badge img { height: 40px; }

    .floating-cta { right: 12px; bottom: 12px; padding: 11px 18px; font-size: 13px; }
    .floating-cta::before { display: none; }

    .notice-bar { font-size: 11px; gap: 10px; padding: 8px 12px; }
    .notice-divider { display: none; }
}

/* Iphone-small specific */
@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero { padding: 40px 16px 56px; }
    .brand-mark img { height: 34px; }
}

/* ============================================================
   Condition sub-pages, Compare page, Eligibility page
   ============================================================ */

/* Condition sub-page hero */
.cond-hero {
    position: relative; overflow: hidden;
    background-image: url('/src/img/photos/Gradient\ Background.jpg');
    background-size: cover; background-position: center;
    color: var(--white); padding: 100px 0 130px;
}
.cond-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35,48,53,0.40) 0%, rgba(35,48,53,0.65) 100%);
    pointer-events: none;
}
.cond-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 100px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}
.cond-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; padding: 0 32px; }
.cond-hero-icon {
    width: 96px; height: 96px; margin: 0 auto 24px;
    background: var(--white);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    border-top: 4px solid var(--cond-accent, var(--teal));
}
.cond-hero-icon img { width: 56px; height: 56px; object-fit: contain; }
.cond-hero h1 { color: var(--white); font-size: clamp(40px, 5vw, 64px); margin-bottom: 18px; line-height: 1.04; }
.cond-hero .page-hero-lead { color: rgba(255,255,255,0.88); font-size: 19px; max-width: 580px; margin: 0 auto; line-height: 1.5; }

/* Condition stat band */
.cond-stat {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 56px 0;
}
.cond-stat-inner { display: flex; align-items: baseline; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.cond-stat-num {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    font-size: clamp(56px, 7vw, 96px); line-height: 1;
    color: var(--cond-accent, var(--teal));
    letter-spacing: -0.04em;
}
.cond-stat-caption {
    color: var(--muted); font-size: 17px; max-width: 360px;
    line-height: 1.45; text-align: left;
}
@media (max-width: 600px) {
    .cond-stat-inner { flex-direction: column; gap: 8px; }
    .cond-stat-caption { text-align: center; }
}

/* Condition overview */
.cond-overview { max-width: 780px; margin: 0 auto; text-align: center; }
.cond-overview h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 22px; line-height: 1.05; }
.cond-overview p { color: var(--muted); font-size: 18px; line-height: 1.6; }

/* Helps grid */
.cond-helps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.cond-help-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 18px; padding: 32px 28px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.cond-help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cond-help-card h3 { color: var(--slate); margin-bottom: 12px; font-size: 18px; }
.cond-help-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 800px) { .cond-helps-grid { grid-template-columns: 1fr; } }

/* === Compare page === */
.compare-section { background: var(--bg); padding: 100px 0 60px; }
.compare-table-wrap { overflow-x: auto; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.compare-bigtable {
    width: 100%; min-width: 760px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 22px; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare-bigtable th, .compare-bigtable td {
    padding: 18px 20px; text-align: center;
    border-bottom: 1px solid var(--line);
    font-size: 14px; vertical-align: middle;
}
.compare-bigtable thead th {
    background: var(--slate); color: var(--white);
    font-weight: 800; font-size: 13px;
    letter-spacing: 0.04em; padding: 22px 20px;
}
.compare-bigtable thead th.compare-us {
    background: linear-gradient(135deg, var(--orange) 0%, #e89240 100%);
    color: #1a1a1a; position: relative;
    font-size: 16px;
}
.compare-bigtable thead th.compare-us::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 8px;
    background: var(--orange);
}
.compare-bigtable tbody td.compare-us {
    background: rgba(251,169,85,0.08);
    color: var(--slate);
    font-weight: 600;
}
.compare-bigtable td.compare-rowhead, .compare-bigtable th.compare-rowhead {
    text-align: left; color: var(--slate); font-weight: 600;
}
.compare-bigtable tbody td:first-child {
    text-align: left; color: var(--slate); font-weight: 600;
    background: var(--bg);
}
.compare-bigtable tr:last-child td { border-bottom: none; }
.compare-yes { color: var(--teal); font-weight: 800; font-size: 16px; }
.compare-no { color: #c0c5c2; font-weight: 800; }
.compare-bad { color: #c0392b; font-weight: 700; }
.compare-disclaimer {
    text-align: center; max-width: 720px; margin: 32px auto 0;
    color: var(--muted); font-size: 12px; font-style: italic; line-height: 1.5;
}
.compare-cta { background: var(--white); padding: 80px 0 100px; }
.compare-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.compare-cta h2 { font-size: clamp(32px, 3.6vw, 44px); margin-bottom: 14px; }
.compare-cta p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }

/* === Eligibility page === */
.elig-section { background: var(--bg); padding: 100px 0; }
.elig-inner { max-width: 720px; margin: 0 auto; }
.elig-card {
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    box-shadow:
        0 24px 60px rgba(251,169,85,0.20),
        inset 0 1px 0 rgba(255,255,255,0.10);
    position: relative;
}
.elig-card::before {
    content: ""; position: absolute; inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(251,169,85,0.45), rgba(251,169,85,0) 50%, rgba(251,169,85,0.40));
    z-index: -1; filter: blur(14px); opacity: 0.6; pointer-events: none;
}
.elig-eyebrow {
    color: var(--teal); font-size: 11px; font-weight: 800;
    letter-spacing: 0.32em; margin-bottom: 16px; text-transform: uppercase;
}
.elig-card h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 14px; line-height: 1.05; }
.elig-card > p { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 32px; line-height: 1.55; }
.elig-points {
    list-style: none; padding: 0; margin: 36px auto 0; max-width: 380px;
    display: grid; gap: 10px; text-align: left;
}
.elig-points li { display: flex; align-items: center; gap: 10px; color: var(--slate); font-size: 15px; font-weight: 600; }
.elig-points li span {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--teal); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px;
}
@media (max-width: 600px) { .elig-card { padding: 40px 24px; } }

/* === Condition cards as links === */
.condition-card-link {
    display: block; color: inherit; text-decoration: none;
    height: 100%;
}
.condition-card { padding: 0; }
.condition-card-link { padding: 40px 32px; }
.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* === NHS waiting callout (home) === */
.compare-callout {
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
    padding: 110px 0;
}
.compare-callout-inner { max-width: 880px; margin: 0 auto; padding: 0 32px; text-align: center; }
.compare-callout-pair {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}
.compare-callout-row { padding: 44px 32px; text-align: left; }
.compare-callout-row p { color: var(--muted); font-size: 14px; line-height: 1.45; max-width: 220px; }
.compare-callout-row sup { font-size: 0.7em; }
.compare-callout-num {
    font-family: 'Mosafin', sans-serif; font-weight: 900;
    font-size: clamp(56px, 7vw, 88px); line-height: 1;
    letter-spacing: -0.04em; margin-bottom: 12px;
    display: flex; align-items: baseline; gap: 6px;
}
.compare-callout-num span {
    font-size: 0.32em; font-weight: 700; color: var(--muted); letter-spacing: 0.04em;
}
.compare-callout-bad { background: rgba(192,57,43,0.04); border-right: 1px solid var(--line); }
.compare-callout-bad .compare-callout-num { color: #c0392b; }
.compare-callout-good .compare-callout-num { color: var(--teal); }
.compare-callout-link {
    display: inline-block; color: var(--teal);
    font-weight: 700; font-size: 16px;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 2px;
    transition: color .2s ease;
}
.compare-callout-link:hover { color: var(--teal-dark); }
.compare-callout-foot { color: var(--muted); font-size: 12px; margin-top: 18px; font-style: italic; }
@media (max-width: 700px) {
    .compare-callout-pair { grid-template-columns: 1fr; }
    .compare-callout-bad { border-right: none; border-bottom: 1px solid var(--line); }
    .compare-callout-row { text-align: center; padding: 32px 24px; }
    .compare-callout-row p { margin: 0 auto; }
    .compare-callout-num { justify-content: center; }
    .compare-callout { padding: 64px 0; }
}
