/* ────────────────────────────────────────────────────────────────────
   4V Partners — стили страниц услуг
   Палитра и типографика по брендбуку (Bodoni Moda + DM Sans)
   ──────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Брендбук */
  --black:     #0B0B0C;
  --graphite:  #2F3338;
  --graphite2: #3a3f45;
  --burgundy:  #5A1F2E;
  --navy:      #1F3048;
  --gold:      #D4C07A;
  --gold-soft: #C9B26A;
  --emerald:   #0F3D3E;
  --white:     #E6E8EB;
  --silver:    #C9CDD3;
  --mid:       #A8ACB2; /* поднято с #8a8f96 → контраст на тёмном фоне ~6.5:1 (было ~3.5:1) */
  --bg-card:   #131316;
  --bg-light:  #E8E9E6; /* кремовый фон для контрастных light-блоков (takeaway, results) */
  --gold-tint: rgba(212,192,122,0.08);
  --gold-line: rgba(212,192,122,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(11,11,12,0.95);
  border-bottom: 1px solid var(--gold-line);
  backdrop-filter: blur(8px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.nav-back {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--gold); }

/* ─── ПЛАВАЮЩАЯ КНОПКА WHATSAPP ─── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(214,194,126,0.6), 0 4px 20px rgba(214,194,126,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(214,194,126,0),  0 4px 20px rgba(214,194,126,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(214,194,126,0),     0 4px 20px rgba(214,194,126,0.45); }
}
#wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: wa-pulse 2s ease-out infinite;
  transition: transform .2s;
}
#wa-float:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(214,194,126,0.65) !important;
}
#wa-float svg { fill: var(--black); }

/* ─── HERO — на всю ширину, контент отцентрован padding'ом ─── */
.hero {
  position: relative;
  padding: 168px max(60px, calc((100vw - 1100px) / 2 + 60px)) 80px;
  overflow: hidden;
}
/* Контент hero всегда над декорациями */
.hero > * { position: relative; z-index: 2; }

/* Декоративный слой 1: точечный паттерн + золотое свечение в правой части */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(212,192,122,0.18) 1px, transparent 1.4px),
    radial-gradient(circle at 80% 40%, rgba(212,192,122,0.10) 0%, transparent 55%);
  background-size: 24px 24px, 100% 100%;
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.9) 100%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Декоративный слой 2: большой контурный V-знак справа */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 220'><polygon points='100,200 10,20 190,20' fill='none' stroke='%23D4C07A' stroke-width='1.2' opacity='0.32'/><polygon points='100,168 38,32 162,32' fill='none' stroke='%23D4C07A' stroke-width='0.6' opacity='0.22'/><line x1='10' y1='110' x2='190' y2='110' stroke='%23D4C07A' stroke-width='0.4' opacity='0.16'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 80px) 60%;
  background-size: 460px auto;
  pointer-events: none;
  z-index: 1;
}

.hero-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero-title, .hero-title-en {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 32px;
  position: relative;
}
.hero-title em, .hero-title-en em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--silver);
  max-width: 780px;
  margin-bottom: 18px;
}
.hero-body:last-of-type { margin-bottom: 32px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── AI ACCENT BLOCK ─── */
.ai-note {
  margin: 32px 0 0;
  padding: 22px 28px;
  background: var(--gold-tint);
  border-left: 2px solid var(--gold);
  position: relative;
  max-width: 780px;
}
.ai-note-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ai-note-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

/* ─── SECTIONS ─── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 60px;
}
.section-label, .service-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before, .service-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ─── BLOCKS GRID (раскрывающиеся карточки) ─── */
.blocks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--gold-line);
}
.blocks-grid.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.block-card {
  background: var(--bg-card);
  border-bottom: 1px solid var(--gold-line);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
  position: relative;
}
.blocks-grid.two-col .block-card { border-right: 1px solid var(--gold-line); }
.blocks-grid.two-col .block-card:nth-child(2n) { border-right: none; }
.block-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.25s;
}
.block-card:hover { background: rgba(212,192,122,0.04); }
.block-card:hover::after { width: 2px; }
.block-card.open { background: rgba(212,192,122,0.06); }
.block-card.open::after { width: 2px; }
.block-header {
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.block-header-left,
.block-header > div:first-child { flex: 1; min-width: 0; }
.block-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.block-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.block-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}
.block-chev {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.25s;
  margin-top: 6px;
}
.block-card.open .block-chev { transform: rotate(180deg); }
.block-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 36px;
}
.block-card.open .block-items {
  max-height: 800px;
  padding: 0 36px 28px 36px;
}
.block-items ul {
  list-style: none;
  padding-left: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px;
}
.block-items li {
  padding: 7px 0 7px 22px;
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  position: relative;
}
.block-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 8px;
}

/* ─── RESULTS — премиальный графитовый блок ─── */
.results-inner {
  position: relative;
  background: var(--graphite);
  border: none;
  padding: 64px 72px 56px;
  margin: 24px 0;
}
/* Тонкая золотая полоса сверху */
.results-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  opacity: 0.6;
}
.results-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  max-width: 780px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212,192,122,0.18);
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  counter-reset: result-counter;
}
.result-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 28px 24px 0;
  counter-increment: result-counter;
}
/* Вертикальная золотая разделительная линия между колонками */
.result-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid rgba(212,192,122,0.12);
}
.result-item:nth-child(even) { padding-left: 32px; }
/* Горизонтальная разделительная линия между рядами */
.result-item:nth-child(n+3) { border-top: 1px solid rgba(212,192,122,0.12); }
/* Номер 01, 02, 03, 04 */
.result-item::before {
  content: counter(result-counter, decimal-leading-zero);
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
/* Старая декоративная палочка — больше не нужна */
.result-line { display: none; }
.result-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  padding-top: 2px;
}

/* ─── TARIFFS ─── */
.tariffs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}
.tariff-card {
  position: relative;
  background: var(--bg-card);
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
}
.tariff-card.featured {
  background: linear-gradient(180deg, rgba(31,48,72,0.45) 0%, rgba(212,192,122,0.05) 50%, var(--bg-card) 100%);
  border-color: rgba(212,192,122,0.5);
}
.tariff-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.featured-mark {
  position: absolute;
  top: 0; right: 28px;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.tariff-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tariff-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tariff-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tariff-days {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.tariff-days strong {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}
.tariff-list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.tariff-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.55;
}
.tariff-list li:last-child { border-bottom: none; }
.tariff-list li .chk {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
}
.tariff-divider {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 6px;
  border-bottom: none !important;
  opacity: 0.85;
}
.tariff-result {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}
.tariff-result strong {
  display: block;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 4px;
  font-size: 13px;
}

/* ─── CTA BUTTONS ─── */
.cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--black);
}
.tariff-card.featured .cta-btn {
  background: var(--gold);
  color: var(--black);
}
.tariff-card.featured .cta-btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.footnote {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── SERVICE SECTIONS (страницы 3–7) ─── */
.service-section {
  max-width: 1100px;
  margin: 0 auto 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  padding: 48px 56px;
  position: relative;
}
/* Цветной акцент слева у каждой service-section. По умолчанию — золотой */
.service-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
/* Все акценты-полосы на тёмных карточках — золотом (контраст, читаемость) */
.service-header {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.service-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  font-style: italic;
  opacity: 0.7;
}
/* Большие курсивные номера секций — всегда золотые (читаемо на тёмном) */
.service-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-title, .service-title-en {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-title-en {
  font-size: 14px;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 18px;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
}

/* ─── CTA SECTION (унифицированный стиль exit-popup: серый + белое + золото курсивом) ─── */
.cta-section {
  background: var(--graphite);
  border: 1px solid #ffffff15;
  padding: 56px 48px;
  margin: 80px auto 0;
  max-width: 720px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
/* Старая двухколоночная вёрстка больше не используется */
.cta-inner { display: block; }

.cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.cta-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0 auto 16px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  max-width: 580px;
}
.cta-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 540px;
}
.cta-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.cta-btn:hover {
  background: var(--white);
  color: var(--black);
}
@media (max-width: 768px) {
  .cta-section { padding: 36px 24px; margin-top: 48px; }
  .cta-title { font-size: 22px; }
  .cta-btn { padding: 14px 28px; font-size: 11px; }
}

/* ─── FORMS ─── */
.field { margin-bottom: 20px; }
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 8px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { min-height: 80px; resize: vertical; }
.form-note {
  margin-top: 16px;
  font-size: 11px;
  color: var(--mid);
  line-height: 1.6;
}
.form-submit, .modal-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 12px;
}
.form-submit:hover, .modal-submit:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.form-success, .modal-success {
  display: none;
  padding: 18px;
  background: rgba(15,61,62,0.3);
  border: 1px solid rgba(15,61,62,0.5);
  font-size: 13px;
  color: var(--white);
}
.form-success.show, .modal-success.show { display: block; }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--gold-line);
  padding: 52px;
  width: 100%;
  max-width: 520px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: var(--mid);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
}

/* ─── S-MARK (декоративная метка) ─── */
.s-mark {
  position: absolute;
  font-family: 'Bodoni Moda', serif;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .hero { padding: 130px 24px 60px; }
  .hero::before { font-size: 140px; top: 70px; left: 12px; }
  .section { padding: 40px 24px; }
  .blocks-grid.two-col { grid-template-columns: 1fr; }
  .blocks-grid.two-col .block-card { border-right: none; }
  .results-inner { padding: 32px 24px; }
  .results-grid { grid-template-columns: 1fr; gap: 24px; }
  .tariffs-grid { grid-template-columns: 1fr; border-left: none; }
  .tariff-card { border-right: none; }
  .cta-section { padding: 40px 24px; margin-top: 40px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .modal { padding: 32px 24px; }
  .block-header { padding: 22px 24px; gap: 16px; }
  .block-card.open .block-items { padding: 0 24px 22px; }
  .block-items { padding: 0 24px; }
  .service-section { padding: 28px 24px; }
}
