/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-rich: #050510;
    --black-light: #0a0a14;
    --dark-surface: #12121e;
    --dark-surface-hover: #1a1a2e;
    --purple: #7c3aed;
    --purple-bright: #8b5cf6;
    --purple-dark: #6d28d9;
    --purple-deeper: #5b21b6;
    --purple-glow: rgba(124, 58, 237, 0.35);
    --purple-subtle: rgba(124, 58, 237, 0.08);
    --purple-border: rgba(124, 58, 237, 0.15);
    --green: #4dff9a;
    --white: #f5f5f7;
    --white-dim: #e4e4e7;
    --gray: #a1a1aa;
    --gray-dark: #52525b;
    --gray-darker: #3f3f46;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(124, 58, 237, 0.4);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================ */
/* GRADIENT TEXT                                 */
/* ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-bright) 0%, #a78bfa 40%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* TYPOGRAPHY                                   */
/* ============================================ */
.section-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

/* ============================================ */
/* CTA BUTTON                                   */
/* ============================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 52px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px var(--purple-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px var(--purple-glow), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.cta-button--large {
    font-size: 1.3rem;
    padding: 24px 64px;
}

.cta-sub {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-top: 14px;
    text-align: center;
}

/* ============================================ */
/* HERO                                         */
/* ============================================ */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero__bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.mobile-only {
    display: none;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-bright);
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero__headline {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    white-space: nowrap;
}

.hero__sub {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.vsl-container {
    max-width: 1100px;
    margin: 0 auto 48px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--purple-border);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.1);
    position: relative;
}

/* ============================================ */
/* CALENDLY EMBED                              */
/* ============================================ */
.calendly-container {
    max-width: 660px;
    margin: 0 auto;
    padding-top: 12px;
}

.calendly-container .cta-sub {
    margin-top: 0;
    margin-bottom: 16px;
}

.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ============================================ */
/* PROOF BAR                                    */
/* ============================================ */
.proof-bar {
    padding: 44px 0;
    background: var(--black-rich);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-bar__item {
    text-align: center;
}

.proof-bar__number {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-bright) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.proof-bar__label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.proof-bar__divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================ */
/* VALUE PROPS                                  */
/* ============================================ */
.value-props {
    padding: 100px 0;
}

.value-props__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.08);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--purple-bright);
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================ */
/* PAIN SECTION                                 */
/* ============================================ */
.pain-section {
    padding: 100px 0;
    background: var(--black-rich);
}

.pain-list {
    max-width: 780px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pain-item {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.pain-item:first-child {
    border-top: 1px solid var(--border);
}

.pain-item__number {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-bright);
    opacity: 0.6;
    flex-shrink: 0;
    padding-top: 2px;
}

.pain-item__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.pain-item__content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================ */
/* PROBLEM SECTION                              */
/* ============================================ */
.problem-section {
    padding: 100px 0;
    text-align: center;
}

.problem-content {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
}

.problem-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-callout {
    background: var(--purple-subtle);
    border-left: 3px solid var(--purple);
    padding: 28px 32px;
    border-radius: 0 16px 16px 0;
    margin: 36px 0;
}

.problem-callout p {
    color: var(--white);
    margin-bottom: 8px;
}

.problem-callout p:last-child {
    margin-bottom: 0;
    color: var(--gray);
}

/* ============================================ */
/* FEATURES GRID                                */
/* ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--black-rich);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.feature-card {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.feature-card__check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(77, 255, 154, 0.15) 0%, rgba(77, 255, 154, 0.05) 100%);
    border: 1px solid rgba(77, 255, 154, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================ */
/* COMPARISON TABLE                             */
/* ============================================ */
.comparison-section {
    padding: 100px 0;
    text-align: center;
}

.comparison-table {
    max-width: 860px;
    margin: 56px auto 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-surface);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--black-rich);
    border-bottom: 1px solid var(--border);
}

.comparison-header__label {
    padding: 20px 24px;
}

.comparison-header__col {
    padding: 20px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.comparison-header__col--them {
    color: var(--gray-dark);
}

.comparison-header__col--fox {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 100%);
    color: var(--purple-bright);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

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

.comparison-row__label {
    padding: 20px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
}

.comparison-row__them {
    padding: 20px 24px;
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.6;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.comparison-row__fox {
    padding: 20px 24px;
    font-size: 0.88rem;
    color: var(--white-dim);
    line-height: 1.6;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-left: 1px solid var(--border);
}

/* ============================================ */
/* AUTHORITY — COMPETITOR ENDORSEMENTS          */
/* ============================================ */
.authority-section {
    padding: 100px 0;
    text-align: center;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.authority-card {
    background: var(--dark-surface);
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.authority-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(124, 58, 237, 0.1);
    transform: translateY(-4px);
}

.authority-card__video {
    position: relative;
}

.authority-card__body {
    padding: 20px 24px;
    text-align: left;
}

.authority-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.authority-card__body p {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* ============================================ */
/* TESTIMONIALS                                 */
/* ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--black-rich);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin: 56px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--dark-surface);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-card__video {
    position: relative;
}

.testimonial-card__body {
    padding: 24px;
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.testimonial-card__quote {
    font-size: 0.92rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-card__result {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card__metric {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green);
}

.testimonial-card__time {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* ============================================ */
/* PROOF TICKER                                */
/* ============================================ */
.proof-ticker {
    padding: 100px 0 100px;
    overflow: hidden;
}

.proof-ticker .section-headline {
    margin-bottom: 48px;
}

.proof-ticker__wrapper {
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.proof-ticker__wrapper:active {
    cursor: grabbing;
}

.proof-ticker__track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.proof-ticker__item {
    flex-shrink: 0;
    width: 260px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.proof-ticker__item:hover {
    border-color: var(--border-hover);
}

.proof-ticker__item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

/* Placeholder styling — remove when adding real screenshots */
.proof-ticker__placeholder {
    width: 260px;
    height: 340px;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-weight: 600;
}

/* ============================================ */
/* PROOF LIGHTBOX                              */
/* ============================================ */
.proof-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.proof-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.proof-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.proof-lightbox__close:hover {
    opacity: 1;
}

.proof-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .proof-ticker {
        padding: 70px 0;
    }

    .proof-ticker__item {
        width: 220px;
    }

    .proof-ticker__placeholder {
        width: 220px;
        height: 290px;
    }
}

@media (max-width: 480px) {
    .proof-ticker__item {
        width: 200px;
    }

    .proof-ticker__placeholder {
        width: 200px;
        height: 260px;
    }
}

/* ============================================ */
/* STORY SECTION                                */
/* ============================================ */
.story-section {
    padding: 100px 0;
    text-align: center;
}

.story-content {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-escalation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 44px 0;
    flex-wrap: wrap;
}

.story-month {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 22px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray);
    min-width: 105px;
    transition: all 0.3s ease;
}

.story-month span {
    display: block;
    font-family: var(--font);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.story-month.active {
    border-color: var(--purple);
    color: var(--purple-bright);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.03) 100%);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

.story-month.active span {
    color: var(--purple-bright);
    opacity: 0.7;
}

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--black-rich);
}

.faq-list {
    max-width: 720px;
    margin: 56px auto 0;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--purple-bright);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--gray-dark);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--purple-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 26px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================ */
/* FINAL CTA                                    */
/* ============================================ */
.final-cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta__sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.final-cta__note {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-top: 18px;
}

/* ============================================ */
/* FADE-IN ANIMATION                            */
/* ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE — TABLET                          */
/* ============================================ */
@media (max-width: 960px) {
    .value-props__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .authority-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-header__col,
    .comparison-row__label,
    .comparison-row__them,
    .comparison-row__fox {
        padding: 16px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================ */
/* RESPONSIVE — MOBILE                          */
/* ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
    }

    .hero__headline {
        font-size: clamp(2.2rem, 8.5vw, 3.2rem);
        white-space: normal;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline;
    }

    .hero__sub {
        font-size: 1rem;
    }

    .proof-bar__grid {
        gap: 24px;
    }

    .proof-bar__divider {
        display: none;
    }

    .proof-bar__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-bar__number {
        font-size: 1.5rem;
    }

    .value-props,
    .pain-section,
    .problem-section,
    .features-section,
    .comparison-section,
    .authority-section,
    .testimonials-section,
    .story-section,
    .faq-section {
        padding: 70px 0;
    }

    .calendly-inline-widget {
        height: 700px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pain-item {
        flex-direction: column;
        gap: 12px;
    }

    .story-escalation {
        gap: 8px;
    }

    .story-month {
        min-width: 85px;
        padding: 14px 16px;
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 18px 36px;
        width: 100%;
        max-width: 400px;
    }

    .cta-button--large {
        font-size: 1.1rem;
        padding: 20px 40px;
    }

    .final-cta {
        padding: 90px 0;
    }

    .section-headline {
        font-size: 1.5rem;
    }

    /* Comparison table: stack on mobile */
    .comparison-table {
        border: none;
        background: none;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        background: var(--dark-surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .comparison-row__label {
        background: var(--black-rich);
        border-bottom: 1px solid var(--border);
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    .comparison-row__them {
        border-left: none;
        padding: 14px 20px;
        text-align: left;
        justify-content: flex-start;
        font-size: 0.85rem;
    }

    .comparison-row__them::before {
        content: '✗ ';
        color: var(--gray-dark);
        margin-right: 6px;
    }

    .comparison-row__fox {
        border-left: none;
        padding: 14px 20px;
        text-align: left;
        justify-content: flex-start;
        border-top: 1px solid var(--border);
        font-size: 0.85rem;
    }

    .comparison-row__fox::before {
        content: '✓ ';
        color: var(--green);
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: clamp(1.9rem, 7.5vw, 2.7rem);
    }

    .proof-bar__number {
        font-size: 1.3rem;
    }

    .story-escalation {
        flex-direction: column;
        align-items: center;
    }

    .story-month {
        width: 100%;
        max-width: 200px;
    }

    .section-headline {
        font-size: 1.3rem;
    }
}

/* ============================================ */
/* CONFIRMATION PAGE                            */
/* ============================================ */

/* --- Confirmed Hero --- */
.confirmed-hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmed-hero__bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, rgba(124, 58, 237, 0.06) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.confirmed-hero .container {
    position: relative;
    z-index: 1;
}

.confirmed-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(77, 255, 154, 0.12) 0%, rgba(77, 255, 154, 0.04) 100%);
    border: 1px solid rgba(77, 255, 154, 0.25);
    border-radius: 100px;
    padding: 10px 24px;
    margin-bottom: 32px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.confirmed-badge--warning {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.15) 0%, rgba(255, 149, 0, 0.08) 100%);
    border: 1px solid rgba(255, 59, 48, 0.35);
    color: #ff3b30;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(255, 59, 48, 0.15); }
}

.confirmed-badge svg {
    flex-shrink: 0;
}

.confirmed-hero__headline {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.confirmed-hero__sub {
    font-size: 0.85rem;
    color: var(--gray-dark);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* --- Do This Right Now Actions --- */
.confirmed-actions__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.confirmed-action {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.confirmed-action--primary {
    border-color: rgba(255, 204, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.06) 0%, var(--dark-surface) 100%);
}

.confirmed-action__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid var(--purple-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-bright);
    flex-shrink: 0;
}

.confirmed-action--subtle {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.confirmed-action--primary .confirmed-action__icon {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.18) 0%, rgba(255, 204, 0, 0.06) 100%);
    border-color: rgba(255, 204, 0, 0.35);
    color: #ffcc00;
}

/* Vibrate animation for phone icon */
.confirmed-action__icon--vibrate {
    animation: vibrate 3s ease-in-out infinite;
}

@keyframes vibrate {
    0%, 82% { transform: rotate(0deg); }
    84% { transform: rotate(-3deg); }
    86% { transform: rotate(3deg); }
    88% { transform: rotate(-3deg); }
    90% { transform: rotate(3deg); }
    92% { transform: rotate(-2deg); }
    94% { transform: rotate(2deg); }
    96% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Bounce animation for email icon */
.confirmed-action__icon--bounce {
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 75%, 100% { transform: translateY(0); }
    80% { transform: translateY(-6px); }
    85% { transform: translateY(0); }
    90% { transform: translateY(-3px); }
    95% { transform: translateY(0); }
}

.confirmed-action__content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.confirmed-action__content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

.confirmed-action__content strong {
    color: var(--white);
}

/* --- Main Confirmation Video --- */
.confirmed-video-section {
    padding: 40px 0 60px;
}

.confirmed-main-video {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--purple-border);
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

/* --- Video Placeholder --- */
.video-placeholder {
    background: var(--dark-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    text-align: center;
    gap: 16px;
}

.video-placeholder--sm {
    padding: 48px 24px;
}

.video-placeholder__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid var(--purple-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-bright);
}

.video-placeholder--sm .video-placeholder__icon {
    width: 56px;
    height: 56px;
}

.video-placeholder__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.video-placeholder__sub {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 480px;
    line-height: 1.7;
}

/* --- Call Details Bar --- */
.confirmed-details-bar {
    padding: 44px 0;
    background: var(--black-rich);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.confirmed-details__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.confirmed-details__item {
    text-align: center;
}

.confirmed-details__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-bright);
    margin-bottom: 8px;
}

.confirmed-details__value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.confirmed-details__divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Breakout Videos Grid --- */
.breakout-section {
    padding: 100px 0;
}

.breakout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.breakout-card {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.breakout-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 40px rgba(124, 58, 237, 0.08);
}

.breakout-card__video {
    position: relative;
}

.breakout-card__body {
    padding: 24px;
}

.breakout-card__number {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-bright);
    opacity: 0.5;
    margin-bottom: 10px;
}

.breakout-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.breakout-card__body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- Confirmed Testimonials --- */
.confirmed-testimonials {
    padding: 100px 0;
    background: var(--black-rich);
    text-align: center;
}

.confirmed-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tier badge on each testimonial card */
.testimonial-card__tier {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 100px;
    padding: 5px 14px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.confirmed-testimonials .testimonial-card {
    position: relative;
}

.testimonial-card__tier--green {
    background: rgba(77, 255, 154, 0.15);
    border: 1px solid rgba(77, 255, 154, 0.25);
    color: var(--green);
}

.testimonial-card__tier--purple {
    background: var(--purple-subtle);
    border: 1px solid var(--purple-border);
    color: var(--purple-bright);
}

.testimonial-card__tier--white {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray);
}

/* --- Prep Section --- */
.prep-section {
    padding: 100px 0;
}

.prep-list {
    max-width: 680px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prep-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.prep-item:first-child {
    border-top: 1px solid var(--border);
}

.prep-item__check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(77, 255, 154, 0.15) 0%, rgba(77, 255, 154, 0.05) 100%);
    border: 1px solid rgba(77, 255, 154, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.prep-item__content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.prep-item__content p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

/* --- Closing Section --- */
.confirmed-closing {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmed-closing::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.confirmed-closing .container {
    position: relative;
    z-index: 1;
}

.confirmed-closing__sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.confirmed-closing__note {
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* --- Bottom Reminder --- */
.confirmed-bottom-reminder {
    padding: 60px 0 80px;
    border-top: 1px solid var(--border);
}

/* ============================================ */
/* CONFIRMATION PAGE — RESPONSIVE               */
/* ============================================ */
@media (max-width: 960px) {
    .breakout-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .confirmed-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .confirmed-hero {
        padding: 70px 0 40px;
    }

    .confirmed-hero__headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .confirmed-details__grid {
        flex-direction: column;
        gap: 24px;
    }

    .confirmed-details__divider {
        width: 60px;
        height: 1px;
    }

    .breakout-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .breakout-section,
    .confirmed-testimonials,
    .prep-section {
        padding: 70px 0;
    }

    .confirmed-closing {
        padding: 90px 0;
    }

    .prep-item {
        flex-direction: column;
        gap: 12px;
    }

    .video-placeholder {
        padding: 56px 24px;
    }
}

@media (max-width: 480px) {
    .confirmed-hero__headline {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .confirmed-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .video-placeholder--sm {
        padding: 36px 16px;
    }
}
