/* BASE */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #071120;
    color: white;
}

/* NAVIGATION */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7,17,32,0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    z-index: 1000;
}

.nav-inner {
    width: 92%;
    max-width: 1450px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT */

.nav-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo img {
    height: 55px;
}

/* MENU */

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #d7deea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: white;
}

/* RIGHT */

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang {
    color: #d7deea;
    text-decoration: none;
}

.cta {
    background: white;
    color: #13294b;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */

.hero-split {

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    width: 92%;
    max-width: 1450px;

    margin: auto;

    padding-top: 140px;
}

/* LEFT */

.hero-left h1 {
    font-size: 78px;
    line-height: 1.05;
    margin: 20px 0;
}

.hero-left p {
    font-size: 24px;
    color: #b8c7dc;
    max-width: 620px;
}

.hero-year {
    color: white;
    font-size: 42px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg,#4da3ff,#007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(90deg,#007bff,#4da3ff);
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    border: 1px solid #4da3ff;
    color: #4da3ff;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
}

/* RIGHT IMAGE */

.hero-right {
    display: flex;
    justify-content: center;
}

.hero-right img {

    width: 100%;
    max-width: 700px;

    border-radius: 18px;

    box-shadow:
    0 0 40px rgba(0,123,255,0.25);
}

/* SECTION */

.section {
    width: 92%;
    max-width: 1450px;
    margin: auto;
    padding: 120px 0;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

/* GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.card {
    background: #101b2d;
    padding: 40px;
    border-radius: 14px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    color: #4da3ff;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 60px;
    color: #93a4bb;
}

/* MOBILE */

@media (max-width: 1100px) {

    .hero-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-left h1 {
        font-size: 52px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }
}