/* ============================================================
   midivorcio.com.mx — estilos
   Burgundy #5A1036 · Coral #ED7666 · Off-white #FAF8F5
   ============================================================ */

:root {
  --burgundy: #5A1036;
  --burgundy-deep: #420B27;
  --coral: #ED7666;
  --coral-hover: #E55C4A;
  --off-white: #FAF8F5;
  --tint: #F6EEE9;
  --card: #FFFFFF;
  --ink: #334155;
  --muted: #64748B;
  --line: #E9DED5;
  --radius: 18px;
  --font: 'Montserrat', sans-serif;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.container-narrow { max-width: 860px; }

/* ---------- tipografía ---------- */
h1, h2, h3, h4 { color: var(--burgundy); font-weight: 700; letter-spacing: -0.02em; }

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.18;
  font-weight: 700;
}

h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.35; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}
.eyebrow.center { text-align: center; }

.hl { font-style: normal; color: var(--coral); }
.hl-coral { font-style: normal; color: var(--coral); }

.lead {
  font-size: 1.06rem;
  color: var(--ink);
  max-width: 52ch;
  margin: 28px 0 40px;
  font-weight: 400;
}

.section-sub {
  color: var(--muted);
  max-width: 56ch;
  margin: 20px auto 0;
}

/* ---------- secciones ---------- */
.section { padding: 140px 0; }
.section-tint { background: var(--tint); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}

.section-cta { text-align: center; margin-top: 90px; }

/* ---------- reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .line, .hero-fade { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), background-color .35s, color .35s, box-shadow .35s, border-color .35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-sm { padding: 12px 20px; font-size: 0.72rem; }
.btn-lg { padding: 19px 34px; }
.btn-xl { padding: 23px 44px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 14px 34px -14px rgba(237,118,102,.65); }
.btn-coral:hover { background: var(--coral-hover); box-shadow: 0 20px 42px -14px rgba(237,118,102,.7); }

.btn-burgundy { background: var(--burgundy); color: #fff; }
.btn-burgundy:hover { background: var(--burgundy-deep); }

.btn-outline { border: 1.5px solid var(--burgundy); color: var(--burgundy); background: transparent; }
.btn-outline:hover { background: var(--burgundy); color: #fff; }

.icon { width: 18px; height: 18px; flex: none; }
.icon-line {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s, background-color .4s, box-shadow .4s;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(250,248,245,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { height: 30px; width: auto; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--burgundy); position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--burgundy); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  padding: 190px 0 130px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; top: -200px; right: -260px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,118,102,.10), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.line-mask { display: block; overflow: hidden; padding-bottom: .08em; }
.line {
  display: block;
  transform: translateY(115%);
  animation: line-in 1.05s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes line-in { to { transform: translateY(0); } }

.hero-fade {
  opacity: 0; transform: translateY(22px);
  animation: fade-up 1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 1.12rem;
  color: var(--ink);
  max-width: 46ch;
  margin: 34px 0 36px;
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 34px; margin-bottom: 44px; }
.hero-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--burgundy);
}
.hero-trust .icon-line { color: var(--coral); width: 20px; height: 20px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note { margin-top: 34px; font-size: 0.85rem; color: var(--muted); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(90,16,54,.35);
  clip-path: inset(8% 8% 8% 8% round 24px);
  animation: frame-in 1.3s cubic-bezier(.22,.61,.36,1) .3s forwards;
  opacity: 0;
}
@keyframes frame-in { to { clip-path: inset(0 0 0 0 round 24px); opacity: 1; } }
.hero-frame img { width: 100%; height: 600px; object-fit: cover; will-change: transform; }
.hero-frame-deco {
  position: absolute; z-index: 1;
  inset: 28px -22px -22px 28px;
  border-radius: 24px;
  background: var(--burgundy);
  opacity: 0;
  animation: fade-up 1.2s cubic-bezier(.22,.61,.36,1) .55s forwards;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--burgundy);
  color: rgba(255,255,255,.85);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 54px;
  width: max-content;
  animation: drift 46s linear infinite;
}
.marquee-track span {
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track i { color: var(--coral); font-style: normal; font-size: 1.2rem; }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- proceso ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  position: relative;
}
.step { position: relative; padding-top: 6px; }
.step + .step::before {
  content: ""; position: absolute; left: -28px; top: 10%;
  height: 80%; width: 1px; background: var(--line);
}
.step-num {
  display: block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--coral); margin-bottom: 26px;
}
.step-icon { width: 34px; height: 34px; color: var(--burgundy); margin-bottom: 26px; stroke-width: 1.3; }
.step h3 { margin-bottom: 14px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- carrusel ---------- */
.carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 32px;
  padding: 10px calc((100vw - 1144px) / 2) 10px;
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.svc-card {
  flex: 0 0 min(640px, 78vw);
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 60px -34px rgba(90,16,54,.28);
  transition: transform .6s cubic-bezier(.22,.61,.36,1), box-shadow .6s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -34px rgba(90,16,54,.36); }
.svc-card img { width: 100%; height: 340px; object-fit: cover; }
.svc-body { padding: 40px 44px 46px; position: relative; }
.svc-index {
  position: absolute; top: -30px; right: 36px;
  font-size: 4.4rem; font-weight: 800; color: rgba(90,16,54,.08);
  line-height: 1; letter-spacing: -0.04em;
}
.svc-body h3 { margin-bottom: 12px; }
.svc-body p { color: var(--muted); font-size: 0.95rem; max-width: 46ch; }

.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; margin-top: 54px;
}
.carousel-btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--burgundy); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .35s, color .35s, transform .35s;
}
.carousel-btn:hover { background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.carousel-btn .icon-line { width: 20px; height: 20px; }
.carousel-dots { display: flex; gap: 10px; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line);
  transition: background-color .3s, transform .3s;
}
.carousel-dots button.active { background: var(--coral); transform: scale(1.35); }

.svc-extra {
  text-align: center; margin-top: 80px;
  color: var(--muted); font-size: 0.95rem;
}
.svc-extra span { color: var(--burgundy); font-weight: 600; }

/* ---------- split (tranquilidad / costos) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.split-reverse .split-copy { order: 1; }
.split-reverse .split-media { order: 2; }
.split-media { border-radius: 24px; overflow: hidden; box-shadow: 0 36px 80px -34px rgba(90,16,54,.3); }
.split-media img { width: 100%; height: 560px; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,.61,.36,1); }
.split-media:hover img { transform: scale(1.04); }

.trust-inline { display: flex; flex-wrap: wrap; gap: 16px 36px; margin-bottom: 48px; }
.trust-inline li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--burgundy);
}
.trust-inline .icon-line { color: var(--coral); width: 20px; height: 20px; }

.cost-benefits { display: flex; flex-direction: column; gap: 30px; margin-bottom: 36px; }
.cost-benefits li { display: flex; gap: 20px; align-items: flex-start; }
.cost-benefits .icon-line { color: var(--coral); width: 26px; height: 26px; margin-top: 3px; }
.cost-benefits strong { display: block; color: var(--burgundy); font-weight: 700; font-size: 1rem; }
.cost-benefits span { color: var(--muted); font-size: 0.9rem; }
.cost-note { font-weight: 600; color: var(--burgundy); margin-bottom: 40px; }

/* ---------- FAQ ---------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 34px 8px;
  text-align: left;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600; color: var(--burgundy);
  transition: color .3s, padding-left .45s cubic-bezier(.22,.61,.36,1);
}
.acc-trigger:hover { color: var(--coral); padding-left: 20px; }
.acc-chevron { transition: transform .45s cubic-bezier(.22,.61,.36,1); color: var(--coral); }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .55s cubic-bezier(.22,.61,.36,1);
}
.acc-panel p {
  padding: 0 8px 36px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 0.98rem;
}
.faq-different {
  margin-top: 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.faq-different p { font-size: 1.3rem; font-weight: 600; color: var(--burgundy); }

/* ---------- testimonios ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.t-card {
  background: var(--card);
  border-radius: 22px;
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  box-shadow: 0 24px 56px -34px rgba(90,16,54,.22);
  position: relative;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.t-card:hover { transform: translateY(-6px); }
.t-card::before {
  content: "“";
  position: absolute; top: 18px; left: 34px;
  font-size: 5rem; font-weight: 800; color: rgba(237,118,102,.18);
  line-height: 1;
}
.t-card blockquote {
  font-size: 1.02rem; color: var(--ink);
  line-height: 1.75; position: relative; z-index: 1;
  padding-top: 30px;
}
.t-card figcaption { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--burgundy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex: none;
}
.t-card figcaption strong { display: block; color: var(--burgundy); font-size: 0.95rem; }
.t-card figcaption span { color: var(--muted); font-size: 0.82rem; }

/* ---------- sección WhatsApp ---------- */
.wa-section {
  background: var(--burgundy);
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}
.wa-section::before {
  content: "";
  position: absolute; bottom: -260px; left: -200px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,118,102,.22), transparent 65%);
}
.wa-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  align-items: center;
  position: relative; z-index: 1;
}
.wa-copy h2 { color: #fff; }
.wa-lead { color: rgba(255,255,255,.75); margin: 30px 0 48px; max-width: 48ch; font-size: 1.05rem; }
.wa-message { display: flex; flex-direction: column; gap: 22px; }
.wa-message-label {
  color: rgba(255,255,255,.6); font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
}
.wa-bubble {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: 26px 32px;
  border-radius: 4px 22px 22px 22px;
  font-size: 1.05rem;
  font-style: italic;
  backdrop-filter: blur(6px);
}

/* ---------- formulario ---------- */
.consult-form {
  background: var(--card);
  border-radius: 24px;
  padding: 60px 56px;
  box-shadow: 0 30px 70px -40px rgba(90,16,54,.25);
  display: flex; flex-direction: column; gap: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.field { display: flex; flex-direction: column; gap: 12px; }
.field label, .field-label {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--burgundy);
}
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--off-white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(237,118,102,.14);
}
.segmented { display: flex; gap: 10px; flex-wrap: wrap; }
.segmented button {
  padding: 13px 24px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  transition: all .3s;
}
.segmented button:hover { border-color: var(--coral); color: var(--coral); }
.segmented button.active {
  background: var(--burgundy); border-color: var(--burgundy); color: #fff;
}
.form-error { color: #C0392B; font-size: 0.9rem; font-weight: 600; margin-top: -12px; }
.form-privacy { text-align: center; font-size: 0.82rem; color: var(--muted); }

/* ---------- ubicaciones ---------- */
.locations { padding: 120px 0; border-top: 1px solid var(--line); }
.cities {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 30px 70px; margin-top: 50px;
}
.cities li {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700; color: var(--burgundy);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 30px;
  transition: color .35s;
}
.cities li:hover { color: var(--coral); }
.cities li:not(:last-child)::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); margin-left: 70px;
}

/* ---------- footer ---------- */
.site-footer { background: var(--burgundy); color: rgba(255,255,255,.75); padding: 100px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}
.footer-logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-logo i { font-style: normal; color: var(--coral); font-size: 0.85rem; font-weight: 600; }
.footer-brand p { margin: 20px 0 30px; font-size: 0.92rem; max-width: 30ch; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background-color .35s, border-color .35s, transform .35s;
}
.footer-social a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-col h4 {
  color: #fff; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 26px;
}
.footer-col a {
  display: block; font-size: 0.92rem; padding: 7px 0;
  transition: color .3s, padding-left .3s;
}
.footer-col a:hover { color: var(--coral); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 30px; padding-bottom: 30px;
  font-size: 0.8rem; color: rgba(255,255,255,.5);
}

/* ---------- flotante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px -10px rgba(237,118,102,.7);
  transition: transform .4s cubic-bezier(.22,.61,.36,1), background-color .3s;
  animation: float-in .8s cubic-bezier(.22,.61,.36,1) 1.4s both;
}
.wa-float:hover { transform: scale(1.1); background: var(--coral-hover); }
.wa-float .icon { width: 28px; height: 28px; }
@keyframes float-in { from { opacity: 0; transform: translateY(24px) scale(.8); } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { gap: 60px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
  .step + .step::before { display: none; }
  .split { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 860px) {
  .section { padding: 96px 0; }
  .section-head { margin-bottom: 64px; }
  .main-nav {
    position: fixed; inset: 0; z-index: 99;
    background: var(--off-white);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 34px;
    opacity: 0; pointer-events: none;
    transition: opacity .4s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.3rem; }
  .nav-toggle { display: flex; position: relative; z-index: 100; }
  .header-actions .btn span { display: none; }
  .header-actions .btn { padding: 12px 14px; }

  .hero { padding: 150px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-frame img { height: 420px; }
  .hero-frame-deco { inset: 18px -12px -12px 18px; }

  .split, .split-reverse { grid-template-columns: 1fr; gap: 56px; }
  .split-reverse .split-copy { order: 2; }
  .split-reverse .split-media { order: 1; }
  .split-media img { height: 400px; }

  .testimonials { grid-template-columns: 1fr; gap: 28px; }
  .wa-grid { grid-template-columns: 1fr; gap: 56px; }
  .wa-section { padding: 100px 0; }

  .consult-form { padding: 40px 26px; }
  .form-row { grid-template-columns: 1fr; gap: 30px; }
  .cities li:not(:last-child)::after { display: none; }
  .cities { flex-direction: column; align-items: center; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .carousel-track { padding-left: 28px; padding-right: 28px; }
  .svc-card { flex-basis: 84vw; }
  .svc-body { padding: 30px 26px 36px; }
  .acc-trigger { padding: 26px 4px; }
}
