/* =========================================================================
   Cartridge Dnepr — design system
   Signature: printing "registration marks" (crosshair circles used to align
   CMYK plates) — echoes the shop's own trade: precision alignment.
   ========================================================================= */

:root {
  --ink: #15181D;
  --paper: #F6F6F3;
  --surface: #FFFFFF;
  --graphite: #2E3136;
  --muted: #6B6F76;
  --line: #E3E4DF;
  --line-strong: #CBCDC7;
  --brand: #1B4B8F;
  --brand-dark: #123566;
  --accent: #E1601F;
  --accent-dark: #B94A15;
  --cyan: #00AEEF;
  --magenta: #EC2C8C;
  --yellow: #FFC700;
  --good: #1E8E5A;

  --font-display: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;
  --shadow-s: 0 1px 2px rgba(21,24,29,.06), 0 1px 1px rgba(21,24,29,.04);
  --shadow-m: 0 8px 24px rgba(21,24,29,.08);
  --container: 1180px;
}

@media (prefers-reduced-motion: no-preference) {
  :root { --dur: .5s; }
}
@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0s; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-weight: 700; font-size: clamp(2rem, 5vw, 2.9rem); }
h2 { font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.05rem); }
h3 { font-weight: 600; font-size: 1.25rem; }
h4 { font-weight: 600; font-size: 1.05rem; }

p { margin: 0 0 1em; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

.regmark { color: currentColor; flex: none; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,246,243,.96);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 981px) {
  .site-header { backdrop-filter: saturate(140%) blur(10px); }
}
.header-row {
  display: flex; align-items: center; gap: 20px;
  min-height: 72px; flex-wrap: wrap; padding: 10px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.01em; }
.brand-text span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.primary-nav { flex: 1; min-width: 0; }
.primary-nav ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 4px 17px;
  margin: 0; padding: 0; justify-content: center;
}
.primary-nav a {
  color: var(--graphite); font-size: .93rem; font-weight: 500;
  padding: 8px 2px; display: inline-block; border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--brand); text-decoration: none; }
.primary-nav a.is-active { color: var(--brand); border-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.lang-switch {
  font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
  color: var(--graphite); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 7px 11px; letter-spacing: .03em;
}
.lang-switch:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.phone-link {
  font-family: var(--font-mono); font-weight: 600; color: var(--ink);
  white-space: nowrap; font-size: .95rem;
}
.phone-link:hover { color: var(--brand); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: .93rem;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-s); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-s); }
.btn-block { width: 100%; }

.nav-toggle {
  display: none; flex: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: #fff;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; transition: transform .2s, opacity .2s; }

@media (max-width: 980px) {
  .header-row { min-height: 64px; gap: 10px; }
  .phone-link { display: none; }
  .primary-nav {
    position: fixed; inset: 64px 0 0 0; background: var(--paper);
    padding: 20px; overflow-y: auto; transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 2px; }
  .primary-nav a { display: block; padding: 13px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 6px; }
  .header-actions .btn-accent { padding: 10px 12px; font-size: .86rem; }
  .lang-switch { padding: 6px 9px; }
}
@media (max-width: 400px) {
  .brand-text span { display: none; }
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink) url("/assets/img/hero-bg.svg") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 64px 0 88px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 320px at 85% -10%, rgba(0,174,239,.20), transparent 60%),
    radial-gradient(500px 300px at 105% 60%, rgba(236,44,140,.15), transparent 60%),
    linear-gradient(90deg, rgba(21,24,29,.98) 0%, rgba(21,24,29,.9) 32%, rgba(21,24,29,.55) 58%, rgba(21,24,29,.25) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; gap: 44px;
  grid-template-columns: 1.1fr .9fr; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 18px;
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero-lead { color: #C9CDD4; font-size: 1.1rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.messenger-links { display: flex; gap: 10px; }
.messenger-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.messenger-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-s); }
.messenger-btn svg { width: 100%; height: 100%; }
.contact-messengers { display: flex; gap: 10px; margin-top: 6px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 46px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px;
  max-width: 480px;
}
.hero-stats .stat + .stat { border-left: 1px solid rgba(255,255,255,.16); padding-left: 18px; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.stat span { font-size: .78rem; color: #A9AEB6; }

.hero-panel {
  position: relative; background: #fff; border-radius: var(--radius-l);
  padding: 26px; color: var(--graphite); box-shadow: var(--shadow-m);
}
.hero-panel h3 { margin-bottom: 14px; }
.reg-align {
  display: flex; gap: 14px; justify-content: space-between; margin-bottom: 18px;
}
.reg-align .regmark { width: 30px; height: 30px; }
.reg-align .c { color: var(--cyan); }
.reg-align .m { color: var(--magenta); }
.reg-align .y { color: #D6A400; }
.reg-align .k { color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .reg-align .regmark { animation: settle .9s ease both; }
  .reg-align .c { animation-delay: .05s; }
  .reg-align .m { animation-delay: .15s; }
  .reg-align .y { animation-delay: .25s; }
  .reg-align .k { animation-delay: .35s; }
}
@keyframes settle {
  from { transform: translateY(-10px) scale(.85); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.hero-panel ul { margin: 0; padding: 0; list-style: none; }
.hero-panel li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-top: 1px solid var(--line); font-size: .95rem;
}
.hero-panel li:first-child { border-top: none; }
.hero-panel li .dot { color: var(--good); flex: none; margin-top: 3px; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { max-width: none; }
}

/* -------------------------------------------------------------- section */
.section { padding: 64px 0; }
#services { scroll-margin-top: 90px; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.section-head .eyebrow { color: var(--accent-dark); }
.section-head p { color: var(--muted); font-size: 1.02rem; }
.section-head.left { margin: 0 0 32px; text-align: left; }

/* ---------------------------------------------------------- service grid */
.grid-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-services { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 24px; transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { box-shadow: var(--shadow-m); border-color: var(--line-strong); transform: translateY(-2px); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; background: #EEF3FA; color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex: none;
}
.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 14px; flex: 1; }
.card .card-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
a.card { color: inherit; }
a.card:hover { text-decoration: none; }

/* ------------------------------------------------------------- process */
.process-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
@media (max-width: 900px) { .process-list { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }
.process-list li { counter-increment: step; position: relative; padding-top: 6px; }
.process-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-weight: 600; color: var(--accent);
  display: block; font-size: .85rem; margin-bottom: 10px;
}
.process-list h4 { margin-bottom: 6px; }
.process-list p { color: var(--muted); font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------- price */
.price-teaser table, .price-table { width: 100%; border-collapse: collapse; }
.price-toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.price-search {
  flex: 1; min-width: 220px; padding: 12px 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); font-family: var(--font-body); font-size: .95rem;
  background: #fff;
}
.brand-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-tabs button {
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  border: 1px solid var(--line-strong); background: #fff; color: var(--graphite);
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
}
.brand-tabs button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.price-block { margin-bottom: 30px; }
.price-block h3 {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  text-transform: uppercase; font-size: 1rem; letter-spacing: .03em;
  border-bottom: 2px solid var(--ink); padding-bottom: 10px; margin-bottom: 4px;
}
.price-table { font-size: .92rem; }
.price-table thead th {
  text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); font-weight: 600; padding: 10px 12px; border-bottom: 1px solid var(--line-strong);
}
.price-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table tbody tr:hover { background: #FAFAF7; }
.price-table td.num, .price-table th.num { text-align: right; font-family: var(--font-mono); white-space: nowrap; }
.price-table td.model { font-weight: 500; color: var(--ink); }

/* -------------------------------------------------- model hover preview */
.price-table td.model, .price-table td.cart { position: relative; overflow: visible; }
.model-hover, .cartridge-hover {
  cursor: pointer; border-bottom: 1px dashed var(--line-strong);
  outline: none;
}
.model-hover:hover, .model-hover:focus,
.cartridge-hover:hover, .cartridge-hover:focus { border-color: var(--brand); color: var(--brand); }
.model-preview {
  display: none; position: absolute; z-index: 40; left: 0; top: calc(100% + 8px);
  width: 180px; background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px; box-shadow: var(--shadow-m); pointer-events: none;
}
.model-hover:hover .model-preview, .model-hover:focus .model-preview,
.cartridge-hover:hover .model-preview, .cartridge-hover:focus .model-preview { display: block; }
.model-preview img { width: 100%; height: auto; display: block; border-radius: 4px; }
.price-table td.cart { font-family: var(--font-mono); color: var(--muted); }
.price-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* ------------------------------------------------------------ device modal */
.device-modal-overlay {
  position: fixed; inset: 0; background: rgba(21,24,29,.6); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.device-modal-overlay[hidden] { display: none; }
.device-modal {
  background: #fff; border-radius: var(--radius-l); padding: 28px; max-width: 420px; width: 100%;
  position: relative; box-shadow: var(--shadow-m); max-height: 86vh; overflow-y: auto;
}
.device-modal-close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: #fff; font-size: 1.3rem; line-height: 1;
  cursor: pointer; color: var(--graphite);
}
.device-modal-close:hover { border-color: var(--brand); color: var(--brand); }
.device-modal-img { background: #fafaf7; border-radius: var(--radius-m); padding: 16px; margin-bottom: 16px; text-align: center; }
.device-modal-img img { max-width: 100%; max-height: 220px; }
.device-modal h3 { margin-bottom: 10px; padding-right: 30px; }
.device-modal-desc { color: var(--graphite); font-size: .95rem; }
.device-modal-desc p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border: 1px solid var(--line); border-radius: var(--radius-s); margin-bottom: 10px; padding: 6px 4px; background: #fff; }
  .price-table td { border: none; display: flex; justify-content: space-between; gap: 12px; padding: 6px 12px; }
  .price-table td::before { content: attr(data-label); color: var(--muted); font-size: .78rem; text-transform: uppercase; }
  .price-table td.num { text-align: right; }
}

/* -------------------------------------------------------------- rajony */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

/* -------------------------------------------------------------- clients */
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.client-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 20px; text-align: center; transition: box-shadow .15s ease, transform .15s ease;
}
.client-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }
.client-photo { height: 84px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.client-photo img { max-height: 84px; max-width: 100%; object-fit: contain; }
.client-name { font-size: .9rem; font-weight: 500; color: var(--ink); }
.client-name a { margin-left: 4px; }

/* -------------------------------------------------------------- reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 22px; display: flex; flex-direction: column;
}
.review-stars { color: var(--yellow); letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.review-text { color: var(--graphite); font-size: .95rem; flex: 1; margin-bottom: 14px; }
.review-meta { display: flex; justify-content: space-between; align-items: baseline; font-size: .85rem; border-top: 1px solid var(--line); padding-top: 12px; }
.review-author { font-weight: 600; color: var(--ink); }
.review-date { color: var(--muted); }
.chip {
  font-size: .86rem; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--graphite);
}
.chip:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

.district-list { display: flex; flex-direction: column; gap: 10px; }
.district-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden;
  scroll-margin-top: 90px;
}
.district-item > summary {
  cursor: pointer; list-style: none; padding: 16px 20px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.district-item > summary::-webkit-details-marker { display: none; }
.district-item > summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 1.2rem; color: var(--accent); flex: none;
}
.district-item[open] > summary::after { content: "\\2212"; }
.district-item .district-body { padding: 0 20px 20px; color: var(--graphite); }
.district-item .district-body p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------- article */
.article-layout { display: grid; grid-template-columns: 2.1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }
.article-body h2 { margin-top: 1.3em; }
.article-body h4 { margin-top: 1.2em; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body img {
  border-radius: var(--radius-m); margin: 6px 0 20px;
  box-shadow: var(--shadow-s); max-width: 100%;
}
@media (min-width: 640px) {
  .article-body p:has(> img:first-child) img {
    float: left; max-width: 260px; margin: 4px 20px 14px 0;
  }
}
.article-body p:has(> img:first-child)::after { content: ""; display: table; clear: both; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: .93rem; }
.article-body table td, .article-body table th { border: 1px solid var(--line); padding: 8px 10px; }

.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 22px; position: sticky; top: 92px;
}
.side-card + .side-card { margin-top: 16px; }
.side-card h4 { margin-bottom: 10px; }
.side-card ul { list-style: none; margin: 0; padding: 0; }
.side-card li + li { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.side-card .muted { font-size: .88rem; }

.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- breadcrumbs */
.breadcrumbs { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs .sep { margin: 0 8px; }
.breadcrumbs span[aria-current] { color: var(--ink); }

/* --------------------------------------------------------------- intro */
.page-intro { background: var(--ink); color: #fff; padding: 40px 0 48px; }
.page-intro h1 { color: #fff; max-width: 24ch; }
.page-intro .breadcrumbs { color: #9aa0a8; }
.page-intro .breadcrumbs a { color: #C9CDD4; }
.page-intro .breadcrumbs span[aria-current] { color: #fff; }
.page-intro p.lead { color: #C9CDD4; max-width: 60ch; font-size: 1.05rem; }

/* ---------------------------------------------------------------- CTA */
.cta-band {
  background: var(--brand); color: #fff; border-radius: var(--radius-l);
  padding: 40px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #D8E2F2; margin: 0; }
.cta-band .btn-light { color: var(--brand-dark); }

/* --------------------------------------------------------------- forms */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.info-list li:first-child { border-top: none; }
.info-list .icon { width: 38px; height: 38px; border-radius: 10px; background: #EEF3FA; color: var(--brand); display: flex; align-items: center; justify-content: center; flex: none; }
.info-list b { display: block; color: var(--ink); }
.map-embed { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #C9CDD4; padding: 56px 0 0; margin-top: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .phone-link { color: #fff; }
.site-footer .phone-link:hover { color: var(--yellow); }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text span { color: #9aa0a8; }
.site-footer h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-list a { color: #C9CDD4; font-size: .92rem; }
.footer-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .82rem; color: #868C94;
}
.muted { color: var(--muted); }

/* --------------------------------------------------------- misc helpers */
.stack-gap { display: flex; flex-direction: column; gap: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 0; }
.tag-list .chip { font-size: .78rem; padding: 5px 12px; }
