/* CSS Variables */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #15151f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    --accent-primary: #00d4ff;
    --accent-secondary: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --accent-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    --border-color: rgba(255, 255, 255, 0.1);
    --success: #10b981;
    --error: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

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

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.emphasis {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

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

.highlight {
    color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    text-align: left;
}

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

.hero-content .urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--accent-glow);
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        text-align: center;
    }

    .hero-content .urgency {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Problem Section */
.problem {
    background: var(--bg-secondary);
}

.problem h2 {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Solution Section */
.solution {
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: var(--accent-gradient);
}

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

/* Instant Access Section */
.instant-access {
    background: var(--bg-secondary);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
}

.access-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.access-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

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

.access-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.schedule-card {
    display: block;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.schedule-card:hover,
.schedule-card.selected {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.schedule-header {
    background: rgba(0, 212, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.schedule-header h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.schedule-body {
    padding: 25px;
}

.schedule-date,
.schedule-time {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.schedule-date svg,
.schedule-time svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

.schedule-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 15px;
}

.schedule-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Curriculum / Timeline Section */
.curriculum {
    background: var(--bg-secondary);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    margin-bottom: 0;
}

/* What's Included Section */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.included-item:hover {
    border-color: var(--accent-primary);
}

.included-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.included-text h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.included-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.tag {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Who This Is For Section */
.who-for {
    background: var(--bg-secondary);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

.who-card {
    padding: 30px;
    border-radius: var(--radius-lg);
}

.who-card.positive {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.who-card.negative {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.who-card h3 {
    margin-bottom: 1.5rem;
}

.who-card ul {
    list-style: none;
}

.who-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.who-card li:last-child {
    margin-bottom: 0;
}

.who-card li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
}

.who-card.positive li svg {
    color: var(--success);
}

.who-card.negative li svg {
    color: var(--error);
}

/* Testimonials Section */
.testimonials {
    padding-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-tertiary);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--accent-glow);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

.testimonial-name {
    padding: 15px 20px;
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Instructor Section */
.instructor {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.instructor-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .instructor-content {
        flex-direction: column;
        text-align: center;
    }
}

.instructor-image {
    width: 150px;
    min-width: 150px;
}

.instructor-image img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--accent-glow);
}

.instructor-bio h3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.instructor-bio h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instructor-bio p:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    background: var(--bg-primary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--accent-glow);
}

.pricing-inclusions {
    padding: 30px;
    background: rgba(0, 212, 255, 0.05);
}

.pricing-inclusions h4 {
    margin-bottom: 1rem;
}

.pricing-inclusions ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.pricing-inclusions li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}

.pricing-inclusions li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.pricing-comparison {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-comparison h4 {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-secondary);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-price {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-box {
    padding: 30px;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-badge {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-callout {
    font-style: italic;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.schedule-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent-primary);
}

.schedule-select {
    margin-bottom: 1.5rem;
    text-align: left;
}

.schedule-select label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.schedule-option:hover {
    border-color: var(--accent-primary);
}

.schedule-option input[type="radio"] {
    accent-color: var(--accent-primary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.trust-badges svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* Guarantee Section */
.guarantee {
    background: var(--bg-secondary);
}

.guarantee-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge svg {
    width: 40px;
    height: 40px;
    color: white;
}

.guarantee-text h3 {
    color: var(--success);
    margin-bottom: 1rem;
}

.guarantee-text p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-primary);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

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

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

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.final-subtext {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-top: 1.5rem !important;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .btn-large {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .access-card,
    .included-item {
        padding: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .pricing-inclusions,
    .pricing-comparison,
    .pricing-box {
        padding: 20px;
    }

    .price-current {
        font-size: 2.5rem;
    }
}
