:root {
    --blue-dark: #0057A8;
    --blue-medium: #0081C8;
    --blue-light: #29A8E0;
    --blue-water: #5EC8F0;
    --accent-red: #E02020;
    --accent-green: #28A745;
    --accent-yellow: #F5A800;
    --accent-orange: #FF6B1A;
    --white: #FFFFFF;
    --bg: #E8EEF5;
    --text: #555555;
    --card-border: rgba(41, 168, 224, 0.25);
    --shadow: 0 16px 36px rgba(0, 129, 200, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Sora", "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 12%, rgba(94, 200, 240, 0.34), transparent 34%),
        radial-gradient(circle at 88% 88%, rgba(41, 168, 224, 0.22), transparent 38%),
        linear-gradient(160deg, #D6F2FD 0%, var(--blue-water) 28%, var(--bg) 62%, var(--bg) 100%);
}

.top-nav {
    width: min(980px, 94vw);
    margin: 18px auto 10px;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
    box-shadow: var(--shadow);
    padding: 12px;
}

.brand {
    text-align: center;
    color: var(--blue-dark);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.brand small {
    display: block;
    color: var(--blue-medium);
    font-weight: 600;
    letter-spacing: 0;
    margin-top: 4px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.menu ul li a {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--blue-dark);
    font-weight: 700;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    overflow: hidden;
}

.menu ul li a:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 168, 224, 0.45);
    box-shadow: 0 8px 18px rgba(0, 129, 200, 0.18);
}

.menu ul li a.active {
    color: var(--white);
    border-color: rgba(0, 129, 200, 0.65);
    background: linear-gradient(120deg, var(--blue-medium), var(--blue-light));
    box-shadow: 0 10px 22px rgba(0, 129, 200, 0.28);
}

.menu ul li a.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 78%);
    transform: translateX(-120%);
    animation: navShine 2.6s ease-in-out infinite;
}

.page-shell {
    width: min(980px, 94vw);
    margin: 24px auto 36px;
}

.hero {
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
    box-shadow: var(--shadow);
}

.hero h1 {
    margin: 6px 0 12px;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--blue-dark);
}

.hero p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.7;
}

.pill {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(41, 168, 224, 0.15);
    color: var(--blue-medium);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.content-grid {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.card {
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 129, 200, 0.14);
}

.list-benefits {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-benefits li {
    border-left: 4px solid var(--blue-light);
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(94, 200, 240, 0.14);
    line-height: 1.6;
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.partner-card {
    border: 1px solid var(--card-border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(0, 129, 200, 0.12);
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.partner-card img {
    width: min(190px, 100%);
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--bg);
    padding: 8px;
}

.cta-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(120deg, var(--blue-medium), var(--blue-light));
    padding: 10px 14px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 129, 200, 0.28);
}

.contact-lines {
    display: grid;
    gap: 12px;
}

.contact-item {
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.84);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: var(--blue-light);
}

.contact-item strong {
    color: var(--blue-dark);
}

.logo-wrap {
    width: min(280px, 70vw);
    margin: 0 auto 14px;
}

.logo-wrap img {
    width: 100%;
    height: auto;
}

footer {
    margin-top: 20px;
    text-align: center;
    padding: 14px 10px;
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(94, 200, 240, 0.92), rgba(41, 168, 224, 0.9));
    color: var(--blue-dark);
    font-weight: 600;
}

@media (max-width: 640px) {
    .top-nav {
        padding: 10px 8px;
        border-radius: 16px;
    }

    .brand {
        font-size: 0.95rem;
    }

    .menu ul li a {
        width: min(46vw, 220px);
        text-align: center;
    }

    .hero {
        padding: 20px 14px;
    }

    .card {
        padding: 14px;
    }

    .partner-card img {
        height: 90px;
    }
}

@keyframes navShine {
    0% {
        transform: translateX(-120%);
    }
    45%,
    100% {
        transform: translateX(120%);
    }
}
