/* ============================================================
   LIVEBOX — livebox.space
   Тёмный минимализм. Один файл, без внешних зависимостей.
   ============================================================ */

@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 250 1000;
  font-display: swap;
  src: url('/fonts/TildaSans-VF.woff2') format('woff2-variations');
}

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #191919;
  --bg-4: #232323;
  --fg: #f5f5f5;
  --fg-dim: #b4b4b4;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --accent: #f88080;
  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 14px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --hdr-h: 72px;
  --font: 'TildaSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; color: #000; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Кнопки ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 100px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--fg);
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { --btn-bg: #ffffff; color: #0a0a0a; }
.btn--primary:hover { --btn-bg: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--outline { border-color: var(--line-2); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.07); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); padding: 10px 20px; font-size: 14px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* ---------- Шапка ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--hdr-h);
  transition: background-color .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.hdr__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad);
  height: 100%; display: flex; align-items: center; gap: 28px;
}
.hdr__logo { display: inline-flex; align-items: center; gap: 11px; }
.hdr__mark { width: 34px; height: 34px; object-fit: contain; }
.hdr__word {
  font-size: 17px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; line-height: 1;
}
.hdr__nav { display: flex; gap: 26px; margin-left: 14px; }
.hdr__nav a {
  font-size: 15px; color: var(--fg-dim); position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.hdr__nav a:hover { color: #fff; }
.hdr__nav a:hover::after { width: 100%; }
.hdr__actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.hdr__phone { font-size: 15px; font-weight: 600; letter-spacing: .01em; white-space: nowrap; }
.hdr__phone:hover { color: var(--accent); }

@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .hdr__phone { display: none; }
  .hdr__cta { display: none; }
  .hdr { height: 64px; }
  :root { --hdr-h: 64px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__poster, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video { opacity: 0; transition: opacity 1.1s var(--ease); }
.hero__video.is-ready { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.62) 45%, rgba(10,10,10,.96) 100%),
    radial-gradient(120% 80% at 50% 50%, rgba(0,0,0,.35), rgba(0,0,0,.8));
}
.hero__content {
  position: relative;
  text-align: center;
  padding: calc(var(--hdr-h) + 40px) var(--pad) 96px;
  max-width: 960px;
  animation: heroIn .9s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.hero__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .32em;
  text-transform: uppercase; color: #fff; opacity: .78; margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(34px, 6.2vw, 76px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.06;
  text-wrap: balance;
}
.hero__sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55; color: var(--fg-dim);
  text-wrap: pretty;
}
.hero__actions {
  margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero__phone {
  display: inline-block; margin-top: 30px;
  font-size: clamp(18px, 2vw, 24px); font-weight: 700; letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 3px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.hero__phone:hover { border-color: #fff; color: #fff; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 40px; height: 40px; display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  animation: bob 2.4s var(--ease) infinite;
}
.hero__scroll svg { width: 22px; height: 22px; }
.hero__scroll:hover { color: #fff; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Бегущая строка ---------- */
.mq {
  overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
  user-select: none;
}
.mq__track {
  display: inline-flex; align-items: center;
  animation: mq 38s linear infinite;
  will-change: transform;
}
.mq__item {
  font-size: clamp(20px, 2.6vw, 34px); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.mq__sep { color: var(--accent); margin: 0 34px; font-size: 18px; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Секции ---------- */
.sec { padding: clamp(72px, 11vw, 140px) 0; }
.sec--services { background: var(--bg); }
.sec--cases { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec--clients { background: var(--bg); padding: clamp(48px, 6vw, 84px) 0; }
.sec--work { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec--cta { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg); }
.sec--contact { background: var(--bg-2); border-top: 1px solid var(--line); }

.sec__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec__title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 700; letter-spacing: -.03em;
}
.sec__lead {
  margin-top: 18px; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim); max-width: 600px; text-wrap: pretty;
}

/* ---------- Услуги ---------- */
.cards {
  display: grid; gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.card {
  background: var(--bg);
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background-color .35s var(--ease);
}
.card:hover { background: var(--bg-3); }
.card__icon {
  width: 34px; height: 34px; color: var(--accent);
  transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: translateY(-3px); }
.card__title { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.card__text { font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

@media (max-width: 1000px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Фильтры ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
}
.filters__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line-2); background: transparent;
  font-size: 14px; font-weight: 500; color: var(--fg-dim);
  cursor: pointer;
  transition: background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.filters__btn:hover { border-color: #fff; color: #fff; }
.filters__btn.is-active { background: #fff; border-color: #fff; color: #0a0a0a; }
.filters__count {
  font-size: 12px; opacity: .55; font-variant-numeric: tabular-nums;
}

/* ---------- Сетка портфолио ---------- */
.grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.tile { margin: 0; position: relative; }
.tile.is-hidden { display: none; }
.tile__btn {
  display: block; position: relative;
  width: 100%; padding: 0; border: 0; background: var(--bg-3);
  border-radius: 10px; overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tile__btn img {
  width: 100%; height: 100%; object-fit: cover;
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease), opacity .5s var(--ease);
  opacity: 0;
}
.tile__btn img.is-loaded { opacity: 1; }
.tile:hover .tile__btn { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(0,0,0,.85); }
.tile:hover .tile__btn img { transform: scale(1.06); }
.tile__zoom {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,10,10,.6); backdrop-filter: blur(6px);
  color: #fff; opacity: 0; transform: scale(.85);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile__zoom svg { width: 18px; height: 18px; }
.tile:hover .tile__zoom { opacity: 1; transform: none; }
.grid__empty { margin-top: 40px; text-align: center; color: var(--muted); }

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .tile__btn { aspect-ratio: 3 / 2; }
}

/* ---------- CTA ---------- */
.cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(30px, 4vw, 52px);
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(230,52,40,.14), transparent 60%),
    var(--bg-3);
}
.cta__title { font-size: clamp(24px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; }
.cta__lead { margin-top: 12px; color: var(--fg-dim); max-width: 560px; text-wrap: pretty; }

/* ---------- Контакты ---------- */
.contact {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
.contact__list { margin-top: 34px; display: grid; gap: 18px; }
.contact__list li { display: grid; gap: 4px; }
.contact__list span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact__list a { font-size: 19px; font-weight: 600; transition: color .2s var(--ease); }
.contact__list a:hover { color: var(--accent); }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field__label { font-size: 13px; color: var(--muted); letter-spacing: .01em; }
.field__req { color: var(--accent); }
.field__input {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2); border-radius: 10px;
  color: var(--fg); font: inherit; font-size: 16px;
  transition: border-color .22s var(--ease), background-color .22s var(--ease);
}
.field__input::placeholder { color: rgba(255,255,255,.42); }
.field__input:hover { border-color: rgba(255,255,255,.3); }
.field__input:focus {
  outline: none; border-color: #fff; background: rgba(255,255,255,.07);
}
.field__input--area { resize: vertical; min-height: 110px; }
.field.has-error .field__input { border-color: var(--accent); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { justify-self: start; margin-top: 4px; }
.form__status { font-size: 15px; min-height: 22px; }
.form__status.is-ok { color: #6ede8a; }
.form__status.is-err { color: #ff7a70; }
.form__consent {
  font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.52);
  max-height: 88px; overflow-y: auto; padding-right: 8px;
  border-left: 2px solid var(--line); padding-left: 14px;
}
.form__consent::-webkit-scrollbar { width: 6px; }
.form__consent::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
.contact--with-form { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: clamp(36px,6vw,90px); align-items: start; }
@media (max-width: 900px) { .contact--with-form { grid-template-columns: 1fr; } }

/* ---------- Подвал ---------- */
.ftr { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 40px; }
.ftr__inner {
  display: grid; gap: 26px;
  grid-template-columns: 1fr auto;
  align-items: start;
}
.ftr__mark { width: 88px; height: 88px; object-fit: contain; }
.ftr__tag { margin-top: 18px; font-size: 14px; color: var(--muted); max-width: 380px; }
.ftr__contacts { display: grid; gap: 10px; justify-items: end; }
.ftr__contacts a { font-size: 17px; font-weight: 600; transition: color .2s var(--ease); }
.ftr__contacts a:hover { color: var(--accent); }
.ftr__copy {
  grid-column: 1 / -1; padding-top: 28px; margin-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: rgba(255,255,255,.32);
}
@media (max-width: 700px) {
  .ftr__inner { grid-template-columns: 1fr; }
  .ftr__contacts { justify-items: start; }
}

/* ---------- Лайтбокс ---------- */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 6, 6, .96);
  backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0;
  transition: opacity .28s var(--ease);
}
.lb[hidden] { display: none; }
.lb.is-open { opacity: 1; }
.lb__figure {
  margin: 0; display: grid; gap: 14px; justify-items: center;
  max-height: 100%; min-width: 0;
}
.lb__img {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  animation: lbIn .32s var(--ease) both;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.lb__counter { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; letter-spacing: .06em; }
.lb__close {
  position: absolute; top: 14px; right: 18px;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.lb__close:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }
.lb__nav {
  width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 50%;
  background: rgba(255,255,255,.04); color: #fff;
  font-size: 28px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.lb__nav:hover { background: rgba(255,255,255,.14); border-color: #fff; }
@media (max-width: 640px) {
  .lb { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb__nav { position: absolute; bottom: 22px; }
  .lb__nav--prev { left: 18px; }
  .lb__nav--next { right: 18px; }
  .lb__img { max-height: calc(100svh - 190px); }
}

/* ---------- Появление при скролле ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .tile__btn img { opacity: 1; }
}

@media print {
  .hdr, .hero__scroll, .mq, .lb { display: none !important; }
}

/* ---------- Кейсы ---------- */
.cases {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.case {
  background: var(--bg-2);
  display: flex; flex-direction: column;
  transition: background-color .35s var(--ease);
}
.case:hover { background: var(--bg-3); }
.case__media {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-3);
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.case:hover .case__media img { transform: scale(1.045); }
.case__body {
  padding: clamp(22px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 18px; flex: 1;
}
.case__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.case__client {
  position: relative;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700; letter-spacing: -.015em;
  padding-bottom: 10px;
}
.case__client::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 3px; border-radius: 2px;
  background: var(--accent);
  transition: width .45s var(--ease);
}
.case:hover .case__client::after { width: 74px; }
.case__kind {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 5px 11px;
}
.case__facts { display: grid; gap: 11px; align-content: start; }
.case__facts li {
  position: relative; padding-left: 20px;
  font-size: 15px; line-height: 1.62; color: var(--fg-dim);
  text-wrap: pretty;
}
.case__facts li::before {
  content: ''; position: absolute; left: 2px; top: .66em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: .8;
}
@media (max-width: 820px) { .cases { grid-template-columns: 1fr; } }

/* ---------- Клиенты ---------- */
.clients__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chips__item {
  padding: 9px 17px; border-radius: 100px;
  border: 1px solid var(--line-2);
  font-size: 14px; color: var(--fg-dim); white-space: nowrap;
  transition: border-color .22s var(--ease), color .22s var(--ease), background-color .22s var(--ease);
}
.chips__item:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.05); }
.chips__item--note { border-style: dashed; color: var(--muted); }
.chips__item--note:hover { border-color: var(--line-2); color: var(--muted); background: none; }

/* Стена заставок из эфиров — как на слайде презентации */
.wall {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.wall__shot {
  width: 100%; height: auto; aspect-ratio: 16 / 9;
  object-fit: cover; border-radius: 6px;
  background: var(--bg-3);
  transition: transform .35s var(--ease), filter .35s var(--ease);
  filter: saturate(.92) brightness(.92);
}
.wall__shot:hover { transform: translateY(-3px) scale(1.02); filter: none; z-index: 1; }
@media (max-width: 640px) {
  .wall { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 6px; }
}
.sec__head--tight { margin-bottom: clamp(24px, 3vw, 34px); }

/* ---------- Контакты без формы ---------- */
.reach {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.reach__card {
  display: flex; flex-direction: column; gap: 7px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease);
}
.reach__card:hover { border-color: var(--line-2); background: var(--bg-3); transform: translateY(-3px); }
.reach__icon { width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; }
.reach__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.reach__value {
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 700; letter-spacing: -.015em;
}
.reach__hint { margin-top: 4px; font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 40ch; }
.reach__mail { margin-top: 26px; font-size: 15px; color: var(--muted); }
.reach__mail a { color: var(--fg); border-bottom: 1px solid var(--line-2); }
.reach__mail a:hover { border-color: #fff; }

.cta__meta { margin-top: 10px; font-size: 13px; color: var(--muted); letter-spacing: .02em; }

/* Иконка внутри кнопки */
.btn__icon { width: 19px; height: 19px; flex: none; }
