/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --bg-primary: #0B0F14;
    /* Deep Black */
    --bg-surface: #1A1F26;
    /* Dark Surface */
    --accent-cyan: #00F5D4;
    /* Electric Cyan */
    --bg-dark: #0B0F14;
    /* Alias for deep black */
    --brand-green: #0F3D2E;
    --text-primary: #E6EDF3;
    --text-muted: #9AA4AF;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;
    --line-height: 1.6;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* ========================================
   BACKGROUND GLOW BLOBS
   ======================================== */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
    top: -300px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 60%);
    bottom: -250px;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

/* Ensure content is above background blobs */
.header,
section,
.footer,
.sticky-cta {
    position: relative;
    z-index: 1;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* =========================================
   TIMBER FLOW SYSTEM ARCHITECT THEME CSS
   ========================================= */

/* --- 1. BLUEPRINT GRID PATTERN --- */
.tf-blueprint-grid {
    background-color: var(--bg-surface) !important;
    background-image:
        linear-gradient(rgba(0, 245, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 212, 0.03) 1px, transparent 1px) !important;
    background-size: 40px 40px;
    background-position: center center;
}

/* --- 2. CYAN AURORA GLOW --- */
.tf-cyan-glow {
    position: relative;
    z-index: 1;
}

.tf-cyan-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, rgba(11, 15, 20, 0) 70%);
    z-index: -1;
    filter: blur(60px);
    opacity: 0.8;
    pointer-events: none;
}

/* --- 3. GLASSMORPHISM CARDS --- */
.tf-glass-card {
    background: rgba(26, 31, 38, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 245, 212, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border-radius: 16px !important;
    transition: all 0.3s ease;
}

.tf-glass-card:hover {
    border-color: rgba(0, 245, 212, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 245, 212, 0.1);
    transform: translateY(-2px);
}

/* --- 4. ALTERNATE SECTION BG --- */
.tf-bg-surface {
    background-color: var(--bg-surface) !important;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(230, 237, 243, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 15, 20, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    /* Increased from -0.02em to 0.15em for architectural feel */
    color: var(--text-primary);
    text-transform: uppercase;
}

.beta-badge {
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--brand-green), rgba(0, 245, 212, 0.1));
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 20px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   HERO SECTION WITH VSL
   ======================================== */
.hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.hero-proof {
    font-size: var(--font-size-sm);
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-xl);
    font-weight: 600;
}

.hero .video-motivation-banner {
    margin-bottom: var(--spacing-xl);
}

.hero .video-container {
    margin-bottom: var(--spacing-xl);
}

.hero-cta-bottom {
    display: flex;
    justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #00D4B8);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 245, 212, 0.4);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid rgba(0, 245, 212, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 245, 212, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.link-secondary {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.link-secondary:hover {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
}

/* ========================================
   OFFER FRAMING
   ======================================== */
.offer-framing {
    background: linear-gradient(180deg, transparent, rgba(26, 31, 38, 0.5), transparent);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.infrastructure-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(230, 237, 243, 0.1);
    transition: var(--transition);
    height: 100%;
}

.infrastructure-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 212, 0.4);
    box-shadow: 0 10px 40px -10px rgba(0, 245, 212, 0.15);
}

.offer-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(15, 61, 46, 0.3));
    border-radius: 12px;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.infrastructure-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.infrastructure-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Horizontal Status Bar */
.beta-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(90deg,
            rgba(0, 245, 212, 0.05) 0%,
            rgba(0, 245, 212, 0.1) 50%,
            rgba(0, 245, 212, 0.05) 100%);
    border-top: 1px solid rgba(0, 245, 212, 0.2);
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
    width: 100%;
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.beta-status-bar p {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ========================================
   VSL SECTION
   ======================================== */
.vsl-section {
    background: var(--bg-surface);
}

/* Video Motivation Banner */
.video-motivation-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(15, 61, 46, 0.3));
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(0, 245, 212, 0.2),
        0 0 60px rgba(0, 245, 212, 0.1),
        inset 0 0 20px rgba(0, 245, 212, 0.05);
}

.banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-cyan), #00D4B8);
    border-radius: 50%;
    color: var(--bg-primary);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 245, 212, 0);
    }
}

.banner-content {
    flex-grow: 1;
}

.banner-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.banner-subtitle {
    font-size: 0.875rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.banner-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .video-motivation-banner {
        flex-direction: row;
        text-align: left;
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .banner-icon {
        width: 32px;
        height: 32px;
    }

    .banner-icon svg {
        width: 16px;
        height: 16px;
    }

    .banner-title {
        font-size: 1rem;
    }

    .banner-subtitle {
        font-size: 0.8125rem;
    }
}

.vsl-label {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.video-container {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    aspect-ratio: 16 / 9;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(230, 237, 243, 0.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.2), rgba(0, 245, 212, 0.05));
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.vsl-cta {
    text-align: center;
}

.vsl-note {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ========================================
   PROBLEM SOLUTION
   ======================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.problem-card {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid rgba(230, 237, 243, 0.1);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 212, 0.3);
}

.problem-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-cyan), #00D4B8);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.solution-line {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(230, 237, 243, 0.1);
}

.column-old {
    border-color: rgba(239, 68, 68, 0.2);
}

.column-new {
    border-color: var(--accent-cyan);
    background: linear-gradient(180deg, rgba(0, 245, 212, 0.05) 0%, var(--bg-surface) 100%);
    position: relative;
    box-shadow: 0 10px 40px -10px rgba(0, 245, 212, 0.15);
}

.column-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(230, 237, 243, 0.1);
}

.column-header h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.column-old .column-header h3 {
    color: #ef4444;
    /* Red for bad/old way */
}

.column-new .column-header h3 {
    color: var(--accent-cyan);
}

.column-sub {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-item strong {
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-left: 28px;
    /* Indent under icon */
}

.column-old .comparison-item strong::before {
    content: '✕';
    color: #ef4444;
    font-weight: 900;
    width: 20px;
}

.column-new .comparison-item strong::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 900;
    width: 20px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   PRICING
   ======================================== */
.pricing {
    background: linear-gradient(180deg, transparent, rgba(26, 31, 38, 0.5), transparent);
    position: relative;
}

.pricing-grid {
    display: none;
    /* Hidden by default, shown by JavaScript after unlock */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pricing-grid.unlocked {
    display: grid;
    /* Show when unlocked */
    opacity: 1;
}

/* ========================================
   PRICING LOCKED STATE
   ======================================== */
.pricing-locked {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(26, 31, 38, 0.8), rgba(15, 61, 46, 0.2));
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.pricing-locked::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.1), transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.lock-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(15, 61, 46, 0.3));
    border-radius: 50%;
    color: var(--accent-cyan);
    position: relative;
    z-index: 1;
}

.lock-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.lock-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.countdown-timer {
    position: relative;
    z-index: 1;
}

.timer-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    font-variant-numeric: tabular-nums;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 30px rgba(0, 245, 212, 0.5);
}

.timer-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Unlock Animation */
@keyframes unlockSlide {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.pricing-locked.unlocking {
    animation: unlockSlide 0.8s ease forwards;
}

.pricing-card {
    padding: var(--spacing-xl);
    background: var(--bg-surface);
    border: 1px solid rgba(230, 237, 243, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow:
        0 12px 40px rgba(0, 245, 212, 0.2),
        0 0 60px rgba(0, 245, 212, 0.15),
        inset 0 0 20px rgba(0, 245, 212, 0.05);
}

.pricing-card-popular {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05), var(--bg-surface));
    box-shadow:
        0 0 40px rgba(0, 245, 212, 0.2),
        0 0 80px rgba(0, 245, 212, 0.1),
        inset 0 0 30px rgba(0, 245, 212, 0.05);
}

.pricing-card-popular:hover {
    box-shadow:
        0 12px 50px rgba(0, 245, 212, 0.3),
        0 0 100px rgba(0, 245, 212, 0.2),
        inset 0 0 40px rgba(0, 245, 212, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), #00D4B8);
    color: var(--bg-primary);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-hormozi {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.03), var(--bg-surface));
    padding: var(--spacing-2xl);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 245, 212, 0.1);
}

.card-header-setup {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.total-value-anchor {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.strikethrough {
    text-decoration: line-through;
    color: rgba(230, 237, 243, 0.4);
}

.setup-fee-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.setup-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.setup-price-bold {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 30px rgba(230, 237, 243, 0.2);
}

.pricing-divider {
    height: 1px;
    background: rgba(230, 237, 243, 0.1);
    margin: var(--spacing-xl) 0;
}

.pricing-section-block {
    margin-bottom: var(--spacing-xl);
}

.pricing-sub-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-highlight {
    font-size: 1rem;
    color: var(--accent-cyan);
    background: rgba(0, 245, 212, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.value-stack-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-stack-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.value-stack-list li strong {
    color: #99f6e4;
    /* Light teal/cyan for titles */
    display: block;
    margin-bottom: 2px;
}

.value-stack-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

.item-value {
    color: var(--accent-cyan);
    font-weight: 600;
}

.monthly-anchor {
    background: rgba(230, 237, 243, 0.02);
    padding: var(--spacing-xl);
    border-radius: 12px;
    border: 1px solid rgba(230, 237, 243, 0.05);
}

.monthly-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.monthly-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.monthly-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.monthly-price-display {
    text-align: right;
}

.monthly-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.monthly-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.guarantee-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0F3D2E 0%, #061f17 100%);
    color: #00F5D4;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--accent-cyan);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.15);
}

.badge-icon svg {
    filter: drop-shadow(0 0 5px var(--accent-cyan));
}

.badge-icon {
    font-size: 1rem;
}

.guarantee-box-hormozi {
    border-left: 3px solid var(--accent-cyan);
    padding-left: var(--spacing-lg);
}

.guarantee-highlight {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.guarantee-details {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-cta-container {
    margin-top: var(--spacing-xl);
}

.btn-full {
    width: 100%;
}

@media (max-width: 640px) {
    .monthly-fee-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .monthly-price-display {
        text-align: left;
    }

    .pricing-card-hormozi {
        padding: var(--spacing-xl);
    }
}

.pricing-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   BETA TRUST
   ======================================== */
.trust-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: var(--bg-surface);
    border-radius: 8px;
    transition: var(--transition);
}

.trust-list li:hover {
    background: rgba(0, 245, 212, 0.05);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-cyan), #00D4B8);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.trust-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background: var(--bg-primary);
    border: 1px solid rgba(230, 237, 243, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 245, 212, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, rgba(15, 61, 46, 0.3), rgba(0, 245, 212, 0.05));
    text-align: center;
}

.final-cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(230, 237, 243, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-company {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-disclaimer,
.footer-contact {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.footer-contact a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ========================================
   STICKY CTA (Mobile)
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(180deg, transparent, var(--bg-primary) 20%);
    backdrop-filter: blur(10px);
    z-index: 99;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta .btn {
    width: 100%;
}

@media (min-width: 769px) {
    .sticky-cta {
        display: none;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 3rem;
    }

    .hero {
        padding: var(--spacing-xl) 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   EXIT INTENT POPUP
   ======================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-md);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: var(--bg-surface);
    width: 100%;
    max-width: 950px;
    border-radius: 20px;
    position: relative;
    border: 2px solid var(--accent-cyan);
    padding: var(--spacing-xl);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 50px rgba(0, 245, 212, 0.15);
}

.popup-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.popup-left-column {
    text-align: left;
}

@media (max-width: 768px) {
    .popup-content-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .popup-left-column {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }

    .popup-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.popup-close:hover {
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.popup-headline {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.popup-headline span {
    text-decoration: underline;
    text-decoration-color: var(--accent-cyan);
    text-underline-offset: 4px;
}

.popup-subheadline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
}

.popup-subheadline strong {
    color: var(--accent-cyan);
}

.audit-list {
    background: rgba(11, 15, 20, 0.4);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(230, 237, 243, 0.05);
}

.audit-list-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    display: block;
}

.audit-item {
    display: flex;
    gap: 12px;
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.audit-item:last-child {
    margin-bottom: 0;
}

.audit-check {
    width: 20px;
    height: 20px;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
    font-size: 10px;
}

.audit-item strong {
    color: var(--text-primary);
}

.popup-footer-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
}

@media (max-width: 550px) {
    .popup-container {
        padding: var(--spacing-xl);
        border-radius: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Fix for mobile overflow in pricing card */
@media (max-width: 480px) {
    .pricing-card-hormozi {
        padding: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .setup-price-bold {
        font-size: 3rem;
    }

    .pricing-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        overflow-x: hidden;
    }
}