/* =============================================================
   TSS22 — «Транспортная Сеть Сибири»
   Design system inspired by dattel.ru (Apple aesthetic)
   ============================================================= */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Apple color tokens (from dattel globals.css) */
  --canvas:       #ffffff;
  --fog:          #f5f5f7;
  --fog-hover:    #ebebed;
  --whisper:      #e8e8ed;
  --nav-edge:     #d2d2d7;
  --ink:          #1d1d1f;
  --graphite:     #424245;
  --steel:        #86868b;
  --void:         #0b0b0f;
  --void-2:       #111115;
  --nav-bg:       #ffffff;

  /* CTA gradient — same as dattel .team-cta */
  --cta-start:    #E43C33;
  --cta-end:      #FF6B5B;

  /* Border radius */
  --r-xs:  3px;
  --r-sm:  4px;
  --r-md:  6px;
  --r-lg:  8px;
  --r-xl:  10px;
  --r-pill: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(29,29,31,.03), 0 4px 16px rgba(29,29,31,.05);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
               "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
.t-hero {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.t-xl {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.t-lg {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.t-md {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.t-body {
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.65;
  color: var(--graphite);
}
.t-sm {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--steel);
}
.t-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ── 4. LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}
.section--sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.section--dark {
  background: var(--void);
  color: var(--fog);
}
.section--fog {
  background: var(--fog);
}

/* Grid background texture — same as dattel bg-grid */
.bg-grid-light {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 55px, rgba(0,0,0,.025) 55px, rgba(0,0,0,.025) 56px),
    repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(0,0,0,.025) 55px, rgba(0,0,0,.025) 56px);
}
.bg-grid-dark {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 55px, rgba(255,255,255,.03) 55px, rgba(255,255,255,.03) 56px),
    repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(255,255,255,.03) 55px, rgba(255,255,255,.03) 56px);
}

/* ── 5. NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0.5px solid var(--nav-edge);
  transition: background 0.3s;
}
.nav.nav--dark {
  background: #ffffff;
  border-bottom-color: var(--nav-edge);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 2rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--graphite); }
.nav--dark .nav__links a { color: var(--ink); }
.nav--dark .nav__links a:hover { color: var(--graphite); }
.nav--dark .nav__logo { color: var(--ink); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav__dropdown > a svg { transition: transform 0.2s; }
.nav__dropdown:hover > a svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--canvas);
  border: 1px solid var(--whisper);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0.5rem;
  min-width: 220px;
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu { display: flex; flex-direction: column; gap: 2px; }
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  color: var(--ink);
  transition: background 0.15s;
}
.nav__dropdown-item:hover { background: var(--fog); }

/* Phone in nav */
.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.nav--dark .nav__phone { color: var(--ink); }

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav--dark .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--canvas);
  border-top: 0.5px solid var(--nav-edge);
  padding: 0.5rem 0 1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 0.875rem clamp(1.25rem, 4vw, 2.5rem);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 0.5px solid var(--whisper);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn-cta { margin: 1rem clamp(1.25rem, 4vw, 2.5rem) 0; width: auto; align-self: flex-start; }

/* ── 6. HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--void);
  color: #fff;
  padding-block: 7rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,11,15,0.7) 0%,
    rgba(11,11,15,0.4) 50%,
    rgba(11,11,15,0.6) 100%
  );
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.6);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--cta-start), var(--cta-end));
  border-radius: 2px;
}
.hero__title { color: #fff; margin-bottom: 1.25rem; }
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(245,245,247,0.72);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245,245,247,0.85);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ── 7. BUTTONS ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(228,60,51,0.28);
  white-space: nowrap;
}
.btn-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(228,60,51,0.35);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 0.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid var(--whisper);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}
.btn-outline:hover {
  background: var(--fog);
  border-color: var(--nav-edge);
  transform: translateY(-1px);
}

/* ── 8. CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--canvas);
  border: 1px solid var(--whisper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.card:hover {
  box-shadow: 0 2px 4px rgba(29,29,31,.04), 0 8px 28px rgba(29,29,31,.09);
  transform: translateY(-2px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card__icon--accent {
  background: linear-gradient(135deg, rgba(228,60,51,0.1), rgba(255,107,91,0.1));
}
.card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.card__body {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.6;
}

/* Dark card (inside dark section) */
.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section--dark .card__title { color: var(--fog); }
.section--dark .card__body { color: rgba(245,245,247,0.65); }
.section--dark .card:hover { background: rgba(255,255,255,0.07); }

/* ── 9. ADVANTAGES GRID ─────────────────────────────────────── */
.advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.adv-card {
  padding: 1.75rem;
  background: var(--canvas);
  border: 1px solid var(--whisper);
  border-radius: var(--r-lg);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.adv-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.adv-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta-start);
  margin-bottom: 1rem;
}
.adv-card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.adv-card__text { font-size: 0.9375rem; color: var(--graphite); line-height: 1.6; }

/* ── 10. STATS / NUMBERS ────────────────────────────────────── */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  flex: 1 1 200px;
  padding: 2.5rem 2rem;
  border-right: 0.5px solid var(--whisper);
  border-bottom: 0.5px solid var(--whisper);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { font-size: 0.9375rem; color: var(--graphite); }

/* Dark stats */
.section--dark .stat { border-color: rgba(255,255,255,0.08); }
.section--dark .stat__label { color: rgba(245,245,247,0.6); }

/* ── 11. CALCULATOR ─────────────────────────────────────────── */
.calc {
  background: var(--canvas);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  overflow: hidden;
}
.calc__header {
  padding: 2rem 2rem 0;
}
.calc__body {
  padding: 1.75rem 2rem;
}
.calc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.calc__grid--2 { grid-template-columns: 1fr 1fr; }
.calc__grid--3 { grid-template-columns: repeat(3, 1fr); }

.calc__toggle {
  display: flex;
  background: var(--fog);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 4px;
  margin-bottom: 1.25rem;
}
.calc__toggle-btn {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--r-pill);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.2s;
}
.calc__toggle-btn.active {
  background: var(--canvas);
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.calc__result {
  background: var(--fog);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  display: none;
}
.calc__result.visible { display: block; }
.calc__result-price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.calc__result-sub { font-size: 0.9375rem; color: var(--graphite); margin-bottom: 1.25rem; }
.calc__result-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.calc__checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.calc__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--cta-start);
  cursor: pointer;
}
.calc__notes {
  border-top: 0.5px solid var(--whisper);
  padding-top: 1.25rem;
}
.calc__notes p { line-height: 1.55; }

/* ── 12. FORM INPUTS ────────────────────────────────────────── */
.field-wrap { display: flex; flex-direction: column; gap: 0.375rem; }
.field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--graphite);
}
.field {
  width: 100%;
  padding: 0.8125rem 1.125rem;
  background: var(--fog);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.field:focus {
  background: var(--canvas);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(29,29,31,0.07);
}
.field::placeholder { color: var(--steel); }
select.field { cursor: pointer; }
textarea.field { resize: vertical; min-height: 120px; }

/* ── 13. CONTACT FORM ───────────────────────────────────────── */
.form-section {
  background: var(--void);
  color: var(--fog);
}
.form-box {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 680px;
  margin-inline: auto;
}
.form-box .field {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: var(--fog);
}
.form-box .field:focus {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}
.form-box .field::placeholder { color: rgba(245,245,247,0.4); }
.form-box .field-label { color: rgba(245,245,247,0.75); }

.form-consent {
  font-size: 0.8125rem;
  color: rgba(245,245,247,0.45);
  line-height: 1.5;
}
.form-consent a { color: rgba(245,245,247,0.65); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success__title { font-size: 1.375rem; font-weight: 600; color: var(--fog); }
.form-success__text { color: rgba(245,245,247,0.6); margin-top: 0.5rem; }

/* ── 14. SERVICES GRID ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.service-card {
  position: relative;
  background: var(--canvas);
  border: 1px solid var(--whisper);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(29,29,31,0.1);
  transform: translateY(-3px);
}
.service-card__label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--fog);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 1.25rem;
}
.service-card__title { font-size: 1.1875rem; font-weight: 600; margin-bottom: 0.625rem; letter-spacing: -0.01em; }
.service-card__desc { font-size: 0.9375rem; color: var(--graphite); line-height: 1.6; margin-bottom: 1.5rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cta-start);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 0.625rem; }

/* ── 15. ROUTES SECTION ─────────────────────────────────────── */
.route-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--fog);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
}
.route-bar__cities { display: flex; align-items: center; gap: 1rem; flex: 1; flex-wrap: wrap; }
.route-bar__city {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.route-bar__arrow {
  color: var(--steel);
  font-size: 1.5rem;
}
.route-bar__meta { font-size: 0.875rem; color: var(--graphite); }

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--fog);
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.city-chip:hover { background: var(--fog-hover); }
.city-chip--lg {
  padding: 0.5rem 1.125rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
}
.city-chip--lg:hover { background: var(--graphite); }

/* ── 16. TARIFFS TABLE ──────────────────────────────────────── */
.tariff-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 1.5rem 0 0.75rem;
  border-top: 0.5px solid var(--whisper);
  margin-top: 1.5rem;
}
.tariff-table {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--whisper);
  margin-bottom: 1.5rem;
}
.tariff-table th {
  background: var(--fog);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--graphite);
  letter-spacing: 0.02em;
}
.tariff-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  border-top: 0.5px solid var(--whisper);
  color: var(--ink);
}
.tariff-table td:first-child { font-weight: 500; }
.tariff-table td.price { font-weight: 600; color: var(--ink); }
.tariff-table tr:hover td { background: var(--fog); }

/* ── 17. PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--fog);
  padding: 7.5rem 0 4rem;
  border-bottom: 0.5px solid var(--whisper);
}
.page-hero .t-eyebrow { margin-bottom: 0.75rem; }
.page-hero .t-xl { margin-bottom: 1rem; }
.page-hero .t-body { max-width: 640px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--steel); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep { color: var(--nav-edge); }

/* ── 18. FAQ ACCORDION ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 0.5px solid var(--whisper); }
.faq-item:last-child { border-bottom: 0.5px solid var(--whisper); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-btn:hover { color: var(--graphite); }
.faq-btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.faq-item.open .faq-btn svg { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--void);
  color: rgba(245,245,247,0.65);
  padding-block: 4rem 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand { }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fog);
  margin-bottom: 1rem;
}
.footer__tagline { font-size: 0.875rem; line-height: 1.55; max-width: 260px; margin-bottom: 1.5rem; }
.footer__contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(245,245,247,0.85);
  font-weight: 500;
  transition: color 0.15s;
}
.footer__contact:hover { color: #fff; }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.4);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(245,245,247,0.65);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--fog); }
.footer__bottom {
  padding-top: 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.8125rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.8125rem; transition: color 0.15s; }
.footer__legal a:hover { color: var(--fog); }

/* ── 20. FLOATING CONTACTS ──────────────────────────────────── */
.floating {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
  text-decoration: none;
  font-size: 1.375rem;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,0.28); }
.float-btn--tg { background: #229ED9; }
.float-btn--max { background: #6c5ce7; }
.float-btn--phone { background: linear-gradient(135deg, var(--cta-start), var(--cta-end)); }

/* Mobile sticky bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--canvas);
  border-top: 0.5px solid var(--whisper);
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}
.sticky-bar__call { background: linear-gradient(135deg, var(--cta-start), var(--cta-end)); color: #fff; }
.sticky-bar__tg { background: #229ED9; color: #fff; }
.sticky-bar__max { background: #0F0F14; color: #fff; }

/* ── 21. COOKIE BANNER ──────────────────────────────────────── */
.cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 990;
  background: var(--void);
  color: var(--fog);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  width: calc(100% - 3rem);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease-out);
}
.cookie.visible { transform: translateX(-50%) translateY(0); }
.cookie__text { font-size: 0.875rem; line-height: 1.5; flex: 1; }
.cookie__text a { color: rgba(245,245,247,0.65); text-decoration: underline; }
.cookie__btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── 22. SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── 23. UTILITIES ──────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.d-flex       { display: flex; }
.d-grid       { display: grid; }
.gap-sm       { gap: 0.75rem; }
.gap-md       { gap: 1.25rem; }
.gap-lg       { gap: 2rem; }
.items-center { align-items: center; }
.flex-wrap    { flex-wrap: wrap; }
.mt-sm        { margin-top: 0.75rem; }
.mt-md        { margin-top: 1.25rem; }
.mt-lg        { margin-top: 2rem; }
.mt-xl        { margin-top: 3rem; }
.mb-sm        { margin-bottom: 0.75rem; }
.mb-md        { margin-bottom: 1.25rem; }
.mb-lg        { margin-bottom: 2rem; }
.mb-xl        { margin-bottom: 3rem; }

/* Section header layout */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head__left { }
.section-head .t-eyebrow { margin-bottom: 0.5rem; }
.section-head .t-xl { }

/* Divider */
.divider { height: 0.5px; background: var(--whisper); }
.divider--dark { background: rgba(255,255,255,0.08); }

/* Tag / badge */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(228,60,51,0.08);
  color: var(--cta-start);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Conditions list */
.cond-list { display: flex; flex-direction: column; gap: 0.875rem; }
.cond-item {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--fog);
  border-radius: var(--r-md);
}
.cond-item__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}
.cond-item__body { font-size: 0.9375rem; color: var(--graphite); line-height: 1.6; }
.cond-item__title { font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }

/* Forbidden list */
.forbidden-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}
.forbidden-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: rgba(228,60,51,0.05);
  border: 1px solid rgba(228,60,51,0.12);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--graphite);
}
.forbidden-item__icon { color: var(--cta-start); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

/* ── 24. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .calc__grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__logo img { height: 26px !important; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .stats { }
  .stat { flex-basis: 50%; border-right: none; }
  .stat:nth-child(odd) { border-right: 0.5px solid var(--whisper); }

  .calc__grid--2, .calc__grid--3 { grid-template-columns: 1fr; }

  .advantages { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .floating { display: none; }
  .sticky-bar { display: flex; }

  .cookie { flex-direction: column; align-items: flex-start; gap: 1rem; bottom: 5rem; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .route-bar { flex-direction: column; gap: 1rem; }

  body { padding-bottom: 4.5rem; }
}

@media (max-width: 480px) {
  .stat { flex-basis: 100%; }
  .stat:nth-child(odd) { border-right: none; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn-cta, .btn-secondary { width: 100%; justify-content: center; }
}

/* ── 25. TRUST BANNER ───────────────────────────────────────── */
.trust-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 7.5rem);
}
.trust-banner__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-banner__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.875rem;
}
.trust-stat {
  padding: 1.5rem 1.25rem;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  text-align: center;
  transition: background 0.2s;
}
.trust-stat:hover { background: rgba(255,255,255,0.07); }
.trust-stat__num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-stat__label {
  font-size: 0.8125rem;
  color: rgba(245,245,247,.6);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .trust-banner__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 26. IMMERSIVE EFFECTS ──────────────────────────────────── */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cta-start), var(--cta-end));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
}

/* Hero entrance — staggered on page load */
@keyframes heroUp {
  from { opacity: 0; transform: translate3d(0, 36px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero-home .hero__eyebrow { animation: heroUp 0.85s var(--ease-out) 0.20s both; }
.hero-home .hero__title   { animation: heroUp 1.0s  var(--ease-out) 0.40s both; }
.hero-home .hero__sub     { animation: heroUp 0.85s var(--ease-out) 0.65s both; }
.hero-home .hero__badges  { animation: heroUp 0.85s var(--ease-out) 0.85s both; }
.hero-home .hero__actions { animation: heroUp 0.85s var(--ease-out) 1.05s both; }

/* Hero parallax — bg needs overflow room */
.hero-home .hero__bg {
  bottom: auto;
  top: -10%;
  height: 120%;
  will-change: transform;
}
/* ── HERO PARTICLES canvas ───────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── HERO SCROLL INDICATOR ───────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 3s, visibility 0.6s 3s;
  visibility: hidden;
}
.hero-scroll.visible {
  opacity: 1;
  visibility: visible;
}
.hero-scroll.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.hero-scroll__mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  position: relative;
}
.hero-scroll__dot {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 1; }
  70%       { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home .hero__bg { top: 0; height: 100%; will-change: auto; }
  video.hero__bg { animation: none !important; }
  .hero__title::after { animation: none !important; }
  .hero-particles { display: none; }
  .hero-scroll__dot { animation: none; }
}

/* Trust stat counter pop on finish */
@keyframes statPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.trust-stat.counted .trust-stat__num {
  display: inline-block;
  animation: statPop 0.5s var(--ease-out);
}

/* Card tilt — smooth return */
.adv-card, .service-card {
  transition: box-shadow 0.25s, transform 0.18s var(--ease-out);
}

/* ── IMMERSIVE: CTA PULSE ───────────────────────────────────────── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(228,60,51,0.28); }
  50%       { box-shadow: 0 4px 28px rgba(228,60,51,0.55), 0 0 0 6px rgba(228,60,51,0.08); }
}
.btn-cta--pulse { animation: ctaPulse 2.8s ease-in-out infinite; }
.btn-cta--pulse:hover { animation: none; }
.btn-cta--green {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 2px 12px rgba(22,163,74,0.28);
}
.btn-cta--green:hover { box-shadow: 0 4px 20px rgba(22,163,74,0.35); }

/* ── IMMERSIVE: HERO CURSOR GLOW ────────────────────────────────── */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,60,51,0.18) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
  will-change: left, top;
}
.hero-glow.active { opacity: 1; }

/* ── IMMERSIVE: ROUTE MAP SVG ────────────────────────────────────── */
.route-map {
  background: var(--fog);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem 1.25rem;
  overflow: hidden;
}
.route-map svg { width: 100%; height: auto; overflow: visible; }
.route-line {
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.route-line.drawn { stroke-dashoffset: 0; }
.route-map__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--graphite);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--whisper);
}
.route-map__meta .ico { color: var(--steel); }

/* ── IMMERSIVE: MARQUEE ─────────────────────────────────────────── */
.marquee { overflow: hidden; position: relative; padding-block: 0.25rem; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__sep {
  color: var(--steel);
  font-size: 1rem;
  flex-shrink: 0;
  user-select: none;
}

/* ── SVG ICONS ──────────────────────────────────────────────────── */
.ico {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  display: inline;
  flex-shrink: 0;
}
.card__icon { color: var(--ink); }

/* ── 27. TYPEWRITER ─────────────────────────────────────────────── */
.typewriter {
  display: inline;
  border-right: 2px solid rgba(245,245,247,.7);
  padding-right: 3px;
  animation: tw-blink 0.75s step-end infinite;
  white-space: nowrap;
}
.typewriter.tw-done {
  border-right-color: transparent;
  animation: none;
}
@keyframes tw-blink {
  0%, 100% { border-right-color: rgba(245,245,247,.7); }
  50%       { border-right-color: transparent; }
}

/* ── 28. BACK TO TOP ────────────────────────────────────────────── */
.float-btn--top {
  background: var(--void);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.2s;
}
.float-btn--top svg { width: 20px; height: 20px; }
.float-btn--top.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.float-btn--top:hover { background: var(--cta-start); border-color: transparent; }

/* ── 29. HOW IT WORKS ───────────────────────────────────────────── */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 3rem;
}
.hiw-step {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  border: 0.5px solid var(--whisper);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hiw-step__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta-start);
  margin-bottom: 0.25rem;
}
.hiw-step__icon svg { width: 24px; height: 24px; }
.hiw-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
}
.hiw-step__title {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.hiw-step__text {
  font-size: 0.875rem;
  color: var(--graphite);
  line-height: 1.6;
  margin: 0;
}
.hiw-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: var(--steel);
  flex-shrink: 0;
  align-self: center;
}
.hiw-step__arrow svg { width: 28px; height: 20px; }
@media (max-width: 900px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
  .hiw-step__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0.5rem 0;
  }
}

/* ── 30. REVIEWS ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--fog);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: 0.5px solid var(--whisper);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card__stars {
  font-size: 1.125rem;
  color: #f59e0b;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.9375rem;
  color: var(--graphite);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 0.5px solid var(--whisper);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.review-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.review-card__meta {
  font-size: 0.8125rem;
  color: var(--steel);
  margin-top: 0.125rem;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.contact-card__icon { color: #fff; }
