/* ==========================================================================
   HotFunnels - Premium Sales Funnel Styles
   A bold, dark theme with fiery accents and smooth animations
   ========================================================================== */

/* CSS Variables */
:root {
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-subtle: rgba(255, 255, 255, 0.4);
    
    /* Fiery orange gradient */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8F65 50%, #FFB088 100%);
    --gradient-fire: linear-gradient(135deg, #FF4D00 0%, #FF6B35 50%, #FF8F65 100%);
    --gradient-ember: linear-gradient(135deg, #FF6B35 0%, #E85D04 100%);
    
    /* Accent colors */
    --color-accent: #FF6B35;
    --color-accent-light: #FF8F65;
    --color-accent-glow: rgba(255, 107, 53, 0.5);
    
    /* Secondary purple accent */
    --color-secondary: #8B5CF6;
    --color-secondary-light: #A78BFA;
    
    /* Border and glass effect */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Animated Background
   ========================================================================== */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF6B35, #FF4D00);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF8F65, #FF6B35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.02);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-btn {
    background: var(--gradient-ember);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-accent-glow);
}

/* ==========================================================================
   Video Player Section
   ========================================================================== */

.video-player-section {
    padding: 100px 0 40px 0;
    background: var(--color-bg);
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--gradient-ember);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-5deg);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-subtle);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-subtle);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-fire);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px var(--color-accent-glow);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px var(--color-accent-glow);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Hero Visual */
.hero-visual {
    flex: 0.8;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.funnel-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.funnel-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 48px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    background: var(--glass-bg-hover);
    transform: scale(1.05);
}

.stage-icon {
    font-size: 24px;
}

.stage-1 {
    width: 280px;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.stage-2 {
    width: 220px;
    border-radius: 0;
    border-bottom: none;
}

.stage-3 {
    width: 160px;
    border-radius: 0 0 20px 20px;
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.funnel-connector {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid var(--border-subtle);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.problem-section {
    padding: var(--section-padding) 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   Solution Section
   ========================================================================== */

.solution-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
}

.solution-header {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.feature-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.feature-icon {
    font-size: 42px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process-section {
    padding: var(--section-padding) 0;
}

.process-timeline {
    max-width: 700px;
    margin: 60px auto 0;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(-30px);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-ember);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 10px 40px var(--color-accent-glow);
}

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-ember);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--color-text-subtle);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 32px;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-ember);
    color: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px var(--color-accent-glow);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 80px 60px 60px;
}

.pricing-left h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-tag {
    text-align: center;
    margin-bottom: 32px;
}

.price-old {
    display: block;
    font-size: 24px;
    color: var(--color-text-subtle);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    display: block;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 16px;
    color: var(--color-text-subtle);
    margin-top: 8px;
}

.checkout-form {
    width: 100%;
    max-width: 320px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--color-text-subtle);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.checkout-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-fire);
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    padding: 20px 32px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px var(--color-accent-glow);
}

.checkout-button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px var(--color-accent-glow);
}

.checkout-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.checkout-button:hover .btn-icon {
    transform: translateX(4px);
}

.checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-subtle);
}

.lock-icon {
    opacity: 0.6;
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 28px;
    max-width: 320px;
}

.guarantee-badge {
    font-size: 28px;
    flex-shrink: 0;
}

.guarantee p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.guarantee strong {
    color: #34D399;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.1) 50%, transparent 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-fire);
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 24px 48px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 50px var(--color-accent-glow);
}

.final-cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 70px var(--color-accent-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    font-size: 24px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
}

.footer-content p {
    color: var(--color-text-subtle);
    font-size: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-subtle);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-left h3 {
        text-align: center;
    }

    .pricing-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .video-player-section {
        padding: 90px 0 20px 0;
    }

    .video-wrapper {
        border-radius: 16px;
        margin: 0 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        text-align: center;
    }

    .funnel-graphic {
        transform: scale(0.85);
    }

    .pricing-content {
        padding: 60px 24px 40px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .step-number {
        margin: 0 auto;
    }

    .testimonials-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 20px;
    }

    .video-player-section {
        padding: 80px 0 20px 0;
    }

    .video-wrapper {
        margin: 0 12px;
        border-radius: 12px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-cta,
    .final-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 18px 32px;
    }

    .price-current {
        font-size: 56px;
    }

    .checkout-button {
        font-size: 16px;
        padding: 18px 24px;
    }

    .pricing-badge {
        font-size: 10px;
        padding: 6px 18px;
    }
}

/* ==========================================================================
   Animation Delays for Staggered Effects
   ========================================================================== */

.problem-card:nth-child(1) { transition-delay: 0s; }
.problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-card:nth-child(4) { transition-delay: 0.3s; }

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-item:nth-child(5) { transition-delay: 0.2s; }
.faq-item:nth-child(6) { transition-delay: 0.25s; }

