/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3A6CF0;
    --primary-dark: #2854c9;
    --primary-light: #5a84f3;
    --secondary-color: #9BA1B0;
    --accent: #C8FF70;
    --error: #FF6B6B;
    --bg-primary: #0F1116;
    --bg-secondary: #1C1E24;
    --text-primary: #E9E9EA;
    --text-secondary: #A3A7B2;
    --gradient-1: linear-gradient(135deg, #3A6CF0 0%, #C8FF70 100%);
    --gradient-2: linear-gradient(135deg, #3A6CF0 0%, #C8FF70 100%);
    --shadow-sm: 0 2px 8px rgba(58, 108, 240, 0.15);
    --shadow-md: 0 4px 16px rgba(58, 108, 240, 0.2);
    --shadow-lg: 0 10px 40px rgba(58, 108, 240, 0.25);
    --glow-primary: 0 0 20px rgba(58, 108, 240, 0.3);
    --glow-accent: 0 0 20px rgba(200, 255, 112, 0.3);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.logo-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1c23 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 108, 240, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 255, 112, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: var(--glow-accent);
}

.cta-button:hover {
    background: #d4ff8a;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(200, 255, 112, 0.5);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.problem-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(58, 108, 240, 0.2);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Solution Section */
.solution-section {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(58, 108, 240, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    color: white;
    box-shadow: var(--glow-primary);
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Platforms Section */
.platforms-section {
    background: var(--bg-primary);
    text-align: center;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.platform-badge {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.platform-badge:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
}

/* Combined Sections Wrapper */
.combined-sections-wrapper {
    display: flex;
    flex-wrap: wrap;
}

/* Waitlist Section */
.waitlist-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    flex: 1;
    min-width: 300px;
    border-top: 1px solid rgba(58, 108, 240, 0.2);
    box-shadow: var(--shadow-sm);
}

.waitlist-container {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-content {
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
}

/* Booking section */
.booking-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    flex: 1;
    min-width: 300px;
    border-top: 1px solid rgba(58, 108, 240, 0.2);
    box-shadow: var(--shadow-sm);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-content {
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
}

.booking-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent);
}

.booking-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.booking-benefits {
    list-style: none;
    text-align: left;
    max-width: 450px;
    margin: 0 auto 40px;
    padding: 0;
}

.booking-benefits li {
    font-size: 16px;
    color: var(--text-primary);
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.5;
}

.booking-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.booking-cta {
    margin-top: 20px;
    font-size: 18px;
}

.form-placeholder {
    text-align: center;
    padding: 100px 40px;
    background: rgba(58, 108, 240, 0.05);
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
}

.form-placeholder p:first-child {
    font-size: 48px;
    margin-bottom: 16px;
}

.placeholder-instructions {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(58, 108, 240, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-email {
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #d4ff8a;
    text-decoration: underline;
}

.footer-links p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 16px;
    }

    .features-grid,
    .problem-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .booking-content {
        padding: 40px 30px;
    }

    .booking-content h3 {
        font-size: 24px;
    }

    .booking-benefits {
        max-width: 100%;
    }

    .combined-sections-wrapper {
        flex-direction: column;
    }

    .waitlist-section,
    .booking-section {
        padding: 80px 0;
    }
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 60px 50px;
    border: 1px solid rgba(58, 108, 240, 0.2);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(58, 108, 240, 0.4);
}

.pricing-badge {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pricing-amount {
    margin-bottom: 40px;
}

.price {
    font-size: 72px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 16px;
    border-bottom: 1px solid rgba(163, 167, 178, 0.1);
    position: relative;
    padding-left: 28px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.pricing-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(58, 108, 240, 0.05);
    border-radius: 8px;
}

/* Trust Section */
.trust-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.trust-card {
    background: var(--bg-primary);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(58, 108, 240, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary-color);
}

.trust-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--accent);
    text-align: center;
}

.trust-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-benefits li {
    padding: 16px 0;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(163, 167, 178, 0.1);
}

.trust-benefits li:last-child {
    border-bottom: none;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .price {
        font-size: 56px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 40px 30px;
    }

    .trust-card h3 {
        font-size: 24px;
    }

    .trust-benefits li {
        font-size: 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
