:root {
    /* Colors */
    --bg-main: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    
    /* Accents */
    --accent-gold: #61dafb;
    --accent-gold-hover: #38bdf8;
    --accent-gradient: linear-gradient(135deg, #61dafb 0%, #0ea5e9 55%, #1d4ed8 100%);
    --accent-glow: rgba(97, 218, 251, 0.25);
    
    /* Spacing */
    --sp-sm: 0.5rem;
    --sp-md: 1rem;
    --sp-lg: 2rem;
    --sp-xl: 4rem;
    
    /* Typography */
    --font-main: 'Inter', system-ui, sans-serif;
    
    /* Borders & Shadows */
    --border-glass: 1px solid rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 20px var(--accent-glow);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: var(--sp-sm);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.section-padding {
    padding: 6rem 0;
}

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

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

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.dark-bg {
    background-color: #050505;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 800;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(97, 218, 251, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(97, 218, 251, 0.55);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-text {
    font-size: 1.1rem;
}

.price-strike {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 900;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

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

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(97, 218, 251, 0.12) 0%, var(--bg-main) 60%);
    padding-top: 4rem;
}

.badge {
    display: inline-block;
    background: rgba(97, 218, 251, 0.12);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(97, 218, 251, 0.25);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.event-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.detail-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Timer */
.timer-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
}

.timer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-header .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.colon {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin: -1.5rem 0.5rem 0;
}

.hero-claims {
    margin-bottom: 3rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* Benefits Section */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.benefit-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.benefit-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Problem Agitation */
.highlight-box {
    max-width: 800px;
    margin: 3rem auto;
    padding: 3rem;
    font-size: 1.25rem;
    font-weight: 500;
    border: 1px solid rgba(97, 218, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
}

.shoutout {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 2rem 0;
}

.testimonial-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Methods Section */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.method-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.method-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(97, 218, 251, 0.35);
    box-shadow: var(--shadow-glow);
}

.method-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
}

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

.method-card p {
    color: var(--text-secondary);
}

/* Comparison Section */
.comparison-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.skills-list {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cross-list li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.comparison-content {
    flex: 1.5;
    min-width: 300px;
}

.question-list {
    margin-top: 2rem;
}

.question-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.question-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 800;
}

.alert-box {
    padding: 2rem;
    border-left: 4px solid var(--accent-gold);
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.pricing-card {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-glow);
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
}

.highlight-price {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.strike-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    margin-left: 1rem;
}

.tea-price {
    font-size: 1.25rem;
    font-style: italic;
    color: #cbd5e1;
}

/* Audience Section */
.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.audience-pill {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
}

.audience-pill:hover {
    background: var(--accent-gradient);
    color: #000;
    transform: scale(1.05);
}

/* Instructor Section */
.instructor-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.instructor-image {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border: var(--border-glass);
}

.instructor-content {
    flex: 1.5;
    min-width: 300px;
    font-size: 1.1rem;
}

.credentials-list li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.bonus-card {
    padding: 3rem 2rem 2rem;
    position: relative;
    text-align: center;
}

.bonus-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ef4444;
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.bonus-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.bonus-value {
    font-weight: 800;
    color: #22c55e;
    font-size: 1.2rem;
}

.total-value-box {
    padding: 2rem;
    border: 2px dashed var(--accent-gold);
}

/* Typography Helpers */
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    cursor: pointer;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
    opacity: 1;
}

/* Footer */
.footer {
    padding: 4rem 0 6rem;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    color: #475569;
    font-size: 0.85rem;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 100;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-price .s-sale {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.sticky-price .s-orig {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.show-mobile {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .event-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .detail-divider {
        width: 100%;
        height: 1px;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .time-num {
        font-size: 2rem;
    }
    
    .time-box {
        min-width: 60px;
    }
    
    .colon {
        font-size: 1.5rem;
        margin: -1rem 0.2rem 0;
    }
    
    .show-mobile {
        display: block;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .comparison-flex, .instructor-flex {
        gap: 2rem;
    }
}
