@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&family=Roboto:wght@400;500;700;900&display=swap");

:root {
    --bg: #f7fbff;
    --text: #183247;
    --muted: #6b7c8d;
    --primary: #1b75bb;
    --primary-dark: #105282;
    --accent: #1aa787;
    --line: #dce8f2;
    --card: #ffffff;
    --shadow: 0 14px 34px rgba(28, 76, 120, .13);
    --font-main: "Roboto", "Noto Sans", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-main);
    line-height: 1.55;
}

button,
input,
textarea,
select {
    font-family: var(--font-main);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: #eaf5ff;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.topbar__grid {
    min-height: 44px;
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 12px 20px;
    align-items: center;
    justify-content: space-between;
}

.topbar a,
.topbar span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-width: 0;
}

.site-header {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 28px rgba(21, 73, 112, .08);
    position: sticky;
    top: 0;
    z-index: 5;
}

.header-main {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__logo {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 10px 20px rgba(27, 117, 187, .2);
    overflow: hidden;
}

.brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #fff;
}

.brand strong {
    display: block;
    font-size: 21px;
    line-height: 1.25;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.lang-switch {
    display: inline-flex;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.lang-switch a {
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
}

.lang-switch a.active {
    color: #fff;
    background: var(--primary);
}

.main-nav {
    border-top: 1px solid var(--line);
}

.main-nav__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    overflow: visible;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
}

.main-nav a,
.nav-link {
    padding: 15px 16px;
    color: var(--primary-dark);
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link__chevron {
    font-size: 16px;
    line-height: 1;
}

.main-nav a:hover,
.nav-item:focus-within > .nav-link {
    border-color: var(--accent);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 260px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 30;
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-bottom: 0;
    border-radius: 6px;
    white-space: normal;
    line-height: 1.35;
}

.nav-dropdown a:hover {
    color: #fff;
    background: var(--primary);
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-slider {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    color: #fff;
    background: #0c304f;
}

.hero-slider__track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity .7s ease, transform 4.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slider:not(.is-js) .hero-slide {
    animation: heroSliderFade 12s infinite;
}

.hero-slider:not(.is-js) .hero-slide:nth-child(2) {
    animation-delay: 4s;
}

.hero-slider:not(.is-js) .hero-slide:nth-child(3) {
    animation-delay: 8s;
}

@keyframes heroSliderFade {
    0%,
    30% {
        opacity: 1;
        transform: scale(1);
    }

    36%,
    94% {
        opacity: 0;
        transform: scale(1.035);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-slider__content {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px 0 86px;
    z-index: 2;
}

.hero-slider__eyebrow {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-slider h1 {
    max-width: 820px;
    margin: 0;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: 0;
}

.hero-slider p {
    max-width: 660px;
    margin: 18px 0 0;
    font-size: 18px;
}

.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-slider__arrow,
.hero-slider__dots button {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    background: rgba(255, 255, 255, .16);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-slider__arrow {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 30px;
    line-height: 1;
}

.hero-slider__dots {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(8, 35, 62, .36);
}

.hero-slider__dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
}

.hero-slider__arrow:hover,
.hero-slider__dots button:hover,
.hero-slider__dots button.is-active {
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .42);
}

.hero-slider__arrow:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero__inner {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 0;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 640px;
    margin: 18px 0 0;
    font-size: 18px;
}

.section {
    padding: 58px 0;
}

.section--soft {
    background: #edf7f5;
}

.section__head {
    margin-bottom: 24px;
}

.section__head--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 16px;
}

.school-card {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
    border: 1px solid rgba(220, 232, 242, .72);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.school-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 167, 135, .5);
    box-shadow: 0 20px 40px rgba(28, 76, 120, .18);
}

.school-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: #e9f5ff;
    border-radius: 8px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-card__body {
    padding: 18px;
}

.news-card time,
.news-detail time {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}

.news-card h3 {
    margin-top: 8px;
    font-size: 20px;
}

.news-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    font-weight: 800;
}

.corruption-map {
    padding: 42px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 82, 130, .96), rgba(26, 167, 135, .92)),
        #105282;
}

.corruption-map__inner {
    display: grid;
    grid-template-columns: 76px minmax(240px, .9fr) minmax(320px, 1.35fr);
    gap: 24px;
    align-items: center;
}

.corruption-map__badge {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
}

.corruption-map__badge svg {
    width: 38px;
    height: 38px;
}

.corruption-map .eyebrow {
    color: rgba(255, 255, 255, .78);
}

.corruption-map h2 {
    font-size: 34px;
}

.corruption-map p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.corruption-map__links {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.corruption-map__links a {
    position: relative;
    display: block;
    padding: 16px 48px 16px 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-weight: 800;
    line-height: 1.35;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.corruption-map__links a::after {
    content: ">";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
}

.corruption-map__links a:hover {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

.page {
    min-height: 55vh;
}

.text-page,
.news-detail {
    max-width: 920px;
}

.content-text {
    margin-top: 18px;
    font-size: 18px;
    color: #30495d;
}

.documents-page {
    max-width: 1120px;
}

.documents-intro {
    max-width: 760px;
    margin: 14px 0 24px;
    color: var(--muted);
    font-size: 18px;
}

.documents-intro p {
    margin: 0;
}

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

.document-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(28, 76, 120, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.document-card:hover {
    border-color: rgba(232, 74, 95, .45);
    box-shadow: 0 18px 36px rgba(28, 76, 120, .14);
    transform: translateY(-3px);
}

.document-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: #e84a5f;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
}

.document-card__body {
    min-width: 0;
}

.document-card__body strong {
    display: block;
    color: var(--text);
    font-size: 17px;
    line-height: 1.35;
}

.document-card__body small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.document-card__arrow {
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
}

.news-detail {
    padding: 46px 0 68px;
}

.news-detail h1 {
    margin: 10px 0 22px;
    font-size: clamp(30px, 4vw, 46px);
}

.news-detail__main {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.file-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.file-list a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
}

.site-footer {
    padding: 28px 0;
    color: #dfefff;
    background: #123852;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 30px rgba(16, 82, 130, .28);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
    z-index: 20;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
}

.partner-carousel {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #fff;
}

.partner-carousel__inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
}

.partner-carousel__viewport {
    overflow: hidden;
}

.partner-carousel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.partner-carousel__track::-webkit-scrollbar {
    display: none;
}

.partner-card {
    flex: 0 0 calc((100% - 48px) / 4);
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(28, 76, 120, .08);
    scroll-snap-align: start;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner-card:hover {
    border-color: rgba(26, 167, 135, .55);
    box-shadow: 0 16px 32px rgba(28, 76, 120, .15);
    transform: translateY(-4px);
}

.partner-card img {
    width: 100%;
    aspect-ratio: 9 / 4;
    object-fit: cover;
}

.partner-carousel__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--primary-dark);
    background: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.partner-carousel__arrow:hover {
    border-color: var(--accent);
    color: #fff;
    background: var(--primary);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 860px) {
    .site-header {
        position: relative;
        top: auto;
        overflow: visible;
    }

    .topbar__grid {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-content: stretch;
        padding: 10px 0;
    }

    .topbar a,
    .topbar span {
        align-items: flex-start;
        overflow-wrap: anywhere;
    }

    .header-main {
        align-items: center;
        padding: 12px 0;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .brand__logo {
        width: 52px;
        height: 52px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand small {
        font-size: 13px;
    }

    .lang-switch {
        flex: 0 0 auto;
    }

    .main-nav {
        overflow: visible;
    }

    .main-nav__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        max-height: none;
        overflow: visible;
        padding-top: 4px;
        padding-bottom: 10px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link,
    .main-nav a {
        width: 100%;
        padding: 12px 0;
        white-space: normal;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 8px 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown a {
        padding: 8px 0;
    }

    .nav-dropdown a:hover {
        color: var(--primary);
        background: transparent;
    }

    .hero-slider,
    .hero-slider__content {
        min-height: 360px;
    }

    .hero-slider__content {
        padding: 36px 0 78px;
    }

    .hero-slider h1 {
        font-size: 30px;
    }

    .hero-slider p {
        font-size: 16px;
    }

    .hero-slider__eyebrow {
        font-size: 13px;
    }

    .hero-slider__arrow {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .corruption-map {
        padding: 30px 0;
    }

    .corruption-map__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .corruption-map__badge {
        width: 58px;
        height: 58px;
    }

    .corruption-map__badge svg {
        width: 30px;
        height: 30px;
    }

    .corruption-map h2 {
        font-size: 27px;
    }

    .corruption-map__links a {
        padding: 14px 40px 14px 14px;
        font-size: 15px;
    }

    .partner-carousel {
        padding: 24px 0;
    }

    .partner-carousel__inner {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .partner-card {
        flex-basis: min(220px, 78vw);
    }

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

    .document-card {
        grid-template-columns: 50px minmax(0, 1fr) 18px;
        min-height: 96px;
        padding: 14px;
    }

    .document-card__icon {
        width: 50px;
        height: 50px;
    }

    .partner-carousel__arrow {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .section__head--row,
    .footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}
