/* ===== Landing Page Styles ===== */
/* Standalone styles — uses Bootstrap 5 as base */

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
}

/* ===== Navbar ===== */
.navbar-brand {
    font-size: 1.3em;
    color: #1a5f2a !important;
}

/* ===== Hero Section ===== */
.landing-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ec 100%);
}
.landing-hero-title {
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1.15;
    color: #222;
    margin-bottom: 20px;
}
.landing-highlight {
    color: #1a5f2a;
}
.landing-hero-subtitle {
    font-size: 1.2em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}
.landing-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.landing-cta-btn {
    background: #1a5f2a !important;
    border-color: #1a5f2a !important;
    font-weight: 700;
    padding: 14px 32px;
}
.landing-cta-btn:hover {
    background: #14491f !important;
    border-color: #14491f !important;
}
.landing-hero-note {
    font-size: 0.9em;
    color: #888;
}

/* Hero Visual — mock priority cards */
.landing-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}
.landing-mock-card {
    background: white;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #c0392b;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.2s;
}
.landing-mock-card:nth-child(2) { border-left-color: #e67e22; }
.landing-mock-card:nth-child(3) { border-left-color: #f1c40f; }
.landing-mock-card:hover {
    transform: translateX(-4px);
}
.landing-mock-badge {
    display: inline-block;
    background: #c0392b;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.75em;
    font-weight: 700;
    width: fit-content;
}
.landing-mock-card:nth-child(2) .landing-mock-badge { background: #e67e22; }
.landing-mock-card:nth-child(3) .landing-mock-badge { background: #f1c40f; color: #333; }
.landing-mock-title {
    font-weight: 700;
    font-size: 1em;
    color: #222;
}
.landing-mock-score {
    font-size: 0.85em;
    color: #1a5f2a;
    font-weight: 600;
}

/* ===== How It Works ===== */
.landing-how-it-works {
    padding: 72px 0;
    background: white;
}
.landing-how-it-works h2 {
    font-size: 2em;
    font-weight: 800;
    color: #222;
}
.landing-step-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s;
}
.landing-step-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.landing-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1a5f2a;
    color: white;
    border-radius: 50%;
    font-size: 1.4em;
    font-weight: 800;
    margin-bottom: 16px;
}
.landing-step-card h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.landing-step-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* ===== Stats Section ===== */
.landing-stats {
    padding: 56px 0;
    background: #1a5f2a;
    color: white;
}
.landing-stat-value {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 4px;
}
.landing-stat-label {
    font-size: 0.95em;
    opacity: 0.85;
}

/* ===== CTA Section ===== */
.landing-cta-section {
    padding: 72px 0;
    background: #f8f9fa;
}
.landing-cta-section h2 {
    font-size: 2em;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}
.landing-cta-section p {
    font-size: 1.15em;
    color: #555;
    max-width: 500px;
    margin: 0 auto 24px;
}

/* ===== Footer ===== */
.landing-footer {
    padding: 32px 0;
    background: white;
    border-top: 1px solid #e9ecef;
}
.landing-footer-brand {
    color: #1a5f2a;
    font-size: 1.05em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .landing-hero {
        padding: 48px 0 40px;
    }
    .landing-hero-title {
        font-size: 2em;
    }
    .landing-hero-subtitle {
        font-size: 1.05em;
    }
    .landing-hero-actions {
        flex-direction: column;
    }
    .landing-hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .landing-how-it-works {
        padding: 48px 0;
    }
    .landing-stat-value {
        font-size: 2em;
    }
}
