@font-face {
    font-family: 'Garet';
    src: url('fonts/Garet-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Garet';
    src: url('fonts/Garet-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@import url('https://googleapis.com');

:root {
    --primary: #071D6A;
    --white: #ffffff;
    --light-bg: #f4f6fa;
    --text-dark: #071D6A;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Garet', 'Space Grotesk', sans-serif;
    color: #1a1a1a;
    background-color: var(--white);
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 29, 106, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.hero {
    background-color: var(--primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 20px 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(3.2rem, 11vw, 7.5rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.section {
    padding: 100px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-weight: 700;
    font-size: clamp(2.3rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--primary);
    line-height: 1.1;
}

.dark-section h2 {
    color: var(--white);
}

.dark-section {
    background-color: var(--primary);
    color: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(7, 29, 106, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    background: #ebeef5;
    box-shadow: 0 10px 30px rgba(7, 29, 106, 0.05);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.timeline {
    position: relative;
    border-left: 2px solid rgba(255,255,255,0.15);
    padding-left: 30px;
    margin-left: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    left: -37px;
    top: 8px;
}

.time {
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
}

footer {
    background: #030e33;
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 20px;
    text-align: center;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .section {
        padding: 70px 20px;
    }
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.coming-soon-box {
    margin-top: 40px;
    display: inline-block;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.coming-soon-box p {
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.info-section {
    background-color: var(--white);
    text-align: center;
}

.section-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #4a5568;
}

.info-section h2 {
    text-align: center;
}

.card {
    text-align: left;
}
