/* ===========================
   CSS Custom Properties
   =========================== */
:root {
    /* Colors - Dark Premium Theme */
    --bg-primary: #0a0a1a;
    --bg-secondary: #1a0a2e;
    --bg-tertiary: #16213e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6B46C1 0%, #2563EB 100%);
    --gradient-secondary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-orb: radial-gradient(circle, rgba(107, 70, 193, 0.4) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
    
    /* Accent Colors */
    --accent-purple: #6B46C1;
    --accent-blue: #2563EB;
    --accent-cyan: #06B6D4;
    --accent-pink: #EC4899;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(107, 70, 193, 0.6);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 26, 0.8);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-sub {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--accent-cyan);
    margin-left: 0.25rem;
}

.btn-header {
    padding: 0.625rem 1.5rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.375rem 3rem;
    font-size: 1.25rem;
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 60px rgba(107, 70, 193, 0.8);
}

.btn-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.orb-1 {
    background: var(--gradient-orb);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 100%);
    bottom: -200px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    background: var(--gradient-orb);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.orb-4 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
    bottom: -150px;
    right: 10%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    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(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.shield-icon svg {
    width: 250px;
    height: 250px;
    filter: drop-shadow(0 0 20px rgba(107, 70, 193, 0.5));
}

.threat-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    animation: indicator-pulse 3s ease-in-out infinite;
}

.indicator-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.indicator-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.indicator-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes indicator-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.indicator-dot.red {
    background: #EF4444;
    box-shadow: 0 0 8px #EF4444;
}

.indicator-dot.yellow {
    background: #F59E0B;
    box-shadow: 0 0 8px #F59E0B;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ===========================
   Animations
   =========================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Audience Section
   =========================== */
.audience {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 32px rgba(107, 70, 193, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.callout-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.callout-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.callout-content strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.callout-content p {
    color: var(--text-secondary);
}

/* ===========================
   Urgency Section
   =========================== */
.urgency {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.urgency-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.urgency-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.urgency-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.urgency-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.urgency-statement {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-statement p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.urgency-statement strong {
    color: var(--accent-cyan);
}

/* ===========================
   Outcomes Section
   =========================== */
.outcomes {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.outcome-card {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.outcome-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3);
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.outcome-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.outcome-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.bonus-box {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.bonus-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ===========================
   Format Section
   =========================== */
.format {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.5);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.subsection-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.difference-card {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-base);
}

.difference-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
}

.difference-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.difference-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.trust-check {
    color: var(--accent-cyan);
    font-size: 1.25rem;
}

/* ===========================
   Details Section
   =========================== */
.details {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.details-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.details-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 50px;
    font-weight: 600;
    color: #FCA5A5;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.details-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.875rem;
    color: var(--accent-cyan);
    font-weight: 400;
}

.includes-section {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2.5rem;
}

.includes-section h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.include-item {
    padding: 0.75rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    text-align: center;
}

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

.payment-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===========================
   Final CTA Section
   =========================== */
.final-cta {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-text {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.final-text p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.final-emphasis {
    font-size: 1.75rem !important;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin-top: 2rem !important;
}

.alternative-action {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.whatsapp-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.whatsapp-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.faq-item {
    margin-bottom: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--accent-purple);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* ===========================
   Mobile Sticky CTA
   =========================== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    display: none;
}

.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
}

.mobile-cta-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.mobile-cta-seats {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .visual-card {
        padding: 2rem;
    }
    
    .shield-icon svg {
        width: 200px;
        height: 200px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .audience-grid,
    .outcomes-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-statement p {
        font-size: 1.25rem;
    }
    
    .final-text p {
        font-size: 1.25rem;
    }
    
    .final-emphasis {
        font-size: 1.375rem !important;
    }
    
    .details-card {
        padding: 2rem;
    }
    
    .bonus-box,
    .callout-box {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .btn-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-xl {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
    }
    
    .trust-line {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
}
