/* Virtual Helper — лендінг.
   Токени та правила відповідають брендбуку Virtual Helper 1.0 (docs/promo).
   Сітка 8 px, радіус 12–16 px, тінь мінімальна, один основний CTA на екран. */

/* ---------- Шрифти ---------- */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Токени ---------- */

:root {
  /* Палітра брендбуку. Пропорції: Night 55 / Cloud 25 / Mint 10 / Graphite 5 / Cobalt 5. */
  --night: #0B132B;
  --mint: #2FE6B8;
  --cloud: #F4F7FB;
  --graphite: #151A22;
  --cobalt: #4054D8;
  --mist: #DCE4EE;
  --white: #FFFFFF;

  /* Похідні відтінки, лише для меж і підкладок. */
  --night-soft: #16203C;
  --night-line: rgba(220, 228, 238, 0.16);
  --on-night: #E8EEF7;
  --on-night-muted: #A8B6CC;
  --on-cloud-muted: #4C5666;

  --font-head: 'Manrope', Arial, system-ui, sans-serif;
  --font-body: 'Inter', Arial, system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 12px;
  --radius-lg: 16px;

  --grid: 8px;
  --wrap: 1200px;
  --section-y: 96px;

  --shadow: 0 2px 8px rgba(11, 19, 43, 0.06);
  --shadow-lift: 0 8px 24px rgba(11, 19, 43, 0.10);
}

/* ---------- База ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--white);
  color: var(--night);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.556; /* 18/28 з брендбуку */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.0625; /* 64/68 */
}

h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.136; /* 44/50 */
}

h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.214; /* 28/34 */
  font-weight: 600;
}

p { margin: 0; }

a { color: inherit; }

img, svg { max-width: 100%; }

.plain-list { list-style: none; margin: 0; padding: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow { max-width: 880px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--mint);
  color: var(--night);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Логотип ---------- */

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
}

.logo-slash { color: var(--mint); }

.logo-footer { font-size: 22px; }

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btn-primary {
  background: var(--mint);
  color: var(--night);
}
.btn-primary:hover { background: #25CDA3; }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--night-line);
  color: inherit;
}
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }

.btn-sm { min-height: 44px; padding: 0 20px; font-size: 15px; }

.btn-block { width: 100%; }

.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- 01 · Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--night);
  color: var(--on-night);
  border-bottom: 1px solid var(--night-line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 80px;
}

.site-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 16px;
}

.site-nav a {
  color: var(--on-night-muted);
  text-decoration: none;
  padding: 8px 0;
  transition: color .18s ease;
}
.site-nav a:hover { color: var(--mint); }

/* Перемикач мови */

.lang-switch {
  display: inline-flex;
  align-items: center;
  flex: none;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lang-switch a {
  padding: 9px 12px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-night-muted);
  transition: background-color .18s ease, color .18s ease;
}

.lang-switch a:hover { color: var(--mint); }

.lang-switch a[aria-current="true"] {
  background: var(--mint);
  color: var(--night);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--on-night);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--night-line);
}
.mobile-nav a {
  color: var(--on-night);
  text-decoration: none;
  padding: 12px 0;
}
.mobile-nav-cta {
  margin-top: 8px;
  color: var(--mint) !important;
  font-weight: 600;
}

/* ---------- 02 · Hero ---------- */

.hero {
  background: var(--night);
  color: var(--on-night);
  padding: clamp(56px, 8vw, 112px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1.43;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.section-cloud .eyebrow,
.section > .wrap .eyebrow { color: var(--cobalt); }

.section-night .eyebrow { color: var(--mint); }

.hero h1 { margin-bottom: 24px; }

.hero .accent { color: var(--mint); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--on-night-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* Маршрут: тонка лінія з чотирма контрольними точками. */

.hero-visual {
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-lg);
  background: var(--night-soft);
}

.hero-slash {
  position: absolute;
  right: 24px;
  top: -28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 180px;
  line-height: 1;
  color: var(--mint);
  opacity: .10;
  pointer-events: none;
}

.route {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.route::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--mint), rgba(47, 230, 184, .22));
}

.route-point {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  background: var(--night-soft);
}

.route-point-last .dot { background: var(--mint); }

.route-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--on-night);
}

/* ---------- 03 · Смуга довіри ---------- */

.trust-strip {
  background: var(--graphite);
  color: var(--on-night);
  border-top: 1px solid var(--night-line);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.trust-strip .sep { color: var(--mint); }

/* ---------- Секції ---------- */

.section { padding: var(--section-y) 0; }

.section-cloud { background: var(--cloud); }

.section-night {
  background: var(--night);
  color: var(--on-night);
}

.section-head { margin-bottom: 56px; max-width: 62ch; }

.section-lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--on-cloud-muted);
  max-width: 62ch;
}

.section-night .section-lead { color: var(--on-night-muted); }

/* ---------- 04 · Картки ситуацій ---------- */

.cards {
  display: grid;
  gap: 24px;
}

.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.card-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--cobalt);
  margin-bottom: 16px;
}

.card p { color: var(--on-cloud-muted); font-size: 17px; }

/* ---------- 05 · Картки ролей ---------- */

.role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.role-card:hover {
  border-color: var(--night);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.role-card.is-selected {
  border-color: var(--night);
  box-shadow: inset 0 0 0 1px var(--night), var(--shadow-lift);
}

.role-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-cloud-muted);
}

.role-num { color: var(--night); }
.role-slash { color: var(--mint); font-size: 15px; }

.role-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}

.role-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-cloud-muted);
  flex: 1 1 auto;
}

.role-cta {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cobalt);
}

/* ---------- 06 · Кроки ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.step {
  padding-top: 24px;
  border-top: 2px solid var(--mist);
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--cobalt);
  margin-bottom: 12px;
}

/* Mint як текст на світлому фоні не використовується: контраст із Cloud і White
   становить 1.6:1. Правило брендбуку — Mint лише для CTA, статусу, фірмової риски
   та акценту на Night. Тому Mint тут вмикається тільки всередині Night-секції. */
.section-night .step-num { color: var(--mint); }

.step h3 { margin-bottom: 12px; }

.step p { font-size: 16px; color: var(--on-cloud-muted); }

/* ---------- 07 · Контроль і безпека ---------- */

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.trust-copy h2 { margin-bottom: 24px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  color: var(--mint);
}

.pillar-icon svg { width: 22px; height: 22px; }

.pillar h3 { font-size: 20px; line-height: 1.3; margin-bottom: 8px; }

.pillar p { font-size: 16px; color: var(--on-night-muted); }

/* ---------- 08 · Кейси ---------- */

.cases { display: grid; gap: 24px; }

.case {
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.case h3 { margin-bottom: 24px; }

.case-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-col {
  background: var(--cloud);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.case-col-after { background: var(--night); color: var(--on-night); }

.case-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--on-cloud-muted);
}

.case-col-after .case-label { color: var(--mint); }

.case-col p { font-size: 16px; color: var(--on-cloud-muted); }
.case-col-after p { color: var(--on-night-muted); }

/* ---------- 09 · FAQ ---------- */

.faq { display: grid; gap: 8px; }

.faq details {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--cobalt);
  border-bottom: 2px solid var(--cobalt);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .18s ease;
}

.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

.faq-body { padding: 0 28px 24px; }

.faq-body p { color: var(--on-cloud-muted); font-size: 17px; }

/* ---------- 10 · Форма ---------- */

.section-form { padding-bottom: clamp(64px, 8vw, 96px); }

.form-inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.form-copy h2 { margin-bottom: 24px; }

.form-notes {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  font-size: 16px;
  color: var(--on-night-muted);
}

.form-notes li { padding-left: 24px; position: relative; }

.form-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.lead-form {
  display: grid;
  gap: 24px;
  background: var(--night-soft);
  border: 1px solid var(--night-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.field { display: grid; gap: 8px; }

.field label {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-night);
}

.req {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-night-muted);
}

.field input[type="text"],
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 19, 43, .55);
  border: 1px solid var(--night-line);
  border-radius: var(--radius-sm);
  color: var(--on-night);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .18s ease;
}

.field textarea { resize: vertical; min-height: 112px; }

.field input::placeholder,
.field textarea::placeholder { color: #6E7C93; }

.field input:hover,
.field textarea:hover { border-color: rgba(220, 228, 238, .3); }

.field input:focus,
.field textarea:focus { border-color: var(--mint); }

.field.is-invalid input,
.field.is-invalid textarea { border-color: #FF8A7A; }

.field-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.field-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--mint);
}

.field-consent label { font-size: 15px; color: var(--on-night-muted); }

.field-consent a { color: var(--mint); }

.form-error {
  margin: -8px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 138, 122, .12);
  border: 1px solid rgba(255, 138, 122, .4);
  color: #FFC2B8;
  font-size: 15px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--graphite);
  color: var(--on-night);
  padding: 56px 0 40px;
  border-top: 1px solid var(--night-line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 48px;
  align-items: start;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--on-night-muted);
}

.footer-nav { display: grid; gap: 12px; font-size: 16px; }

.footer-nav a {
  color: var(--on-night-muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--mint); }

.footer-contact { text-align: right; font-size: 16px; }

.footer-contact a { color: var(--mint); text-decoration: none; }

.footer-legal { margin-top: 12px; color: var(--on-night-muted); font-size: 14px; }

/* ---------- Сторінки подяки, політики та 404 ---------- */

.page-narrow {
  background: var(--night);
  color: var(--on-night);
  min-height: calc(100vh - 80px);
  padding: clamp(56px, 8vw, 112px) 0;
}

.page-narrow .wrap { max-width: 760px; }

.page-narrow h1 { margin-bottom: 24px; }

.page-narrow h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 48px 0 16px;
}

.page-narrow p,
.page-narrow li { color: var(--on-night-muted); font-size: 17px; }

.page-narrow p + p { margin-top: 16px; }

.page-narrow ul { padding-left: 20px; display: grid; gap: 8px; margin: 16px 0 0; }

.page-narrow a { color: var(--mint); }

.next-steps {
  margin: 40px 0;
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--night-soft);
  border: 1px solid var(--night-line);
  border-radius: var(--radius-lg);
}

.next-steps li { padding-left: 32px; position: relative; color: var(--on-night); }

.next-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--mint);
}

.page-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

.doc-meta { font-size: 15px; color: var(--on-night-muted); margin-bottom: 40px; }

/* ---------- Адаптив ---------- */

@media (max-width: 1024px) {
  :root { --section-y: 72px; }

  .hero-inner,
  .trust-inner,
  .form-inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }

  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-visual { max-width: 520px; }
}

@media (max-width: 767px) {
  :root { --section-y: 56px; }

  body { font-size: 17px; }

  html { scroll-padding-top: 76px; }

  .header-inner { min-height: 68px; gap: 16px; }

  .site-nav,
  .header-cta { display: none; }

  .nav-toggle { display: block; }

  .site-header.is-open .mobile-nav { display: flex; }

  h1 { font-size: 40px; line-height: 1.1; } /* Mobile H1 40/44 */

  .hero-actions { flex-direction: column; align-items: stretch; }

  .hero-actions .btn { width: 100%; }

  .hero-slash { font-size: 120px; top: -18px; }

  .cards-4,
  .steps,
  .pillars,
  .case-cols { grid-template-columns: minmax(0, 1fr); }

  .section-head { margin-bottom: 40px; }

  .case { padding: 24px; }

  .lead-form { padding: 24px; }

  .faq summary { padding: 20px; font-size: 17px; }

  .faq-body { padding: 0 20px 20px; }

  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 32px; }

  .footer-contact { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* На мобільному основний CTA у шапці ховається, тож перемикач мови стає
   останнім елементом перед бургером і притискається праворуч. Дублювати його
   всередині мобільного меню не потрібно: у шапці він видимий завжди. */
@media (max-width: 767px) {
  .header-inner .lang-switch { margin-left: auto; }
}
