/* GOV-MODERN v1 — спецайти.рф для ООО «Горно-Буровая Компания».
   Ощущение современного гос-сервиса: новизна + технологичность + гос-строгость.
   Каталог скруглённых карточек, мягкие тени, воздух, функциональный цвет.
   Бренд ГБК: синий-доверие (углублённый их #0088cc) + зелёный эмблемы #009040. */

:root {
  --bg: #eef2f7;
  --bg-soft: #f6f8fb;
  --surface: #ffffff;
  --ink: #0e1b2c;
  --ink-soft: #51607a;
  --ink-faint: #8794a8;
  --blue: #0b5cc4;
  --blue-deep: #084aa1;
  --blue-soft: #e7f0fc;
  --green: #009040;
  --green-deep: #007a36;
  --green-soft: #e2f4ea;
  --amber-soft: #fdf3e2;
  --amber-line: #e0a64b;
  --line: #e3e9f1;
  --line-soft: #edf1f6;

  --font-main: "Golos Text", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;

  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(14, 27, 44, 0.04), 0 4px 14px rgba(14, 27, 44, 0.05);
  --sh-2: 0 12px 34px rgba(14, 27, 44, 0.1);

  --maxw: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ===== Типографика ===== */

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 {
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1.05;
}

h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.1;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.28;
}

p {
  max-width: 66ch;
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  font-weight: 400;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

/* Секционный заголовок-блок: eyebrow + h2 + опц. ссылка справа */
.sec {
  padding-top: clamp(64px, 8vw, 112px);
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.sec-head .lead {
  margin-top: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow.is-green {
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.sec-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

.src {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ===== Топбар ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 251, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: auto;
}

.nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: var(--r-pill);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
  text-decoration: none;
}

.topbar-phone {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ===== Кнопки ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 600;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition:
    background 0.16s,
    color 0.16s,
    border-color 0.16s,
    transform 0.16s,
    box-shadow 0.16s;
}
.btn-solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 92, 196, 0.25);
}
.btn-solid:hover {
  background: var(--blue-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 144, 64, 0.24);
}
.btn-green:hover {
  background: var(--green-deep);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-line {
  background: var(--surface);
  color: var(--blue);
  border-color: var(--line);
}
.btn-line:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  text-decoration: none;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ===== Hero ===== */

.hero {
  padding-top: clamp(36px, 5vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.hero h1 {
  margin: 20px 0 22px;
}
.hero .lead {
  margin-bottom: 32px;
  max-width: 36ch;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Чип «это эскиз» */
.sketch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  font-size: 13px;
  color: var(--ink-soft);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 22px;
}
.sketch-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

/* Паспорт организации — карточка */
.passport {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.passport-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
}
.passport-head img {
  width: 34px;
}
.passport table {
  width: 100%;
  border-collapse: collapse;
}
.passport td {
  padding: 15px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  vertical-align: top;
}
.passport tr:last-child td {
  border-bottom: none;
}
.passport td:first-child {
  font-size: 13.5px;
  color: var(--ink-faint);
  width: 42%;
}
.passport td b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.passport .psrc {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* Большое фото-док */
.photodoc {
  margin-top: clamp(40px, 5vw, 72px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  position: relative;
}
.photodoc img {
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  object-fit: cover;
}
.photodoc figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(14, 27, 44, 0.72));
}
.photodoc figcaption span:last-child {
  font-family: var(--font-mono);
  font-size: 11.5px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Плитки-категории услуг (каталог портала) ===== */
.cats {
  padding-top: clamp(44px, 5vw, 72px);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 18px 22px;
  box-shadow: var(--sh-1);
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    border-color 0.16s;
}
.cat:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.cat-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex: none;
}
.cat:nth-child(3n + 2) .cat-ic {
  background: var(--green-soft);
  color: var(--green);
}
.cat-ic svg {
  width: 26px;
  height: 26px;
}
.cat b {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.cat span {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ===== Карточный каталог (общий) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 30px;
  box-shadow: var(--sh-1);
  transition:
    transform 0.16s,
    box-shadow 0.16s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.card-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}
.card:nth-child(3n + 2) .card-ic {
  background: var(--green-soft);
  color: var(--green);
}
.card-ic svg {
  width: 27px;
  height: 27px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.card .meta {
  margin-top: 16px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.card:nth-child(3n + 2) .meta {
  color: var(--green-deep);
  background: var(--green-soft);
}

/* ===== Wow: разрез прокола ===== */
.bore-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  padding: clamp(16px, 2.5vw, 30px);
}
.bore-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
}
.bore-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 760px) {
  .bore-svg {
    min-width: 760px;
  }
}
.bore-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.bore-stage {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.bore-stage .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.bore-stage h3 {
  font-size: 17px;
  margin: 8px 0 6px;
}
.bore-stage p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.bore-stage.is-active {
  background: var(--green-soft);
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(0, 144, 64, 0.12);
}
.bore-stage.is-active .num {
  color: var(--green-deep);
}
.bore-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ===== Прайс ===== */
.pricetable-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
table.pricetable {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.pricetable th {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ink-faint);
  padding: 18px 26px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.pricetable td {
  padding: 15px 26px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15.5px;
}
.pricetable tr:last-child td {
  border-bottom: none;
}
.pricetable td.num {
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--ink);
}
.pricetable td.num:first-child {
  font-weight: 500;
  color: var(--blue);
}
.pricetable tbody tr:hover {
  background: var(--bg-soft);
}

/* ===== Парк техники ===== */
.fleet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.fleet figure {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.fleet img {
  width: 100%;
  height: clamp(240px, 26vw, 350px);
  object-fit: cover;
}
.fleet figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(14, 27, 44, 0.72));
}

/* ===== География ===== */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
}
.geo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.geo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  border: 1px solid var(--line-soft);
}
.geo-row .gi {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  width: 24px;
  flex: none;
}
.geo-row b {
  font-weight: 700;
  font-size: 16px;
}
.geo-row .gz {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
}
.geo-row.is-hq {
  background: var(--green-soft);
  border-color: var(--green);
}
.geo-row .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
}

/* ===== Конфигуратор ТЗ ===== */
.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.config-form,
.config-out {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
}
.config-out {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field select,
.field input {
  width: 100%;
  font-family: var(--font-main);
  font-size: 15.5px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  appearance: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field select {
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 14px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.field select:focus,
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.tz-doc {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  min-height: 330px;
}
.config-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* ===== Зелёный промо-блок «своей техникой» ===== */
.promo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(135deg, #0a6b34, #009040);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--sh-2);
}
.promo h2 {
  color: #fff;
}
.promo p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 14px;
}
.promo .eyebrow {
  color: #bff3d3;
}
.promo-stat {
  display: flex;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.promo-stat .n {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.promo-stat .l {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  max-width: 18ch;
}
.promo-side {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.promo-side img {
  width: 100%;
  height: clamp(220px, 26vw, 320px);
  object-fit: cover;
}

/* ===== «Полная версия» roadmap ===== */
.roadmap-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roadmap-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  box-shadow: var(--sh-1);
  position: relative;
}
.roadmap-item .rnum {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 14px;
}
.roadmap-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.roadmap-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Контакты ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ===== Аннотации спецайти.рф ===== */
.anno {
  position: relative;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: var(--surface);
  box-shadow: var(--sh-1);
  border-radius: var(--r-md);
  padding: 18px 22px 18px 58px;
  margin: 24px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 760px;
}
.anno::before {
  content: "i";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anno b {
  color: var(--blue);
  font-weight: 700;
}
body.anno-off .anno {
  display: none;
}

.anno-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 18px;
  cursor: pointer;
  border: none;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
}
.anno-toggle .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
body.anno-off .anno-toggle .dot {
  background: #6b7686;
}

/* ===== CTA-панель студии ===== */
.studio {
  margin-top: clamp(64px, 8vw, 112px);
}
.studio-in {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 5vw, 64px);
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.studio h2 {
  color: #fff;
}
.studio p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
}
.studio .eyebrow {
  color: #7fb2f4;
}
.studio-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  padding: 30px;
}
.studio-card .src {
  color: rgba(255, 255, 255, 0.55);
}
.studio-card p {
  margin-top: 0;
  color: #fff;
  font-size: 16px;
}
.studio-card a {
  color: #fff;
  font-weight: 600;
}

/* ===== Футер ===== */
.footer {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
}
.footer-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.footer .src {
  text-transform: none;
  letter-spacing: 0.01em;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 36px;
}
.footer-brand span {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ===== Адаптив ===== */
@media (max-width: 1020px) {
  .nav {
    display: none;
  }
  .hero-grid,
  .contact-grid,
  .studio-in,
  .geo-grid,
  .promo {
    grid-template-columns: 1fr;
  }
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards,
  .roadmap-items {
    grid-template-columns: 1fr 1fr;
  }
  .config-grid {
    grid-template-columns: 1fr;
  }
  .promo-side {
    order: -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding: 0 18px;
  }
  .topbar-phone {
    display: none;
  }
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards,
  .fleet,
  .bore-stages,
  .roadmap-items {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .footer-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media print {
  .anno-toggle {
    display: none;
  }
}
