/* Sleep Revive — product page styles */
:root {
    --sr-blue: #7c3aed;
    --sr-blue-dark: #6d28d9;
    --sr-teal: #14b8a6;
    --sr-slate: #5c6e7b;
    --sr-gold: #f5b400;
    --ink: #1f2937;
    --ink-muted: #6b7280;
    --card: #ffffff;
}

[data-theme="dark"] {
    --ink: #f4f4f5;
    --ink-muted: #c4c4cc;
    --card: #1f1f24;
    --sr-blue: #6b8cff;
    --sr-teal: #5eead4;
}

body.sr-review-body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    text-align: center;
}

body.sr-has-sticky {
    padding-bottom: max(72px, calc(64px + env(safe-area-inset-bottom)));
}

.sr-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 18px 60px;
}

.page-intro, .verdict-strip, .toc, section, .cta-band, .verdict-card, .faq-wrap { text-align: center; }

.page-intro { padding: 40px 20px 30px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }

.intro-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sr-blue);
    background: rgba(124, 58, 237, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.intro-heading {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
}

.intro-sub { font-size: 1.05rem; color: var(--ink-muted); max-width: 680px; margin: 0 auto 16px; line-height: 1.65; }
.intro-disclaimer { font-size: 13px; color: var(--ink-muted); margin-top: 10px; }

.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--sr-blue), var(--sr-blue-dark));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45); }

.btn-primary {
    display: inline-block;
    background: var(--card);
    color: var(--sr-blue);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--sr-blue);
}

.verdict-strip {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(47, 179, 197, 0.08));
    border-left: 4px solid var(--sr-teal);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 36px;
}

.toc-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.toc ol { padding-left: 0; list-style-position: inside; columns: 2; column-gap: 24px; max-width: 640px; margin: 0 auto; text-align: left; }
.toc li { margin-bottom: 6px; font-size: 14px; }
.toc a { color: var(--sr-blue); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

section { margin-bottom: 36px; }

.sh2 {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sr-teal);
}

.sh3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 18px 0 10px; }

.sr-section-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.sr-section-lead { color: var(--ink-muted); max-width: 640px; margin: 0 auto 20px; }

.sr-center-img {
    display: block;
    max-width: min(100%, 720px);
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 12px;
    object-fit: contain;
}

.sr-media-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: min(100%, 720px);
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid var(--border);
}

.sr-media-frame .sr-center-img { margin: 0; }

/* Hero — ProDentim-style two-column layout */
.ve-hero.sr-hero-new {
    background:
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(94, 234, 212, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        linear-gradient(145deg, #1a2744 0%, #6d28d9 35%, #7c3aed 65%, #14b8a6 100%);
    padding: 48px 0 56px;
    overflow: hidden;
}

.sr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.sr-hero-copy { text-align: left; }

.sr-hero-badges {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sr-hero-badges .sr-savings-pill,
.sr-hero-badges .eyebrow {
    margin-bottom: 0;
}

.sr-hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    color: #fef3c7;
}

.sr-hero-copy .eyebrow .dot {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: sr-pulse 1.8s infinite;
}

.sr-savings-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.35);
    margin-bottom: 0;
    white-space: nowrap;
}

.sr-hero-title-block {
    position: relative;
    margin: 0 0 20px;
    padding: 22px 24px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 100%);
    border: 1px solid rgba(94, 234, 212, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
}

.sr-hero-title-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #5eead4, #fde68a, #5eead4);
}

.sr-hero-logo {
    display: block;
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 0 16px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.sr-hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.sr-brand {
    font-size: clamp(2.2rem, 5.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #ccfbf1 45%, #5eead4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.sr-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #1a2744;
    letter-spacing: 0.01em;
    line-height: 1.35;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35);
}

.sr-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a2744;
    flex-shrink: 0;
}

.sr-hero-lead {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin: 0 0 20px;
    line-height: 1.65;
}

.sr-hero-copy .ve-hero-stats { justify-content: flex-start; margin-bottom: 18px; }
.sr-hero-copy .ve-hero-ctas {
    justify-content: flex-start;
    margin-top: 4px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.sr-hero-copy .ve-hero-ctas .btn-ve-primary,
.sr-hero-copy .ve-hero-ctas .btn-ve-ghost {
    flex: 0 1 auto;
    min-height: 48px;
    white-space: nowrap;
}

.ve-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    justify-content: center;
}

.ve-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.ve-hero-stat .ic {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5eead4;
    border-radius: 50%;
    color: #0f766e;
    font-weight: 800;
    font-size: 11px;
}

.ve-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn-ve-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1c1917;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-ve-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.45);
}

.btn-ve-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-ve-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.sr-hero-icon-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0 24px;
    max-width: 520px;
}

.sr-hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #ccfbf1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sr-icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(94, 234, 212, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: sr-icon-float 3s ease-in-out infinite;
}

.sr-icon-ring img { width: 36px; height: 36px; display: block; }
.sr-icon-ring--1 { animation-delay: 0s; }
.sr-icon-ring--2 { animation-delay: 0.2s; }
.sr-icon-ring--3 { animation-delay: 0.4s; }
.sr-icon-ring--4 { animation-delay: 0.6s; }
.sr-icon-ring--5 { animation-delay: 0.8s; }

@keyframes sr-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.sr-hero-visual {
    position: relative;
    text-align: center;
}

.sr-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sr-glow-pulse 4s ease-in-out infinite;
}

@keyframes sr-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.sr-hero-product-stage {
    position: relative;
    z-index: 1;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.35);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
    max-width: 340px;
    margin: 0 auto;
}

.sr-hero-product-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: sr-float 3.5s ease-in-out infinite;
}

@keyframes sr-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sr-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.sr-hero-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ccfbf1;
    border: 1px solid rgba(94, 234, 212, 0.35);
}

@keyframes sr-pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Keyword icon grid */
.sr-anim-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px auto;
    max-width: 680px;
}

.sr-anim-card {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    flex: 0 0 100px;
    width: 100px;
}

.sr-anim-icon-wrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: rgba(47, 179, 197, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sr-icon-float 3s ease-in-out infinite;
}

@keyframes sr-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.sr-anim-icon { width: 48px; height: 48px; display: block; }
.sr-anim-card figcaption { font-size: 11px; font-weight: 700; color: var(--sr-blue); }

/* Steps */
.sr-steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px auto;
    max-width: 720px;
    text-align: left;
}

.sr-step-card {
    background: linear-gradient(180deg, rgba(47, 179, 197, 0.08), transparent);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
}

.sr-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sr-teal);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sr-step-title { font-size: 14px; font-weight: 800; color: var(--sr-blue); margin-bottom: 6px; }
.sr-step-card p { font-size: 13px; color: var(--ink-muted); margin: 0; line-height: 1.55; }

/* Features row */
.sr-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 20px auto;
    max-width: 640px;
}

.sr-feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 10px;
}

.sr-feature-card img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 8px; }
.sr-feature-card span { display: block; font-size: 12px; font-weight: 700; color: var(--sr-slate); }

/* Benefits */
.sr-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.sr-benefit-card {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 14px;
}

.sr-benefit-icon { font-size: 2rem; margin-bottom: 8px; }

.sr-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.sr-badge {
    font-size: 12px;
    font-weight: 600;
    background: rgba(47, 179, 197, 0.12);
    color: var(--sr-blue);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(47, 179, 197, 0.25);
}

/* Ingredients */
.sr-ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.sr-ingredient-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.sr-ingredient-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}

.sr-ingredient-card h3 { font-size: 13px; font-weight: 700; color: var(--sr-blue); margin: 0; }

/* Pricing */
.sr-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    align-items: stretch;
}

.sr-price-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.sr-price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15); }

.sr-price-card.is-popular {
    border-color: var(--sr-teal);
    box-shadow: 0 8px 28px rgba(47, 179, 197, 0.2);
}

.sr-price-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sr-teal), var(--sr-blue));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.sr-price-img-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 12px auto;
    width: 100%;
    max-width: 170px;
}

.sr-price-img-wrap img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.sr-price-card .price { font-size: 2rem; font-weight: 800; color: var(--sr-blue); margin: 8px 0; }
.sr-price-card .price small { font-size: 0.45em; font-weight: 600; color: var(--ink-muted); }
.sr-price-card .was { text-decoration: line-through; color: var(--ink-muted); font-size: 14px; }
.sr-price-card .total { font-size: 14px; color: var(--ink-muted); margin-bottom: 14px; }

.sr-buy-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--sr-blue), var(--sr-blue-dark));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: auto;
}

.sr-buy-btn--primary { background: linear-gradient(135deg, #fcd34d, #f5b400); color: #1a2744; }

/* Bonuses */
.sr-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.sr-bonus-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.sr-bonus-card img {
    width: auto;
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
    border-radius: 8px;
}

.sr-bonus-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.sr-bonus-card p { font-size: 13px; color: var(--ink-muted); text-align: center; margin: 0; }

/* Reviews */
.sr-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
    text-align: left;
}

.sr-review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.sr-review-card .stars { color: var(--sr-gold); font-size: 14px; margin-bottom: 8px; }
.sr-review-card .author { font-weight: 700; font-size: 14px; margin-top: 10px; color: var(--sr-blue); }

.sr-keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.sr-keyword {
    font-size: 13px;
    background: rgba(124, 58, 237, 0.08);
    color: var(--sr-blue);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.faq-wrap { text-align: left; max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-q::after { content: '+'; font-size: 20px; color: var(--sr-teal); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 16px; font-size: 14px; color: var(--ink-muted); line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

.cta-band {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(47, 179, 197, 0.08));
    border-radius: 16px;
    padding: 32px 24px;
    margin: 36px 0;
}

.verdict-card {
    background: var(--card);
    border: 2px solid var(--sr-teal);
    border-radius: 16px;
    padding: 28px 24px;
    margin-top: 20px;
}

.verdict-score { font-size: 2.5rem; font-weight: 800; color: var(--sr-blue); }
.verdict-score-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; }

.sr-sticky-offer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #1a2744, #7c3aed);
    color: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.sr-sticky-offer.is-visible { transform: translateY(0); }

.sr-sticky-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sr-sticky-copy {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

.sr-sticky-brand {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.sr-sticky-detail {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.sr-sticky-inner .btn-sticky {
    background: #fbbf24;
    color: #1c1917;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, background 0.15s ease;
}

.sr-sticky-inner .btn-sticky:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

#ve-progress { background: linear-gradient(90deg, var(--sr-blue), var(--sr-teal)) !important; }

@media (max-width: 900px) {
    .sr-steps-flow, .sr-benefit-grid, .sr-ingredient-grid, .sr-bonus-grid, .sr-price-grid, .sr-feature-grid { grid-template-columns: 1fr; }
    .sr-review-grid { grid-template-columns: 1fr; }
    .toc ol { columns: 1; }
}

@media (max-width: 768px) {
    .sr-sticky-offer { padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); }
    .sr-sticky-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .sr-sticky-copy {
        flex-direction: column;
        align-items: center;
        text-align: center;
        white-space: normal;
        gap: 2px;
    }
    .sr-sticky-brand { font-size: 15px; }
    .sr-sticky-detail {
        font-size: 11px;
        max-width: 320px;
        white-space: nowrap;
    }
    .sr-sticky-inner .btn-sticky {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        font-size: 14px;
    }
    body.sr-has-sticky {
        padding-bottom: max(118px, calc(108px + env(safe-area-inset-bottom)));
    }
    .sr-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .sr-hero-copy { text-align: center; }
    .sr-hero-badges {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }
    .sr-hero-badges .sr-savings-pill,
    .sr-hero-badges .eyebrow {
        width: 100%;
        max-width: 360px;
        text-align: center;
        justify-content: center;
        white-space: normal;
    }
    .sr-hero-logo { margin: 0 auto 16px; }
    .sr-hero-title { align-items: center; }
    .sr-hero-title-block { text-align: center; }
    .sr-hero-title-block::before { left: 20%; right: 20%; }
    .sr-tagline { margin: 0 auto; }
    .sr-hero-lead { margin: 0 auto 20px; }
    .sr-hero-copy .ve-hero-stats { justify-content: center; }
    .sr-hero-copy .ve-hero-ctas {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .sr-hero-copy .ve-hero-ctas .btn-ve-primary,
    .sr-hero-copy .ve-hero-ctas .btn-ve-ghost {
        width: 100%;
        flex: 1 1 auto;
        white-space: normal;
    }
    .sr-hero-icon-row { justify-content: center; margin: 20px auto 24px; gap: 8px; }
    .sr-hero-visual { order: -1; }
    .sr-hero-product-stage { max-width: 280px; }
    .sr-icon-ring { width: 48px; height: 48px; border-radius: 12px; }
    .sr-icon-ring img { width: 30px; height: 30px; }
    .sr-hero-icon-row .sr-hero-icon-item { flex: 0 0 calc(33.33% - 8px); }
    .sr-hero-icon-item span:last-child { font-size: 9px; }
    .sr-anim-card { flex: 0 0 calc(33.333% - 8px); width: auto; min-width: 88px; }
}

@media (min-width: 769px) {
    .sr-hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .sr-hero-copy .ve-hero-ctas {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sr-hero-product-img, .sr-icon-ring, .sr-hero-glow, .sr-anim-icon-wrap { animation: none !important; }
}
