/* ===================================================
   Scout — Landing Page Styles
   Modern dark theme with glassmorphism effects
   =================================================== */

:root {
    --scout-primary: #0d6efd;
    --scout-primary-dark: #0b5ed7;
    --scout-dark: #0a0a0a;
    --scout-dark-2: #111111;
    --scout-dark-3: #1a1a2e;
    --scout-glass: rgba(255, 255, 255, 0.06);
    --scout-glass-border: rgba(255, 255, 255, 0.1);
    --scout-text: #e0e0e0;
    --scout-text-muted: #8a8a9a;
    --scout-accent-green: #198754;
    --scout-accent-orange: #fd7e14;
    --scout-accent-info: #0dcaf0;
    --scout-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* ===== GLOBAL ===== */
html {
    scroll-behavior: smooth;
}

body.landing-page {
    background: var(--scout-gradient);
    color: var(--scout-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

.landing-page a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-section {
    padding: 100px 0;
    position: relative;
}

.landing-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== NAVBAR ===== */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.landing-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.landing-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-navbar .navbar-brand img {
    height: 40px;
}

.landing-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.landing-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.landing-navbar .btn-login {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px !important;
    border-radius: 8px;
    margin-left: 8px;
}

.landing-navbar .btn-login:hover {
    border-color: var(--scout-primary);
    background: rgba(13, 110, 253, 0.15);
}

.landing-navbar .btn-cta {
    background: var(--scout-primary) !important;
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 8px;
    border: none;
    margin-left: 8px;
    font-weight: 600;
}

.landing-navbar .btn-cta:hover {
    background: var(--scout-primary-dark) !important;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--scout-glass);
    border: 1px solid var(--scout-glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--scout-accent-info);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--scout-primary), var(--scout-accent-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--scout-text-muted);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--scout-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: var(--scout-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.5);
}

.hero-buttons .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--scout-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.2), rgba(25, 135, 84, 0.15));
    border-radius: 20px;
    filter: blur(40px);
    z-index: -1;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--scout-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--scout-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--scout-glass);
    border: 1px solid var(--scout-glass-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--scout-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-icon.blue { background: rgba(13, 110, 253, 0.15); color: var(--scout-primary); }
.feature-icon.green { background: rgba(25, 135, 84, 0.15); color: var(--scout-accent-green); }
.feature-icon.orange { background: rgba(253, 126, 20, 0.15); color: var(--scout-accent-orange); }
.feature-icon.info { background: rgba(13, 202, 240, 0.15); color: var(--scout-accent-info); }

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--scout-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== BENEFITS ===== */
.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--scout-glass);
    border: 1px solid var(--scout-glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateX(8px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.15);
    color: var(--scout-primary);
    font-size: 1.2rem;
}

.benefit-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--scout-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.step-card {
    text-align: center;
    position: relative;
    padding: 32px 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--scout-primary), var(--scout-primary-dark));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--scout-text-muted);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 64px;
    right: -40px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--scout-primary), transparent);
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
    }
}

/* ===== PRICING ===== */
.pricing-card {
    background: var(--scout-glass);
    border: 1px solid var(--scout-glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--scout-primary);
    background: rgba(13, 110, 253, 0.05);
    box-shadow: 0 0 40px rgba(13, 110, 253, 0.15);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--scout-primary), var(--scout-accent-info));
    border-radius: 20px 20px 0 0;
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--scout-primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--scout-text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 28px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--scout-text-muted);
}

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

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--scout-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--scout-accent-green);
    font-size: 0.8rem;
    width: 18px;
}

.pricing-card .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: var(--scout-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.pricing-card .btn-primary:hover {
    background: var(--scout-primary-dark);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    transform: translateY(-2px);
}

.pricing-card .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15), rgba(25, 135, 84, 0.1));
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--scout-text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-buttons .btn {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
.landing-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--scout-glass-border);
    padding: 40px 0;
}

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

.landing-footer a {
    color: var(--scout-text-muted);
    transition: color 0.3s ease;
}

.landing-footer a:hover {
    color: var(--scout-primary);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Stagger delays */
.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; }
.delay-6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

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

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

    .hero-image {
        margin-top: 60px;
    }

    .landing-navbar .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid var(--scout-glass-border);
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-box {
        padding: 40px 24px;
    }
}

/* ===== HAMBURGER FOR MOBILE ===== */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
