﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --ink: #111827;
    --muted: #536174;
    --line: #d9e0ea;
    --soft: #f4f7fb;
    --white: #ffffff;
    --blue: #1643a3;
    --blue-dark: #0b255e;
    --teal: #007f73;
    --green: #d7f2e7;
    --red: #e1322d;
    --gold: #f5b841;
    --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 24px;
}

.utility {
    background: var(--blue-dark);
    color: var(--white);
    font-size: 0.88rem;
}

.utility .container,
.nav {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: flex-start;
}

.utility .container {
    justify-content: space-between;
    min-height: 42px;
}

.utility span,
.utility a {
    white-space: nowrap;
}

.utility-links,
.nav-links,
.action-row,
.footer-links {
    align-items: center;
    display: flex;
    gap: 18px;
}

.utility-links {
    flex: 0 0 auto;
}

.topbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    min-height: 96px;
}

.topbar .nav {
    max-width: 1640px;
    padding-left: 18px;
    padding-right: 18px;
}

.brand {
    align-items: center;
    display: inline-flex;
    min-width: 126px;
}

.brand-logo {
    height: 52px;
    object-fit: contain;
    width: 126px;
}

.nav-links a {
    color: #2a4eca;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 14px 0;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .active {
    color: var(--blue);
}

.button {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    line-height: 1.1;
    min-height: 42px;
    padding: 10px 11px;
    white-space: nowrap;
}

.topbar .button {
    flex: 0 0 auto;
}

.button-primary {
    background: #2a4eca;
    border-color: #2a4eca;
    color: #ffffff;
}

.button-secondary {
    background: var(--white);
    border-color: var(--line);
    color: var(--blue);
}

.button-register {
    background: #ffffff;
    border-color: #2a4eca;
    color: #2a4eca;
    box-shadow: none;
    white-space: nowrap;
}
.button-portal {
    background: #2a4eca;
    border-color: #2a4eca;
    color: #ffffff;
    box-shadow: none;
    white-space: nowrap;
}

.button-dark {
    background: var(--blue-dark);
    color: var(--white);
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(11, 37, 94, 0.94), rgba(11, 37, 94, 0.7)),
        var(--hero-image) center / cover;
    color: var(--white);
    padding: 96px 0;
}

.page-hero-content {
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.05;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 900;
    margin-top: 18px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
}

h3 {
    font-size: 1.35rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    margin: 24px 0 0;
    max-width: 650px;
}

section {
    padding: 82px 0;
}

.soft {
    background: var(--soft);
}

.section-head {
    align-items: end;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
    margin-bottom: 34px;
}

.section-head p,
.card p,
.split-copy p,
.contact-panel p {
    color: var(--muted);
    margin: 0;
}

.grid-2,
.grid-3,
.grid-4,
.split,
.footer-grid,
.contact-wrap {
    display: grid;
    gap: 18px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
    align-items: center;
    gap: 56px;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.card,
.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px;
}

.card .number {
    color: var(--red);
    display: block;
    font-size: 0.88rem;
    font-weight: 900;
    margin-bottom: 34px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature {
    display: grid;
    gap: 14px;
    grid-template-columns: 34px 1fr;
}

.feature span {
    background: var(--blue);
    color: var(--white);
    display: grid;
    font-weight: 900;
    height: 34px;
    place-items: center;
    width: 34px;
}

.stat-band {
    background: var(--green);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 36px;
}

.stat strong {
    color: var(--blue-dark);
    display: block;
    font-size: 2.4rem;
    line-height: 1;
}

.stat span {
    color: var(--muted);
}

.contact-wrap {
    grid-template-columns: 0.84fr 1.16fr;
}

.contact-details {
    background: var(--blue-dark);
    color: var(--white);
    padding: 34px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

label {
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 7px;
    text-transform: uppercase;
}

input,
select,
textarea {
    background: #f8fafc;
    border: 1px solid var(--line);
    color: var(--ink);
    font: inherit;
    min-height: 48px;
    padding: 12px 13px;
    width: 100%;
}

textarea {
    min-height: 128px;
    resize: vertical;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.full {
    grid-column: 1 / -1;
}

footer {
    background: #0a1328;
    color: var(--white);
    padding: 52px 0;
}

.footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.72);
}

footer h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links {
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 940px) {
    .utility .container {
        align-items: center;
        flex-direction: row;
        gap: 14px;
        justify-content: space-between;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .nav {
        align-items: start;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
    }

    .nav-links a {
        padding: 0;
    }

    .section-head,
    .grid-2,
    .grid-3,
    .split,
    .contact-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .stat-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .container {
        padding: 0 18px;
    }

    h1 {
        font-size: 3rem;
    }

    section,
    .page-hero {
        padding: 60px 0;
    }

    .grid-4,
    .stat-band,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }
}


