:root {
    --navy: #123b4a;
    --navy-deep: #0b2935;
    --green: #3e6d55;
    --green-dark: #294f3c;
    --green-soft: #e9f0ec;
    --ink: #1c3038;
    --muted: #607179;
    --line: #d6e0e3;
    --paper: #ffffff;
    --surface: #f3f6f6;
    --surface-warm: #f6f4ef;
    --error: #8a2d2d;
    --shadow: 0 18px 44px rgba(14, 44, 55, 0.10);
    --radius: 14px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
@supports (overflow: clip) {
    html, body { overflow-x: clip; }
}
header, main, footer, nav, section, article, aside, form { min-width: 0; }
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
h1, h2, h3, h4, p, li, dt, dd { overflow-wrap: break-word; }
a:hover { color: var(--green-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); max-width: 100%; min-width: 0; margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); background: #fff; padding: 10px 16px; border: 2px solid var(--navy); }
.skip-link:focus { transform: none; }

.utility-bar { background: var(--navy-deep); color: #dce8eb; font-size: 13px; }
.utility-bar__inner { min-height: 36px; display: flex; min-width: 0; align-items: center; gap: 28px; }
.utility-bar__inner span:nth-child(2) { margin-right: auto; }
.utility-bar a { min-width: 0; color: #fff; text-decoration: none; overflow-wrap: anywhere; }

.site-header { position: relative; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.site-header__main { min-height: 88px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; max-width: 100%; min-width: 0; text-decoration: none; color: var(--ink); }
.brand img { flex: 0 0 auto; }
.brand__text { display: flex; min-width: 0; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-size: 22px; letter-spacing: .01em; color: var(--navy-deep); }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 12px; }
.header-facts { margin-left: auto; display: flex; gap: 36px; }
.header-facts span { display: flex; flex-direction: column; border-left: 1px solid var(--line); padding-left: 20px; }
.header-facts b { color: var(--navy); font-size: 16px; }
.header-facts small { color: var(--muted); font-size: 12px; }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 9px; }
.nav-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 6px 0; }

.main-nav { background: var(--navy); color: #fff; }
.main-nav__inner { min-height: 56px; display: flex; align-items: stretch; }
.nav-link, .nav-group__toggle, .nav-form-link {
    display: inline-flex; align-items: center; border: 0; background: transparent; color: #fff;
    text-decoration: none; padding: 0 17px; font-size: 14px; white-space: nowrap;
}
.nav-link:hover, .nav-group__toggle:hover, .nav-link.is-active, .nav-group__toggle.is-active { color: #fff; background: rgba(255,255,255,.10); }
.nav-group { position: relative; display: flex; }
.nav-group__toggle span { margin-left: 8px; }
.nav-dropdown {
    position: absolute; top: 100%; left: 0; width: 290px; padding: 10px; background: #fff;
    box-shadow: var(--shadow); border: 1px solid var(--line); visibility: hidden; opacity: 0;
    transform: translateY(8px); transition: .18s ease;
}
.nav-dropdown--wide { width: 350px; }
.nav-dropdown a { display: block; padding: 10px 12px; text-decoration: none; color: var(--ink); border-radius: 6px; }
.nav-dropdown a:hover { background: var(--surface); color: var(--navy); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.is-open .nav-dropdown { visibility: visible; opacity: 1; transform: none; }
.nav-form-link { margin-left: auto; background: #f4f7f6; color: var(--navy); font-weight: 700; padding-inline: 24px; }
.nav-form-link:hover { background: #e7efeb; color: var(--navy-deep); }
.main-nav, .main-nav__inner, .nav-group, .nav-dropdown { max-width: 100%; }

.hero { position: relative; overflow: hidden; background: var(--navy-deep); color: #fff; }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,31,41,.94) 0%, rgba(10,46,57,.82) 48%, rgba(10,46,57,.18) 100%);
    pointer-events: none;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__grid {
    position: relative; z-index: 1; min-height: 600px; display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .72fr);
    gap: 64px; align-items: center; padding-block: 76px;
}
.hero h1, .page-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.12; letter-spacing: -.02em; }
.hero h1 { max-width: 850px; font-size: clamp(42px, 5.3vw, 72px); }
.hero__lead { max-width: 760px; margin: 25px 0 0; color: #e4eef0; font-size: 20px; }
.hero__meta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.07); border-radius: 4px; font-size: 13px; }
.hero__links { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.hero__link { color: #fff; font-weight: 700; }
.hero__link:hover { color: #fff; }
.hero-card { background: rgba(255,255,255,.96); color: var(--ink); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card__label { display: block; color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: .11em; }
.hero-card strong { display: block; margin: 6px 0 5px; color: var(--navy-deep); font-family: Georgia, serif; font-size: 46px; font-weight: 500; line-height: 1.1; }
.hero-card > p { margin: 0; color: var(--muted); }
.hero-card dl { margin: 25px 0 0; }
.hero-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid var(--line); }
.hero-card dt { color: var(--muted); }
.hero-card dt, .hero-card dd { min-width: 0; }
.hero-card dd { margin: 0; text-align: right; font-weight: 700; overflow-wrap: anywhere; }
.hero-card small { display: block; margin-top: 18px; color: var(--muted); line-height: 1.5; }

.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 22px;
    border: 1px solid var(--green-dark); border-radius: 5px; background: var(--green-dark);
    color: #fff; font-weight: 700; text-decoration: none; transition: .15s ease;
}
.button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.button { max-width: 100%; white-space: normal; text-align: center; }
.button--secondary { background: transparent; color: var(--navy); border-color: var(--line); }
.button--secondary:hover { background: var(--surface); color: var(--navy); border-color: var(--navy); }
.button--small { min-height: 38px; padding: 7px 13px; font-size: 13px; }
.button--pay { min-width: 240px; min-height: 58px; font-size: 16px; letter-spacing: .05em; }

.section { padding: 88px 0; }
.section--surface { background: var(--surface); }
.section--warm { background: var(--surface-warm); }
.section-heading { max-width: 800px; margin-bottom: 40px; }
.section-heading h2 { margin: 0; color: var(--navy-deep); font-family: Georgia, serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.18; }
.section-heading p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 18px; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow--light { color: #d6e7dc; }

.scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.scope-card { background: #fff; border: 1px solid var(--line); padding: 28px; border-radius: 8px; }
.scope-card img { width: 54px; height: 54px; margin-bottom: 23px; }
.scope-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 20px; }
.scope-card p { margin: 0; color: var(--muted); }
.scope-card a { display: inline-block; margin-top: 18px; font-weight: 700; }

.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; align-items: start; }
.info-list { margin: 0; padding: 0; list-style: none; counter-reset: info; }
.info-list li { position: relative; padding: 0 0 26px 56px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.info-list li:last-child { border-bottom: 0; }
.info-list li::before { counter-increment: info; content: counter(info, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--green); font-family: Georgia, serif; font-size: 23px; }
.info-list strong { display: block; color: var(--navy); margin-bottom: 4px; }
.info-list p { margin: 0; color: var(--muted); }
.document-panel { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.document-panel img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.document-panel__body { padding: 28px; }
.document-panel__body h3 { margin-top: 0; color: var(--navy); }
.document-panel__body p { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-item { padding: 30px 26px; border-right: 1px solid var(--line); }
.process-item:last-child { border-right: 0; }
.process-item span { display: block; color: var(--green); font-family: Georgia, serif; font-size: 30px; }
.process-item h3 { margin: 8px 0; color: var(--navy); font-size: 18px; }
.process-item p { margin: 0; color: var(--muted); font-size: 14px; }

.price-band { background: var(--navy); color: #fff; }
.price-band__inner { min-height: 210px; display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: center; }
.price-band h2 { margin: 0; font-family: Georgia, serif; font-size: 36px; font-weight: 500; }
.price-band p { margin: 9px 0 0; color: #d9e7ea; }
.price-band__value strong { display: block; font-family: Georgia, serif; font-size: 48px; font-weight: 500; line-height: 1; }
.price-band__value span { color: #cfe0e4; font-size: 13px; }
.price-band .button { background: #fff; color: var(--navy); border-color: #fff; }
.price-band .button:hover { background: #eaf0f1; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.news-card { display: flex; flex-direction: column; min-height: 100%; background: #fff; border: 1px solid var(--line); }
.news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-card time { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.news-card h3 { margin: 10px 0; color: var(--navy); font-size: 20px; line-height: 1.3; }
.news-card p { margin: 0 0 18px; color: var(--muted); }
.news-card a { margin-top: auto; font-weight: 700; }

.form-section { padding: 90px 0; background: #eef3f3; }
.section-heading--form { max-width: 880px; }
.application-form { width: 100%; max-width: 100%; min-width: 0; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.application-form fieldset { min-width: 0; max-width: 100%; border: 0; margin: 0; padding: 38px 42px 42px; border-bottom: 1px solid var(--line); }
.application-form legend { width: 100%; max-width: 100%; padding: 0 0 25px; color: var(--navy); font-family: Georgia, serif; font-size: 24px; overflow-wrap: break-word; }
.application-form legend span {
    display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    margin-right: 12px; background: var(--navy); color: #fff; border-radius: 50%;
    font-family: Arial, sans-serif; font-size: 12px;
}
.form-grid { display: grid; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 28px; }
.field { display: flex; min-width: 0; max-width: 100%; flex-direction: column; gap: 8px; }
.field > span { color: var(--ink); font-weight: 700; font-size: 14px; }
.field b { color: #8a2d2d; }
.field input, .field select, .field textarea {
    width: 100%; max-width: 100%; min-width: 0; border: 1px solid #bdcbd0; border-radius: 4px; background: #fff;
    color: var(--ink); padding: 12px 14px; outline: none; transition: .15s ease;
}
.field input, .field select { min-height: 50px; }
.field textarea { resize: vertical; }
.field select { text-overflow: ellipsis; }
.field input[type="file"] { overflow: hidden; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(18,59,74,.12); }
.field small { color: var(--muted); overflow-wrap: anywhere; }
.field--full { grid-column: 1 / -1; }
.field--consent { grid-column: 1 / -1; }
.checkbox { display: flex; min-width: 0; max-width: 100%; gap: 12px; align-items: flex-start; font-size: 14px; }
.checkbox span { min-width: 0; overflow-wrap: break-word; }
.checkbox input { width: 20px; height: 20px; min-height: auto; margin-top: 2px; flex: 0 0 auto; }
.form-submit { display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) auto; gap: 45px; align-items: center; padding: 34px 42px; background: var(--surface-warm); }
.form-price span { display: block; color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.form-price strong { display: block; color: var(--navy); font-family: Georgia, serif; font-size: 42px; font-weight: 500; line-height: 1.15; }
.form-price p { margin: 7px 0 0; max-width: 650px; }
.form-submit__action { max-width: 360px; text-align: right; }
.form-submit__action small { display: block; margin-top: 10px; color: var(--muted); line-height: 1.45; }
.form-alert { margin-bottom: 24px; padding: 18px 22px; background: #fff2f2; border: 1px solid #e0b8b8; color: var(--error); }
.form-alert ul { margin: 8px 0 0; padding-left: 22px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.breadcrumbs { background: var(--surface); border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumbs .container { min-height: 45px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.breadcrumbs a { text-decoration: none; color: var(--muted); }
.breadcrumbs span { color: var(--muted); }
.page-hero { background: linear-gradient(135deg, #eef3f3, #f8f7f3); }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding-block: 70px; }
.page-hero h1 { color: var(--navy-deep); font-size: clamp(38px, 4.5vw, 60px); }
.page-lead { max-width: 780px; margin: 20px 0 0; color: var(--muted); font-size: 20px; }
.page-hero img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.content-section { padding: 72px 0 95px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; align-items: start; }
.article-content { min-width: 0; max-width: 100%; }
.article-content h2 { margin: 50px 0 15px; color: var(--navy); font-family: Georgia, serif; font-size: 32px; font-weight: 500; line-height: 1.25; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 30px 0 10px; color: var(--navy); font-size: 20px; }
.article-content p { margin: 0 0 18px; }
.article-content ul, .article-content ol { margin: 0 0 24px; padding-left: 24px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote { margin: 30px 0; padding: 22px 26px; background: var(--green-soft); border-left: 4px solid var(--green); }
.article-content table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 14px; }
.article-content th, .article-content td { padding: 13px 14px; border: 1px solid var(--line); vertical-align: top; text-align: left; }
.article-content th { background: var(--surface); color: var(--navy); }
.article-content .source-list { list-style: none; padding-left: 0; }
.article-content .source-list li { border-bottom: 1px solid var(--line); padding: 15px 0; }
.article-content .source-list a { font-weight: 700; }
.article-aside { position: sticky; top: 24px; display: grid; min-width: 0; max-width: 100%; gap: 18px; }
.aside-card { width: 100%; max-width: 100%; min-width: 0; padding: 26px; background: #fff; border: 1px solid var(--line); }
.aside-card__label { color: var(--muted); text-transform: uppercase; font-size: 11px; letter-spacing: .09em; }
.aside-card > strong { display: block; margin-top: 7px; color: var(--navy); font-family: Georgia, serif; font-size: 36px; font-weight: 500; }
.aside-card p { color: var(--muted); }
.aside-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.aside-card--muted { background: var(--surface); }
.aside-email { font-family: Arial, sans-serif !important; font-size: 20px !important; overflow-wrap: anywhere; word-break: break-word; }
.text-link { font-weight: 700; }

.news-list { display: grid; gap: 24px; }
.news-entry { width: 100%; max-width: 100%; min-width: 0; border: 1px solid var(--line); padding: 28px; background: #fff; scroll-margin-top: 30px; }
.news-entry time { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.news-entry h2 { margin-top: 10px; }
.news-entry .source { margin-top: 16px; font-size: 14px; }

.success-page { min-height: 68vh; display: grid; place-items: center; padding: 80px 20px; background: var(--surface); }
.success-card { max-width: 720px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 55px; text-align: center; }
.success-icon { width: 74px; height: 74px; margin: 0 auto 24px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; color: var(--green-dark); font-size: 36px; }
.success-card h1 { margin: 0; color: var(--navy); font-family: Georgia, serif; font-size: 42px; font-weight: 500; }
.success-card p { color: var(--muted); font-size: 18px; }

.site-footer { background: var(--navy-deep); color: #cbdadd; padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr 1fr; gap: 45px; }
.brand--footer { color: #fff; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: #b9cdd2; }
.site-footer h2 { margin: 0 0 15px; color: #fff; font-size: 15px; }
.site-footer p { color: #b7c9ce; font-size: 13px; }
.site-footer a { display: block; color: #d8e5e8; text-decoration: none; margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .footer-email { color: #fff; font-size: 17px; font-weight: 700; }
.footer-bottom { margin-top: 45px; min-height: 66px; border-top: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12px; }

.cookie-panel {
    position: fixed; z-index: 1000; left: 18px; right: 18px; bottom: 18px; width: auto; max-width: 1080px; max-height: calc(100vh - 36px); max-height: calc(100dvh - 36px); margin: auto;
    padding: 18px 20px; display: flex; min-width: 0; overflow: auto; align-items: center; justify-content: space-between; gap: 25px;
    background: #fff; border: 1px solid var(--line); box-shadow: 0 15px 45px rgba(0,0,0,.18);
}
.cookie-panel[hidden] { display: none; }
.cookie-panel strong { color: var(--navy); }
.cookie-panel p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.cookie-panel > div { min-width: 0; max-width: 100%; }
.cookie-panel__actions { display: flex; min-width: 0; max-width: 100%; align-items: center; gap: 9px; flex-wrap: wrap; }
.cookie-panel__actions a { font-size: 12px; }

@supports (padding: max(0px)) {
    .container {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    .site-footer { padding-bottom: env(safe-area-inset-bottom); }
    .cookie-panel {
        left: max(18px, env(safe-area-inset-left));
        right: max(18px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
    }
}


/* Защита сеток и flex-контейнеров от горизонтального переполнения в Safari/iOS. */
.site-header__main > *, .main-nav__inner > *, .hero__grid > *, .scope-grid > *, .two-column > *,
.process-grid > *, .price-band__inner > *, .news-grid > *, .form-grid > *, .form-submit > *,
.page-hero__grid > *, .article-layout > *, .article-aside > *, .footer-grid > * { min-width: 0; }
.document-panel, .scope-card, .news-card, .success-card { max-width: 100%; min-width: 0; }

@media (max-width: 1080px) {
    .header-facts { display: none; }
    .nav-link, .nav-group__toggle, .nav-form-link { padding-inline: 11px; }
    .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr); gap: 35px; }
    .article-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .utility-bar__inner span:nth-child(2) { display: none; }
    .utility-bar__inner span:first-child { margin-right: auto; }
    .site-header__main { min-height: 74px; }
    .brand__text small { display: none; }
    .nav-toggle { display: block; flex: 0 0 44px; margin-left: auto; }
    .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; width: 100%; box-shadow: var(--shadow); }
    .main-nav.is-open { display: block; }
    .main-nav__inner { display: block; width: 100%; padding: 10px 20px 20px; }
    .nav-link, .nav-group__toggle, .nav-form-link { width: 100%; min-height: 48px; padding: 0 10px; justify-content: space-between; white-space: normal; }
    .nav-group { display: block; width: 100%; }
    .nav-dropdown, .nav-dropdown--wide {
        position: static; width: 100%; max-width: 100%; visibility: visible; opacity: 1; transform: none; display: none;
        box-shadow: none; border: 0; background: rgba(255,255,255,.08); padding: 5px 12px;
    }
    .nav-group.is-open .nav-dropdown { display: block; }
    .nav-dropdown a { color: #fff; overflow-wrap: break-word; }
    .nav-dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
    .nav-form-link { margin-top: 8px; justify-content: center; }
    .hero__grid { grid-template-columns: minmax(0, 1fr); min-height: auto; padding-block: 68px; }
    .hero-card { width: 100%; max-width: 580px; }
    .scope-grid, .news-grid { grid-template-columns: minmax(0, 1fr); }
    .two-column { grid-template-columns: minmax(0, 1fr); gap: 35px; }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-item:nth-child(2) { border-right: 0; }
    .process-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .price-band__inner { grid-template-columns: minmax(0, 1fr); gap: 20px; padding-block: 38px; }
    .page-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 30px; padding-block: 55px; }
    .page-hero img { max-width: 650px; }
    .article-layout { grid-template-columns: minmax(0, 1fr); }
    .article-aside { position: static; grid-template-columns: minmax(0, 1fr); }
    .article-content table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .form-grid { grid-template-columns: minmax(0, 1fr); }
    .field--full, .field--consent { grid-column: auto; }
    .form-submit { grid-template-columns: minmax(0, 1fr); }
    .form-submit__action { max-width: none; text-align: left; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cookie-panel { align-items: flex-start; flex-direction: column; }
    .cookie-panel__actions { width: 100%; }
}

@media (max-width: 560px) {
    .container { width: calc(100% - 28px); max-width: var(--container); }
    .utility-bar__inner { min-height: 34px; justify-content: flex-end; }
    .utility-bar__inner span:first-child { display: none; }
    .utility-bar a { max-width: 100%; font-size: 12px; }
    .site-header__main { gap: 12px; }
    .site-header .brand { max-width: calc(100% - 56px); }
    .brand img { width: 43px; height: 43px; }
    .brand__text strong { font-size: 19px; }
    .hero__grid { padding-block: 52px; }
    .hero h1 { font-size: clamp(32px, 9.8vw, 39px); }
    .hero__lead { font-size: 17px; }
    .hero-card { padding: 24px 20px; }
    .hero-card strong { font-size: 39px; }
    .hero-card dl div { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 10px; }
    .section { padding: 64px 0; }
    .section-heading { margin-bottom: 30px; }
    .section-heading h2 { font-size: clamp(29px, 8.8vw, 34px); }
    .section-heading p:last-child { font-size: 16px; }
    .scope-card, .document-panel__body, .news-card__body { padding: 22px; }
    .process-grid { grid-template-columns: minmax(0, 1fr); }
    .process-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 20px; }
    .process-item:last-child { border-bottom: 0; }
    .price-band h2 { font-size: 30px; }
    .price-band__value strong { font-size: 42px; }
    .page-hero__grid { gap: 24px; padding-block: 42px; }
    .page-hero h1 { font-size: clamp(29px, 9vw, 36px); }
    .page-lead { margin-top: 15px; font-size: 17px; }
    .content-section { padding: 52px 0 72px; }
    .article-content h2 { margin-top: 40px; font-size: 27px; }
    .article-content h3 { font-size: 19px; }
    .article-content blockquote { margin: 24px 0; padding: 18px 19px; }
    .article-content table {
        display: table;
        width: 100%;
        max-width: 100%;
        table-layout: fixed;
        overflow: visible;
        font-size: 12px;
    }
    .article-content th, .article-content td {
        min-width: 0;
        padding: 9px 8px;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }
    .aside-card { padding: 22px; }
    .aside-card > strong { font-size: 32px; }
    .news-entry { padding: 21px; }
    .application-form fieldset { min-width: 0; padding: 28px 17px; }
    .application-form legend { font-size: 20px; line-height: 1.3; }
    .application-form legend span { width: 34px; height: 34px; margin-right: 8px; }
    .form-grid { gap: 20px; }
    .field input, .field select, .field textarea { font-size: 16px; }
    .field input[type="file"] { padding: 10px; }
    .form-submit { padding: 27px 17px; gap: 25px; }
    .form-price strong { font-size: 36px; }
    .button--pay { width: 100%; min-width: 0; }
    .footer-grid { grid-template-columns: minmax(0, 1fr); }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
    .success-page { padding: 55px 14px; }
    .success-card { width: 100%; padding: 38px 22px; }
    .success-card h1 { font-size: 34px; }
    .cookie-panel { left: 10px; right: 10px; bottom: 10px; max-height: calc(100vh - 20px); max-height: calc(100dvh - 20px); padding: 16px; gap: 16px; }
    @supports (padding: max(0px)) {
        .cookie-panel {
            left: max(10px, env(safe-area-inset-left));
            right: max(10px, env(safe-area-inset-right));
            bottom: max(10px, env(safe-area-inset-bottom));
        }
    }
    .cookie-panel__actions .button { flex: 1 1 150px; }
}

@media (max-width: 360px) {
    .container { width: calc(100% - 20px); }
    .brand { gap: 9px; }
    .brand img { width: 40px; height: 40px; }
    .brand__text strong { font-size: 17px; }
    .hero h1 { font-size: 31px; }
    .hero__links { align-items: stretch; flex-direction: column; gap: 14px; }
    .hero__links .button { width: 100%; }
    .hero__link { text-align: center; }
    .hero-card { padding-inline: 17px; }
    .section-heading h2 { font-size: 28px; }
    .page-hero h1 { font-size: 28px; }
    .application-form fieldset, .form-submit { padding-inline: 14px; }
    .aside-card, .news-entry { padding: 18px; }
}

