/* === Landing Page === */

/* Hero */
.landing-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.landing-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    background: #fff;
    color: #1a1a2e;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: #f0f0f5;
}

.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features */
.landing-features {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Steps */
.landing-steps {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 2rem;
    background: #fafafa;
    text-align: center;
}

.landing-steps h2 {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.steps-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.step-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
    .landing-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .steps-row {
        gap: 1.5rem;
    }

    .step-item {
        min-width: 130px;
    }
}
