/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
   :root {
    /* Colors - Dark Theme + Orange Accent */
    --color-bg: #09090b;
    --color-bg-elevated: #131316;
    --color-bg-card: #18181b;
    --color-text: #fafafa;
    --color-text-muted: #a1a1aa;
    --color-text-subtle: #71717a;
    --color-accent: #f59e0b;
    --color-accent-hover: #fbbf24;
    --color-accent-dark: #d97706;
    --color-border: #27272a;
    --color-border-light: #3f3f46;
    --color-success: #10b981;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 7rem);
    --container-max: 900px;
    --container-wide: 1340px;
    --container-padding: clamp(1.5rem, 5vw, 2rem);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Shadows */
    --shadow-glow: 0 0 60px rgba(245, 158, 11, 0.15);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

strong {
    font-weight: 600;
    color: var(--color-text);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   HERO SECTION - CLEAN CENTERED (DARK)
   ======================================== */
.hero {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    position: relative;
}

/* Background glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 158, 11, 0.08), transparent);
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

/* Logo */
.hero__logo {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

.hero__logo-image {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    margin: 0 auto;
}

/* Header: Qualifier + Headlines */
.hero__header {
    margin-bottom: 1.5rem;
}

.hero__qualifier {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    padding: 0.4rem 0.875rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 100px;
    text-align: left;
    line-height: 1.4;
}

.hero__qualifier-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 0.875rem;
}

.hero__headline-sub {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1.3;
}

/* VSL - Centered & Dominant */
.hero__vsl {
    margin-bottom: 1.5rem;
}

.hero__vsl-wrapper {
    aspect-ratio: 16 / 9;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.hero__vsl-wrapper wistia-player {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__vsl-wrapper:hover {
    border-color: var(--color-accent);
    transform: scale(1.01);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(245, 158, 11, 0.2);
}

.hero__vsl-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.hero__vsl-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
    transition: transform var(--transition-base);
}

.hero__vsl-wrapper:hover .hero__vsl-play {
    transform: scale(1.1);
}

.hero__vsl-play-icon {
    width: 32px;
    height: 32px;
    color: var(--color-bg);
    margin-left: 4px;
}

.hero__vsl-thumbnail-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    max-width: 400px;
    line-height: 1.3;
}

.hero__vsl-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.hero__vsl-duration-icon {
    width: 14px;
    height: 14px;
}

.hero__vsl-microcopy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.hero__vsl-microcopy .step-label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-light);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    margin-right: 0.375rem;
    transition: all var(--transition-fast);
}

.hero__microcopy-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Primary CTA */
.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero__cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

.hero__note-icon {
    width: 14px;
    height: 14px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* ========================================
   HERO RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
    .hero {
        padding: 1.5rem 0 2.5rem;
        min-height: auto;
    }
    
    .hero__header {
        margin-bottom: 2rem;
    }
    
    .hero__qualifier {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    .hero__vsl-play {
        width: 64px;
        height: 64px;
    }
    
    .hero__vsl-play-icon {
        width: 26px;
        height: 26px;
    }
}

/* ========================================
   OFFER SECTION - Below Hero (DARK)
   ======================================== */
.offer {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.offer__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Offer Box */
.offer__box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer__header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.offer__icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.offer__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

.offer__desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.offer__desc strong {
    color: var(--color-text);
}

/* Stats Row */
.offer__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.offer__stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.offer__stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.offer__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.offer__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Guarantee */
.offer__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.offer__guarantee-icon {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* WITHOUT / EVEN IF */
.offer__objections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.offer__objection-col {
    padding: 1.5rem;
    background: var(--color-bg-card);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.offer__objection-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer__label-icon {
    width: 18px;
    height: 18px;
}

.offer__label-icon--red {
    color: #ef4444;
}

.offer__label-icon--green {
    color: var(--color-success);
}

.offer__objection-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.offer__objection-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.offer__list-icon {
    width: 16px;
    height: 16px;
    color: var(--color-text-subtle);
    flex-shrink: 0;
    margin-top: 3px;
}

.offer__list-icon--green {
    color: var(--color-success);
}

/* ========================================
   OFFER RESPONSIVE
   ======================================== */
@media (max-width: 700px) {
    .offer__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .offer__stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .offer__objections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .offer__box {
        padding: 1.5rem;
    }
    
    .offer__objection-col {
        padding: 1.25rem;
    }
}

/* ========================================
   STICKY CTA BAR
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border-light);
    padding: 0.875rem 0;
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-cta__info {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.sticky-cta__highlight {
    font-weight: 700;
    color: var(--color-accent);
}

@media (max-width: 600px) {
    .sticky-cta__container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sticky-cta__info {
        font-size: 0.8125rem;
    }
    
    .sticky-cta .btn {
        width: 100%;
    }
}

/* ========================================
   METHOD/SYSTEM SECTION
   ======================================== */
.method {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.method__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.method__headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
}

.method__intro {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Method Brand Panel - Prominent Featured Panel */
.method__brand {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(39, 39, 42, 0.8) 100%);
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.method__brand::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.method__brand:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(245, 158, 11, 0.25);
    border-color: var(--color-accent-hover);
}

.method__brand-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
}

.method__icon {
    width: 40px;
    height: 40px;
    color: var(--color-bg);
}

.method__brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.method__brand-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.method__brand-tagline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--color-accent);
    font-weight: 600;
    line-height: 1.3;
}

.method__brand-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.method__badge-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .method__brand {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .method__brand-icon {
        width: 70px;
        height: 70px;
    }

    .method__icon {
        width: 36px;
        height: 36px;
    }

    .method__brand-badge {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .method__brand {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .method__brand-icon {
        width: 60px;
        height: 60px;
    }

    .method__icon {
        width: 32px;
        height: 32px;
    }

    .method__brand-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
}

.method__phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.method__phase {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-base);
}

.method__phase:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.method__phase-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method__phase-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.method__phase-title-wrapper {
    flex: 1;
}

.method__phase-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.method__phase-timeline {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 600;
}

.method__phase-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.method__why,
.method__result {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.method__result {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .method__phases {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ABOUT AUTHOR SECTION
   ======================================== */
.author {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.author__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.author__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.author__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author__label-icon {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.author__headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    line-height: 1.2;
}

.author__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.author__photo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.author__photo {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-border-light);
    box-shadow: var(--shadow-xl);
}

.author__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.author__story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.author__text {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.author__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.author__stat {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}

.author__stat:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.author__stat-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.author__stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author__stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.author__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.author__credentials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--color-text-subtle);
    margin-top: 1rem;
}

.author__credentials-icon {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .author__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .author__photo-wrapper {
        position: relative;
        top: 0;
        align-items: center;
    }

    .author__photo {
        width: 250px;
        height: 250px;
    }
}

/* ========================================
   STATS SECTION - BENTO GRID (DARK)
   ======================================== */
.stats {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

.stats__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.stats__headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.stats__subheadline {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Bento Grid Layout */
.stats__bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

/* Card Base */
.stats__card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.stats__card:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-lg);
}

/* Card Sizes */
.stats__card--large {
    grid-column: 1 / span 4;
    grid-row: 1;
}

.stats__card--medium:nth-of-type(2) {
    grid-column: 5 / span 2;
    grid-row: 1;
}

.stats__card--medium:nth-of-type(3) {
    grid-column: 1 / span 3;
    grid-row: 2;
}

.stats__card--small {
    grid-column: 4 / span 3;
    grid-row: 2;
    flex-direction: column;
}

/* Card Content */
.stats__card-content {
    padding: 1rem 1.5rem 1.5rem;
}

.stats__card--small .stats__card-content {
    padding: 1rem 1.5rem 1.5rem;
}

.stats__value-line {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.stats__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stats__label-inline {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
}

.stats__desc {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

/* ========================================
   PANEL 4: Retention Rate - Circular Progress
   ======================================== */
.stats__visual--retention {
    background: linear-gradient(180deg, #0a0d14 0%, #0f1419 100%);
    height: 180px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__retention-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats__retention-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.stats__retention-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.stats__retention-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 8;
}

.stats__retention-progress {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    animation: fillProgress 2s ease-out forwards;
}

@keyframes fillProgress {
    to {
        stroke-dashoffset: 37.22;
    }
}

.stats__retention-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    animation: heartbeat 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes heartbeat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    10% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    20% {
        transform: translate(-50%, -50%) scale(1);
    }
    30% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    40% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ========================================
   PANEL 1: Scrolling Boxes Animation
   ======================================== */
.stats__visual--scroll {
    background: linear-gradient(180deg, #0a0d14 0%, #0f1419 100%);
    padding: 1rem;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.stats__scroll-track {
    display: flex;
    gap: 0.75rem;
    animation: scrollLeft 25s linear infinite;
    width: max-content;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stats__scroll-item {
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 140px;
    height: calc(180px - 2rem);
    justify-content: center;
}

.stats__scroll-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.5);
}

.stats__scroll-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.stats__scroll-badge {
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    width: fit-content;
}

/* ========================================
   PANEL 2: Concentric Circles
   ======================================== */
.stats__visual--circles {
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    height: 180px;
    position: relative;
    overflow: hidden;
}

.stats__circles-wrapper {
    position: absolute;
    bottom: -60px;
    right: -60px;
}

/* Circle sizes: 1.5x scale progression */
.stats__circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
}

.stats__circle--1 {
    width: 252px;
    height: 252px;
    bottom: 0;
    right: 0;
    background: var(--color-bg-elevated);
    padding-top: 12px;
}

.stats__circle--2 {
    width: 168px;
    height: 168px;
    bottom: 0;
    right: 0;
    background: #27272a;
    padding-top: 10px;
}

.stats__circle--3 {
    width: 112px;
    height: 112px;
    bottom: 0;
    right: 0;
    background: #3f3f46;
    padding-top: 8px;
}

.stats__circle--4 {
    width: 75px;
    height: 75px;
    bottom: 0;
    right: 0;
    background: #52525b;
    justify-content: center;
    padding-top: 0;
}

.stats__circle-week {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stats__circle-goal {
    font-size: 0.5625rem;
    color: var(--color-text-subtle);
}

.stats__circle--3 .stats__circle-week,
.stats__circle--4 .stats__circle-week {
    color: var(--color-text);
}

.stats__circle--3 .stats__circle-goal,
.stats__circle--4 .stats__circle-goal {
    color: var(--color-text-muted);
}

/* ========================================
   PANEL 3: Interactive Client Rows
   ======================================== */
.stats__visual--clients {
    background: var(--color-bg-elevated);
    height: 180px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

/* Blur overlay at top center */
.stats__clients-blur {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: rgba(19, 19, 22, 0.9);
    filter: blur(20px);
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.stats__clients-rows {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem;
    height: 100%;
    justify-content: center;
    transition: all var(--transition-slow);
}

.stats__clients-row {
    display: flex;
    gap: 0.625rem;
    transition: transform 0.4s ease;
}

/* Rows extend beyond container */
.stats__clients-row--top {
    margin-left: -20px;
    margin-right: -40px;
}

.stats__clients-row--bottom {
    margin-left: -40px;
    margin-right: -20px;
}

/* Hover interaction */
.stats__visual--clients:hover .stats__clients-row--top {
    transform: translateX(15px);
}

.stats__visual--clients:hover .stats__clients-row--bottom {
    transform: translateX(-15px);
}

.stats__client-card {
    flex-shrink: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.625rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
}

.stats__client-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-subtle);
    flex-shrink: 0;
}

.stats__client-badge {
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.stats__client-badge--alt {
    background: var(--color-accent);
    color: var(--color-bg);
}

.stats__client-label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* ========================================
   STATS RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .stats__bento {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats__card--large {
        grid-column: 1 / -1;
    }
    
    .stats__card--medium:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .stats__card--medium:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .stats__card--small {
        grid-column: 1 / -1;
        grid-row: 3;
    }
}

@media (max-width: 600px) {
    .stats__bento {
        grid-template-columns: 1fr;
    }

    .stats__card--large,
    .stats__card--medium:nth-of-type(2),
    .stats__card--medium:nth-of-type(3),
    .stats__card--small {
        grid-column: 1;
        grid-row: auto;
    }

    .stats__visual--scroll,
    .stats__visual--circles,
    .stats__visual--clients {
        height: 180px;
    }

    .stats__circles-wrapper {
        bottom: -50px;
        right: -50px;
        transform: scale(0.85);
    }

    .stats__client-card {
        min-width: 140px;
        padding: 0.5rem 0.75rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION (DARK)
   ======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.testimonials__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testimonials__headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials__subheadline {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonials__pattern {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

/* Card Design - Dark Theme */
.testimonial {
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--color-bg-card) 0%, rgba(39, 39, 42, 0.5) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all var(--transition-base);
}

.testimonial:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Header: Avatar + Info */
.testimonial__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-border-light);
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial__name {
    font-size: 1.0625rem;
    font-weight: 600;
    background: linear-gradient(89deg, #fff 1.16%, var(--color-accent) 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Divider */
.testimonial__divider {
    height: 1px;
    background: var(--color-border);
    margin: 0;
}

/* Quote Content */
.testimonial__content {
    flex: 1;
}

.testimonial__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.testimonial__quote strong {
    font-weight: 600;
    color: var(--color-text);
}

/* Result */
.testimonial__result {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial__result-label {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

.testimonial__result-value {
    font-size: 1.25rem;
    color: var(--color-text);
}

.testimonial__result-value strong {
    font-weight: 600;
    color: var(--color-accent);
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.25rem;
        gap: 1.25rem;
    }
}

/* ========================================
   BOOKING / CALENDLY SECTION (DARK)
   ======================================== */
.booking {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.booking__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.booking__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.booking__headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.booking__subheadline {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.booking__benefits {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.booking__benefits li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    color: var(--color-text);
}

.booking__check {
    color: var(--color-accent);
    font-weight: 700;
}

.booking__calendly {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
}

.booking__calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 480px;
    color: var(--color-text-muted);
}

.booking__calendly-note {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    margin-top: 0.5rem;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--color-bg);
}

.final-cta__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.final-cta__eyebrow {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    text-align: center;
}

.final-cta__note {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

/* ========================================
   FOOTER (DARK)
   ======================================== */
.footer {
    padding: 2.5rem 0 7.5rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.footer__container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.footer__disclaimer {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.footer__copyright {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .booking__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

/* Hero Section */
.thank-you-hero {
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    background: var(--color-bg);
    position: relative;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(16, 185, 129, 0.1), transparent);
    pointer-events: none;
}

.thank-you-hero__container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.thank-you-hero__logo {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
}

.thank-you-hero__logo-image {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    margin: 0 auto;
}

.thank-you-hero__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-hero__icon i {
    width: 40px;
    height: 40px;
    color: var(--color-success);
}

.thank-you-hero__headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.thank-you-hero__video {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 16 / 9;
}

.thank-you-hero__video wistia-player {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Body Content */
.thank-you-body {
    padding: clamp(2rem, 6vw, 4rem) 0;
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
}

.thank-you-body__container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Styles */
.thank-you-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.thank-you-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.thank-you-section__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.thank-you-section__icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.thank-you-section__intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.thank-you-section__note {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--color-border-light);
}

.thank-you-section__callout {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.thank-you-section__callout strong {
    color: var(--color-text);
}

.thank-you-section__highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 1.5rem;
}

.thank-you-section__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.thank-you-section__badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.thank-you-section__badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* List Styles */
.thank-you-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thank-you-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

.thank-you-list__check {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Preparation Items */
.thank-you-prep {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.thank-you-prep__item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: all var(--transition-base);
}

.thank-you-prep__item:hover {
    border-color: var(--color-border-light);
}

.thank-you-prep__number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-prep__content {
    flex: 1;
}

.thank-you-prep__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.thank-you-prep__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Cover Items */
.thank-you-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.thank-you-cover__item {
    padding: 1.25rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: all var(--transition-base);
}

.thank-you-cover__item:hover {
    border-color: var(--color-border-light);
}

.thank-you-cover__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.thank-you-cover__icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.thank-you-cover__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.thank-you-cover__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-left: 32px;
}

/* Links */
.thank-you-link {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.thank-you-link:hover {
    color: var(--color-accent-hover);
}

/* Footer */
.thank-you-footer {
    padding: clamp(2rem, 6vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.thank-you-footer__container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.thank-you-footer__questions {
    margin-bottom: 2rem;
}

.thank-you-footer__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.thank-you-footer__text {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.thank-you-footer__closing {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.thank-you-footer__signature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.thank-you-footer__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.thank-you-footer__role {
    font-size: 0.9375rem;
    color: var(--color-accent);
}

/* Thank You Page Responsive */
@media (max-width: 600px) {
    .thank-you-hero__icon {
        width: 64px;
        height: 64px;
    }

    .thank-you-hero__icon i {
        width: 32px;
        height: 32px;
    }

    .thank-you-prep__item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .thank-you-cover__desc {
        margin-left: 0;
    }

    .thank-you-section__badge {
        flex-direction: column;
        gap: 0.5rem;
    }
}