:root {
  --blue: #1B4FD8;
  --blue-dark: #1540B8;
  --blue-light: #4B72E8;
  --cream: #F0F3FA;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #2A2A2A;
  --gray-light: #EAECF2;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: rgba(0,0,0,0.08);
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; font-size: 16px; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  background: rgba(240,243,250,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.logo { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 22px; color: var(--dark); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
/* FIX #3 — "Заказать звонок" is a real tel: link */
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 100px;
  font-weight: 700 !important; transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ── HERO — 12-col bootstrap-like layout ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 50%, rgba(27,79,216,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(27,79,216,0.05) 0%, transparent 60%),
    #F0F3FA;
  z-index: 0;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 48px 48px; z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
/* 12-col container */
.hero-container {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.hero-content { /* col 1–5 */ }
.hero-visual-wrap {
  /* col 6–12 — centered in its column */
  display: flex; justify-content: center; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,79,216,0.1); border: 1px solid rgba(27,79,216,0.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--blue-dark);
  margin-bottom: 28px; animation: fadeUp 0.6s ease both;
}
.badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
h1 {
  font-family: 'Manrope', sans-serif; font-weight: 900;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.05; letter-spacing: -1px; color: var(--dark);
  margin-bottom: 20px; animation: fadeUp 0.6s 0.1s ease both;
}
h1 .accent { color: var(--blue); position: relative; display: inline-block; }
h1 .accent::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; background: var(--blue); border-radius: 2px; opacity: 0.35;
}
.hero-sub {
  font-size: 17px; color: var(--text-muted);
  margin-bottom: 36px; line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: fadeUp 0.6s 0.3s ease both; }
/* FIX #4 — WhatsApp primary button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 15px 28px; border-radius: 100px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; border: 2px solid #25D366; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.btn-primary:hover { background: #1db954; border-color: #1db954; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.06); color: #1A1A1A;
  padding: 15px 28px; border-radius: 100px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1.5px solid rgba(0,0,0,0.16); cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: rgba(27,79,216,0.05); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 36px; animation: fadeUp 0.6s 0.4s ease both; }
.hero-stat-num { font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 900; color: var(--dark); letter-spacing: -1px; }
.hero-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--border); }

/* Hero card stack */
.hero-card-stack { position: relative; width: 450px; height: 550px; }
.floating-card {
  position: absolute; background: var(--white);
  border-radius: 24px; padding: 25px 30px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}
.card-main { width: 400px; top: 50px; left: 25px; }
.card-main-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.card-label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.status-badge { display: flex; align-items: center; gap: 6px; background: #ECFDF5; color: #065F46; font-size: 14px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.status-dot { width: 6px; height: 6px; background: #10B981; border-radius: 50%; }
.worker-row { display: flex; align-items: center; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--gray-light); }
.worker-row:last-child { border-bottom: none; }
.avatar { width: 43px; height: 43px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.worker-name { font-size: 16px; font-weight: 600; color: var(--dark); }
.worker-meta { font-size: 14px; color: var(--text-muted); }
.worker-stars { margin-left: auto; color: #F59E0B; font-size: 15px; font-weight: 600; }
.card-mini { width: 210px; bottom: 35px; right: 0; animation: float 3s ease-in-out infinite; }
.card-mini-2 { width: 188px; top: 0; right: 10px; animation: float 3.5s 0.5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.mini-icon { width: 43px; height: 43px; background: rgba(27,79,216,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.mini-num { font-family: 'Manrope', sans-serif; font-size: 25px; font-weight: 900; color: var(--dark); letter-spacing: -1px; }
.mini-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); padding: 24px 5%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ── SECTIONS COMMON ── */
section { padding: 96px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--blue); margin-bottom: 12px; }
h2 { font-family: 'Manrope', sans-serif; font-size: clamp(26px, 3.2vw, 42px); font-weight: 900; line-height: 1.1; letter-spacing: -0.8px; color: var(--dark); margin-bottom: 14px; }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 520px; line-height: 1.7; }

/* ── SERVICES — вариант В: фото + градиент + группировка ── */
.services-section { background: var(--white); }
.svc-group { margin-bottom: 36px; }
.svc-group:last-child { margin-bottom: 0; }
.svc-group-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.svc-group-label.blue  { background: rgba(27,79,216,0.1);  color: #1540B8; }
.svc-group-label.teal  { background: rgba(15,110,86,0.1);   color: #0F6E56; }
.svc-group-label.amber { background: rgba(186,117,23,0.1);  color: #854F0B; }
.svc-cards {
  display: grid;
  gap: 12px;
}
.svc-cards.col3 { grid-template-columns: repeat(3, 1fr); }
.svc-cards.col4 { grid-template-columns: repeat(4, 1fr); }
.svc-cards.col2 { grid-template-columns: repeat(2, 1fr); }

/* Photo card — variant B (gradient) */
.svc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 220px;
  background: #c5cdd8;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.18); }
@media (hover: none) { .svc-card:hover { transform: none; box-shadow: none; } }

/* Image slot — replace src with real photo */
.svc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Gradient overlay — bottom only (variant В) */
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  pointer-events: none;
}
.svc-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px; z-index: 1;
}
.svc-card-body h3 {
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  color: #ffffff; margin-bottom: 4px; line-height: 1.3;
}
.svc-card-body p { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.svc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 100px;
}

/* placeholder icon when no image */
.svc-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #8fa3c0 0%, #5a7399 100%);
}
.svc-ph svg { opacity: 0.35; }

/* Hour strip */
.svc-hour-strip {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream); border: 1.5px dashed rgba(27,79,216,0.25);
  border-radius: 16px; padding: 18px 24px;
  transition: background 0.2s;
}
.svc-hour-strip:hover { background: #e8ecf8; }
.svc-hour-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(27,79,216,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-hour-body h3 { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.svc-hour-body p { font-size: 14px; color: var(--text-muted); }
.svc-hour-arrow { margin-left: auto; color: var(--blue); font-size: 22px; opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.svc-hour-strip:hover .svc-hour-arrow { opacity: 1; transform: translateX(4px); }

/* ── HOW IT WORKS ── */
.how-section {
  background: linear-gradient(135deg, #1B4FD8 0%, #0f2f8a 60%, #0a1f66 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(75,114,232,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(27,79,216,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.how-section .section-inner { position: relative; z-index: 1; }
.how-section .section-tag { color: rgba(255,255,255,0.55); }
.how-subtitle { font-size: clamp(28px, 3.5vw, 48px); font-family: 'Manrope', sans-serif; font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 6px; }
.how-tagline { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 52px; font-weight: 400; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 0; }
.step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 32px 28px;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}
.step:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.step-number { font-family: 'Manrope', sans-serif; font-size: 52px; font-weight: 900; color: rgba(255,255,255,0.1); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
.step-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ── WHY US — FIX #5: new advantages block ── */
.advantages-section { background: var(--cream); }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.adv-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.adv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.adv-card:hover::after { transform: scaleX(1); }
.adv-num {
  font-family: 'Manrope', sans-serif; font-size: 44px; font-weight: 900;
  color: rgba(27,79,216,0.08); line-height: 1; margin-bottom: 12px; letter-spacing: -2px;
}
.adv-icon { width: 44px; height: 44px; background: rgba(27,79,216,0.09); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.adv-card h3 { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.adv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── REVIEWS — FIX #6: horizontal scroll, 10 reviews ── */
.reviews-section { background: var(--gray-light); overflow: hidden; }
.reviews-scroll-wrap {
  position: relative; margin-top: 48px;
}
.reviews-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(27,79,216,0.3) transparent;
}
.reviews-scroll::-webkit-scrollbar { height: 4px; }
.reviews-scroll::-webkit-scrollbar-track { background: transparent; }
.reviews-scroll::-webkit-scrollbar-thumb { background: rgba(27,79,216,0.25); border-radius: 4px; }
.review-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--white); border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
}
.review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.reviewer-city { font-size: 12px; color: var(--text-muted); }
.reviews-nav { display: flex; gap: 10px; margin-top: 24px; }
.reviews-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(27,79,216,0.3);
  background: var(--white); color: var(--blue); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.2s;
}
.reviews-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── CTA / CONTACT ── */
.cta-section {
  background: linear-gradient(135deg, #1B4FD8 0%, #0f2f8a 60%, #0a1f66 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(75,114,232,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 100% 100%, rgba(27,79,216,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.cta-section h2 { color: var(--white); }
.cta-section .section-desc { color: rgba(255,255,255,0.55); max-width: 420px; }
.phone-big { font-family: 'Manrope', sans-serif; font-size: clamp(18px, 2.2vw, 28px); font-weight: 900; color: var(--white); text-decoration: none; display: block; margin: 18px 0 6px; transition: color 0.2s; }
.phone-big:hover { color: #25D366; }
.form-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 24px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; }
input, select, textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 12px 15px;
  font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
input:focus, select:focus, textarea:focus { border-color: var(--blue); background: rgba(255,255,255,0.09); }
select option { background: #1a3fa8; color: var(--white); }
select option:checked { background: #1B4FD8; color: var(--white); }
textarea { resize: vertical; min-height: 76px; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 100px;
  background: #25D366; color: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 6px; box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.form-submit:hover { background: #1db954; transform: translateY(-2px); }
.form-note { text-align: center; font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ── FOOTER ── */
footer { background: linear-gradient(135deg, #1B4FD8 0%, #0f2f8a 60%, #0a1f66 100%); color: rgba(255,255,255,0.85); padding: 56px 5% 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
.footer-logo { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 22px; color: var(--white); text-decoration: none; display: block; margin-bottom: 12px; }
.footer-logo span { color: var(--blue); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
footer { position: relative; overflow: hidden; }
footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(75,114,232,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(27,79,216,0.25) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
footer > * { position: relative; z-index: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px;
  }
  .hero-visual-wrap {
    display: flex !important;
    order: -1;
    justify-content: center;
    width: 100%;
  }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-cards.col4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 4%; }
  .hero { padding-top: 88px; padding-bottom: 48px; }
  .svc-cards.col3, .svc-cards.col4, .svc-cards.col2 { grid-template-columns: 1fr; }
  .svc-group-label { font-size: 10px; }
  .adv-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 16px; justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .review-card { flex: 0 0 280px; }
  .cta-inner { gap: 36px; }
  .svc-card { height: 200px !important; }
  .zones-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .zones-map-side { min-height: 260px !important; padding: 24px 20px !important; overflow: hidden; }
  .zones-map-title { font-size: 26px !important; letter-spacing: -0.5px; }
  .zones-map-sub { font-size: 15px; margin-bottom: 16px; }
  .zones-stats { gap: 8px; flex-wrap: nowrap; }
  .zones-stat { padding: 10px 12px; flex: 1; }
  .zones-stat-num { font-size: 22px; }
  .zones-stat-label { font-size: 10px; }
  .zone-item { padding: 13px 0; gap: 10px; }
  .zone-name { font-size: 16px; }
  .zone-desc { font-size: 13px; }
  .zone-badge { font-size: 9px; padding: 2px 6px; white-space: nowrap; flex-shrink: 0; }
  .gazelles-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .gaz-card { padding: 24px 20px; border-radius: 18px; width: 100%; }
  .gaz-card-inner { display: flex !important; flex-direction: column !important; gap: 0; }
  .gaz-icon { width: 48px !important; height: 48px !important; margin-bottom: 14px !important; }
  .gaz-card-text { width: 100%; }
  .gaz-type { font-size: 10px; letter-spacing: 1px; margin-bottom: 6px; }
  .gaz-card h3 { font-size: 20px !important; margin-bottom: 10px; }
  .gaz-sizes { flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
  .gaz-size-pill { font-size: 13px; padding: 5px 14px; }
  .gaz-card p { font-size: 16px; line-height: 1.65; }
  .faq-layout { display: flex !important; flex-direction: column !important; gap: 24px; }
  .faq-sticky { position: static !important; width: 100%; }
  .faq-sticky h2 { font-size: 44px !important; margin-bottom: 10px; }
  .faq-sticky p { font-size: 17px; margin-bottom: 0; }
  .faq-list { width: 100%; }
  .faq-q-text { font-size: 17px; line-height: 1.45; font-weight: 700; }
  .faq-q { padding: 18px 0; gap: 12px; }
  .faq-icon { width: 32px; height: 32px; font-size: 18px; flex-shrink: 0; }
  .faq-a { font-size: 16px; padding-bottom: 18px; line-height: 1.7; }
  .svc-hour-strip { flex-wrap: wrap; }

  /* ── Mobile font scale +1 step ── */
  body { font-size: 17px; }
  h1 { font-size: 48px !important; letter-spacing: -1.5px; line-height: 1.05; }
  h2 { font-size: clamp(32px, 8vw, 42px); }
  .hero-sub { font-size: 17px; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 12px; }
  .hero-badge { font-size: 14px; }
  .section-desc { font-size: 18px; }
  .section-tag { font-size: 12px; }
  .step h3 { font-size: 19px; }
  .step p { font-size: 16px; }
  .how-subtitle { font-size: clamp(36px, 9vw, 48px); }
  .how-tagline { font-size: 18px; }
  .adv-card h3 { font-size: 20px; }
  .adv-card p { font-size: 17px; }
  .svc-card-body h3 { font-size: 19px; }
  .svc-card-body p { font-size: 16px; }
  .svc-body h3 { font-size: 19px; }
  .svc-body p { font-size: 17px; }
  .svc-hour-body h3 { font-size: 19px; }
  .svc-hour-body p { font-size: 17px; }
  .review-text { font-size: 17px; }
  .reviewer-name { font-size: 16px; }
  .reviewer-city { font-size: 14px; }
  .worker-name { font-size: 17px; }
  .worker-meta { font-size: 15px; }
  .trust-item { font-size: 15px; }
  .footer-desc { font-size: 16px; }
  .footer-links a { font-size: 16px; }
  .footer-col h4 { font-size: 17px; }
  .footer-bottom { font-size: 13px; }
  label { font-size: 14px; }
  input, select, textarea { font-size: 16px; }
  .form-submit { font-size: 17px; padding: 17px; }
  .btn-primary, .btn-secondary { font-size: 16px; padding: 16px 28px; }
  .phone-big { font-size: 26px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  h1 { font-size: 42px !important; letter-spacing: -1px; line-height: 1.05; }
  .svc-cards.col3, .svc-cards.col4, .svc-cards.col2 { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  .hero-stats { gap: 14px; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(240,243,250,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mob-divider { height: 12px; }
.mob-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff !important;
  border-radius: 100px; padding: 15px 24px !important;
  font-size: 16px !important; font-weight: 700 !important;
  margin-top: 8px; border-bottom: none !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.mob-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: #fff !important;
  border-radius: 100px; padding: 15px 24px !important;
  font-size: 16px !important; font-weight: 700 !important;
  margin-top: 10px; border-bottom: none !important;
  box-shadow: 0 6px 24px rgba(27,79,216,0.3);
}
/* hamburger X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.2s; }

/* ── ZONES ── */
.zones-section { background: var(--white); }
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 52px;
}
.zones-map-side {
  background: #1B4FD8;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Фоновое изображение — замените src на вашу фотографию */
.zones-map-side .zones-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
/* Синий оверлей 10% поверх фото */
.zones-map-side::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(27, 79, 216, 0.10);
  z-index: 1;
}
/* Тёмный градиент снизу чтобы текст читался */
.zones-map-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    transparent 100%
  );
  z-index: 2;
}
/* Все дочерние элементы поверх оверлея */
.zones-map-side .zones-map-label,
.zones-map-side .zones-map-title,
.zones-map-side .zones-map-sub,
.zones-map-side .zones-stats {
  position: relative;
  z-index: 3;
}
.zones-map-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.zones-map-title {
  font-family: 'Manrope', sans-serif; font-size: 32px; font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -1px;
  position: relative; z-index: 1; margin-bottom: 6px;
  margin-top: 0;
}
.zones-map-sub {
  font-size: 14px; color: rgba(255,255,255,0.55);
  position: relative; z-index: 1; margin-bottom: 24px;
}
.zones-stats {
  display: flex; gap: 20px; position: relative; z-index: 1;
}
.zones-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 14px 18px;
  text-align: center;
}
.zones-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 900; color: #fff; line-height: 1;
}
.zones-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }

.zones-list-side { display: flex; flex-direction: column; gap: 0; }
.zone-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.zone-item:first-child { padding-top: 0; }
.zone-item:last-child { border-bottom: none; }
.zone-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.zone-dot.active { background: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,216,0.15); }
.zone-dot.soon { background: #ccc; }
.zone-name {
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); flex: 1;
}
.zone-name.soon { color: var(--text-muted); font-weight: 500; }
.zone-desc { font-size: 13px; color: var(--text-muted); text-align: right; }
.zone-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 3px 9px; border-radius: 100px;
  background: rgba(27,79,216,0.1); color: var(--blue);
}

/* ── GAZELLES ── */
.gazelles-section { background: var(--cream); }
.gazelles-intro { max-width: 600px; margin-bottom: 52px; }
.gazelles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gaz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.gaz-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.gaz-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.gaz-card:hover::before { transform: scaleX(1); }
.gaz-card-inner { display: flex; flex-direction: column !important; gap: 0; }
.gaz-card-text { display: flex; flex-direction: column; }
.gaz-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(27,79,216,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.gaz-type {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--blue); margin-bottom: 8px;
}
.gaz-card h3 {
  font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px; letter-spacing: -0.3px;
}
.gaz-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.gaz-size-pill {
  background: rgba(27,79,216,0.07);
  border: 1px solid rgba(27,79,216,0.15);
  border-radius: 100px; padding: 4px 12px;
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.gaz-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-top: 52px;
  align-items: start;
}
.faq-sticky {
  position: sticky; top: 90px;
}
.faq-sticky h2 { margin-bottom: 12px; }
.faq-sticky p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.faq-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 13px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.faq-cta-link:hover { background: #1db954; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 16px;
  user-select: none;
}
.faq-q-text {
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--dark); line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; color: var(--blue);
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
  padding: 0 0 20px; display: none;
  max-width: 560px;
}
.faq-item.open .faq-a { display: block; }


/* ── Services sequential animation ── */
.svc-card {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.svc-card.svc-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Hero photo ── */
.hero-photo {
  width: 100%;
  max-width: 520px;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  display: block;
}
@media (max-width: 1200px) {
  .hero-photo {
    width: 100% !important;
    max-width: 100% !important;
    height: 260px !important;
    border-radius: 18px !important;
    object-fit: cover;
    object-position: center top;
  }
}