:root {
  --navy: #102a43;
  --blue: #2563eb;
  --white: #ffffff;
  --surface: #f5f7fa;
  --ink: #172b4d;
  --muted: #5e6f85;
  --line: #d7e0ea;
  --soft-blue: #e8efff;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; line-height: 1.55; }
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-weight: 700; line-height: 1.04; letter-spacing: 0; overflow-wrap: normal; word-break: normal; hyphens: none; }
p { margin-bottom: 0; }
.shell { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; transform: translateY(-160%); padding: 10px 14px; color: var(--white); background: var(--navy); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(16,42,67,.12); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.header-row { position: relative; display: flex; align-items: center; min-height: 76px; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; color: var(--navy); }
.brand-logo { display: block; width: 154px; height: auto; }
.navigation { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.navigation a { position: relative; padding: 27px 0 25px; color: #3d5068; font-size: 13px; font-weight: 700; white-space: nowrap; }
.navigation a:hover, .navigation a[aria-current='page'] { color: var(--blue); }
.navigation a[aria-current='page']::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--blue); content: ''; }
.menu-button { display: none; width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 4px; padding: 10px; background: var(--white); }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: var(--navy); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 4px; padding: 0 20px; font-weight: 700; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { background: #174fc7; }
.button-secondary { color: var(--navy); border-color: var(--navy); background: transparent; }
.button-secondary:hover { color: var(--white); background: var(--navy); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.link-button { display: inline-flex; align-items: center; gap: 9px; border: 0; padding: 0; color: var(--navy); background: transparent; font-size: 13px; font-weight: 700; }
.link-button span { color: var(--blue); transition: transform .18s ease; }
.link-button:hover span { transform: translateX(4px); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .18s ease; }
.button:focus-visible, .link-button:focus-visible, .text-link:focus-visible, .navigation a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(37,99,235,.25); outline-offset: 3px; }

.hero-home { position: relative; min-height: 650px; overflow: hidden; color: var(--white); background: var(--navy) url('/assets/hero.png') center center / cover no-repeat; }
.hero-home::before { position: absolute; inset: 0; background: rgba(16,42,67,.34); content: ''; }
.hero-home::after { position: absolute; inset: 0 auto 0 0; width: 59%; background: rgba(16,42,67,.83); content: ''; }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 650px; align-items: center; padding-block: 70px; }
.hero-copy { width: 58%; min-width: 0; max-width: 700px; }
.section-kicker { display: block; margin-bottom: 18px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero-home .section-kicker { display: inline-flex; align-items: center; min-height: 32px; border: 1px solid var(--blue); border-radius: 4px; padding: 7px 11px; color: var(--white); background: rgba(16,42,67,.46); }
.hero-home h1 { max-width: 690px; font-size: 64px; }
.hero-home .hero-lead { max-width: 610px; margin-top: 25px; color: #dce6f1; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions .button-secondary { color: var(--white); border-color: rgba(255,255,255,.65); }
.hero-actions .button-secondary:hover { color: var(--navy); background: var(--white); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0; margin: 44px 0 0; padding: 0; list-style: none; }
.hero-meta li { min-width: 145px; border-left: 1px solid rgba(255,255,255,.34); padding: 0 20px; }
.hero-meta li:first-child { padding-left: 0; border-left: 0; }
.hero-meta strong { display: block; font-size: 18px; }
.hero-meta span { color: #b9c9d9; font-size: 12px; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; }
.proof-intro, .proof-item { min-height: 112px; padding: 26px 24px; border-right: 1px solid var(--line); }
.proof-grid > :last-child { border-right: 0; }
.proof-intro { display: flex; align-items: center; padding-left: 0; color: var(--navy); font-size: 15px; font-weight: 700; }
.proof-item span { display: block; margin-bottom: 7px; color: var(--blue); font-size: 12px; font-weight: 800; }
.proof-item strong { font-size: 15px; line-height: 1.35; }

.section { padding: 104px 0; }
.section-surface { background: var(--surface); }
.section-navy { color: var(--white); background: var(--navy); }
.section-blue { color: var(--white); background: var(--blue); }
.section-header { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr); gap: 50px; align-items: end; margin-bottom: 48px; border-top: 2px solid var(--navy); padding-top: 22px; }
.section-navy .section-header, .section-blue .section-header { border-top-color: rgba(255,255,255,.45); }
.section-header h2 { max-width: 760px; font-size: 46px; }
.section-header > p { max-width: 480px; color: var(--muted); line-height: 1.75; }
.section-navy .section-header > p, .section-blue .section-header > p { color: #d5e1ee; }
.section-navy .section-kicker, .section-blue .section-kicker { color: var(--white); }

.services-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.service-card { display: flex; min-width: 0; min-height: 570px; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.service-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy); }
.service-card__media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(10,31,53,.55)); content: ''; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card__media:hover img { transform: scale(1.025); }
.service-card__media > span { position: absolute; right: 20px; bottom: 16px; z-index: 1; color: var(--white); font-size: 13px; font-weight: 800; }
.service-card__content { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 28px; }
.service-card__tag { margin-bottom: 13px; color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.service-card__content h3 { font-size: 27px; line-height: 1.15; }
.service-card__content p { max-width: 510px; margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 26px; }
.service-card__actions .button { min-width: 150px; }
.services-footer { display: flex; justify-content: flex-end; padding-top: 28px; }

.editorial-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 88px; align-items: start; }
.editorial-grid h2 { font-size: 48px; }
.editorial-copy { display: grid; gap: 22px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.editorial-copy strong { color: var(--navy); }
.section-navy .editorial-copy { color: #c8d6e4; }
.section-navy .editorial-copy strong { color: var(--white); }
.fact-line { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid rgba(255,255,255,.24); }
.fact-line div { min-height: 125px; border-right: 1px solid rgba(255,255,255,.24); padding: 25px 24px; }
.fact-line div:first-child { padding-left: 0; }
.fact-line div:last-child { border-right: 0; }
.fact-line span { display: block; margin-bottom: 8px; color: #aec0d2; font-size: 12px; }
.fact-line strong { font-size: 18px; }

.visual-story { position: relative; min-height: 540px; overflow: hidden; background: var(--navy) url('/assets/hero-sealed-envelope.jpg') center / cover no-repeat; }
.visual-story::before { position: absolute; inset: 0; background: rgba(16,42,67,.55); content: ''; }
.visual-story__content { position: relative; z-index: 1; display: flex; min-height: 540px; align-items: end; padding-block: 64px; }
.visual-story__panel { max-width: 620px; border-left: 4px solid var(--blue); padding-left: 28px; color: var(--white); }
.visual-story__panel h2 { font-size: 45px; }
.visual-story__panel p { max-width: 560px; margin-top: 20px; color: #d6e1ec; line-height: 1.7; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-process { margin: 0; padding: 0; list-style: none; }
.service-process--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-process--five .process-card { padding: 24px; }
.service-process--five .process-card h3 { font-size: 19px; }
.process-card { min-height: 280px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px; }
.process-card span { display: block; margin-bottom: 70px; color: var(--blue); font-size: 13px; font-weight: 800; }
.process-card h3 { font-size: 21px; }
.process-card p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.audience-item { min-height: 250px; padding: 34px; background: var(--navy); }
.audience-item span { color: #aec0d2; font-size: 12px; }
.audience-item h3 { margin-top: 55px; font-size: 24px; }
.audience-item p { margin-top: 15px; color: #c8d6e4; font-size: 14px; line-height: 1.65; }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: var(--white); background: var(--blue); }
.cta-band::after { position: absolute; right: -75px; bottom: -150px; width: 340px; height: 340px; border: 48px solid rgba(255,255,255,.18); border-radius: 50%; content: ''; }
.cta-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-row h2 { max-width: 760px; font-size: 44px; }
.cta-row p { max-width: 680px; margin-top: 15px; color: #e2eaff; }

.service-custom-cta { padding: 66px 0; color: var(--white); background: var(--navy); }
.service-custom-cta__row { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.service-custom-cta .section-kicker { color: #8fb4ff; }
.service-custom-cta h2 { font-size: 40px; }
.service-custom-cta p { max-width: 720px; margin-top: 14px; color: #c8d6e4; line-height: 1.7; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: var(--navy); font-size: 17px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--blue); font-size: 25px; font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details p { max-width: 760px; padding: 0 0 28px; color: var(--muted); line-height: 1.75; }

.inner-hero { position: relative; min-height: 420px; overflow: hidden; color: var(--white); background: var(--navy) url('/assets/hero.png') center 47% / cover no-repeat; }
.inner-hero::before { position: absolute; inset: 0; background: rgba(16,42,67,.78); content: ''; }
.inner-hero__content { position: relative; z-index: 1; display: grid; min-height: 420px; grid-template-columns: 1fr 340px; align-items: end; gap: 70px; padding-block: 70px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #c8d6e4; font-size: 12px; }
.breadcrumbs a:hover { color: var(--white); }
.inner-hero h1 { max-width: 820px; font-size: 56px; }
.inner-hero__lead { max-width: 700px; margin-top: 22px; color: #d8e2ec; font-size: 17px; line-height: 1.7; }
.inner-hero__aside { border-top: 2px solid var(--blue); padding-top: 20px; }
.inner-hero__aside span { color: #b7c7d7; font-size: 12px; }
.inner-hero__aside strong { display: block; margin-top: 8px; font-size: 20px; line-height: 1.35; }
.service-hero--documents { background-image: url('/assets/docs-delivery.png'); background-position: center 48%; }
.service-hero--express { background-image: url('/assets/express-delivery.png'); background-position: center 45%; }
.service-hero--parcels { background-image: url('/assets/safe-containers.png'); background-position: center 54%; }
.service-hero--business { background-image: url('/assets/business-delivery.png'); background-position: center 47%; }

.content-grid { display: grid; grid-template-columns: 300px minmax(0, 760px); gap: 80px; }
.content-aside { position: sticky; top: 105px; align-self: start; border-top: 2px solid var(--blue); padding-top: 18px; }
.content-aside span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.content-aside strong { display: block; margin-top: 10px; color: var(--navy); font-size: 20px; line-height: 1.35; }
.prose-large { display: grid; gap: 25px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.prose-large h2 { margin-top: 32px; color: var(--ink); font-size: 36px; }
.prose-large h3 { margin-top: 18px; color: var(--ink); font-size: 23px; }
.prose-large strong { color: var(--navy); }
.prose-large ul { display: grid; gap: 12px; margin: 0; padding-left: 20px; }
.prose-large li::marker { color: var(--blue); }
.prose-large ol { display: grid; gap: 12px; margin: 0; padding-left: 24px; }

.service-price { background: var(--surface); }
.service-price__row { display: grid; grid-template-columns: 300px minmax(0, 760px); gap: 80px; align-items: start; }
.service-price__row h2 { font-size: 36px; }
.service-price__row p { color: var(--muted); font-size: 17px; line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-item { min-height: 265px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px; }
.value-item span { color: var(--blue); font-size: 13px; font-weight: 800; }
.value-item h3 { margin-top: 62px; font-size: 22px; }
.value-item p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.price-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 52px; border-top: 2px solid var(--navy); padding-top: 24px; }
.price-intro h2 { font-size: 44px; }
.price-intro p { color: var(--muted); line-height: 1.75; }
.service-detail-note { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border: 1px solid var(--line); }
.service-detail-note div { min-height: 165px; border-right: 1px solid var(--line); padding: 26px; }
.service-detail-note div:last-child { border-right: 0; }
.service-detail-note span { color: var(--blue); font-size: 12px; font-weight: 800; }
.service-detail-note strong { display: block; margin-top: 20px; font-size: 17px; line-height: 1.4; }

.standards-list { border-top: 1px solid rgba(255,255,255,.25); }
.standard-row { display: grid; grid-template-columns: 90px minmax(0, 1fr) 1fr; gap: 35px; border-bottom: 1px solid rgba(255,255,255,.25); padding: 34px 0; }
.standard-row > span { color: #aebfd0; font-size: 13px; }
.standard-row h3 { font-size: 24px; }
.standard-row p { max-width: 530px; color: #c8d6e4; line-height: 1.7; }

.timeline { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 100px 320px minmax(0, 1fr); gap: 35px; border-bottom: 1px solid var(--line); padding: 38px 0; }
.timeline-row > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.timeline-row h3 { font-size: 25px; }
.timeline-row p { max-width: 570px; color: var(--muted); line-height: 1.75; }
.document-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.18); }
.document-item { min-height: 210px; padding: 32px; background: var(--navy); }
.document-item span { color: #aebfd0; font-size: 12px; }
.document-item h3 { margin-top: 42px; font-size: 22px; }
.document-item p { margin-top: 13px; color: #c8d6e4; font-size: 14px; line-height: 1.65; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.contact-block { min-height: 440px; padding: 44px; background: var(--surface); }
.contact-block--blue { color: var(--white); background: var(--blue); }
.contact-block h2 { max-width: 520px; font-size: 38px; }
.contact-block address { max-width: 430px; margin-top: 34px; font-style: normal; font-size: 17px; line-height: 1.75; }
.contact-links { display: grid; gap: 8px; margin-top: 22px; color: var(--blue); font-weight: 700; }
.contact-block--blue .contact-links { color: var(--white); }
.contact-placeholder { color: var(--muted); font-size: 14px; font-weight: 400; }
.contact-block--blue .contact-placeholder { color: #dfe8ff; }
.contact-requisites { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.contact-block--blue .contact-requisites { border-color: rgba(255,255,255,.3); color: #e0e8ff; }
.contact-block .button { margin-top: 32px; }
.map-placeholder { position: relative; min-height: 350px; overflow: hidden; background-color: #e6ebf1; background-image: linear-gradient(35deg, transparent 49%, #c7d2df 50%, transparent 51%), linear-gradient(-28deg, transparent 49%, #c7d2df 50%, transparent 51%); background-size: 145px 145px; }
.map-placeholder__pin { position: absolute; top: 45%; left: 53%; display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 12px; font-weight: 800; box-shadow: 0 0 0 14px rgba(37,99,235,.16); }

.policy-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 70px; }
.policy-nav { position: sticky; top: 104px; align-self: start; border-top: 2px solid var(--blue); padding-top: 18px; color: var(--muted); font-size: 13px; }
.policy-copy { display: grid; gap: 22px; color: var(--muted); line-height: 1.75; }
.policy-copy h2 { margin-top: 30px; color: var(--ink); font-size: 28px; }
.policy-copy ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; }

.site-footer { padding: 66px 0 24px; color: #c8d4e0; background: #0b2035; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr .7fr; gap: 70px; padding-bottom: 54px; }
.footer-brand .brand { border-radius: 4px; padding: 9px 12px; background: var(--white); }
.footer-brand .brand-logo { width: 176px; }
.footer-brand p { max-width: 320px; margin-top: 20px; color: #94a8bb; font-size: 14px; line-height: 1.65; }
.footer-title { margin-bottom: 17px; color: var(--white); font-size: 13px; font-weight: 700; }
.footer-address { max-width: 350px; font-style: normal; line-height: 1.7; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; color: #8095aa; font-size: 12px; }

.lead-dialog { width: min(650px, calc(100% - 32px)); border: 0; border-radius: 8px; padding: 32px; color: var(--ink); box-shadow: 0 28px 90px rgba(5,20,38,.38); }
.lead-dialog::backdrop { background: rgba(7,24,42,.7); backdrop-filter: blur(3px); }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.dialog-header h2 { font-size: 32px; }
.dialog-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 4px; color: var(--navy); background: var(--white); font-size: 27px; line-height: 1; }
.lead-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label:not(.consent) { display: grid; gap: 7px; color: #3c4f66; font-size: 13px; font-weight: 700; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; border: 1px solid #c9d5e2; border-radius: 4px; padding: 12px 13px; color: var(--ink); background: var(--white); }
.lead-form textarea { min-height: 105px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin-top: 2px; }
.consent a { color: var(--blue); text-decoration: underline; }
.form-status { min-height: 20px; color: #137044; font-size: 13px; font-weight: 700; }
.form-status.is-error { color: #b42318; }
.form-submit { width: 100%; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.content-error { border: 1px solid var(--line); padding: 22px; color: #b42318; }
.admin-page { min-height: 100vh; background: var(--surface); }
.admin-shell { padding-block: 54px; }
.admin-shell .section-kicker { margin-top: 46px; }
.admin-shell h1 { font-size: 46px; }
.admin-shell > p { max-width: 760px; margin-top: 18px; color: var(--muted); }
.admin-editor { width: 100%; min-height: 560px; margin: 30px 0 14px; border: 1px solid var(--line); border-radius: 4px; padding: 18px; color: var(--ink); background: var(--white); font-family: Consolas, monospace; font-size: 13px; line-height: 1.55; resize: vertical; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) { .reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; } .reveal.is-visible { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .navigation { gap: 14px; }
  .navigation a { font-size: 12px; }
  .header-cta { display: none; }
  .hero-home h1 { font-size: 54px; }
  .service-card { min-height: 545px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process--five { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: 240px minmax(0, 1fr); gap: 55px; }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 36px), var(--max-width)); }
  .header-row { min-height: 68px; }
  .menu-button { position: absolute; top: 13px; right: 0; z-index: 2; display: block !important; margin-left: auto; }
  .navigation { position: fixed; top: 68px; right: 0; left: 0; display: grid; gap: 0; border-bottom: 1px solid var(--line); padding: 10px 18px 20px; background: var(--white); transform: translateY(-130%); transition: transform .22s ease; }
  .navigation a { padding: 13px 0; font-size: 14px; }
  .navigation a[aria-current='page']::after { display: none; }
  .menu-open .navigation { transform: translateY(0); }
  .hero-home::after { width: 74%; }
  .hero-copy { width: 72%; min-width: 0; max-width: 100%; }
  .hero-home h1 { font-size: 48px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-intro, .proof-item { border-bottom: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .section-header h2, .editorial-grid h2 { font-size: 40px; }
  .service-card__content { padding: 24px; }
  .service-card__actions { align-items: stretch; flex-direction: column; }
  .service-card__actions .button { width: 100%; }
  .editorial-grid { grid-template-columns: 1fr; gap: 36px; }
  .audience-grid { grid-template-columns: 1fr; }
  .inner-hero__content { grid-template-columns: 1fr; gap: 36px; }
  .inner-hero__aside { max-width: 420px; }
  .content-grid, .policy-layout, .service-price__row { grid-template-columns: 1fr; gap: 40px; }
  .content-aside, .policy-nav { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-row, .timeline-row { grid-template-columns: 70px minmax(0, 1fr); }
  .standard-row p, .timeline-row p { grid-column: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .shell { width: min(calc(100% - 28px), var(--max-width)); }
  .brand-logo { width: 138px; }
  .footer-brand .brand-logo { width: 164px; }
  .hero-home { min-height: 600px; background-position: 60% center; }
  .hero-home::before { background: rgba(16,42,67,.52); }
  .hero-home::after { width: 100%; background: rgba(16,42,67,.72); }
  .hero-content { min-height: 600px; padding-block: 54px; }
  .hero-copy { width: 100%; min-width: 0; max-width: 100%; overflow: hidden; }
  .hero-home .section-kicker { max-width: 100%; font-size: 10px; line-height: 1.45; overflow-wrap: normal; word-break: normal; hyphens: none; }
  .hero-home h1 { max-width: 100%; font-size: 33px; overflow-wrap: normal; word-break: normal; hyphens: none; }
  .hero-home .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { margin-top: 32px; }
  .hero-meta li { min-width: 50%; margin-bottom: 16px; padding: 0 12px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-intro, .proof-item { min-height: auto; border-right: 0; padding: 20px 0; }
  .section { padding: 66px 0; }
  .section-header { margin-bottom: 34px; }
  .section-header h2, .editorial-grid h2, .price-intro h2 { font-size: 33px; }
  .services-list { grid-template-columns: 1fr; gap: 18px; }
  .service-card { min-height: 0; }
  .service-card__content { padding: 22px; }
  .service-card__content h3 { font-size: 23px; }
  .services-footer { justify-content: stretch; }
  .services-footer .button { width: 100%; }
  .fact-line { grid-template-columns: 1fr; }
  .fact-line div { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); padding: 20px 0; }
  .visual-story, .visual-story__content { min-height: 470px; }
  .visual-story__panel h2 { font-size: 34px; }
  .process-grid { grid-template-columns: 1fr; }
  .service-process--five { grid-template-columns: 1fr; }
  .process-card { min-height: 225px; }
  .process-card span { margin-bottom: 45px; }
  .cta-row { align-items: stretch; flex-direction: column; }
  .cta-row h2 { font-size: 34px; }
  .service-custom-cta { padding: 58px 0; }
  .service-custom-cta__row { align-items: stretch; flex-direction: column; gap: 28px; }
  .service-custom-cta h2 { font-size: 32px; }
  .inner-hero, .inner-hero__content { min-height: 390px; }
  .inner-hero__content { padding-block: 52px; }
  .inner-hero h1 { font-size: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { min-height: 225px; }
  .price-intro, .service-detail-note, .document-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-note { gap: 0; }
  .service-detail-note div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .standard-row, .timeline-row { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .standard-row h3, .timeline-row h3 { font-size: 21px; }
  .contact-block { min-height: auto; padding: 30px 24px; }
  .contact-block h2 { font-size: 31px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .lead-dialog { padding: 24px 18px; }
  .dialog-header h2 { font-size: 27px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .hero-home h1 { font-size: 29px; }
  .inner-hero h1 { font-size: 32px; }
}

@media (max-width: 330px) {
  .hero-home h1 { font-size: 27px; }
  .inner-hero h1 { font-size: 29px; }
}
