:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #101828;
  --muted: #5a6475;
  --line: rgba(16, 24, 40, 0.1);
  --accent: #ff6a3d;
  --accent-strong: #e65326;
  --accent-soft: rgba(255, 106, 61, 0.14);
  --card-shadow: 0 24px 60px rgba(25, 38, 64, 0.12);
  --card-shadow-soft: 0 16px 36px rgba(25, 38, 64, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 61, 0.18), transparent 28rem),
    radial-gradient(circle at top right, rgba(112, 196, 255, 0.22), transparent 24rem),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.9rem 0;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  border-bottom: 1px solid rgba(16, 24, 40, 0.05);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.header-brand-stack {
  display: grid;
  gap: 0.34rem;
  align-items: flex-start;
}

.header-chips {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #111827, #223a5f);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--card-shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 1.45rem;
  padding: 0.18rem 0.48rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #ffffff;
  color: #243041;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.06);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.service-chip:hover,
.service-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 9px 18px rgba(17, 24, 39, 0.1);
}

.service-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  flex: 0 0 0.72rem;
}

.service-chip-icon svg {
  width: 0.72rem;
  height: 0.72rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-chip-sale {
  color: #0c78a9;
  background: rgba(103, 218, 255, 0.14);
  border-color: rgba(54, 176, 222, 0.46);
}

.service-chip-sale .service-chip-icon {
  color: #69dfff;
}

.service-chip-buyout {
  color: #9b6712;
  background: rgba(255, 210, 101, 0.18);
  border-color: rgba(223, 170, 51, 0.52);
}

.service-chip-buyout .service-chip-icon {
  color: #f0c453;
}

.service-chip-repair {
  color: #1f7b46;
  background: rgba(112, 226, 153, 0.15);
  border-color: rgba(74, 180, 113, 0.48);
}

.service-chip-repair .service-chip-icon {
  color: #5fe39a;
}

.main-nav,
.header-actions {
  display: none;
}

.main-nav {
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.main-nav a,
.main-nav button,
.btn,
.category-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav button:hover,
.main-nav button:focus-visible {
  color: var(--ink);
}

.main-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.header-actions {
  align-items: center;
  gap: 0.75rem;
}

.header-call-btn {
  min-width: 8.8rem;
}

.top-info-band-wrap {
  padding-top: 0.35rem;
  padding-bottom: 1rem;
}

.top-info-band {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.35rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 61, 0.14), transparent 42%),
    radial-gradient(circle at top right, rgba(112, 196, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.98));
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 36px rgba(25, 38, 64, 0.1);
  color: var(--ink);
}

.top-info-item {
  display: grid;
  gap: 0.25rem;
}

.top-info-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-info-item strong {
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.2;
}

.top-info-btn {
  min-height: 3.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff855f);
  box-shadow: 0 16px 30px rgba(255, 106, 61, 0.24);
  font-size: 0.95rem;
}

.top-info-btn:hover,
.top-info-btn:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong), #ff764c);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn:hover,
.btn:focus-visible,
.category-card:hover,
.category-card:focus-within {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff855f);
  box-shadow: 0 16px 30px rgba(255, 106, 61, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong), #ff764c);
  box-shadow: 0 20px 34px rgba(255, 106, 61, 0.32);
}

.btn-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(16, 24, 40, 0.08);
  box-shadow: var(--card-shadow-soft);
}

.btn-large {
  min-height: 3.5rem;
  padding-inline: 1.45rem;
}

.section {
  padding: 3rem 0;
}

.section-text {
  padding-bottom: 1.5rem;
}

#faq.section {
  padding-top: 1.5rem;
}

.hero {
  padding: 0.5rem 0 2.25rem;
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 152, 120, 0.26));
  border: 1px solid rgba(255, 106, 61, 0.24);
  color: #8f3519;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(255, 106, 61, 0.12);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem rgba(255, 106, 61, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.15rem, 7vw, 4.05rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-lead,
.section-head p,
.category-card p,
.step-card p,
.benefit-card p,
.contact-value,
.faq-item p,
.seo-description p,
.hero-points li,
.map-address {
  color: var(--muted);
}

.section-head p,
.category-card p,
.step-card p,
.benefit-card p,
.contact-value,
.faq-item p,
.seo-description p,
.map-address {
  margin: 0;
}

.hero-lead {
  margin: 1.2rem 0 0;
  max-width: 43rem;
  font-size: 1.08rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--card-shadow-soft);
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow-soft);
}

.hero-points li::before {
  content: "";
  flex: 0 0 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb089);
}

.category-card,
.step-card,
.benefit-card,
.contact-card,
.map-card,
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--card-shadow-soft);
}

.hero-panel {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(112, 196, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

.hero-panel-top {
  display: grid;
  gap: 0.85rem;
}

.hero-panel-top h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.hero-panel-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
  color: #344054;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel-top p:last-child {
  margin: 0;
  color: var(--muted);
}

.hero-panel-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-panel-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.hero-panel-card span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-panel-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-panel-card p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.section-head-left {
  margin-bottom: 1rem;
}

.category-grid,
.steps-grid,
.benefits-grid,
.contact-cards,
.prep-grid,
.trust-grid,
.factor-grid {
  display: grid;
  gap: 0.85rem;
}

.prep-grid,
.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-grid,
.factor-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.category-card,
.step-card,
.benefit-card,
.contact-card,
.prep-card,
.trust-card,
.factor-card {
  padding: 1.1rem;
}

.prep-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
  box-shadow: var(--card-shadow-soft);
}

.trust-card,
.factor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow-soft);
}

.trust-card h3,
.trust-card p,
.factor-card h3,
.factor-card p {
  margin: 0;
}

.trust-card p,
.factor-card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.promo-band {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(112, 196, 255, 0.14), rgba(255, 106, 61, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: var(--card-shadow-soft);
}

.promo-copy h2,
.promo-copy p,
.promo-card h3,
.promo-card p {
  margin: 0;
}

.promo-copy p:last-child,
.promo-card p {
  color: var(--muted);
}

.promo-grid {
  display: grid;
  gap: 0.85rem;
}

.promo-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.1rem;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
}

.promo-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 106, 61, 0.12);
  color: #9a3e20;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.category-card:hover,
.category-card:focus-within {
  border-color: rgba(255, 106, 61, 0.28);
  box-shadow: 0 20px 36px rgba(16, 24, 40, 0.12);
}

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.14), rgba(112, 196, 255, 0.2));
  font-size: 1.45rem;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(223, 240, 255, 0.42));
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.35rem;
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-strong);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.35rem 1.25rem;
}

.seo-description {
  display: grid;
  gap: 1rem;
}

.seo-description p + p {
  margin-top: 1rem;
}

.cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
  padding: 1.1rem;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(112, 196, 255, 0.12));
  box-shadow: var(--card-shadow-soft);
}

.price-factors {
  margin-top: 1.5rem;
}

.pre-contact-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.16), rgba(255, 182, 161, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 106, 61, 0.18);
  box-shadow: 0 18px 36px rgba(255, 106, 61, 0.12);
}

.pre-contact-copy h2,
.pre-contact-copy p {
  margin: 0;
}

.pre-contact-copy h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.05rem);
}

.pre-contact-copy p:last-child {
  color: var(--muted);
}

.pre-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-band h3,
.cta-band p {
  margin: 0;
}

.cta-band p {
  color: var(--muted);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-label {
  display: block;
  margin-bottom: 0.45rem;
  color: #475467;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-link {
  font-size: 1.05rem;
  font-weight: 800;
}

.map-card {
  position: relative;
  padding: 0;
  min-height: 620px;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

.map-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.map-title,
.footer-inner p {
  margin: 0;
}

.site-footer {
  padding: 2rem 0 6rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 45;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1.4rem;
  background: rgba(10, 18, 33, 0.9);
  box-shadow: 0 22px 40px rgba(10, 18, 33, 0.24);
  backdrop-filter: blur(16px);
}

.mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  font-weight: 800;
}

.mobile-action-call {
  background: linear-gradient(135deg, var(--accent), #ff8b69);
  color: #fff;
  box-shadow: 0 16px 28px rgba(255, 106, 61, 0.34);
}

.mobile-action-avito {
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1.02fr 0.98fr;
  }

  .top-info-band {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: center;
  }

  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr auto;
  }

  .pre-contact-band {
    grid-template-columns: 1fr auto;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-text {
    padding-bottom: 1.75rem;
  }

  #faq.section {
    padding-top: 1.75rem;
  }
}

@media (min-width: 980px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .header-brand-stack {
    flex: 0 1 30rem;
  }

  .header-chips {
    max-width: 28rem;
  }

  .main-nav,
  .header-actions {
    display: flex;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    padding-bottom: 2.25rem;
  }

  .mobile-bar {
    display: none;
  }
}

@media (max-width: 979px) {
  .brand-copy span {
    max-width: 14rem;
  }

  .header-brand-stack {
    width: 100%;
  }
}

@media (max-width: 639px) {
  h2 {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
  }

  .hero-panel {
    padding: 0.9rem;
  }

  .section-head {
    margin-bottom: 1.1rem;
  }

  .eyebrow {
    font-size: 0.92rem;
  }

  .header-chips {
    gap: 0.3rem;
  }

  .service-chip {
    padding: 0.16rem 0.42rem;
    font-size: 0.66rem;
  }

  .top-info-band {
    padding: 0.95rem 1rem;
    border-radius: 1.2rem;
  }

  .top-info-item strong {
    font-size: 1rem;
  }

  .top-info-btn {
    min-height: 3rem;
    font-size: 0.9rem;
  }

  .seo-description,
  .cta-band,
  .promo-band,
  .promo-card,
  .faq-item summary,
  .faq-item p,
  .map-overlay,
  .prep-card,
  .category-card,
  .step-card,
  .benefit-card,
  .contact-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .map-card,
  .map-frame {
    min-height: 520px;
  }
}

@media (max-width: 420px) {
  .container,
  .narrow {
    width: min(calc(100% - 1rem), var(--container));
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.3rem);
  }

  .hero-actions,
  .cta-band-actions,
  .pre-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-large,
  .mobile-action {
    width: 100%;
  }

  .hero-points {
    gap: 0.7rem;
  }

  .header-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .service-chip {
    justify-content: center;
    padding-inline: 0.65rem;
  }

  .service-chip-icon {
    width: 1.3rem;
    height: 1.3rem;
    flex-basis: 1.3rem;
  }

  .hero-points li,
  .prep-card,
  .category-card,
  .step-card,
  .benefit-card,
  .contact-card {
    padding: 0.85rem;
  }

  .trust-row {
    gap: 0.5rem;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .mobile-bar {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.55rem;
    gap: 0.55rem;
    grid-template-columns: 1.45fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
