:root {
    --navy: #061a3a;
    --navy-2: #082652;
    --blue: #003399;
    --blue-2: #0b55d9;
    --text: #102033;
    --muted: #536275;
    --line: #dbe4f0;
    --card: #ffffff;
    --soft: #f5f8fc;
    --soft-blue: #eef5ff;
    --shadow: 0 18px 45px rgba(6, 26, 58, 0.12);
    --radius: 16px;
    --max: 1180px;
    --header-height: 68px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
}

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

.page-section {
    scroll-margin-top: var(--header-height);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(90deg, #06172f 0%, #071e42 48%, #06172f 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: var(--header-height);
}

.brand {
    color: #fff;
    font-size: 28px;
    font-weight: 760;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 640;
    font-size: 15px;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
    color: #ffffff;
}

.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 99px;
    background: #4fa3ff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at 62% 50%, rgba(52, 130, 255, 0.13), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 58px 28px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.82fr);
    gap: 70px;
    align-items: center;
    position: relative;
}

.hero h1 {
    margin: 0 0 24px;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    max-width: 720px;
}

.hero p {
    margin: 0 0 30px;
    max-width: 620px;
    font-size: 18px;
    color: #223047;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    background: linear-gradient(135deg, #003399, #0a56e8);
    color: #fff;
    font-weight: 760;
    padding: 15px 22px;
    box-shadow: 0 12px 25px rgba(0, 51, 153, 0.22);
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(0, 51, 153, 0.25);
}

.button svg {
    width: 18px;
    height: 18px;
}

.hero-graphic {
    position: absolute;
    right: 360px;
    bottom: 10px;
    width: 330px;
    height: 210px;
    opacity: 0.28;
    pointer-events: none;
}

.eu-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(178, 194, 216, 0.7);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.eu-card-top {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #cbd7e7;
}

.eu-card-top-logo-only {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #cbd7e7;
}

.eu-card h2 {
    margin: 0;
    color: var(--blue);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.eu-card h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 22px;
    letter-spacing: -0.025em;
}

.eu-card p {
    margin: 0 0 14px;
    font-size: 18px;
    color: #1f2937;
}

.eu-card p:last-child {
    margin-bottom: 0;
}

.eu-flag {
    display: block;
    width: auto;
    min-width: 0;
    max-width: 100%;
    height: auto;
}

.eu-flag-large {
    width: 340px;
    max-width: 100%;
    height: auto;
}

main {
    background: #fff;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}

.section:first-of-type {
    padding-top: 26px;
}

.section-header {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
}

.section-body {
    min-width: 0;
}

.section h2 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section p {
    margin: 0 0 12px;
    font-size: 16px;
    color: #1f2937;
}

.section p:last-child {
    margin-bottom: 0;
}

.icon-circle {
    width: 58px;
    height: 58px;
    border: 1px solid #bfd1ea;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: #fff;
}

.icon-circle svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.7;
}

.fact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid #edf2f7;
}

.fact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px 0 0;
    min-height: 58px;
    font-weight: 640;
}

.fact + .fact {
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.fact svg {
    width: 34px;
    height: 34px;
    color: var(--blue);
    flex: 0 0 auto;
    stroke-width: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin-top: 16px;
}

.feature-card {
    background: var(--card);
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 112px;
    box-shadow: 0 8px 18px rgba(6, 26, 58, 0.045);
}

.feature-card svg {
    width: 52px;
    height: 52px;
    color: var(--blue);
    stroke-width: 1.55;
}

.feature-card h3 {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: #39475a;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 14px;
}

.impact-card {
    background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
    border: 1px solid #dce8f7;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 122px;
}

.impact-card svg {
    width: 58px;
    height: 58px;
    color: var(--blue);
    stroke-width: 1.55;
}

.impact-card h3 {
    margin: 0 0 3px;
    color: var(--navy);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.impact-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.38;
    color: #334155;
}

.contact-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.25fr 0.9fr 1fr;
    gap: 0;
    margin-top: 14px;
}

.contact-row-four {
    grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.9fr) minmax(220px, 1.3fr) minmax(190px, 1fr);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    min-height: 72px;
    font-size: 15px;
    font-weight: 620;
    color: #102033;
}

.contact-item:first-child {
    padding-left: 0;
}

.contact-item + .contact-item {
    border-left: 1px solid var(--line);
}

.contact-item svg {
    width: 34px;
    height: 34px;
    color: var(--blue);
    flex: 0 0 auto;
    stroke-width: 1.55;
}

.contact-item span {
    min-width: 0;
}

.contact-item small {
    display: block;
    font-size: 13px;
    color: #475569;
    font-weight: 620;
    line-height: 1.35;
    white-space: nowrap;
}

.footer {
    background: linear-gradient(90deg, #06172f 0%, #071e42 50%, #06172f 100%);
    color: #fff;
    text-align: center;
    padding: 19px 28px;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-graphic {
        right: 12px;
        bottom: 210px;
    }

    .feature-grid,
    .impact-grid,
    .fact-row,
    .contact-row,
    .contact-row-four {
        grid-template-columns: 1fr;
    }

    .fact + .fact,
    .contact-item + .contact-item {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .fact {
        padding: 16px 0;
    }

    .fact + .fact {
        padding-left: 0;
    }

    .contact-item {
        padding-left: 0;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 67px;
    }

    .nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
    }

    .brand {
        font-size: 25px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 2px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .nav-links a.is-active::after {
        display: none;
    }

    .hero-inner {
        padding: 44px 20px 38px;
    }

    .hero h1 {
        font-size: 37px;
    }

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

    .eu-card {
        padding: 22px;
    }

    .eu-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .eu-flag-large {
        width: 100%;
        max-width: 340px;
    }

    .section {
        padding: 24px 20px;
    }

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

    .feature-card,
    .impact-card {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        display: none;
    }
}

@media print {
    .site-header {
        position: static;
    }

    .button {
        box-shadow: none;
    }

    .hero,
    .footer {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}