:root {
  --yellow: #facc15;
  --yellow-hover: #fde047;
  --green: #15803d;
  --green-hover: #166534;
  --amber-text: #92400e;
  --black: #050505;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f9fafb;
  --line: #eef0f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.topbar {
  padding: 8px clamp(16px, 4vw, 48px);
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar p { margin: 0; color: #d1d5db; }
.topbar-links { display: flex; gap: 24px; align-items: center; font-weight: 800; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 clamp(16px, 4vw, 48px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(17, 24, 39, 0.06);
}
.header-inner {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.logo-link { flex: 0 0 auto; width: 127px; height: 44px; }
.logo-link img {
  width: 127px;
  height: 44px;
  aspect-ratio: 127 / 44;
  object-fit: contain;
}
.nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: 26px; color: #4b5563; font-weight: 800; }
.nav a:hover { color: #eab308; }
.quote-nav { padding: 10px 16px; border-radius: 8px; background: var(--yellow); color: #000 !important; white-space: nowrap; }
.header-actions { display: flex; gap: 12px; }
.mobile-header-actions,
.mobile-menu-actions { display: none; }
.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.mobile-phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #eab308;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-hover); }
.btn-outline { border-color: var(--yellow); color: #1f2937; background: #fff; }
.btn-glass { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.14); color: #fff; }
.btn-black { background: #050505; color: #fff; }
.btn-large { min-height: 56px; padding: 16px 30px; font-size: 18px; }

.menu-button { display: none; width: 44px; height: 44px; border: 0; background: #f3f4f6; border-radius: 10px; }
.menu-button span { display: block; width: 22px; height: 2px; margin: 4px auto; background: #111827; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.hero-inner { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); padding: 86px 0 56px; }
.radius-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero h1 { margin: 0 0 18px; font-size: clamp(2.7rem, 5.6vw, 5.45rem); line-height: 1.02; font-weight: 950; letter-spacing: 0; }
.hero h1 span { display: block; color: var(--yellow); }
.hero h1 .hero-title-line { display: inline-block; max-width: 100%; color: #fff; white-space: nowrap; }
.hero p { max-width: 790px; margin: 0 auto 24px; color: #e5e7eb; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.65; }
.hero p strong { color: #fde68a; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 38px; font-size: 14px; font-weight: 850; }
.hero-badges span { padding: 9px 16px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.15); }
.hero-badges .badge-yellow { border-color: var(--yellow); background: var(--yellow); color: #000; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

.proof-strip { padding: 32px clamp(16px, 4vw, 48px); background: #111827; }
.proof-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; max-width: 1180px; margin: 0 auto; }
.proof-grid div { display: grid; justify-items: center; gap: 5px; text-align: center; }
.proof-grid > div > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--yellow); color: #000; font-weight: 950; }
.proof-grid > div > span svg,
.why-grid span svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-grid strong { color: #fff; font-size: 15px; }
.proof-grid .count-up { font-variant-numeric: tabular-nums; }
.proof-grid small { color: #9ca3af; font-size: 12px; }

.section { padding: 80px clamp(16px, 4vw, 48px); }
.section-white { background: #fff; }
.section-grey { background: var(--soft); }
.section-heading { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-heading p, .section-kicker { margin: 0 0 9px; color: var(--amber-text); font-size: 14px; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.section-heading h2, .about-copy h2, .coverage h2, .quote-copy h2 { margin: 0; color: #111827; font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.08; font-weight: 950; }
.section-heading span, .section-heading > span { display: block; margin-top: 12px; color: var(--muted); line-height: 1.65; }

.cards-grid, .why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; max-width: 1180px; margin: 0 auto; }
.service-card { overflow: hidden; border: 1px solid #f1f2f4; border-radius: 16px; background: #fff; box-shadow: 0 1px 3px rgba(17,24,39,.05); transition: transform 160ms ease, box-shadow 160ms ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(17,24,39,.13); }
.service-card img { width: 100%; height: 192px; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card div { padding: 24px; }
.service-card h3 { margin: 0 0 9px; font-size: 18px; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card a { color: var(--amber-text); font-size: 14px; font-weight: 900; }

.why-grid article { padding: 28px; border: 1px solid #f1f2f4; border-radius: 16px; background: #fff; transition: transform 160ms ease, background 160ms ease; }
.why-grid article:hover { transform: translateY(-4px); background: var(--yellow); }
.why-grid span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 12px; background: var(--yellow); color: #000; font-weight: 950; }
.why-grid article:hover span { background: #000; color: var(--yellow); }
.flash-icon {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-shadow: none;
}
.why-grid article:hover .flash-icon {
  color: var(--yellow);
}
.why-grid h3 { margin: 0 0 10px; font-size: 18px; }
.why-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.why-grid article:hover p { color: rgba(0,0,0,.78); }

.about-split, .coverage, .quote-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; max-width: none; }
.about-split { background: #fff; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 450px; object-fit: cover; border-radius: 16px; box-shadow: 0 24px 55px rgba(17,24,39,.16); }
.years-card { position: absolute; right: -24px; bottom: -24px; padding: 20px; border-radius: 16px; background: var(--yellow); color: #000; text-align: center; box-shadow: 0 18px 40px rgba(17,24,39,.2); }
.years-card strong { display: block; font-size: 42px; line-height: 1; }
.years-card span { font-size: 14px; font-weight: 900; }
.about-copy p, .coverage-copy p, .quote-copy p { color: var(--muted); line-height: 1.7; }
.about-copy p strong, .coverage-copy strong { color: #1f2937; }
.tick-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 24px 0 32px; list-style: none; color: #4b5563; font-size: 14px; }
.tick-list li::before, .area-grid span::before { content: "✓"; color: #eab308; font-weight: 950; margin-right: 8px; }

.testimonials { background: #111827; color: #fff; }
.testimonials .section-heading h2 { color: #fff; }
.testimonials .section-heading span { color: #9ca3af; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1180px; margin: 0 auto; }
blockquote { position: relative; overflow: hidden; margin: 0; padding: 30px; border: 1px solid #374151; border-radius: 16px; background: linear-gradient(145deg, #1f2937, #172033); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
blockquote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--yellow);
}
blockquote .stars { color: var(--yellow); margin-bottom: 16px; letter-spacing: .08em; }
blockquote p { margin: 0 0 20px; color: #d1d5db; line-height: 1.7; font-style: italic; }
blockquote cite { display: flex; align-items: center; gap: 12px; color: #fff; font-style: normal; font-weight: 900; }
blockquote cite strong,
blockquote cite small { display: block; }
blockquote cite small { margin-top: 3px; color: #9ca3af; font-size: 13px; font-weight: 650; }
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-size: 13px;
  font-weight: 950;
}
blockquote em {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  border: 1px solid rgba(250, 204, 21, .35);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(250, 204, 21, .08);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.test-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; max-width: 1180px; margin: 56px auto 0; padding: 32px; border-radius: 16px; background: var(--yellow); color: #000; }
.test-cta h3 { margin: 0; font-size: 28px; }
.test-cta p { margin: 6px 0 0; color: rgba(0,0,0,.7); }

.coverage { background: #fff; }
.area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 24px 0; color: #4b5563; font-size: 14px; }
.coverage-copy em { display: block; color: #9ca3af; font-size: 14px; }
.coverage-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}
.coverage-panel-head {
  padding: 4px 4px 0;
}
.coverage-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-size: 13px;
  font-weight: 950;
}
.coverage-panel-head strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}
.coverage-panel-head p {
  margin: 8px 0 0;
  color: #cbd5e1;
  line-height: 1.55;
}
.base-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.base-grid div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.base-grid strong {
  display: block;
  color: #fff;
  font-size: 15px;
}
.base-grid span {
  display: block;
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}
.map-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid #38bdf8;
  border-radius: 16px;
  background: #dbeafe;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .18);
}
.map-card::before {
  display: none;
}
.map-card > span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  min-width: 186px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 0 999px 999px 0;
  background: var(--yellow);
  color: #000;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .85);
}
.map-card iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.96) contrast(1.03);
}
.coverage-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.coverage-actions .btn {
  width: 100%;
}
.coverage-actions .btn-outline {
  background: #fff;
}

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
details { border: 1px solid #f1f2f4; border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 1px 3px rgba(17,24,39,.05); }
summary { cursor: pointer; padding: 22px 24px; font-weight: 850; }
details p { margin: 0; padding: 0 24px 22px; color: var(--muted); line-height: 1.65; }

.quote-section { background: #111827; color: #fff; align-items: start; }
.quote-copy h2 { color: #fff; }
.quote-copy h2 span { color: var(--yellow); }
.quote-copy p { color: #d1d5db; }
.contact-blocks { display: grid; gap: 16px; margin-top: 32px; }
.contact-blocks div { padding-left: 64px; min-height: 48px; position: relative; }
.contact-blocks div::before { content: ""; position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--yellow); }
.contact-blocks div::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #000;
  font-size: 22px;
  font-weight: 950;
}
.contact-blocks div:nth-child(1)::after { content: "☎"; }
.contact-blocks div:nth-child(2)::after { content: "📞"; }
.contact-blocks div:nth-child(3)::after { content: "💬"; }
.contact-blocks strong { display: block; color: #fff; }
.contact-blocks a { color: var(--yellow); font-weight: 800; }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 32px; border-radius: 16px; background: #fff; box-shadow: 0 24px 55px rgba(0,0,0,.25); }
label { display: grid; gap: 7px; color: #374151; font-size: 14px; font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; padding: 13px 15px; color: #111827; font: inherit; background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(250,204,21,.35); border-color: #eab308; }
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; margin: 0; color: #9ca3af; font-size: 12px; text-align: center; }

.final-cta {
  padding: 46px clamp(18px, 4vw, 48px);
  background: linear-gradient(135deg, #facc15 0%, #facc15 58%, #f8d94a 100%);
  color: #000;
}
.final-cta-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .12);
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.final-cta-copy h3 { margin: 14px 0 0; font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.final-cta-copy p { max-width: 520px; margin: 12px 0 0; color: rgba(0,0,0,.72); font-size: 18px; line-height: 1.45; }
.final-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.contact-chip {
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  background: #050505;
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(17, 24, 39, .18);
}
.contact-chip-whatsapp {
  background: var(--green);
  color: #fff;
}
.contact-chip-messenger { background: #2563eb; }
.contact-chip-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: currentColor;
}
.contact-chip-phone .contact-chip-icon { color: var(--yellow); }
.contact-chip-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-chip-whatsapp .contact-chip-icon svg {
  fill: currentColor;
  stroke: none;
}
.contact-chip-messenger .contact-chip-icon svg {
  fill: currentColor;
  stroke: none;
}
.contact-chip > span:last-child { min-width: 0; }
.contact-chip strong {
  display: block;
  color: currentColor;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .final-cta {
    display: grid;
    grid-template-columns: minmax(330px, .75fr) minmax(760px, 1.25fr);
    align-items: center;
    gap: 32px;
  }
  .final-cta-actions {
    grid-template-columns: minmax(150px, .8fr) minmax(190px, 1fr) minmax(190px, 1fr) minmax(170px, .9fr);
    margin-top: 0;
  }
  .contact-chip-backup { order: 3; }
  .contact-chip-messenger { order: 4; }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .final-cta {
    display: grid;
    grid-template-columns: minmax(240px, .85fr) minmax(360px, 1.15fr);
    align-items: center;
    gap: 24px;
  }
  .final-cta-actions {
    width: 100%;
    margin-top: 0;
  }
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .75fr));
  gap: clamp(30px, 4vw, 56px);
  padding: clamp(46px, 5vw, 64px) clamp(24px, 6vw, 72px) clamp(42px, 4vw, 56px);
  background: #111827;
  color: #9ca3af;
}
.footer > div { min-width: 0; }
.footer-brand { max-width: 390px; }
.footer img {
  width: clamp(160px, 15vw, 210px);
  height: auto;
  aspect-ratio: 26 / 9;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 8px;
}
.footer p {
  max-width: 38ch;
  margin: 0;
  color: #a8b2c4;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  font-weight: 650;
}
.footer strong { display: block; color: #fff; margin-bottom: 16px; font-size: 16px; }
.footer a { display: block; margin: 10px 0; color: #9ca3af; font-size: 15px; line-height: 1.35; }
.footer a:hover { color: var(--yellow); }
.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin-top: 8px;
  padding-top: 30px;
  border-top: 1px solid rgba(156, 163, 175, .35);
  color: #8390a3;
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.45;
  font-weight: 700;
}
.footer-bottom span { min-width: 0; }
.footer-bottom span:last-child { text-align: right; }
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 560ms ease, transform 560ms ease;
  }

  .motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .proof-grid > div.reveal-item:nth-child(odd) {
    transform: translateX(-28px);
  }

  .motion-ready .proof-grid > div.reveal-item:nth-child(even) {
    transform: translateX(28px);
  }

  .motion-ready .proof-grid > div.reveal-item.is-visible {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1180px) {
  .topbar { font-size: 13px; }
  .topbar-inner { gap: 18px; }
  .topbar-links { gap: 18px; }
  .header { padding: 0 12px; }
  .header-inner { min-height: 66px; gap: 12px; padding: 8px 0; }
  .logo-link img { height: 36px; }
  .logo-link,
  .logo-link img {
    width: 104px;
    height: 36px;
  }
  .nav { gap: 14px; font-size: 15px; }
  .quote-nav { padding: 9px 12px; }
  .header-actions { gap: 8px; }
  .header-actions .btn { min-height: 40px; padding: 10px 12px; font-size: 15px; border-radius: 8px; }
}

@media (max-width: 1023px) {
  .header { padding: 0 20px; }
  .header-inner { min-height: 66px; padding: 7px 0; gap: 14px; }
  .header-actions { display: none; }
  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }
  .menu-button { display: block; width: 42px; height: 42px; border-radius: 12px; }
  .menu-button span { width: 20px; margin: 3px auto; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px 18px; background: #fff; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; }
  .mobile-menu-actions {
    display: flex;
    gap: 12px;
    padding-top: 10px;
  }
  .mobile-menu-actions .btn {
    flex: 1;
    min-height: 46px;
  }
  .about-split, .coverage, .quote-section { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 760px; }
  .map-card { height: 380px; }
}

@media (max-width: 767px) {
  .topbar { display: none; }
}

@media (max-width: 640px) {
  .header { padding-inline: 12px; }
  .header-inner { gap: 8px; }
  .mobile-phone {
    font-size: 12px;
    gap: 6px;
  }
  .mobile-phone svg {
    width: 16px;
    height: 16px;
  }
  .menu-button {
    width: 38px;
    height: 38px;
  }
  .hero-inner { width: min(100% - 32px, 1180px); }
  .hero h1 .hero-title-line { white-space: normal; }
  .hero-actions { flex-direction: column; }
  .btn-large { width: 100%; }
  .cards-grid, .why-grid, .testimonial-grid, .tick-list, .quote-form, .footer { grid-template-columns: 1fr; }
  .proof-grid, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid { gap: 22px 12px; }
  .proof-grid > div > span { width: 44px; height: 44px; }
  .proof-grid strong { font-size: 13px; }
  .proof-grid small { font-size: 11px; }
  .area-grid { gap: 12px 10px; }
  .coverage-panel { padding: 16px; }
  .base-grid,
  .coverage-actions { grid-template-columns: 1fr; }
  .map-card { height: 300px; }
  .section { padding-top: 58px; padding-bottom: 58px; }
  .years-card { right: 12px; }
  .test-cta { flex-direction: column; align-items: flex-start; }
  .final-cta { padding: 38px 24px; }
  .final-cta-copy h3 { font-size: 34px; }
  .final-cta-copy p { font-size: 16px; }
  .final-cta-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-chip {
    min-height: 68px;
    border-radius: 14px;
  }

  blockquote { padding: 26px 22px; }
  blockquote em {
    position: static;
    display: inline-flex;
    margin-top: 18px;
  }
}

.legal-hero {
  padding: 78px clamp(16px, 4vw, 48px);
  background: #111827;
  color: #fff;
}

.legal-hero > div,
.legal-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 950;
}

.legal-hero p:not(.section-kicker) {
  max-width: 780px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
}

.legal-layout {
  padding: 58px clamp(16px, 4vw, 48px) 88px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 42px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.legal-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #4b5563;
  font-weight: 850;
}

.legal-nav a:hover {
  color: #111827;
  background: var(--soft);
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(17,24,39,.05);
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.1;
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: #4b5563;
  line-height: 1.72;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-note {
  padding: 16px;
  border: 1px solid #fde68a;
  border-radius: 12px;
  background: #fffbeb;
}

@media (max-width: 1023px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
  }

  .footer-brand img {
    width: 180px;
    margin-bottom: 0;
  }

  .footer-brand p {
    max-width: 58ch;
  }
}

@media (max-width: 640px) {
  .legal-nav,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 34px;
    padding: 42px 24px 118px;
  }

  .footer-brand {
    display: block;
    max-width: none;
  }

  .footer-brand img {
    width: min(172px, 56vw);
    margin-bottom: 18px;
  }

  .footer-brand p {
    max-width: 31ch;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .footer strong {
    margin-bottom: 12px;
  }

  .footer a {
    margin: 9px 0;
    font-size: 15px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 2px;
    padding-top: 26px;
    padding-right: 72px;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }

  .legal-card {
    padding: 24px;
  }
}
