:root {
  --bg: #E8F1FF;
  --bg-alt: #DCEBFF;
  --surface: #F3F8FF;
  --text: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;
  --accent: #1D4ED8;
  --accent-hover: #1E40AF;
  --accent-soft: #2563EB;
  --accent-tint: #DBEAFE;
  --teal: #0F766E;
  --teal-tint: #CCFBF1;
  --ink: #0B1220;
  --radius: 16px;
  --shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 16px 40px rgba(29, 78, 216, 0.14);
  --container: 1160px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #EAF3FF;
  line-height: 1.55;
  font-size: 17px;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--muted); }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 760px); }
.section { padding: 5rem 0; position: relative; }
.section-alt { background: var(--bg); }
.section-title { text-align: center; margin-bottom: 0.4rem; }
.section-lead { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; color: var(--muted); }
.section-intro { text-align: center; margin-bottom: 2.5rem; }
.section-intro .section-title { margin-bottom: 0.5rem; }
.section-intro .section-lead { margin-bottom: 0; }
.section-intro .eyebrow { margin-bottom: 0.65rem; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head .section-title, .section-head .section-lead { text-align: left; margin: 0; }
.center-cta { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.mb { margin-bottom: 1.5rem; }
.mt { margin-top: 2rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-family: var(--font-display); font-weight: 800; }
.logo:hover { color: var(--text); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  object-fit: cover; display: block; background: #1a1a1a;
}
.nav { display: flex; gap: 1rem; flex: 1; justify-content: center; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { color: var(--text); font-weight: 600; white-space: nowrap; font-size: 0.95rem; }
.socials { display: flex; gap: 0.4rem; }
.social {
  height: 34px; min-width: 42px; padding: 0 0.65rem; border-radius: 4px;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
  border: 1px solid #BFDBFE;
}
.social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; flex-direction: column; justify-content: center; gap: 5px; padding: 0 11px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-family: var(--font-display);
  font-weight: 700; border-radius: 999px; padding: 0.85rem 1.5rem;
  transition: 0.2s ease; text-decoration: none; font-size: 0.98rem;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--accent); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.text-link { color: var(--accent); font-weight: 700; font-family: var(--font-display); }
.text-link:hover { color: var(--accent-hover); }

/* Hero */
.hero { position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden; background: linear-gradient(180deg, #C9DFFF 0%, #EAF3FF 55%, #F3F8FF 100%); }
.hero-bg {
  position: absolute; inset: auto -10% 10% auto; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; position: relative; }
.eyebrow { color: var(--accent-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; margin-bottom: 0.75rem; }
.badge-word {
  display: inline-block; background: var(--accent-soft); color: #fff;
  border-radius: 6px; padding: 0.15em 0.55em; margin-left: 0.15em;
  font-size: 0.75em; vertical-align: middle;
}
.hero-desc { font-size: 1.1rem; max-width: 34rem; }
.hero-usps { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-usps li { display: flex; align-items: center; gap: 0.45rem; color: var(--text); font-weight: 600; }
.usp-ico { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; }
.micro { font-size: 0.9rem; color: var(--muted); margin: 0.75rem 0 0; }
.hero-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.hero-video { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mp-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mp-badge { background: #fff; border-radius: 4px; padding: 0.35rem 0.7rem; font-weight: 700; font-size: 0.8rem; box-shadow: var(--shadow); border: 1px solid #D6E4FF; }
.mp-ozon { color: #005bff; }
.mp-wb { color: #cb11ab; }
.mp-ym { color: #fc3f1d; }

/* Cards & grids */
.cards-grid { display: grid; gap: 1.25rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card, .card-soft {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow);
}
.card-soft { background: #F8FAFC; }
.card-ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--accent-tint);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 0.9rem; font-weight: 700;
}
.wide-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.wide-photo img, .wide-photo video { width: 100%; aspect-ratio: 21/9; object-fit: cover; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat-card {
  position: relative; background: #fff; padding: 1.6rem 1.5rem;
  border-radius: var(--radius); border: 1px solid rgba(29, 78, 216, 0.08);
  box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-card::before, .stat-card::after {
  content: ""; position: absolute; width: 22px; height: 22px; border-color: var(--accent-soft); border-style: solid;
}
.stat-card::before { top: 12px; left: 12px; border-width: 2.5px 0 0 2.5px; }
.stat-card::after { bottom: 12px; right: 12px; border-width: 0 2.5px 2.5px 0; }
.stat-value { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.35rem); font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.stat-label { color: var(--muted); margin-top: 0.4rem; font-weight: 500; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card { display: flex; flex-direction: column; gap: 0.75rem; }
.service-photo { position: relative; border-radius: 16px; overflow: hidden; display: block; }
.service-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: 0.35s ease; }
.service-card:hover .service-photo img { transform: scale(1.03); }
.service-num { position: absolute; top: 0.75rem; right: 0.75rem; background: #fff; padding: 0.28rem 0.6rem; border-radius: 4px; font-weight: 700; color: var(--text); font-size: 0.8rem; border: 1px solid #D6E4FF; }
.service-card h3 a { color: var(--text); }
.service-meta { color: var(--accent); font-weight: 700; }

/* Advantages */
.section-advantages {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(37, 99, 235, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(37, 99, 235, 0.10), transparent 55%),
    #EAF3FF;
}
.title-accent span { color: var(--accent); }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.adv-card {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1.5px solid #CBD5E1;
  border-radius: 20px;
  padding: 1.45rem 1.4rem 1.55rem;
  box-shadow: 0 4px 0 rgba(15, 23, 42, 0.04), var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #93C5FD;
}
.adv-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.1rem; }
.adv-index {
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  color: #64748B; letter-spacing: 0.04em;
}
.adv-ico {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  color: var(--accent); background: linear-gradient(145deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.adv-ico svg { width: 24px; height: 24px; }
.adv-card h3 { margin-bottom: 0.45rem; font-size: 1.12rem; }
.adv-card p { margin: 0; font-size: 0.98rem; line-height: 1.5; }
.adv-card.tone-a .adv-ico { color: #1D4ED8; background: linear-gradient(145deg, #EFF6FF, #DBEAFE); }
.adv-card.tone-b .adv-ico { color: #0F766E; background: linear-gradient(145deg, #F0FDFA, #CCFBF1); }
.adv-card.tone-c .adv-ico { color: #B45309; background: linear-gradient(145deg, #FFFBEB, #FDE68A); }
.adv-card.tone-d .adv-ico { color: #7C3AED; background: linear-gradient(145deg, #F5F3FF, #DDD6FE); }
.adv-card.tone-e .adv-ico { color: #0369A1; background: linear-gradient(145deg, #F0F9FF, #BAE6FD); }
.adv-card.tone-f .adv-ico { color: #BE123C; background: linear-gradient(145deg, #FFF1F2, #FECDD3); }

/* Steps */
.section-steps {
  background: linear-gradient(180deg, #DCEBFF 0%, #EAF3FF 100%);
}
.steps-track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.step-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff;
  border: 1.5px solid #CBD5E1; border-radius: 20px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 4px 0 rgba(15, 23, 42, 0.04), var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #93C5FD; }
.step-badge {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 18px;
  background: linear-gradient(145deg, #1D4ED8, #3B82F6);
  color: #fff; display: grid; place-content: center; text-align: center;
  box-shadow: 0 10px 22px rgba(29, 78, 216, 0.28);
}
.step-big { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; line-height: 1; }
.step-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
.step-body h3 { margin-bottom: 0.35rem; font-size: 1.08rem; }
.step-body p { margin: 0; font-size: 0.95rem; }

/* Why us */
.section-why { background: #EAF3FF; }
.why-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem; align-items: stretch; }
.why-list { display: grid; gap: 0.75rem; }
.why-item {
  display: flex; align-items: center; gap: 0.9rem;
  background: linear-gradient(90deg, #F8FAFF, #F1F5FF);
  border: 1px solid #E0E7FF; border-radius: 16px;
  padding: 1.05rem 1.15rem; font-weight: 600; color: var(--text);
  font-family: var(--font-display); font-size: 1.02rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.why-item:hover { transform: translateX(4px); border-color: #C7D2FE; box-shadow: var(--shadow); }
.why-check {
  width: 34px; height: 34px; border-radius: 11px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, #0F766E, #14B8A6);
  box-shadow: 0 8px 16px rgba(15, 118, 110, 0.25);
}
.why-check svg { width: 16px; height: 16px; }
.results-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #0B1F4D 0%, #1D4ED8 55%, #2563EB 100%);
  color: #fff; border-radius: 24px; padding: 2rem 1.75rem;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.28);
  display: flex; flex-direction: column;
}
.results-glow {
  position: absolute; width: 220px; height: 220px; right: -60px; top: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
  pointer-events: none;
}
.results-kicker {
  margin: 0 0 0.4rem; color: rgba(255,255,255,0.75); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.results-panel h3 { color: #fff; font-size: 1.55rem; margin-bottom: 1rem; }
.results-panel ul { margin: 0 0 1.5rem; padding: 0; list-style: none; flex: 1; }
.results-panel li {
  position: relative; padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.92);
}
.results-panel li:last-child { border-bottom: 0; }
.results-panel li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 8px; height: 8px; border-radius: 50%; background: #93C5FD;
}
.btn-on-dark {
  align-self: flex-start; background: #fff; color: var(--accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-on-dark:hover { background: #F8FAFC; color: var(--accent-hover); }

.price-table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 0.95rem 1.2rem; text-align: left; }
.price-table th { border-bottom: 2px solid var(--text); font-family: var(--font-display); }
.price-table tr:nth-child(even) { background: #F8FAFC; }
.price-table td:last-child { font-weight: 700; white-space: nowrap; }
.price-group-title { margin: 2rem 0 0.75rem; font-size: 1.25rem; }

/* Reviews */
.section-reviews {
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(29, 78, 216, 0.14), transparent 70%),
    #EAF3FF;
}
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.review-card {
  margin: 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 75%, #F8FAFC);
  border: 1.5px solid #CBD5E1; border-radius: 22px;
  padding: 1.7rem 1.6rem;
  box-shadow: 0 4px 0 rgba(15, 23, 42, 0.04), var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #93C5FD; }
.review-card::after {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 4px;
  border-radius: 0 6px 6px 0; background: linear-gradient(180deg, #1D4ED8, #60A5FA);
}
.review-card::before {
  content: "“"; position: absolute; right: 1.1rem; top: 0.2rem;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: rgba(29, 78, 216, 0.12); font-weight: 800; pointer-events: none;
}
.review-stars { color: #F59E0B; letter-spacing: 0.12em; font-size: 0.95rem; margin-bottom: 0.75rem; }
.review-card p { color: var(--text); font-size: 1.08rem; line-height: 1.55; margin-bottom: 1.25rem; position: relative; }
.review-card footer { display: flex; align-items: center; gap: 0.85rem; color: var(--muted); font-size: 0.95rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  color: #fff; background: linear-gradient(145deg, #1D4ED8, #60A5FA);
}
.review-card footer strong { display: block; color: var(--text); font-family: var(--font-display); }
.review-mp {
  display: inline-block; margin-top: 0.15rem; font-size: 0.8rem; font-weight: 700;
  color: var(--accent); background: var(--accent-tint); padding: 0.15rem 0.55rem; border-radius: 999px;
}

.faq-list { display: grid; gap: 0.85rem; }
.faq-item {
  background: #fff;
  border: 1.5px solid #CBD5E1;
  border-radius: 14px;
  padding: 0.15rem 1rem 0.15rem 1.15rem;
  box-shadow: 0 3px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover,
.faq-item[open] {
  border-color: #93C5FD;
  box-shadow: 0 3px 0 rgba(37, 99, 235, 0.08), var(--shadow);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-display);
  padding: 1.05rem 2rem 1.05rem 0; list-style: none; position: relative;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center;
  background: #EFF6FF; color: var(--accent); font-size: 1.15rem; font-weight: 700;
  border: 1px solid #BFDBFE;
}
.faq-item[open] summary::after { content: "–"; background: var(--accent); color: #fff; border-color: var(--accent); }
.faq-answer { padding: 0 0 1.1rem; color: var(--muted); border-top: 1px solid #E2E8F0; padding-top: 0.85rem; }

.cta-section { background: linear-gradient(180deg, #DCEBFF, #C9DFFF); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.cta-form-card { background: #fff; border-radius: 18px; padding: 1.75rem; border: 1px solid var(--line); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; color: var(--text); font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.45rem; width: 0.65rem; height: 0.65rem; border-radius: 50%; background: var(--accent); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 0.95rem;
  font: inherit; color: var(--text); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent-tint); border-color: var(--accent);
}
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }
.form-success { background: #ECFDF5; color: #065F46; border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
.form-errors { background: #FEF2F2; color: #991B1B; border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1rem; }
.check { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; margin: 0.4rem 0; }

/* Page */
.page-hero { padding: 3rem 0 1rem; background: linear-gradient(180deg, #C9DFFF, #EAF3FF); }
.steps-heading { font-weight: 800; }
.steps-ol { font-weight: 700; color: var(--text); }
.yandex-reviews-card {
  display: block; margin-bottom: 2rem; padding: 1.5rem 1.6rem;
  background: linear-gradient(135deg, #fff, #E8F1FF);
  border: 1.5px solid #93C5FD; border-radius: 16px; color: inherit;
  box-shadow: var(--shadow);
}
.yandex-reviews-card:hover { border-color: var(--accent); color: inherit; }
.yandex-reviews-kicker {
  display: inline-block; margin-bottom: 0.45rem; font-size: 0.75rem;
  font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
}
.yandex-reviews-card strong { display: block; font-size: 1.25rem; margin-bottom: 0.4rem; color: var(--text); }
.yandex-reviews-card p { margin-bottom: 0.75rem; }
.crumb { display: inline-block; margin-bottom: 0.75rem; font-weight: 600; }
.split { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: start; }
.sticky-form { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; box-shadow: var(--shadow); }
.prose h2 { margin-top: 1.75rem; }
.steps-ol { padding-left: 1.2rem; color: var(--muted); }
.price-from { margin-top: 1.5rem; font-size: 1.15rem; }
.case-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }

.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.calc-form { display: grid; gap: 0.85rem; padding: 1.5rem; }
.calc-result { padding: 1.5rem; margin-bottom: 1rem; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.calc-total strong { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.calc-breakdown { list-style: none; padding: 0; margin: 1rem 0 0; }
.calc-breakdown li { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery-item { margin: 0; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-video { width: 100%; border-radius: 18px; box-shadow: var(--shadow); }
.about-video-wide { width: min(100%, 900px); border-radius: 18px; margin: 0 auto; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-list li { margin-bottom: 1rem; }
.contact-list span { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.2rem; }
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/11; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: #0F172A; color: #CBD5E1; padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
.footer-title { color: #fff; font-weight: 700; margin-bottom: 0.85rem; font-family: var(--font-display); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: #CBD5E1; }
.footer-links a:hover { color: #fff; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-muted { color: #94A3B8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid #1E293B; font-size: 0.9rem; }
.footer-bottom a { color: #94A3B8; }

/* Modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); }
.modal-dialog {
  position: relative; width: min(100%, 520px); background: #fff;
  border-radius: 18px; padding: 1.75rem; box-shadow: var(--shadow); max-height: 90vh; overflow: auto;
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.85rem; border: none; background: transparent;
  font-size: 1.6rem; cursor: pointer; color: var(--muted); line-height: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .hero-grid, .cta-grid, .why-layout, .split, .calc-layout, .contacts-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards-3, .services-grid, .steps-track, .reviews-grid, .gallery-grid, .stats-row, .adv-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-form { position: static; }
  .wide-photo img { aspect-ratio: 16/10; }
}

@media (min-width: 700px) and (max-width: 980px) {
  .adv-grid, .steps-track, .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .socials { display: none; }
}
