/* Shared landing page chrome (index + subpages) */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.landing-page {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #1e3a8a;
    color: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

section[id] { scroll-margin-top: 88px; }

.hero-section {
    background: url('../../images/city.jpg') center center / cover no-repeat fixed;
    padding: 150px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(30, 58, 138, 0.48) 0%, rgba(15, 23, 42, 0.38) 100%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.22) 100%),
        radial-gradient(circle at 82% 78%, rgba(37, 99, 235, 0.18) 0%, transparent 50%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section--subpage {
    min-height: auto;
    display: block;
    padding: 140px 0 72px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.hero-section--subpage .hero-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-section--subpage .hero-title i {
    -webkit-text-fill-color: #FFD700;
    margin-right: 10px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.hero-stat-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stat-pill strong { color: #FFD700; margin-right: 6px; }

.features-section {
    padding: 80px 0;
    background: #1e3a8a;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-title h2 i {
    color: #FFD700;
    margin-right: 8px;
}

.section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.footer {
    background: #1e3a8a;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer p { color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

.footer ul { list-style: none; padding: 0; }

.footer ul li { margin-bottom: 10px; color: rgba(255, 255, 255, 0.75); }

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover { color: #FFD700; padding-left: 5px; }

.footer ul li i { color: #FFD700; margin-right: 8px; width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .hero-section--subpage { padding: 120px 0 60px; }
    .hero-section--subpage .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .section-title h2 { font-size: 28px; }
    .section-title p { font-size: 15px; }
}
