/* ============================================================
   Best Casino Uzbekistan — main.css
   Тёмная современная база + лаймовый акцент + золотые печати.
   Бренд-карточки, печать «Проверено», медали/«№1». BEM. Widget-first.
   ============================================================ */

/* ---------- Токены (тёмная тема — единственная) ---------- */
:root {
  --bg:      #0a0d0a;
  --surface: #12160f;
  --surface-2: #171d14;
  --ink:     #eef4e8;
  --ink-2:   #c3ccb9;
  --muted:   #808b7c;
  --line:    rgba(255,255,255,.09);
  --line-2:  rgba(255,255,255,.055);

  /* лаймовый акцент (был --emerald* — имена сохранены для совместимости) */
  --emerald:      #a8e83c;
  --emerald-deep: #86c72e;
  --emerald-soft: rgba(168,232,60,.12);
  /* золото печатей */
  --gold:         #e0b64f;
  --gold-bright:  #f2d888;
  --gold-soft:    rgba(224,182,79,.12);
  /* печать «проверено» */
  --verify:       #4fe08a;

  --good:  #4fe08a;
  --warn:  #e0b64f;
  --bad:   #ef6a5a;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 10px 26px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6);

  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 20px;

  --wrap: 1120px;
  --font: "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, -apple-system,
          "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  --mono: "Cascadia Code", "SF Mono", "Roboto Mono", ui-monospace, Menlo, Consolas, monospace;
}

/* ---------- База ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: radial-gradient(120% 70% at 88% -8%, #17210d 0%, rgba(10,13,10,0) 55%), var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: .003em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--emerald); outline-offset: 2px; border-radius: 3px; }

h1,h2,h3,h4 { font-weight: 800; line-height: 1.12; letter-spacing: -.025em; color: #fff; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.7vw, 2.2rem); margin-top: 1.6em; }
h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.42rem); margin-top: 1.4em; }
p { margin: 0 0 1.05em; }
strong { font-weight: 700; color: #fff; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.narrow { max-width: 760px; }
section { position: relative; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; gap: 20px; min-height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.03em; color: #fff; font-size: 1.06rem; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; }
.brand em { color: var(--emerald); font-style: normal; }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__link {
  display: inline-block; padding: 9px 13px; border-radius: 9px; font-size: .95rem; font-weight: 560;
  color: var(--ink-2);
}
.nav__link:hover { background: var(--emerald-soft); color: var(--emerald); text-decoration: none; }
.nav__link--cta {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #12210a; font-weight: 800; box-shadow: var(--shadow-sm);
}
.nav__link--cta:hover { color: #12210a; filter: brightness(1.06); }
.nav__link--lang { border: 1px solid var(--line); font-weight: 700; letter-spacing: .02em; }
.nav__link--lang:hover { border-color: var(--emerald); background: var(--emerald-soft); color: var(--emerald); }

.nav-toggle { display: none; }
.nav-toggle__btn { display: none; }

@media (max-width: 860px) {
  .nav-toggle__btn {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line);
    border-radius: 10px; background: var(--surface); cursor: pointer; color: var(--ink);
  }
  .nav { position: fixed; inset: 66px 0 auto 0; margin: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .22s ease; }
  .nav__list { flex-direction: column; align-items: stretch; padding: 12px; gap: 2px; }
  .nav__link { padding: 13px; font-size: 1.02rem; }
  .nav-toggle:checked ~ .nav { transform: translateY(0); }
}

/* язык: на мобильных — всегда видимая кнопка в шапке (вне гамбургера) */
.header-lang { display: none; }
@media (max-width: 860px) {
  .header-lang { display: inline-flex; align-items: center; margin-left: auto; padding: 8px 13px; border: 1px solid var(--line); border-radius: 9px; font-weight: 700; font-size: .9rem; color: var(--ink-2); background: var(--surface); }
  .header-lang:hover { border-color: var(--emerald); color: var(--emerald); text-decoration: none; }
  .nav-toggle__btn { margin-left: 12px; }
  .nav__link--lang { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(34px, 5vw, 64px) 0 clamp(20px, 3vw, 34px); }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--emerald);
  background: var(--emerald-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero__title { max-width: 15ch; }
.hero__lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem); color: var(--ink-2); max-width: 60ch; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; font-size: .9rem; color: var(--muted); }
.hero__meta time, .hero__meta strong { color: var(--ink-2); font-weight: 640; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 11px;
  font-weight: 700; font-size: .98rem; cursor: pointer; border: 1px solid transparent; transition: transform .12s ease, filter .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: linear-gradient(135deg, var(--emerald), var(--emerald-deep)); color: #12210a; box-shadow: var(--shadow-sm); }
.btn--gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #2a1f05; box-shadow: var(--shadow-sm); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--emerald); color: var(--emerald); }
.btn--sm { padding: 8px 15px; font-size: .88rem; border-radius: 9px; }

/* ---------- Бренд-карточка (узнаваемое лого на чипе) ---------- */
.brand-chip {
  display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 7px 12px; flex: 0 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
}
.brand-chip img { height: 30px; max-width: 150px; width: auto; object-fit: contain; display: block; }
.brand-chip--sm { height: 38px; padding: 6px 10px; }
.brand-chip--sm img { height: 24px; }

/* ---------- Печати / изюминки ---------- */
.seal {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold));
  color: #2a1f05; font-weight: 900; font-size: .72rem; line-height: 1.05; text-align: center;
  border: 2px solid #fff3cf; box-shadow: 0 6px 18px rgba(0,0,0,.45); transform: rotate(9deg); flex: 0 0 auto;
}
.stamp {
  display: inline-flex; align-items: center; gap: 5px; border: 2.5px solid var(--verify); color: var(--verify);
  font-weight: 800; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 7px; text-transform: uppercase;
  font-size: .72rem; transform: rotate(-5deg); box-shadow: inset 0 0 0 2px rgba(79,224,138,.18);
}

/* ---------- Score badge (100) ---------- */
.score-badge {
  display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 16px;
  background: var(--surface-2); border: 1px solid var(--line); position: relative; flex: 0 0 auto;
  font-weight: 900; line-height: 1;
}
.score-badge__num { font-size: 1.42rem; letter-spacing: -.04em; color: #fff; font-variant-numeric: tabular-nums; }
.score-badge__den { font-size: .62rem; color: var(--muted); font-weight: 700; margin-top: 1px; }
.score-badge--gold {
  border-color: rgba(168,232,60,.5);
  box-shadow: 0 0 0 4px var(--emerald-soft), var(--shadow-sm);
  background: radial-gradient(120% 120% at 50% 0%, var(--emerald-soft), var(--surface-2));
}
.score-badge--gold .score-badge__num { color: var(--emerald); }
.score-badge--lg { width: 116px; height: 116px; border-radius: 22px; }
.score-badge--lg .score-badge__num { font-size: 2.9rem; }
.score-badge--lg .score-badge__den { font-size: .8rem; }

.tier { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: 6px; }
.tier--top { background: var(--emerald-soft); color: var(--emerald); }
.tier--ok  { background: rgba(255,255,255,.06); color: var(--ink-2); }
.tier--warn{ background: color-mix(in srgb, var(--bad) 18%, transparent); color: var(--bad); }

/* ---------- Rank widget ---------- */
.rank-widget {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 26px;
}
.rank-widget__head {
  display: grid; grid-template-columns: 46px 1.7fr 1fr 92px 128px; gap: 14px; align-items: center;
  padding: 14px 22px; background: rgba(168,232,60,.06);
  font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; color: var(--emerald);
  border-bottom: 1px solid var(--line);
}
.rank-widget__row {
  display: grid; grid-template-columns: 46px 1.7fr 1fr 92px 128px; gap: 14px; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--line-2); transition: background .15s ease;
}
.rank-widget__row:last-child { border-bottom: 0; }
.rank-widget__row:hover { background: rgba(255,255,255,.02); }
.rank-widget__row--lead { background: linear-gradient(90deg, rgba(168,232,60,.1), transparent 72%); border-bottom: 1px solid rgba(168,232,60,.2); }
.rank-widget__pos { font-weight: 900; font-size: 1.1rem; color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.rank-widget__row--lead .rank-widget__pos { color: var(--emerald); }
.rank-widget__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.rank-widget__logo { width: 118px; height: 42px; flex: 0 0 auto; border-radius: 8px; background: #fff; object-fit: contain; padding: 5px 9px; }
.rank-widget__name { font-weight: 800; letter-spacing: -.02em; color: #fff; }
.rank-widget__note { font-size: .86rem; color: var(--muted); line-height: 1.4; }
.rank-widget__cta { text-align: right; }
@media (max-width: 780px) {
  .rank-widget__head { display: none; }
  .rank-widget__row { grid-template-columns: 40px 1fr auto; grid-template-areas: "pos brand score" "pos note note" "pos cta cta"; gap: 6px 12px; padding: 16px; }
  .rank-widget__pos { grid-area: pos; align-self: start; }
  .rank-widget__brand { grid-area: brand; }
  .rank-widget__score { grid-area: score; justify-self: end; }
  .rank-widget__note { grid-area: note; }
  .rank-widget__cta { grid-area: cta; text-align: left; margin-top: 6px; }
  .rank-widget__note--hide-m { display: none; }
}

/* ---------- Подиум топ-3 ---------- */
.podium { display: grid; grid-template-columns: 1fr 1.15fr 1fr; align-items: end; gap: 14px; max-width: 720px; margin: 30px auto 0; }
.podium__col { display: flex; flex-direction: column; align-items: center; }
.podium__medal { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 1.15rem; color: #2a1f05; margin-bottom: 12px; border: 3px solid rgba(255,255,255,.25); }
.podium__medal--g { background: radial-gradient(circle at 35% 30%, #ffe58a, #e0a92a); }
.podium__medal--s { background: radial-gradient(circle at 35% 30%, #eef2f6, #aeb7c2); }
.podium__medal--b { background: radial-gradient(circle at 35% 30%, #f0b184, #b06a37); color: #3a1e0a; }
.podium__stand { width: 100%; text-align: center; border-radius: 16px 16px 0 0; padding: 18px 12px 22px;
  background: var(--surface); border: 1px solid var(--line); border-bottom: none; position: relative; }
.podium__stand--win { background: linear-gradient(180deg, var(--emerald-soft), var(--surface)); border-color: rgba(168,232,60,.4); }
.podium__brand { display: flex; justify-content: center; margin-bottom: 12px; }
.podium__score { font-size: 1.9rem; font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.podium__stand--win .podium__score { color: var(--emerald); font-size: 2.4rem; }
.podium__seal { position: absolute; top: -16px; right: -8px; }
.podium__col--1 .podium__stand { min-height: 150px; }
.podium__col--2 .podium__stand { min-height: 118px; }
.podium__col--3 .podium__stand { min-height: 96px; }
@media (max-width: 560px) { .podium { max-width: 100%; gap: 8px; } .podium__score { font-size: 1.5rem; } .podium__stand--win .podium__score { font-size: 1.8rem; } }

/* ---------- Карточки / сетки ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px){ .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.card__title { margin-top: 0; font-size: 1.15rem; }
.card--pad-lg { padding: 28px; }
.card__link { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; color: var(--emerald); }
a.card:hover { border-color: rgba(168,232,60,.4); text-decoration: none; }

.section-head { max-width: 62ch; }
.section-head__eyebrow { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: var(--emerald); }

/* ---------- Answer-first блок ---------- */
.answer {
  border-left: 4px solid var(--emerald); background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; box-shadow: var(--shadow-sm); margin: 0 0 1.4em;
}
.answer p:last-child { margin-bottom: 0; }
.answer--verdict { border-left-color: var(--emerald); background: linear-gradient(120deg, var(--emerald-soft), var(--surface) 60%); }

/* ---------- Verdict / summary box ---------- */
.verdict-box {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-md); margin: 22px 0;
}
.verdict-box__body h2, .verdict-box__body h3 { margin-top: 0; }
@media (max-width: 620px){ .verdict-box { grid-template-columns: 1fr; text-align: left; } }

/* ---------- Pros / cons ---------- */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 20px 0; }
@media (max-width: 620px){ .pc { grid-template-columns: 1fr; } }
.pc__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: var(--surface); }
.pc__col--pro { border-top: 3px solid var(--good); }
.pc__col--con { border-top: 3px solid var(--bad); }
.pc__col h3 { margin: 0 0 12px; font-size: 1.02rem; }
.pc__list { list-style: none; margin: 0; padding: 0; }
.pc__list li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .96rem; }
.pc__list li::before { position: absolute; left: 0; top: 0; font-weight: 900; }
.pc__col--pro .pc__list li::before { content: "+"; color: var(--good); }
.pc__col--con .pc__list li::before { content: "−"; color: var(--bad); }

/* ---------- Таблицы ---------- */
.table-scroll { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 560px; }
table.data caption { text-align: left; padding: 14px 16px; font-weight: 700; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
table.data th, table.data td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.data thead th { position: sticky; top: 0; background: var(--surface-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--emerald); z-index: 1; }
table.data tbody tr:hover { background: rgba(255,255,255,.02); }
table.data tr.is-lead td, table.data tr.is-lead th { background: var(--emerald-soft); font-weight: 600; color: #fff; }
.cell-yes { color: var(--good); font-weight: 700; }
.cell-no  { color: var(--bad);  font-weight: 700; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 16px 0 0; font-size: .85rem; color: var(--muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: 6px; color: var(--line); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs [aria-current] { color: var(--ink-2); font-weight: 600; }

/* ---------- Статья ---------- */
.article { max-width: 760px; }
.article > p, .article > ul, .article > ol { font-size: 1.04rem; }
.article ul, .article ol { padding-left: 1.25em; }
.article li { margin-bottom: .5em; }
.updated { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; }
.updated b, .updated time { color: var(--ink-2); font-weight: 640; }

.metric-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-2); align-items: center; }
.metric-row:last-child { border-bottom: 0; }
.metric-row__label { color: var(--ink-2); font-weight: 560; }
.metric-row__val { font-weight: 700; color: #fff; }

.bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; min-width: 120px; }
.bar__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--emerald), var(--emerald-deep)); }
.bar__fill--gold { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); }

/* ---------- Author block ---------- */
.author { display: flex; gap: 15px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: var(--surface-2); margin: 26px 0; }
.author__ava { width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto; background: linear-gradient(135deg, var(--emerald), var(--gold)); display: grid; place-items: center; color: #12210a; font-weight: 900; font-size: 1.15rem; }
.author__name { font-weight: 800; color: #fff; }
.author__role { font-size: .86rem; color: var(--muted); }
.author__bio { font-size: .9rem; color: var(--ink-2); margin: 4px 0 0; }

/* ---------- FAQ ---------- */
.faq { margin: 22px 0; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; background: var(--surface); overflow: hidden; }
.faq__item summary { cursor: pointer; padding: 16px 20px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; color: #fff; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--emerald); font-weight: 900; font-size: 1.3rem; flex: 0 0 auto; }
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:hover { color: var(--emerald); }
.faq__body { padding: 0 20px 18px; color: var(--ink-2); }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- CTA стрип ---------- */
.cta-strip {
  background: var(--surface); border: 1px solid rgba(168,232,60,.3); border-left: 4px solid var(--emerald);
  border-radius: var(--radius-lg); padding: 34px; margin: 34px 0;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.cta-strip h2, .cta-strip h3 { color: #fff; margin: 0 0 6px; }
.cta-strip p { margin: 0; color: var(--ink-2); }

/* ---------- Legal / risk note ---------- */
.risk-note {
  font-size: .86rem; color: var(--ink-2); background: color-mix(in srgb, var(--warn) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--warn) 34%, var(--line)); border-radius: var(--radius-sm);
  padding: 13px 16px; margin: 20px 0;
}
.risk-note strong { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 56px; background: var(--surface); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; padding: 44px 0 30px; }
@media (max-width: 820px){ .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--ink-2); font-size: .94rem; }
.site-footer a:hover { color: var(--emerald); }
.site-footer__about { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.site-footer__bottom { border-top: 1px solid var(--line); padding: 18px 0; font-size: .82rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; }

/* ---------- Утилиты ---------- */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-eyebrow { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; color: var(--emerald); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lead { font-size: 1.14rem; color: var(--ink-2); }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

/* ---------- Форма контактов ---------- */
.cform { max-width: 620px; margin: 22px 0; display: grid; gap: 16px; }
.cform__row { display: grid; gap: 6px; }
.cform label { font-size: .9rem; font-weight: 640; color: var(--ink-2); }
.cform input, .cform select, .cform textarea {
  width: 100%; background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 1rem;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px var(--emerald-soft);
}
.cform textarea { resize: vertical; min-height: 130px; }
.cform__note { font-size: .86rem; color: var(--muted); margin: 2px 0 0; }
.btn:disabled { opacity: .6; cursor: default; transform: none; }
