* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fc;
    color: #1a1a2e;
    min-height: 100vh;
}

/* ── Header ───────────────────────────────────── */
.header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 50, 148, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    height: 62px;
    object-fit: contain;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    right: 32px;
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 2px solid #003294;
    color: #003294;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    letter-spacing: 0.5px;
}

.lang-btn:hover,
.lang-btn.active {
    background: #003294;
    color: #ffffff;
    transform: translateY(-1px);
}

/* ── Hero Video ────────────────────────────────── */
.hero {
    position: relative;
    width: calc(100% - 64px);
    max-width: 1200px;
    margin: 32px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 50, 148, 0.15);
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
    padding: 32px 24px;
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    letter-spacing: -0.5px;
}

.stats {
    display: flex;
    gap: clamp(24px, 4vw, 56px);
    justify-content: center;
    flex-wrap: wrap;
}

.stat .num {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
}

.stat .label {
    display: block;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 500;
    margin-top: 6px;
    opacity: 0.92;
}

/* ── Coming Soon Section ───────────────────────── */
.coming-soon {
    max-width: 820px;
    margin: 56px auto 80px;
    padding: 0 24px;
    text-align: center;
}

.coming-soon-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 56px;
    box-shadow: 0 4px 32px rgba(0, 50, 148, 0.09);
}

.coming-soon-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #2c2c4a;
    margin-bottom: 16px;
}

.coming-soon-card .highlight-msg {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003294;
    margin: 20px 0 28px;
}

.coming-soon-card .sub {
    color: #555577;
    margin-bottom: 24px;
}

.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    background: #f0f4ff;
    border-radius: 12px;
    padding: 20px 36px;
    margin-top: 8px;
}

.contact-info p {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #1a1a2e;
}

.contact-info a {
    color: #003294;
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ── Utility ───────────────────────────────────── */
.hidden {
    display: none !important;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .lang-switcher {
        position: static;
    }

    .hero {
        width: calc(100% - 32px);
        margin: 20px auto 0;
        border-radius: 12px;
    }

    .hero-video {
        border-radius: 12px;
    }

    .hero-overlay {
        border-radius: 12px;
        padding: 24px 16px;
    }

    .hero-overlay h1 {
        margin-bottom: 20px;
    }

    .coming-soon-card {
        padding: 32px 24px;
    }

    .contact-info {
        padding: 16px 20px;
    }
}
