:root {
    --green-950: #062d22;
    --green-900: #0b3d2e;
    --green-800: #0b4a35;
    --green-700: #126247;
    --green-600: #177a55;
    --green-500: #229668;
    --green-300: #8fd6b3;
    --green-100: #dff4e8;
    --green-50: #f2faf6;
    --gold-500: #d8a936;
    --gold-300: #f1cf72;
    --ink-950: #15221c;
    --ink-800: #283b32;
    --ink-650: #4b5e55;
    --ink-500: #6a7a72;
    --surface: #ffffff;
    --surface-soft: #f5f8f6;
    --line: #dce6e0;
    --danger: #a63b31;
    --success: #18754d;
    --shadow-sm: 0 8px 24px rgba(11, 61, 46, .08);
    --shadow-md: 0 22px 60px rgba(7, 48, 36, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --container: 1240px;
    --header-height: 86px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; scrollbar-gutter: stable; }
body {
    margin: 0;
    min-height: 100vh;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    color: var(--ink-950);
    background: var(--surface);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
main { flex: 1 0 auto; min-width: 0; }
img { max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--green-500); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 3px; border-radius: 5px; }
::selection { color: var(--green-950); background: var(--green-300); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.visually-hidden {
    position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
    margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important;
    white-space: nowrap !important; border: 0 !important;
}
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-160%); background: #fff; padding: 10px 16px; box-shadow: var(--shadow-md); }
.skip-link:focus { transform: translateY(0); }

.demo-banner { background: #fff3cd; color: #5d4712; border-bottom: 1px solid #ead796; font-size: 14px; }
.demo-banner__inner { display: flex; gap: 12px; align-items: center; padding-block: 9px; }
.demo-banner code { background: rgba(255,255,255,.65); padding: 2px 6px; border-radius: 5px; }

.site-header { position: sticky; z-index: 100; top: 0; width: 100%; flex: 0 0 auto; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,230,224,.9); backdrop-filter: blur(14px); }
.site-header__utility { color: #d9eee3; background: var(--green-950); font-size: 13px; }
.utility-row { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.utility-contacts { display: flex; gap: 18px; }
.utility-contacts a { color: #fff; text-decoration: none; }
.site-header__main { min-height: var(--header-height); display: grid; grid-template-columns: minmax(245px, auto) minmax(0, 1fr) auto; gap: 24px; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink-950); text-decoration: none; min-width: 245px; }
.brand img { flex: 0 0 auto; }
.brand__text { display: grid; line-height: 1.15; }
.brand__text strong { font-size: 20px; letter-spacing: -.02em; }
.brand__text small { margin-top: 4px; color: var(--ink-650); font-size: 11px; letter-spacing: .035em; text-transform: uppercase; }
.main-nav { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 3px; }
.main-nav a { padding: 10px 8px; color: var(--ink-800); border-radius: 9px; font-size: 15px; font-weight: 650; text-decoration: none; white-space: nowrap; }
.main-nav a:hover { color: var(--green-700); background: var(--green-50); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.nav-toggle__lines, .nav-toggle__lines::before, .nav-toggle__lines::after { display: block; width: 22px; height: 2px; margin: auto; background: var(--green-900); content: ""; transition: transform .2s ease; }
.nav-toggle__lines::before { transform: translateY(-7px); }
.nav-toggle__lines::after { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after { transform: translateY(-2px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: 12px; color: #fff; background: var(--green-700); box-shadow: 0 8px 20px rgba(18,98,71,.18); font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { color: #fff; background: var(--green-600); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(18,98,71,.22); }
.button--compact { min-height: 44px; padding: 10px 16px; font-size: 14px; }
.button--large { min-height: 56px; padding: 15px 25px; }
.button--full { width: 100%; }
.button--secondary { color: var(--green-800); background: var(--green-100); box-shadow: none; }
.button--secondary:hover { color: var(--green-950); background: #cbead8; }
.button--light { color: var(--green-950); background: #fff; }
.button--light:hover { color: var(--green-950); background: var(--green-100); }
.button--ghost-light { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); box-shadow: none; }
.button--ghost-light:hover { background: rgba(255,255,255,.15); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 750; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 2px; background: currentColor; content: ""; }
.eyebrow--light { color: #cfeede; }

.flash { margin-top: 18px; padding: 14px 18px; border-radius: 12px; font-weight: 650; }
.flash--success { color: #0d5135; background: #dff4e8; border: 1px solid #aedbc4; }
.flash--error { color: #7c261f; background: #fff0ee; border: 1px solid #e8b8b2; }

.home-hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--green-950); }
.home-hero__media, .home-hero__media img, .home-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__media img { object-fit: cover; object-position: center; }
.home-hero__overlay { background: linear-gradient(92deg, rgba(4,39,29,.96) 0%, rgba(4,39,29,.84) 44%, rgba(4,39,29,.48) 72%, rgba(4,39,29,.62) 100%); }
.home-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .62fr); gap: 70px; align-items: center; padding-block: 84px 68px; }
.home-hero__content h1 { max-width: 820px; margin: 20px 0 22px; font-size: clamp(45px, 5.4vw, 78px); line-height: 1.03; letter-spacing: -.052em; }
.home-hero__content > p { max-width: 720px; margin: 0; color: #e2f0e9; font-size: clamp(19px, 2vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 26px 0 0; padding: 0; list-style: none; color: #d6e8df; font-size: 14px; }
.hero-proof li::before { margin-right: 8px; color: var(--gold-300); content: "✓"; font-weight: 900; }
.hero-panel { padding: 30px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: rgba(5,43,32,.72); box-shadow: 0 30px 80px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.hero-panel__tag { display: inline-block; padding: 5px 10px; border-radius: 999px; color: #193b2d; background: var(--gold-300); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.hero-panel h2 { margin: 16px 0 8px; font-size: 31px; line-height: 1.15; letter-spacing: -.03em; }
.hero-panel p { margin: 0 0 20px; color: #dbece4; font-size: 15px; }
.hero-form { display: grid; gap: 14px; }
.hero-form label { display: grid; gap: 6px; color: #e8f3ed; font-size: 13px; font-weight: 700; }
.hero-form input[type="text"], .hero-form input[type="number"] { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; color: #fff; background: rgba(255,255,255,.08); }
.hero-form input::placeholder { color: #b9cec4; }
.photo-caption { position: relative; z-index: 2; align-self: end; padding-bottom: 14px; color: rgba(255,255,255,.64); font-size: 11px; }

.trust-strip { color: #fff; background: var(--green-800); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid > div { min-height: 122px; display: grid; align-content: center; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.14); }
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip strong { font-size: 23px; line-height: 1.1; }
.trust-strip span { margin-top: 7px; color: #cfe4d9; font-size: 14px; }

.section { padding-block: 92px; }
.section--tinted { background: var(--surface-soft); }
.section--dark { color: #fff; background: var(--green-950); }
.section-heading { max-width: 800px; margin-bottom: 36px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -.04em; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1fr minmax(280px, .68fr); gap: 60px; align-items: end; }
.section-heading--split > p { margin: 0; color: var(--ink-650); font-size: 18px; }
.section-heading--split > .text-link { justify-self: end; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b8d9c6; box-shadow: var(--shadow-md); }
.service-card__number { color: var(--green-700); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.service-card h3 { margin: 28px 0 12px; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
.service-card h3 a { color: var(--ink-950); text-decoration: none; }
.service-card p { margin: 0 0 24px; color: var(--ink-650); font-size: 15px; }
.service-card .text-link { margin-top: auto; }
.process-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 46px; padding: 0; list-style: none; }
.process-grid li { position: relative; flex: 0 1 calc(25% - 14px); min-height: 285px; overflow: hidden; padding: 27px; border: 1px solid #cfe0d7; border-radius: 22px; background: linear-gradient(155deg, #fff 55%, #eef8f2); box-shadow: 0 14px 38px rgba(11,61,46,.08); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.process-grid li::before { position: absolute; right: -30px; bottom: -42px; width: 130px; height: 130px; border-radius: 50%; background: rgba(34,150,104,.07); content: ""; }
.process-grid li:hover { z-index: 1; transform: translateY(-5px); border-color: #a9cfba; box-shadow: 0 22px 48px rgba(11,61,46,.14); }
.process-grid li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--green-700); box-shadow: 0 9px 20px rgba(18,98,71,.2); font-size: 13px; font-weight: 850; letter-spacing: .05em; }
.process-grid li:nth-child(even) > span { color: var(--green-950); background: var(--gold-300); box-shadow: 0 9px 20px rgba(216,169,54,.2); }
.process-grid li:last-child { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--green-900), var(--green-700)); }
.process-grid li:last-child::before { background: rgba(255,255,255,.08); }
.process-grid li:last-child > span { color: var(--green-950); background: var(--gold-300); }
.process-grid h3 { position: relative; margin: 28px 0 12px; font-size: 21px; line-height: 1.2; letter-spacing: -.02em; }
.process-grid p { position: relative; margin: 0; color: var(--ink-650); font-size: 14px; line-height: 1.62; }
.process-grid li:last-child p { color: #d8ebe2; }
.split-feature { display: grid; grid-template-columns: 1.02fr .98fr; gap: 68px; align-items: center; }
.split-feature__media { position: relative; }
.split-feature__media img { display: block; width: 100%; border-radius: 28px; box-shadow: var(--shadow-md); aspect-ratio: 3/2; object-fit: cover; }
.split-feature__media small { display: block; margin-top: 9px; color: var(--ink-500); font-size: 11px; }
.split-feature__content h2 { margin: 10px 0 18px; font-size: clamp(34px, 4vw, 51px); line-height: 1.12; letter-spacing: -.04em; }
.split-feature__content > p { color: var(--ink-650); font-size: 18px; }
.check-list { display: grid; gap: 11px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; top: .1em; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-600); content: "✓"; font-size: 12px; font-weight: 900; }
.law-banner { display: grid; grid-template-columns: 1fr auto; gap: 54px; align-items: center; padding-block: 68px; }
.law-banner h2 { margin: 12px 0 13px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
.law-banner p { max-width: 800px; margin: 0; color: #cce3d8; }
.card-grid { display: grid; gap: 18px; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-card, .link-card { min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.topic-card, .link-card, .topic-card a, .link-card a { overflow-wrap: anywhere; }
.topic-card h3, .link-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.topic-card h3 a, .link-card h3 a { color: var(--ink-950); text-decoration: none; }
.topic-card p, .link-card p { color: var(--ink-650); font-size: 15px; }
.topic-card .text-link, .link-card .text-link { margin-top: 12px; }
.link-card > span { display: block; margin-bottom: 14px; color: var(--green-600); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.article-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.article-list article { padding: 24px 26px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.article-list span { color: var(--green-600); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.article-list h3 { margin: 8px 0 8px; font-size: 21px; line-height: 1.28; }
.article-list h3 a { color: var(--ink-950); text-decoration: none; }
.article-list p { margin: 0; color: var(--ink-650); font-size: 14px; }

.breadcrumbs { padding-block: 19px; font-size: 13px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px 9px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 9px; color: #9aa8a1; content: "/"; }
.breadcrumbs a { color: var(--ink-650); text-decoration: none; }
.breadcrumbs span { color: var(--ink-500); }
.page-hero { position: relative; overflow: hidden; padding-block: 64px 70px; background: linear-gradient(135deg, var(--green-50), #fff 54%, #eef8f3); border-block: 1px solid var(--line); }
.page-hero::after { position: absolute; top: -140px; right: -80px; width: 480px; height: 480px; border: 80px solid rgba(34,150,104,.06); border-radius: 50%; content: ""; }
.page-hero--document { background: linear-gradient(135deg, #f7faf8, #eef7f2); }
.page-hero--legal { background: linear-gradient(135deg, #f7f6f0, #fff, #eef7f2); }
.page-hero--risk { background: linear-gradient(135deg, #f7faf8, #fff6ef); }
.article-header { position: relative; z-index: 1; max-width: 990px; }
.article-header h1 { max-width: 980px; margin: 13px 0 18px; font-size: clamp(38px, 5vw, 64px); line-height: 1.08; letter-spacing: -.045em; }
.article-lead { max-width: 890px; margin: 0; color: var(--ink-650); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.article-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 24px; color: var(--ink-500); font-size: 13px; }
.status-pill { padding: 3px 9px; border-radius: 999px; color: #785912; background: #fff0bd; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; align-items: start; padding-block: 64px 80px; }
.article-body { min-width: 0; font-size: 18px; }
.article-body > p:first-of-type { font-size: 20px; color: var(--ink-800); }
.article-body p { margin: 0 0 1.15em; }
.content-section { scroll-margin-top: 120px; margin: 58px 0 0; }
.content-section:first-of-type { margin-top: 44px; }
.content-section h2 { margin: 0 0 20px; font-size: clamp(30px, 3.5vw, 43px); line-height: 1.18; letter-spacing: -.035em; }
.content-section h3 { margin: 34px 0 14px; font-size: 27px; line-height: 1.22; letter-spacing: -.025em; }
.content-section h4 { margin: 28px 0 12px; font-size: 22px; line-height: 1.3; }
.content-section h5 { margin: 24px 0 10px; font-size: 18px; }
.content-section h6 { margin: 20px 0 8px; color: var(--ink-650); font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.section-kicker { margin-top: -10px; color: var(--green-700); font-weight: 700; }
.content-list, .numbered-list, .steps-list { display: grid; gap: 12px; margin: 22px 0; padding-left: 24px; }
.content-list li::marker, .numbered-list li::marker { color: var(--green-600); font-weight: 800; }
.content-list li strong, .steps-list li strong { display: block; color: var(--ink-950); }
.content-list li span, .steps-list li span { display: block; margin-top: 3px; color: var(--ink-650); }
.steps-list { counter-reset: steps; padding: 0; list-style: none; }
.steps-list li { counter-increment: steps; position: relative; min-height: 72px; padding: 15px 18px 15px 70px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }
.steps-list li::before { position: absolute; left: 16px; top: 15px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: var(--green-700); content: counter(steps); font-weight: 800; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0 48px; }
.highlight-card { min-height: 132px; display: grid; align-content: start; gap: 8px; padding: 20px; border: 1px solid #cae2d5; border-radius: 15px; background: var(--green-50); }
.highlight-card strong { font-size: 17px; }
.highlight-card span { color: var(--ink-650); font-size: 14px; }
.callout { margin: 26px 0; padding: 21px 24px; border-left: 4px solid var(--green-600); border-radius: 0 14px 14px 0; background: var(--green-50); }
.callout strong { display: block; margin-bottom: 7px; }
.callout p { margin: 0; color: var(--ink-800); }
.callout--warning { border-left-color: var(--gold-500); background: #fff8e8; }
.callout--danger { border-left-color: var(--danger); background: #fff1ef; }
.editorial-notice { margin-bottom: 28px; padding: 20px 22px; border: 1px solid #d7e6de; border-radius: 14px; background: var(--surface-soft); }
.editorial-notice strong { display: block; margin-bottom: 5px; }
.editorial-notice p { margin: 0; font-size: 15px; }
.editorial-notice--warning { border-color: #e8d49a; background: #fff8e6; }
.table-scroll { max-width: 100%; margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.content-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.content-table th { color: #fff; background: var(--green-800); text-align: left; }
.content-table th, .content-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.content-table tr:last-child td { border-bottom: 0; }
.content-table tbody tr:nth-child(even) { background: var(--surface-soft); }
.content-figure { margin: 34px 0; }
.content-figure img { display: block; width: 100%; border-radius: 20px; aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow-sm); }
.content-figure figcaption { margin-top: 8px; color: var(--ink-500); font-size: 12px; }
.photo-credit { margin-left: 6px; }
.faq-section, .sources { scroll-margin-top: 120px; margin-top: 64px; padding-top: 52px; border-top: 1px solid var(--line); }
.faq-section h2, .sources h2 { margin: 10px 0 22px; font-size: clamp(30px, 3.5vw, 42px); line-height: 1.17; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-list summary { position: relative; padding: 18px 52px 18px 20px; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 19px; top: 50%; transform: translateY(-50%); color: var(--green-700); content: "+"; font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details > div { padding: 0 20px 18px; color: var(--ink-650); }
.faq-list details p { margin: 0; }
.sources > p { color: var(--ink-650); }
.sources ol { display: grid; gap: 10px; padding-left: 23px; }
.sources li::marker { color: var(--green-600); font-weight: 800; }
.sources li span { display: block; color: var(--ink-500); font-size: 13px; }

.sidebar { position: sticky; top: 142px; display: grid; gap: 16px; }
.sidebar-card { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.sidebar-card h2 { margin: 0 0 13px; font-size: 19px; line-height: 1.25; }
.sidebar-card p { margin: 0 0 16px; color: var(--ink-650); font-size: 14px; }
.toc ol { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; display: grid; grid-template-columns: 23px 1fr; gap: 5px; }
.toc li::before { color: #8aa097; content: counter(toc, decimal-leading-zero); font-size: 11px; font-weight: 800; }
.toc a { color: var(--ink-800); font-size: 13px; line-height: 1.4; text-decoration: none; }
.sidebar-contact { color: #fff; background: linear-gradient(145deg, var(--green-900), var(--green-700)); border: 0; }
.sidebar-contact .eyebrow { color: #bce2ce; font-size: 10px; }
.sidebar-contact h2 { margin-top: 10px; font-size: 25px; }
.sidebar-contact p { color: #d9ebe2; }
.sidebar-phone { display: block; margin-top: 14px; color: #fff; font-size: 18px; font-weight: 800; text-align: center; text-decoration: none; }
.related-mini ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.related-mini a { color: var(--ink-800); font-size: 13px; line-height: 1.35; text-decoration: none; }
.official-note { background: #fbfcfb; }
.official-note > a { font-size: 14px; font-weight: 750; }
.related-section { padding-block: 72px; border-top: 1px solid var(--line); }

.contact-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; margin-block: 36px 92px; padding: 50px; border-radius: 30px; color: #fff; background: linear-gradient(145deg, var(--green-950), var(--green-700)); box-shadow: var(--shadow-md); }
.contact-section__intro h2 { margin: 12px 0 18px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.04em; }
.contact-section__intro p { color: #d7e9e0; }
.contact-section__intro .check-list { color: #eaf4ef; font-size: 15px; }
.contact-section__intro .check-list li::before { color: var(--green-950); background: var(--gold-300); }
.contact-section--dedicated .contact-section__intro { display: flex; flex-direction: column; }
.contact-after-submit { margin-top: 31px; padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(255,255,255,.065); }
.contact-after-submit h3 { margin: 0 0 16px; color: #fff; font-size: 20px; }
.contact-after-submit ol { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: contact-step; }
.contact-after-submit li { counter-increment: contact-step; position: relative; min-height: 37px; padding-left: 46px; }
.contact-after-submit li::before { position: absolute; top: 0; left: 0; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: var(--green-950); background: var(--gold-300); content: counter(contact-step); font-size: 12px; font-weight: 900; }
.contact-after-submit strong, .contact-after-submit span { display: block; }
.contact-after-submit strong { color: #fff; font-size: 13px; }
.contact-after-submit span { margin-top: 2px; color: #cde2d8; font-size: 11px; line-height: 1.45; }
.contact-form-faq { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.17); }
.contact-form-faq h3 { margin: 0 0 13px; color: #fff; font-size: 20px; }
.contact-form-faq details { border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-form-faq summary { position: relative; padding: 13px 30px 13px 0; color: #fff; cursor: pointer; font-size: 14px; font-weight: 750; list-style: none; }
.contact-form-faq summary::-webkit-details-marker { display: none; }
.contact-form-faq summary::after { position: absolute; top: 12px; right: 2px; color: var(--gold-300); content: "+"; font-size: 20px; line-height: 1; }
.contact-form-faq details[open] summary::after { content: "−"; }
.contact-form-faq details p { margin: -1px 0 14px; color: #cfe3d9; font-size: 12px; line-height: 1.55; }
.contact-form-phone { display: grid; gap: 3px; margin-top: 24px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; color: var(--green-950); background: var(--gold-300); text-decoration: none; box-shadow: 0 13px 30px rgba(0,0,0,.12); }
.contact-form-phone span { font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .045em; }
.contact-form-phone strong { font-size: 22px; }
.contact-form-phone:hover { color: var(--green-950); background: #f7dc8d; }
.contact-form { padding: 28px; border-radius: 21px; color: var(--ink-950); background: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field > span { color: var(--ink-800); font-size: 13px; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid #cddbd4; border-radius: 10px; color: var(--ink-950); background: #fff; }
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(34,150,104,.1); outline: 0; }
.field small { color: var(--ink-500); font-weight: 500; }
.consent { display: grid; grid-template-columns: 19px 1fr; gap: 10px; margin: 17px 0; color: var(--ink-650); font-size: 12px; line-height: 1.45; }
.consent input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--green-700); }
.consent--light { color: #dbeae3 !important; }
.consent--light a { color: #fff; }
.form-note { margin: 13px 0 0; color: var(--ink-500); font-size: 12px; text-align: center; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 1px; margin-top: 8px; font-size: 13px; }
.field--captcha { grid-column: 1 / -1; max-width: 320px; }
.form-data-note { margin: -7px 0 15px; color: var(--ink-500); font-size: 11px; line-height: 1.5; }
.form-data-note--light { margin: -5px 0 0; color: #b9cec4; }

.contacts-page { padding-block: 58px 92px; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-channel-card { min-height: 178px; display: flex; flex-direction: column; gap: 9px; padding: 24px; border: 1px solid var(--line); border-radius: 19px; color: var(--ink-950); background: #fff; box-shadow: var(--shadow-sm); text-decoration: none; }
.contact-channel-card--primary { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--green-900), var(--green-600)); }
.contact-channel-card > span { color: var(--green-600); font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.contact-channel-card--primary > span { color: #bde5d1; }
.contact-channel-card > strong { font-size: 18px; line-height: 1.35; }
.contact-channel-card > small { margin-top: auto; color: var(--ink-500); font-size: 12px; line-height: 1.5; }
.contact-channel-card--primary > small { color: #d9eee3; }
a.contact-channel-card:hover { color: #fff; transform: translateY(-2px); }
.contact-directions-heading { max-width: 800px; margin: 72px 0 26px; }
.contact-directions-heading h2 { margin: 9px 0 0; font-size: clamp(31px, 4vw, 46px); line-height: 1.15; letter-spacing: -.035em; }
.contact-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-topic-card { min-height: 220px; padding: 26px; border: 1px solid #cfe2d8; border-radius: 20px; background: linear-gradient(155deg, #fff, var(--green-50)); }
.contact-topic-card > span { display: inline-grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: #fff; background: var(--green-700); font-size: 12px; font-weight: 850; }
.contact-topic-card h3 { margin: 20px 0 10px; font-size: 24px; }
.contact-topic-card p { margin: 0; color: var(--ink-650); font-size: 15px; }
.contact-section--dedicated { margin-top: 54px; }
.contacts-page-details { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 52px; align-items: start; margin-top: 72px; }
.contact-safety-card { position: sticky; top: 135px; padding: 27px; border: 1px solid #eadba8; border-radius: 20px; background: #fff9e9; }
.contact-safety-card h2 { margin: 10px 0 14px; font-size: 27px; line-height: 1.2; }
.contact-safety-card p { color: var(--ink-650); font-size: 14px; }

.hub-list { margin-top: 60px; }
.hub-list h2 { font-size: clamp(31px, 4vw, 44px); }
.hub-list__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hub-item { display: flex; flex-direction: column; min-height: 235px; padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.hub-item__eyebrow { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 12px; align-items: center; }
.hub-item__eyebrow > span:first-child { color: var(--green-600); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hub-item h3 { margin: 9px 0 8px; font-size: 21px; line-height: 1.28; }
.hub-item h3 a { color: var(--ink-950); text-decoration: none; }
.hub-item p { margin: 0; color: var(--ink-650); font-size: 14px; }
.hub-item__meta { display: flex; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; color: var(--ink-500); font-size: 12px; }
.hub-item__meta a { font-weight: 750; text-decoration: none; }

.site-footer { width: 100%; flex: 0 0 auto; margin-top: auto; padding-top: 62px; color: #cfe1d8; background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, .8fr) minmax(0, 1fr); gap: 48px; padding-bottom: 52px; }
.footer-grid > * { min-width: 0; }
.brand--footer { color: #fff; }
.brand--footer .brand__text small { color: #9fc0b1; }
.footer-brand p { max-width: 440px; color: #acc8ba; font-size: 14px; }
.footer-disclaimer { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.11); }
.footer-title { margin: 0 0 15px; color: #fff; font-size: 16px; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a, .footer-contacts a { color: #cfe1d8; font-size: 14px; text-decoration: none; }
.footer-contacts { display: grid; gap: 9px; font-style: normal; overflow-wrap: anywhere; }
.footer-contacts span { color: #91ad9f; font-size: 13px; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.11); color: #a8c0b4; font-size: 12px; }
.footer-legal nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.footer-legal a { color: #cfe1d8; text-decoration: none; }
.footer-bottom { display: grid; grid-template-columns: auto minmax(240px, 1fr) auto; align-items: start; gap: 30px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #819e90; font-size: 11px; }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-developer { color: #cfe1d8; }
.footer-developer a { color: #fff; font-weight: 800; text-decoration: underline; text-decoration-color: #7fd7ad; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.footer-developer a:hover, .footer-developer a:focus-visible { color: #a7f3d0; text-decoration-color: currentColor; }
.mobile-contact { display: none; }

@media (max-width: 1140px) {
    .header-cta { display: none; }
    .site-header__main { grid-template-columns: auto 1fr; }
    .main-nav { justify-content: flex-end; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1140px) {
    .process-grid li { flex-basis: calc(33.333% - 12px); }
    .content-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 34px; }
}

@media (max-width: 1040px) {
    :root { --header-height: 70px; }
    input:not([type="checkbox"]):not([type="radio"]), select, textarea { font-size: 16px; }
    .site-header__utility { display: none; }
    .site-header__main { grid-template-columns: 1fr auto; gap: 12px; }
    .brand { min-width: 0; }
    .brand__text strong { font-size: 18px; }
    .brand__text small { display: none; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; left: 14px; right: 14px; display: none; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 12px 14px; }
}

@media (max-width: 920px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .home-hero { min-height: auto; }
    .home-hero__grid { grid-template-columns: 1fr; gap: 38px; padding-block: 70px 42px; }
    .home-hero__content h1 { font-size: clamp(43px, 9vw, 68px); }
    .hero-panel { max-width: 620px; }
    .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip__grid > div:nth-child(2) { border-right: 0; }
    .trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
    .section { padding-block: 68px; }
    .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
    .section-heading--split > .text-link { justify-self: start; }
    .process-grid li { flex-basis: calc(50% - 9px); }
    .split-feature { grid-template-columns: 1fr; gap: 38px; }
    .law-banner { grid-template-columns: 1fr; }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
    .toc { grid-column: 1 / -1; }
    .contact-section { grid-template-columns: 1fr; padding: 38px; }
    .contact-channel-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-page-details { grid-template-columns: 1fr; }
    .contact-safety-card { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    body { font-size: 16px; line-height: 1.62; }
    .demo-banner__inner { align-items: flex-start; flex-direction: column; gap: 2px; padding-block: 8px; }
    .brand img { width: 42px; height: 42px; }
    .home-hero__grid { padding-top: 55px; }
    .home-hero__content h1 { margin-top: 14px; font-size: clamp(39px, 12vw, 56px); }
    .home-hero__content > p { font-size: 18px; }
    .section-heading h2 { font-size: clamp(29px, 9.5vw, 36px); overflow-wrap: break-word; }
    .hero-actions { display: grid; }
    .hero-panel { padding: 22px; }
    .photo-caption { display: none; }
    .trust-strip__grid { grid-template-columns: 1fr; }
    .trust-strip__grid > div { min-height: 98px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .service-grid, .card-grid--3, .article-list, .hub-list__grid, .highlight-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .process-grid { gap: 13px; }
    .process-grid li { flex-basis: 100%; }
    .process-grid li { min-height: auto; }
    .process-grid h3 { margin-top: 20px; }
    .page-hero { padding-block: 48px 53px; }
    .article-header h1 { font-size: clamp(35px, 11vw, 50px); }
    .article-lead { font-size: 18px; }
    .content-layout { padding-block: 44px 60px; }
    .article-body { font-size: 17px; }
    .article-body > p:first-of-type { font-size: 18px; }
    .content-section { margin-top: 44px; }
    .content-section h2 { font-size: 30px; }
    .content-section h3 { font-size: 24px; }
    .sidebar { grid-template-columns: 1fr; }
    .contact-section { margin-bottom: 70px; padding: 27px 20px; border-radius: 22px; }
    .contact-form { padding: 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .field--full { grid-column: auto; }
    .contacts-page { padding-block: 42px 68px; }
    .contact-channel-grid, .contact-topic-grid { grid-template-columns: 1fr; }
    .contact-channel-card { min-height: 150px; }
    .contact-directions-heading { margin-top: 52px; }
    .contacts-page-details { margin-top: 52px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-legal { flex-direction: column; }
    .footer-bottom { grid-template-columns: 1fr; gap: 12px; }
    .footer-bottom > span:nth-child(2) { text-align: left; }
    .footer-legal nav { justify-content: flex-start; }
    .mobile-contact { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 10px; display: flex; align-items: center; justify-content: center; min-height: 50px; border-radius: 13px; color: #fff; background: var(--green-700); box-shadow: 0 12px 30px rgba(6,45,34,.35); font-weight: 800; text-decoration: none; }
    .site-footer { padding-bottom: 68px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
    .demo-banner, .site-header, .sidebar, .contact-section, .site-footer, .mobile-contact, .related-section { display: none !important; }
    .content-layout { display: block; padding: 0; }
    .page-hero { padding: 20px 0; background: #fff; border: 0; }
    body { color: #000; font-size: 12pt; }
    a { color: #000; text-decoration: underline; }
}

/* Проверяемые локальные данные */
.geo-facts { margin: 46px 0 58px; padding: 30px; border: 1px solid #bdd8ca; border-radius: 22px; background: linear-gradient(145deg, #f1faf5, #ffffff); box-shadow: var(--shadow-sm); }
.geo-facts__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.geo-facts__header h2 { margin: 7px 0 0; font-size: clamp(28px, 4vw, 39px); }
.data-date { flex: 0 0 auto; padding: 8px 11px; border-radius: 999px; color: var(--green-800); background: #dff3e8; font-size: 12px; font-weight: 800; }
.geo-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.geo-stat-grid > div { display: grid; gap: 4px; min-height: 108px; align-content: center; padding: 18px; border: 1px solid #d8e8df; border-radius: 15px; background: #fff; }
.geo-stat-grid strong { color: var(--green-800); font-size: 31px; line-height: 1; }
.geo-stat-grid span { color: var(--ink-650); font-size: 12px; }
.geo-price-note { margin: 22px 0 0; padding: 14px 16px; border-radius: 12px; background: #fff8df; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-row span { padding: 7px 10px; border: 1px solid #c9e0d4; border-radius: 999px; color: var(--green-800); background: #fff; font-size: 12px; font-weight: 750; }
.geo-notes { margin-top: 25px; }
.geo-notes h3 { font-size: 23px; }
.geo-source-note { margin: 20px 0 0; color: var(--ink-500); font-size: 12px; }

/* HTML-карта сайта */
.sitemap-page { padding-block: 62px 82px; }
.sitemap-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.sitemap-summary > div { display: grid; gap: 5px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.sitemap-summary strong { color: var(--green-800); font-size: 34px; line-height: 1; }
.sitemap-summary span { color: var(--ink-650); font-size: 13px; }
.sitemap-explainer { max-width: 850px; margin-bottom: 42px; color: var(--ink-650); }
.sitemap-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.sitemap-group { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.sitemap-group h2 { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 18px; font-size: 23px; line-height: 1.25; }
.sitemap-group h2 span { min-width: 32px; padding: 5px 8px; border-radius: 999px; color: var(--green-800); background: #e6f4ec; font-size: 12px; text-align: center; }
.sitemap-group ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.sitemap-group li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; padding-top: 10px; border-top: 1px solid #edf2ef; }
.sitemap-group li:first-child { padding-top: 0; border-top: 0; }
.sitemap-group a { color: var(--ink-800); font-size: 14px; line-height: 1.4; text-decoration: none; }
.sitemap-status { padding: 4px 7px; border-radius: 999px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.sitemap-status--index { color: #14532d; background: #dcfce7; }
.sitemap-status--draft { color: #854d0e; background: #fef3c7; }

@media (max-width: 920px) {
    .geo-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .sitemap-groups { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
    .geo-facts { padding: 22px 17px; border-radius: 17px; }
    .geo-facts__header { flex-direction: column; }
    .geo-stat-grid { grid-template-columns: 1fr 1fr; }
    .geo-stat-grid > div { min-height: 92px; padding: 14px; }
    .sitemap-summary { grid-template-columns: 1fr; }
    .sitemap-group { padding: 20px 16px; }
    .sitemap-group li { grid-template-columns: 1fr; gap: 5px; }
    .sitemap-status { justify-self: start; }
}
.yandex-metrika-noscript { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
