/* =================================================================
    QuitSure · Pricing · v3 (single-pricing-card layout)
    Hero pricing module rebuilt on the shadcn single-pricing-card pattern:
    two-column card (left: price/benefits/CTAs · right: features + rotating
    testimonial). Same content as the 60%Off page; lower sections unchanged.
    ================================================================= */

:root {
    --primary: #317685;
    --primary-deep: #1F525E;
    --primary-mid: #2D6B7A;
    --secondary: #ff9f58;
    --secondary-deep: #E07A2E;
    --secondary-soft: #FFB780;
    --softTeal: #5fa3b4;
    --softTeal-bright: #8ECBDB;
    --darkBlack: #081F32;
    --darkInk: #0E2640;
    --darkGrey: #4C5560;
    --gPlaceholder: #80858A;
    --gLines: #C1D6DA;
    --premiumHairline: #E5EAF0;
    --lightBg: #FAFBFD;
    --white: #FFFFFF;
    --cream: #FFF7EE;
    --primaryTint: rgba(49, 118, 133, 0.06);
    --secondaryTint: rgba(255, 159, 88, 0.10);
    --glass-bg: rgba(255, 255, 255, 0.66);
    --glass-bg-strong: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.88);
    --shadow-soft: 0 1px 2px rgba(8, 31, 50, 0.04), 0 8px 24px rgba(8, 31, 50, 0.06);
    --shadow-elev: 0 2px 6px rgba(8, 31, 50, 0.05), 0 24px 48px -12px rgba(8, 31, 50, 0.12);
    --shadow-cinema: 0 4px 12px rgba(8, 31, 50, 0.06), 0 40px 90px -16px rgba(8, 31, 50, 0.24);
    --radius-card: 18px;
    --radius-pill: 999px;
    --ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--darkGrey);
    background: var(--lightBg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-feature-settings: "ss01";
}

/* Atmospheric mesh — kept */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 700px at 10% 6%, rgba(49, 118, 133, 0.10), transparent 55%),
        radial-gradient(700px 600px at 94% 18%, rgba(255, 159, 88, 0.08), transparent 55%),
        radial-gradient(800px 700px at 50% 115%, rgba(95, 163, 180, 0.06), transparent 60%),
        radial-gradient(500px 500px at 92% 80%, rgba(255, 159, 88, 0.04), transparent 55%);
    animation: meshDrift 36s ease-in-out infinite alternate;
}

@keyframes meshDrift {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(24px, -12px);
    }

    100% {
        transform: translate(-12px, 16px);
    }
}

body>* {
    position: relative;
    z-index: 1;
}

.tnum {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

img,
svg {
    display: block;
    max-width: 100%;
}

.display {
    font-family: var(--display);
}

/* ============== Container ============== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* ============== Topbar — logo-only, centered, static ============== */
.topbar {
    position: static;
    background:
        radial-gradient(130% 200% at 92% -40%, rgba(255, 159, 88, 0.42), transparent 55%),
        linear-gradient(120deg, var(--primary-deep) 0%, var(--primary) 52%, var(--softTeal) 125%);
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(31, 82, 94, 0.25), 0 12px 30px -16px rgba(31, 82, 94, 0.5);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 16px;
}

@media (min-width: 768px) {
    .topbar-inner {
        padding: 22px 0 20px;
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .brand-logo {
        height: 34px;
    }
}

/* (Header nav + CTA removed — logo-only header) */

/* ============== Hero ============== */
.hero {
    position: relative;
    padding-top: 40px;
    padding-bottom: 56px;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 64px;
        padding-bottom: 96px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 88px;
        padding-bottom: 128px;
    }
}

/* Soft hero glow (ambient depth, no anatomical lung) */
.hero-glow {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 100%);
    height: 600px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(closest-side at 30% 40%, rgba(49, 118, 133, 0.18), transparent 65%),
        radial-gradient(closest-side at 78% 65%, rgba(255, 159, 88, 0.14), transparent 60%);
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.85;
    }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.18fr 1fr;
        grid-template-areas: "hook card" "detail card";
        column-gap: 60px;
        row-gap: 24px;
    }

    .hero-hook {
        grid-area: hook;
    }

    .hero-detail {
        grid-area: detail;
    }

    .plans-panel {
        grid-area: card;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 26px;
    box-shadow: var(--shadow-soft);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 0 rgba(255, 159, 88, 0.6);
    animation: pulseRing 2.4s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 88, 0.55);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 159, 88, 0);
    }
}

/* Hero h1 — Poppins display weight + italic gradient accent */
.hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.034em;
    color: var(--darkInk);
    margin: 0 0 22px;
    padding-bottom: 0.08em;
}

.hero h1 .accent {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(112deg, var(--primary) 0%, var(--softTeal) 42%, var(--secondary) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .hero h1 .accent {
        white-space: normal;
    }
}

.hero-sub {
    font-family: var(--body);
    font-size: 16.5px;
    color: var(--darkGrey);
    margin: 0 0 32px;
    line-height: 1.65;
    max-width: 540px;
    font-weight: 400;
    letter-spacing: -0.005em;
}

@media (min-width: 1024px) {
    .hero-sub {
        font-size: 18px;
    }
}

.hero-sub strong {
    color: var(--darkInk);
    font-weight: 600;
}

/* ---- Hero lead pairing (short H1 + supporting line) ----
    Tunes the centered "Quit smoking." H1 against its one-line subhead so the
    pair reads as a deliberate hook, not a heading with a stray paragraph. */
.hero-lead {
    text-align: center;
}

.hero-lead .hero-headline {
    margin: 0 0 14px;
    /* tighter than the default h1 22px gap */
}

.hero-lead .hero-tagline {
    font-family: var(--body);
    font-size: clamp(13px, 3.4vw, 18px);
    line-height: 1.4;
    font-weight: 500;
    color: var(--darkGrey);
    letter-spacing: 0.002em;
    white-space: nowrap;
    /* keep the three negatives on one line */
    margin: 0 auto;
    /* centered under the H1 */
}

@media (min-width: 768px) {
    .hero-lead .hero-headline {
        margin-bottom: 16px;
    }
}

/* Heart-line waveform — signature animation */
.heartline-wrap {
    position: relative;
    width: 100%;
    height: 100px;
    margin: 28px 0 12px;
}

.heartline-wrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.wave-baseline {
    stroke: rgba(8, 31, 50, 0.06);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}

.wave-glow {
    fill: none;
    stroke: rgba(255, 159, 88, 0.20);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: blur(4px);
    animation: glowPulse2 5.4s ease-in-out infinite;
}

@keyframes glowPulse2 {

    0%,
    100% {
        opacity: 0.22;
    }

    50% {
        opacity: 0.72;
    }
}

.wave-path {
    fill: none;
    stroke: url(#pulseGradient);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: heartbeat 5.4s ease-in-out infinite;
    filter: drop-shadow(0 0 7px rgba(255, 159, 88, 0.42));
}

@keyframes heartbeat {
    0% {
        stroke-dashoffset: 1400;
        opacity: 0.35;
    }

    42% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    58% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -1400;
        opacity: 0.35;
    }
}

/* Cost crossover */
.cost-wrap {
    margin: 12px 0 4px;
    position: relative;
}

.cost-strike-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.cost-strike-amt {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--gPlaceholder);
    text-decoration: line-through;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2.5px;
    line-height: 1;
    letter-spacing: -0.024em;
}

.cost-strike-label {
    font-family: var(--body);
    font-size: 13.5px;
    color: var(--gPlaceholder);
    letter-spacing: -0.005em;
    font-weight: 500;
}

.cost-arrow {
    color: var(--primary);
    margin: 6px 0 6px 12px;
    opacity: 0.7;
    animation: arrowSlide 3s ease-in-out infinite;
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.9;
    }
}

.cost-now-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 4px;
}

.cost-now-amt {
    font-family: var(--display);
    font-size: clamp(82px, 13vw, 140px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.05em;
    background: linear-gradient(140deg, var(--darkInk) 0%, var(--primary) 60%, var(--softTeal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.05em;
}

.cost-now-unit {
    font-family: var(--body);
    font-size: 16px;
    color: var(--darkGrey);
    padding-bottom: 10px;
    font-weight: 500;
}

.cost-now-unit strong {
    color: var(--darkInk);
    font-weight: 700;
}

.cost-note {
    font-family: var(--body);
    font-size: 15.5px;
    font-weight: 400;
    color: var(--darkGrey);
    line-height: 1.6;
    margin: 24px 0 0;
    max-width: 500px;
    position: relative;
    padding-left: 16px;
    border-left: 2px solid var(--secondary);
}

.cost-note strong {
    color: var(--darkInk);
    font-weight: 600;
}

.cost-note em {
    font-family: var(--display);
    font-style: italic;
    color: var(--darkInk);
    font-size: 1em;
    font-weight: 600;
}

/* Offer points — icon checklist that replaced the single cost-note line */
.offer-points {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.offer-point {
    display: flex;
    align-items: center;
    gap: 13px;
    font-family: var(--body);
    font-size: 15.5px;
    font-weight: 400;
    color: var(--darkGrey);
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.offer-point .op-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--secondaryTint);
    color: var(--secondary-deep);
    border: 1px solid rgba(255, 159, 88, 0.26);
}

.offer-point .op-icon--teal {
    background: var(--primaryTint);
    color: var(--primary);
    border-color: rgba(49, 118, 133, 0.22);
}

.offer-point .op-icon svg {
    width: 17px;
    height: 17px;
}

.offer-point strong {
    color: var(--darkInk);
    font-weight: 700;
}

.offer-point em {
    font-family: var(--display);
    font-style: italic;
    color: var(--darkInk);
    font-weight: 600;
}

/* Trust line */
.trust-row {
    margin-top: 30px;
    padding: 16px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-family: var(--body);
    font-size: 14px;
}

.trust-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--darkGrey);
}

.trust-item strong {
    color: var(--darkInk);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.trust-item .star {
    color: var(--secondary);
    margin-right: 2px;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gLines);
    align-self: center;
}

/* ============== Plans panel ============== */
.plans-panel {
    position: relative;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 26px 22px 22px;
    box-shadow: var(--shadow-cinema);
}

@media (min-width: 768px) {
    .plans-panel {
        padding: 30px 28px 26px;
    }
}

@media (min-width: 1024px) {
    .plans-panel {
        position: sticky;
        top: 92px;
        padding: 32px 30px 28px;
    }
}

.plans-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(49, 118, 133, 0.55), rgba(255, 159, 88, 0.32) 70%, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.75;
}

.plans-panel-head {
    margin-bottom: 20px;
}

.plans-panel-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-deep);
    margin-bottom: 8px;
}

.plans-panel-eyebrow svg {
    width: 14px;
    height: 14px;
}

.plans-panel-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    color: var(--darkInk);
    margin: 0 0 6px;
    letter-spacing: -0.028em;
    line-height: 1.2;
}

.plans-panel-sub {
    font-family: var(--body);
    font-size: 13.5px;
    color: var(--darkGrey);
    line-height: 1.55;
}

.plans {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
}

.plan {
    position: relative;
    padding: 14px 14px;
    border: 1.5px solid var(--premiumHairline);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 220ms var(--ease-smooth);
}

.plan:hover {
    border-color: var(--gLines);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.plan.is-selected {
    border: 2px solid var(--primary);
    background: linear-gradient(155deg, rgba(49, 118, 133, 0.10) 0%, rgba(95, 163, 180, 0.04) 50%, rgba(255, 159, 88, 0.06) 100%);
    padding: 13px 13px;
    box-shadow:
        0 1px 2px rgba(8, 31, 50, 0.04),
        0 18px 36px -10px rgba(49, 118, 133, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gLines);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    background: var(--white);
}

.plan.is-selected .radio {
    border-color: var(--primary);
}

.plan.is-selected .radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--softTeal));
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(49, 118, 133, 0.14);
}

.plan-body {
    flex: 1;
    min-width: 0;
}

.plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.plan-name {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    color: var(--darkInk);
    margin: 0 0 2px;
    letter-spacing: -0.012em;
}

.plan-frame {
    font-family: var(--body);
    font-size: 12.5px;
    color: var(--darkGrey);
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.price-block {
    text-align: right;
    flex-shrink: 0;
}

.price-strike {
    font-size: 11.5px;
    color: var(--gPlaceholder);
    text-decoration: line-through;
    margin-bottom: 1px;
    font-variant-numeric: tabular-nums;
}

.price-amt {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    color: var(--darkInk);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.plan.is-selected .price-amt {
    background: linear-gradient(135deg, var(--primary), var(--softTeal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.price-cycle {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gPlaceholder);
    margin-top: 4px;
}

.price-perday {
    font-family: var(--body);
    font-size: 12px;
    color: var(--darkGrey);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.best-ribbon {
    position: absolute;
    top: -9px;
    left: 14px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
    color: var(--white);
    border-radius: 6px;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -2px rgba(255, 159, 88, 0.45);
}

.save-chip {
    display: inline-block;
    padding: 1px 7px;
    background: var(--secondaryTint);
    color: var(--secondary-deep);
    border-radius: 4px;
    font-family: var(--body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Primary CTA */
.panel-cta {
    position: relative;
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 999px;
    font-family: var(--body);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.2;
    transition: transform 200ms var(--ease-spring), box-shadow 200ms;
    background:
        linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 42%, var(--softTeal) 95%, var(--secondary) 130%);
    background-size: 240% 100%, 100% 100%;
    background-position: -50% 0, 0 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 10px rgba(8, 31, 50, 0.10),
        0 18px 36px -8px rgba(49, 118, 133, 0.5);
    animation: sheenSweep 5.5s linear infinite;
}

@keyframes sheenSweep {
    0% {
        background-position: -60% 0, 0 0;
    }

    62% {
        background-position: 160% 0, 0 0;
    }

    100% {
        background-position: 160% 0, 0 0;
    }
}

.panel-cta:hover {
    transform: translateY(-1px);
}

.cta-main {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cta-price {
    font-family: var(--body);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.92;
}

.cta-price .cta-was {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    text-decoration-color: #ff5b5b;
    text-decoration-thickness: 2px;
    margin-right: 6px;
}

.trial-line {
    margin: 12px 0 0;
    text-align: center;
    font-family: var(--body);
    font-size: 13px;
    color: var(--darkGrey);
}

.trial-link {
    color: var(--secondary-deep);
    text-decoration: underline;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    font-weight: 600;
}

.panel-secure {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--premiumHairline);
    font-family: var(--body);
    font-size: 11.5px;
    color: var(--gPlaceholder);
}

.panel-secure-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.panel-secure-item svg {
    color: var(--softTeal);
    width: 13px;
    height: 13px;
}

/* ============== Stats strip — 4 trust stats below hero ============== */
.stats-strip {
    padding: 44px 0;
    background: linear-gradient(180deg, rgba(49, 118, 133, 0.04) 0%, rgba(255, 159, 88, 0.02) 100%);
    border-top: 1px solid var(--premiumHairline);
    border-bottom: 1px solid var(--premiumHairline);
    margin-top: 24px;
}

@media (min-width: 768px) {
    .stats-strip {
        padding: 56px 0;
        margin-top: 32px;
    }
}

@media (min-width: 1024px) {
    .stats-strip {
        padding: 64px 0;
        margin-top: 40px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stat-item {
    position: relative;
    padding: 0 6px;
}

@media (min-width: 768px) {
    .stat-item+.stat-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 16%;
        bottom: 16%;
        width: 1px;
        background: var(--premiumHairline);
    }
}

.stat-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1;
    letter-spacing: -0.038em;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    padding-bottom: 0.04em;
}

.stat-num-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--softTeal) 60%, var(--secondary) 115%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* 5-star rating row — partial gradient fill shows 4.7 / 5 */
.star-rating {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .star-rating {
        font-size: 20px;
    }
}

.star-rating::before {
    content: "★★★★★";
    background: linear-gradient(90deg,
            var(--secondary) calc(var(--rating, 4.7) / 5 * 100%),
            var(--gLines) calc(var(--rating, 4.7) / 5 * 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-label {
    font-family: var(--body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--darkGrey);
    letter-spacing: 0.005em;
    line-height: 1.45;
    max-width: 180px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 13px;
        max-width: 200px;
    }
}

/* ============== Sections ============== */
.section {
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding-top: 112px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: 128px;
    }
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 5px 12px;
    background: var(--primaryTint);
    border-radius: 999px;
}

.section-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 48px);
    line-height: 1.1;
    color: var(--darkInk);
    margin: 0 0 14px;
    letter-spacing: -0.034em;
}

.section-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(120deg, var(--primary) 0%, var(--softTeal) 55%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
    display: inline-block;
}

.section-sub {
    font-family: var(--body);
    font-size: 15.5px;
    color: var(--darkGrey);
    margin: 0 0 40px;
    line-height: 1.65;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: -0.005em;
}

@media (min-width: 768px) {
    .section-sub {
        font-size: 17px;
    }
}

.section-head-center {
    text-align: center;
}

.section-head-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ============== 6-day program (AW pattern — image + text alternating) ============== */
.days-stack {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .days-stack {
        gap: 80px;
    }
}

@media (min-width: 1024px) {
    .days-stack {
        gap: 112px;
    }
}

.day-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

@media (min-width: 1024px) {
    .day-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .day-row.reverse .day-phone {
        order: 2;
        justify-content: flex-start;
    }

    .day-row.reverse .day-text {
        order: 1;
    }
}

.day-phone {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .day-phone {
        justify-content: flex-end;
    }
}

.day-phone img {
    width: 100%;
    height: auto;
    max-width: 230px;
    border-radius: 22px;
    background: #0E2640;
    box-shadow:
        0 28px 70px rgba(8, 31, 50, 0.30),
        0 6px 20px rgba(8, 31, 50, 0.14);
    transition: transform 350ms var(--ease-smooth);
}

@media (min-width: 768px) {
    .day-phone img {
        max-width: 260px;
    }
}

@media (min-width: 1024px) {
    .day-phone img {
        max-width: 260px;
    }
}

.day-phone.tilt-l img {
    transform: rotate(-5deg);
}

.day-phone.tilt-r img {
    transform: rotate(5deg);
}

.day-phone.tilt-l:hover img {
    transform: rotate(-5deg) translateY(-4px);
}

.day-phone.tilt-r:hover img {
    transform: rotate(5deg) translateY(-4px);
}

.day-phone:not(.tilt-l):not(.tilt-r):hover img {
    transform: translateY(-4px);
}

/* Circular variant — used for Day 02 + Day 06 (matches AW) */
/* Explicit width === height forces a perfect circle, overriding the intrinsic 360×680 image ratio */
.day-phone.is-circle img {
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: #0E2640;
    width: 230px;
    height: 230px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
    .day-phone.is-circle img {
        width: 260px;
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .day-phone.is-circle img {
        width: 260px;
        height: 260px;
    }
}

.day-phone.is-circle img {
    transform: none;
}

.day-phone.is-circle:hover img {
    transform: translateY(-4px);
}

.day-text {
    background: var(--white);
    border: 1px solid var(--premiumHairline);
    border-radius: 24px;
    padding: 26px;
    box-shadow:
        0 14px 40px rgba(8, 31, 50, 0.06),
        0 2px 8px rgba(8, 31, 50, 0.04);
    position: relative;
}

@media (min-width: 768px) {
    .day-text {
        padding: 32px 34px;
    }
}

@media (min-width: 1024px) {
    .day-text {
        padding: 36px 40px;
    }
}

.day-eyebrow {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--secondary-deep);
    margin: 0 0 12px;
}

.day-eyebrow.shift {
    color: var(--primary);
}

.day-eyebrow.free {
    color: #0E8C5F;
}

.day-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -0.034em;
    color: var(--darkInk);
    line-height: 1.16;
    margin: 0 0 14px;
}

.day-body {
    font-family: var(--body);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--darkGrey);
    line-height: 1.65;
    margin: 0 0 18px;
    letter-spacing: -0.005em;
}

@media (min-width: 768px) {
    .day-body {
        font-size: 15px;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

.pill-still {
    background: rgba(255, 142, 60, 0.14);
    color: var(--secondary-deep);
    border: 1px solid rgba(255, 142, 60, 0.32);
}

.pill-shifting {
    background: rgba(49, 118, 133, 0.10);
    color: var(--primary);
    border: 1px solid rgba(49, 118, 133, 0.28);
}

.pill-free {
    color: #FFFFFF;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 16px -2px rgba(52, 211, 153, 0.45);
}

.pill-free::before {
    background: #FFFFFF;
    opacity: 0.9;
}

/* ============== Features ============== */
.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .features-layout {
        grid-template-columns: 1fr 1fr;
        gap: 0 64px;
        max-width: 1040px;
        margin: 0 auto;
    }
}

.feature-col {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--premiumHairline);
    position: relative;
}

.feature-row:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .feature-col:first-child .feature-row:last-child {
        border-bottom: 1px solid var(--premiumHairline);
    }
}

.feature-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(140deg, rgba(49, 118, 133, 0.14) 0%, rgba(95, 163, 180, 0.05) 100%);
    border: 1px solid rgba(49, 118, 133, 0.18);
    display: grid;
    place-items: center;
    color: var(--primary);
    box-shadow:
        0 0 18px -4px rgba(95, 163, 180, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-row:nth-child(2) .feature-icon {
    background: linear-gradient(140deg, rgba(255, 159, 88, 0.16) 0%, rgba(255, 159, 88, 0.04) 100%);
    border-color: rgba(255, 159, 88, 0.24);
    color: var(--secondary-deep);
    box-shadow: 0 0 18px -4px rgba(255, 159, 88, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-row:nth-child(5) .feature-icon {
    background: linear-gradient(140deg, rgba(95, 163, 180, 0.18) 0%, rgba(142, 203, 219, 0.06) 100%);
    border-color: rgba(95, 163, 180, 0.26);
    color: var(--softTeal);
    box-shadow: 0 0 18px -4px rgba(142, 203, 219, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-body {
    flex: 1;
    min-width: 0;
}

.feature-name {
    font-family: var(--body);
    font-size: 16px;
    font-weight: 600;
    color: var(--darkInk);
    margin: 0 0 4px;
    letter-spacing: -0.012em;
}

.feature-desc {
    font-family: var(--body);
    font-size: 14px;
    color: var(--darkGrey);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.005em;
}

/* ============== Testimonials ============== */
.t-rail {
    margin: 0 -20px;
    padding: 8px 20px 24px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 16px;
    scroll-padding-inline: 20px;
}

.t-rail::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .t-rail {
        margin: 0 -32px;
        padding: 8px 32px 24px;
        gap: 20px;
        scroll-padding-inline: 32px;
    }
}

@media (min-width: 1024px) {
    .t-rail {
        margin: 0 -48px;
        padding: 8px 48px 28px;
        gap: 22px;
        scroll-padding-inline: 48px;
    }
}

.t-card {
    flex-shrink: 0;
    width: 290px;
    background: var(--white);
    border: 1px solid var(--premiumHairline);
    border-radius: 22px;
    padding: 24px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: all 280ms var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .t-card {
        width: 360px;
        padding: 28px;
    }
}

@media (min-width: 1024px) {
    .t-card {
        width: 400px;
        padding: 32px;
    }
}

.t-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elev);
    border-color: rgba(49, 118, 133, 0.22);
}

.t-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(49, 118, 133, 0.05), transparent 70%);
    pointer-events: none;
}

.t-quote-mark {
    font-family: var(--display);
    color: var(--primary);
    opacity: 0.22;
    font-size: 64px;
    font-style: italic;
    font-weight: 700;
    line-height: 0.4;
    height: 28px;
    margin-bottom: 10px;
}

.t-quote {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 400;
    color: var(--darkInk);
    line-height: 1.6;
    margin: 0 0 22px;
    flex: 1;
    letter-spacing: -0.008em;
}

@media (min-width: 1024px) {
    .t-quote {
        font-size: 16px;
    }
}

.t-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--premiumHairline);
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--softTeal));
    color: var(--white);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px -2px rgba(49, 118, 133, 0.35);
}

.t-avatar.placeholder-mini {
    background: var(--white);
    border: 2px dashed var(--gLines);
    color: var(--gPlaceholder);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.1;
    box-shadow: none;
    padding: 4px;
}

.t-meta {
    flex: 1;
    min-width: 0;
}

.t-name {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    color: var(--darkInk);
    letter-spacing: -0.005em;
}

.t-days {
    font-family: var(--body);
    font-size: 12px;
    color: var(--primary);
    margin-top: 2px;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.t-stars {
    color: var(--secondary);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

/* Testimonial dots (AW pattern — pill morph on active) */
.t-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .t-dots {
        gap: 8px;
        margin-top: 18px;
    }
}

.t-dot {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.t-dot:focus {
    outline: none;
}

.t-dot:focus-visible::before {
    box-shadow: 0 0 0 3px rgba(49, 118, 133, 0.25);
}

.t-dot::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gLines);
    transition: width 280ms var(--ease-smooth), background 280ms var(--ease-smooth), border-radius 280ms var(--ease-smooth);
}

.t-dot:hover::before {
    background: var(--softTeal);
}

.t-dot.is-active::before {
    width: 24px;
    border-radius: 3px;
    background: var(--primary);
}

/* ============== FAQ (AW pattern — name="faq" single-open, default closed) ============== */
.faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--premiumHairline);
    background: none;
    padding: 22px 0;
    transition: padding 200ms var(--ease-smooth);
}

.faq-item:first-child {
    border-top: none;
    padding-top: 4px;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--premiumHairline);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
}

.faq-q {
    font-family: var(--body);
    font-size: 17px;
    font-weight: 600;
    color: var(--darkInk);
    letter-spacing: -0.018em;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .faq-q {
        font-size: 19px;
    }
}

.faq-chev {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primaryTint);
    border: 1px solid rgba(49, 118, 133, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 280ms var(--ease-smooth), background 280ms var(--ease-smooth), color 280ms var(--ease-smooth);
}

.faq-item[open] .faq-chev {
    transform: rotate(180deg);
    background: var(--secondaryTint);
    border-color: rgba(255, 159, 88, 0.32);
    color: var(--secondary-deep);
}

.faq-body {
    margin-top: 18px;
    font-family: var(--body);
    font-size: 14.5px;
    color: var(--darkGrey);
    line-height: 1.7;
    letter-spacing: -0.005em;
}

@media (min-width: 768px) {
    .faq-body {
        font-size: 15.5px;
    }
}

.faq-body strong {
    color: var(--darkInk);
    font-weight: 700;
}

.faq-body p {
    margin: 0 0 12px;
}

.faq-body p:last-child {
    margin-bottom: 0;
}

.faq-body ul {
    margin: 8px 0 12px;
    padding-left: 20px;
}

.faq-body ul li {
    margin-bottom: 6px;
}

.faq-body a {
    color: var(--secondary-deep);
}

.faq-body a:hover {
    text-decoration: underline;
}

/* ============== Final CTA band ============== */
.final-cta-wrap {
    position: relative;
    margin-top: 100px;
    padding: 64px 24px 72px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(800px 500px at 80% 20%, rgba(255, 159, 88, 0.20), transparent 60%),
        radial-gradient(900px 600px at 20% 80%, rgba(95, 163, 180, 0.32), transparent 60%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 42%, var(--primary-mid) 82%);
    color: var(--white);
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-wrap {
        margin-top: 128px;
        padding: 88px 32px 104px;
    }
}

@media (min-width: 1024px) {
    .final-cta-wrap {
        margin-top: 144px;
        padding: 112px 48px 128px;
    }
}

.final-cta-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.16), transparent 70%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
    z-index: -1;
}

.final-heartline {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
}

.final-heartline svg {
    width: 100%;
    height: 100%;
}

.final-heartline path {
    fill: none;
    stroke: var(--white);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: heartbeat 5.4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 24px;
}

.final-cta-eyebrow .pulse-dot {
    background: var(--secondary);
    box-shadow: 0 0 12px rgba(255, 159, 88, 0.7);
}

.final-cta-title {
    font-family: var(--display);
    font-size: clamp(34px, 5.4vw, 64px);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 16px;
    letter-spacing: -0.036em;
    line-height: 1.06;
}

.final-cta-title em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(120deg, var(--secondary) 0%, #ffd6a6 60%, var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
    display: inline-block;
}

.final-cta-sub {
    font-family: var(--body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 34px;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 768px) {
    .final-cta-sub {
        font-size: 17.5px;
    }
}

/* Final CTA — stat chips + standalone punchline */
.final-cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 26px;
    max-width: 600px;
}

.final-cta-stat {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .final-cta-stat {
        font-size: 14.5px;
    }
}

.final-cta-stat strong {
    color: var(--white);
    font-weight: 700;
    margin-right: 5px;
    font-variant-numeric: tabular-nums;
}

.final-cta-punch {
    font-family: var(--display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    margin: 0 auto 34px;
    max-width: 580px;
    line-height: 1.35;
    letter-spacing: -0.018em;
}

.final-cta-punch em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(120deg, var(--secondary) 0%, #ffd6a6 60%, var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
}

.final-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 38px;
    background:
        linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%),
        linear-gradient(135deg, var(--secondary) 0%, var(--secondary-deep) 100%);
    background-size: 240% 100%, 100% 100%;
    background-position: -50% 0, 0 0;
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: transform 220ms var(--ease-spring), box-shadow 220ms;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 4px 14px rgba(8, 31, 50, 0.25),
        0 28px 56px -10px rgba(255, 159, 88, 0.55);
    animation: sheenSweep 5s linear infinite;
    overflow: hidden;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
}

.final-cta-guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.74);
    margin-top: 22px;
    line-height: 1.4;
}

.final-cta-guarantee svg {
    opacity: 0.85;
    flex-shrink: 0;
}

/* ============== Footer ============== */
.footer {
    padding: 36px 0 28px;
    text-align: center;
    font-family: var(--body);
    font-size: 13px;
    color: var(--gPlaceholder);
    background: var(--lightBg);
}

.footer-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-pay {
    padding: 5px 12px;
    background: var(--white);
    border: 1px solid var(--premiumHairline);
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--darkInk);
    letter-spacing: -0.005em;
}

/* ============== Mobile sticky CTA ============== */
.sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--premiumHairline);
    box-shadow: 0 -8px 24px rgba(8, 31, 50, 0.08);
    transform: translateY(0);
    opacity: 1;
    transition: transform 320ms var(--ease-smooth), opacity 240ms var(--ease-smooth);
}

/* Slide down + fade out when an in-page CTA is visible */
.sticky-mobile.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.sticky-mobile-btn {
    position: relative;
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 999px;
    font-family: var(--body);
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    background:
        linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.36) 50%, transparent 64%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 45%, var(--softTeal) 100%);
    background-size: 240% 100%, 100% 100%;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 12px 26px -6px rgba(49, 118, 133, 0.5);
    animation: sheenSweep 4.5s linear infinite,
        stickyGlow 2.4s ease-in-out infinite,
        stickyNudge 3.4s ease-in-out infinite;
}

.smb-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1px;
    line-height: 1.15;
}

.sticky-mobile-btn .cta-main {
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sticky-mobile-btn .cta-price {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.95;
}

.sticky-mobile-btn .cta-was {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: line-through;
    text-decoration-color: #ff8a8a;
    text-decoration-thickness: 2px;
    margin-right: 5px;
}

/* circular arrow chip with a "tap me" pulse ring + slide */
.smb-arrow {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.20);
    display: grid;
    place-items: center;
}

.smb-arrow svg {
    width: 20px;
    height: 20px;
    color: #fff;
    animation: arrowNudge 1.5s ease-in-out infinite;
}

.smb-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    animation: arrowRing 2s ease-out infinite;
}

@keyframes stickyGlow {

    0%,
    100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 10px 22px -6px rgba(49, 118, 133, 0.45);
    }

    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 16px 34px -6px rgba(49, 118, 133, 0.72);
    }
}

@keyframes stickyNudge {

    0%,
    86%,
    100% {
        transform: translateY(0) scale(1);
    }

    91% {
        transform: translateY(-2px) scale(1.012);
    }

    96% {
        transform: translateY(0) scale(1);
    }
}

@keyframes arrowNudge {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

@keyframes arrowRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    }

    70%,
    100% {
        box-shadow: 0 0 0 11px rgba(255, 255, 255, 0);
    }
}

@media (min-width: 1024px) {
    .sticky-mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .mobile-spacer {
        height: 96px;
    }
}

@media (min-width: 1024px) {
    .mobile-spacer {
        display: none;
    }
}

/* Reveal — scroll-reveal system (fade-up + scale, softer easing, stronger
    header rise, and grouped stagger for cascading items).

    NOTE: this used to animate `filter: blur()` as well. Removed — on iOS Safari
    `filter` is not a compositor-only property, so once the layer budget is blown
    (this page has ~20 promoted layers plus several backdrop-filter roots) Safari
    keeps the cached blurred raster and only updates opacity/transform. Elements
    ended up visible but permanently soft. Do not reintroduce blur here. */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1),
        transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
    will-change: opacity, transform;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* section headers (and the hero lead) rise a little more, with a softer settle */
.section-head-center.reveal,
.hero-lead.reveal {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.section-head-center.reveal:not(.in),
.hero-lead.reveal:not(.in) {
    transform: translateY(56px);
}

/* grouped containers hold still; their .stagger-item children cascade in */
.reveal-group {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-group:not(.in) .stagger-item {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
}

.reveal-group.in .stagger-item {
    animation: revealUp 0.6s cubic-bezier(0.25, 0.4, 0.25, 1) both;
}

.reveal-group.in .stagger-item:nth-child(1) {
    animation-delay: 0.05s;
}

.reveal-group.in .stagger-item:nth-child(2) {
    animation-delay: 0.13s;
}

.reveal-group.in .stagger-item:nth-child(3) {
    animation-delay: 0.21s;
}

.reveal-group.in .stagger-item:nth-child(4) {
    animation-delay: 0.29s;
}

.reveal-group.in .stagger-item:nth-child(5) {
    animation-delay: 0.37s;
}

.reveal-group.in .stagger-item:nth-child(6) {
    animation-delay: 0.45s;
}

.reveal-group.in .stagger-item:nth-child(7) {
    animation-delay: 0.53s;
}

.reveal-group.in .stagger-item:nth-child(8) {
    animation-delay: 0.61s;
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal-group .stagger-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* ===== Mobile: keep the pricing card above the fold =====
    Hide the decorative heartline and tighten the hero so the 3 offer
    points AND the plans card are visible before the first scroll. */
@media (max-width: 1023px) {
    .heartline-wrap {
        display: none;
    }

    .hero-grid {
        gap: 22px;
    }

    .offer-points {
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 20px;
        padding-bottom: 28px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 12px;
    }

    .hero-sub {
        margin-bottom: 14px;
    }

    .offer-points {
        gap: 10px;
    }

    .plans-panel {
        padding: 20px 18px 18px;
    }

    .plans-panel-head {
        margin-bottom: 14px;
    }
}

/* =================================================================
    V3 — Single Pricing Card (adapted from the shadcn single-pricing-card
    component). Two-column card: left = badge/title/price/benefits/CTAs,
    right = feature checklist + auto-rotating testimonial with dots.
    shadcn token map: --primary → teal #317685, discount → green.
    ================================================================= */
.spc-section {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}

.spc-card {
    position: relative;
    overflow: hidden;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(170%);
    -webkit-backdrop-filter: blur(28px) saturate(170%);
    border: 1px solid rgba(49, 118, 133, 0.12);
    border-radius: 28px;
    box-shadow: var(--shadow-cinema);
    max-width: 1040px;
    margin: 0 auto;
}

.spc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(49, 118, 133, 0.5), rgba(255, 159, 88, 0.30) 70%, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.spc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 700ms var(--ease-smooth);
    background: linear-gradient(105deg, rgba(49, 118, 133, 0.06), rgba(49, 118, 133, 0.02) 45%, transparent 70%);
}

.spc-card:hover::after {
    opacity: 1;
}

.spc-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .spc-grid {
        flex-direction: row;
    }
}

.spc-col {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .spc-col {
        padding: 36px 34px;
    }
}

@media (min-width: 900px) {
    .spc-col {
        width: 50%;
    }
}

.spc-col-right {
    border-top: 1px solid var(--premiumHairline);
}

@media (min-width: 900px) {
    .spc-col-right {
        border-top: none;
        border-left: 1px solid var(--premiumHairline);
    }

    /* Desktop: top-align so "Everything Included" lines up with the
    "Quit smoking in 1 month" title. The offset matches the left
    column's badge block (badge height + its 18px bottom margin). */
    .spc-col-right {
        justify-content: flex-start;
    }

    .spc-col-right .spc-features-head {
        margin-top: 6px;
    }

    .spc-col-right .spc-features {
        margin-bottom: 0;
    }
}

/* Left column */
.spc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    padding: 6px 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #FFF6DF 0%, #FCE8B0 100%);
    border: 1px solid rgba(212, 160, 23, 0.45);
    border-radius: 999px;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #B5860B;
    box-shadow: 0 2px 8px rgba(245, 179, 46, 0.20);
}

.spc-badge svg {
    width: 14px;
    height: 14px;
    color: #E0A21A;
}

.spc-title {
    font-family: var(--display);
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 700;
    color: var(--darkInk);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}

.spc-title em {
    font-style: italic;
    background: linear-gradient(120deg, var(--primary) 0%, var(--softTeal) 55%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.06em;
    margin-bottom: -0.06em;
}

.spc-subtitle {
    font-family: var(--body);
    font-size: 15px;
    color: var(--darkGrey);
    line-height: 1.6;
    margin: 0 0 22px;
    letter-spacing: -0.005em;
}

.spc-subtitle strong {
    color: var(--darkInk);
    font-weight: 600;
}

.spc-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 24px;
}

.spc-price-now {
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 56px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    background: linear-gradient(140deg, var(--darkInk) 0%, var(--primary) 62%, var(--softTeal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.spc-price-unit {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 500;
    color: var(--darkGrey);
    align-self: flex-end;
    padding-bottom: 8px;
}

.spc-price-orig {
    font-family: var(--body);
    font-size: 16px;
    color: var(--gPlaceholder);
    text-decoration: line-through;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 2px;
    font-variant-numeric: tabular-nums;
}

.spc-discount {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border: 1px solid rgba(16, 140, 95, 0.3);
    border-radius: 999px;
    background: rgba(16, 140, 95, 0.08);
    color: #0E8C5F;
    font-family: var(--body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.spc-benefits {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--darkGrey);
    letter-spacing: -0.005em;
}

/* Benefit icons — flat blue glyphs, no background */
.spc-benefit-ic {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: none;
    box-shadow: none;
}

.spc-benefit-ic svg {
    width: 20px;
    height: 20px;
}

/* colour variants neutralised — all benefit icons are blue now */
.spc-benefit-ic.bi-green,
.spc-benefit-ic.bi-orange {
    color: var(--primary);
}

.spc-benefit strong {
    color: var(--darkInk);
    font-weight: 600;
}

/* gradient highlight pull for an emphasised benefit phrase */
.spc-benefit .spc-hl {
    font-weight: 700;
    background: linear-gradient(120deg, var(--primary) 0%, var(--softTeal) 48%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.spc-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Performance guarantee callout — sits under the CTA (Direction A: guarantee seal) */
.spc-guarantee {
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(25, 180, 122, 0.10) 0%, rgba(95, 163, 180, 0.05) 100%);
    border: 1.5px solid rgba(25, 180, 122, 0.40);
}

.spc-guarantee-ic {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0E8C5F;
    color: #fff;
}

.spc-guarantee-ic svg {
    width: 17px;
    height: 17px;
}

.spc-guarantee-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.spc-guarantee-title {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 800;
    color: var(--darkInk);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.spc-guarantee-title em {
    font-style: normal;
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(115deg, #34D399 0%, #19B47A 45%, #0E8C5F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.spc-guarantee-text {
    font-family: var(--body);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--darkGrey);
}

.spc-btn-primary {
    position: relative;
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--body);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 200ms var(--ease-spring), box-shadow 200ms;
    background:
        linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.32) 50%, transparent 62%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 42%, var(--softTeal) 95%, var(--secondary) 130%);
    background-size: 240% 100%, 100% 100%;
    background-position: -50% 0, 0 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 10px rgba(8, 31, 50, 0.10),
        0 18px 36px -8px rgba(49, 118, 133, 0.5);
    animation: sheenSweep 5.5s linear infinite,
        btnBounce 2.6s var(--ease-spring) infinite,
        btnGlow 2.6s ease-in-out infinite;
}

@keyframes btnBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    14% {
        transform: translateY(-6px);
    }

    28% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-2px);
    }

    52% {
        transform: translateY(0);
    }
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 4px 10px rgba(8, 31, 50, 0.10),
            0 16px 32px -8px rgba(49, 118, 133, 0.45),
            0 0 0 0 rgba(49, 118, 133, 0.45);
    }

    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 6px 16px rgba(8, 31, 50, 0.12),
            0 24px 46px -8px rgba(49, 118, 133, 0.65),
            0 0 0 12px rgba(49, 118, 133, 0);
    }
}

/* pause the loop and lift on hover */
.spc-btn-primary:hover {
    animation-play-state: paused;
    transform: translateY(-2px);
}

.spc-btn-primary svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.spc-btn-primary .spc-chev {
    margin-left: 6px;
    transition: transform 220ms var(--ease-smooth);
}

.spc-btn-primary:hover .spc-chev {
    transform: translateX(4px);
}

.spc-btn-secondary {
    width: 100%;
    min-height: 50px;
    border: 1.5px solid var(--gLines);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--darkInk);
    text-decoration: none;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 200ms var(--ease-smooth);
}

.spc-btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primaryTint);
    color: var(--primary);
}

.spc-btn-secondary svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Lightweight text link (replaces the heavy secondary button) */
.spc-link {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--secondary-deep);
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(224, 122, 46, 0.5);
    cursor: pointer;
    transition: color 200ms var(--ease-smooth);
}

.spc-link:hover {
    color: var(--secondary);
    text-decoration-color: currentColor;
}

.spc-link svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    transition: transform 200ms var(--ease-smooth);
}

.spc-link:hover svg {
    transform: translateY(2px);
}

/* Right column */
.spc-features-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.spc-features-title {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    color: var(--darkInk);
    margin: 0;
    letter-spacing: -0.012em;
}

.spc-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--secondaryTint);
    color: var(--secondary-deep);
    font-family: var(--body);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.spc-features-badge svg {
    width: 12px;
    height: 12px;
}

.spc-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.spc-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--body);
    font-size: 14px;
    color: var(--darkGrey);
    letter-spacing: -0.005em;
}

.spc-feature .spc-feature-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    color: #2E9E63;
    background: none;
    box-shadow: none;
}

.spc-feature .spc-feature-icon svg {
    width: 16px;
    height: 16px;
}

.spc-divider {
    height: 1px;
    background: var(--premiumHairline);
    margin: 22px 0;
}

/* Rotating testimonial */
.spc-tbox {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--premiumHairline);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    min-height: 150px;
}

.spc-tslide {
    position: absolute;
    inset: 0;
    padding: 18px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms var(--ease-smooth), transform 500ms var(--ease-smooth);
    pointer-events: none;
}

.spc-tslide.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.spc-tslide-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
}

.spc-tavatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--softTeal));
    color: var(--white);
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px -2px rgba(49, 118, 133, 0.35);
}

.spc-tmeta {
    flex: 1;
    min-width: 0;
}

.spc-tname {
    font-family: var(--body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--darkInk);
    letter-spacing: -0.005em;
}

.spc-trole {
    font-family: var(--body);
    font-size: 11.5px;
    color: var(--gPlaceholder);
    margin-top: 1px;
}

.spc-tstars {
    flex: 0 0 auto;
    color: var(--secondary);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.spc-tquote {
    font-family: var(--body);
    font-size: 13.5px;
    font-style: italic;
    color: var(--darkInk);
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.005em;
}

.spc-tquote em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.spc-tdots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.spc-tdot {
    height: 6px;
    width: 6px;
    border: none;
    padding: 0;
    border-radius: 999px;
    background: rgba(49, 118, 133, 0.3);
    cursor: pointer;
    transition: width 280ms var(--ease-smooth), background 280ms var(--ease-smooth);
}

.spc-tdot.is-active {
    width: 18px;
    background: var(--primary);
}

/* ===== Plan picker (radio selector — Monthly vs Premium) ===== */
.plan-picker {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 0 24px;
}

.plan-opt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 16px;
    border: 2px solid var(--premiumHairline);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: border-color 200ms var(--ease-smooth), background 200ms var(--ease-smooth),
        box-shadow 200ms var(--ease-smooth), transform 200ms var(--ease-smooth);
}

.plan-opt:hover {
    border-color: var(--gLines);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.plan-opt.is-selected {
    border: 2px solid var(--primary-deep);
    padding: 15px 16px;
    background: var(--primary-deep);
    box-shadow: 0 1px 2px rgba(8, 31, 50, 0.04), 0 14px 30px -12px rgba(49, 118, 133, 0.30);
}

/* selected = dark teal interior → all text/markers go white */
.plan-opt.is-selected .plan-opt-name {
    color: #fff;
}

.plan-opt.is-selected .plan-opt-tag {
    color: rgba(255, 255, 255, 0.62);
}

.plan-opt input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.plan-radio {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--gLines);
    background: var(--white);
    position: relative;
    transition: border-color 200ms var(--ease-smooth);
}

.plan-opt.is-selected .plan-radio {
    border-color: #fff;
    background: transparent;
}

.plan-opt.is-selected .plan-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.plan-opt input:focus-visible+.plan-radio {
    box-shadow: 0 0 0 3px rgba(49, 118, 133, 0.28);
}

.plan-opt-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.plan-opt-name {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    color: var(--darkInk);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Plain inline text flow — NOT inline-flex. As a flex container the label text
     and the price span become two separate flex items, and flex items cannot
     share a line break: at narrow widths the text wrapped inside itself
     ("Billed / monthly at") while the price sat beside it as its own column,
     reading as if it belonged to the ₹2,399 / 20% OFF row. Inline flow lets
     "Billed monthly at ₹1,919" wrap as one sentence. Do not restore flex here. */

.plan-opt-tag {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 500;
    color: var(--gPlaceholder);
    line-height: 1.3;
}

.plan-opt.is-selected .plan-opt-tag {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 500;
}

/* vertical-align, not flex — the tag is inline flow now (see above). */
.plan-opt-tag svg {
    width: 13px;
    height: 13px;
    vertical-align: -2px;
}

.plan-opt-price {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.plan-opt-now {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 800;
    color: var(--darkInk);
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.plan-opt.is-selected .plan-opt-now {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.plan-opt-unit {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;
    color: var(--gPlaceholder);
    -webkit-text-fill-color: var(--gPlaceholder);
}

.plan-opt.is-selected .plan-opt-unit {
    color: rgba(255, 255, 255, 0.7);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

/* Day-price hero — per-day number is the emphasis; month price sits as a caption under the plan name */
.plan-opt-day {
    font-size: 25px;
}

.plan-opt-day .plan-opt-unit {
    font-size: 12px;
}

.plan-opt-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.plan-opt-orig {
    font-family: var(--body);
    font-size: 11.5px;
    color: var(--gPlaceholder);
    text-decoration: line-through;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 1.5px;
    font-variant-numeric: tabular-nums;
}

.plan-opt.is-selected .plan-opt-orig {
    color: rgba(255, 255, 255, 0.6);
    text-decoration-color: rgba(255, 159, 88, 0.75);
}

.plan-opt-save {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 999px;
    background: rgba(16, 140, 95, 0.08);
    border: 1px solid rgba(16, 140, 95, 0.28);
    color: #0E8C5F;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.plan-opt.is-selected .plan-opt-save {
    background: rgba(25, 180, 122, 0.18);
    border-color: rgba(25, 180, 122, 0.45);
    color: #BFF3DE;
}

.plan-ribbon {
    position: absolute;
    top: -8px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #C8920A;
    color: var(--white);
    border-radius: 7px;
    font-family: var(--body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px -2px rgba(167, 123, 0, 0.45);
}

.plan-ribbon svg {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
}

/* Premium tier = gold ribbon + subtle gold inset hairline (not a full frame). Interior dark teal like Monthly. */
.plan-opt[data-plan="premium"].is-selected {
    border: 2px solid var(--primary-deep);
    background: var(--primary-deep);
    box-shadow: inset 0 0 0 1px rgba(200, 146, 10, 0.45), 0 1px 2px rgba(8, 31, 50, 0.04), 0 14px 30px -12px rgba(200, 146, 10, 0.30);
}

/* ribbon sits top-left above the name; a small top bump keeps it off the radio */
.plan-opt[data-plan="premium"] {
    padding-top: 17px;
}

/* Coaching feature row — the single differentiator between the two plans */
.spc-feature .feat-tag {
    margin-left: auto;
    flex: 0 0 auto;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: #B5860B;
    /* golden — premium signal, no bubble */
    background: none;
    padding: 0;
    border: none;
}

/* Premium selected → coaching unlocked: green open padlock + dark bold label */
#coachFeature.is-premium {
    color: #0E2640;
    font-weight: 700;
}

#coachFeature.is-premium .coach-check {
    color: #0E8C5F;
}

/* padlock icons — a touch larger than the row checkmarks */
#coachFeature .coach-check svg,
#coachFeature .coach-lock svg {
    width: 17px;
    height: 17px;
}

/* Monthly selected → coaching locked: grey closed padlock + grey label */
#coachFeature .coach-lock {
    display: none;
}

#coachFeature.is-locked {
    color: #9AA3AB;
}

#coachFeature.is-locked .coach-check {
    display: none;
}

#coachFeature.is-locked .coach-lock {
    display: grid;
    color: #9AA3AB;
}