:root {
  --blue: #0646a3;
  --blue-700: #07377c;
  --yellow: #ffd11a;
  --yellow-600: #eab308;
  --ink: #111827;
  --muted: #667085;
  --soft: #f5f8fc;
  --panel: #ffffff;
  --line: rgba(17, 24, 39, 0.11);
  --shadow: 0 22px 60px rgba(16, 24, 40, 0.11);
  --shadow-soft: 0 12px 32px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(148px, 14vw, 210px);
  height: 58px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: #263244;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a {
  padding: 12px 0;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.btn,
.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary,
.header-cta {
  color: #111827;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-600));
  box-shadow: 0 14px 28px rgba(234, 179, 8, 0.25);
}

.btn-primary:hover,
.header-cta:hover {
  box-shadow: 0 18px 38px rgba(234, 179, 8, 0.34);
}

.btn-secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(6, 70, 163, 0.18);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(6, 70, 163, 0.34);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 77px);
  padding: clamp(52px, 7vw, 98px) clamp(18px, 6vw, 86px) clamp(56px, 8vw, 110px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #0f172a;
  font-size: 5.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: #101828;
  font-size: 3.65rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #101828;
  font-size: 1.14rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy > p {
  max-width: 640px;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475467;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 70, 163, 0.12);
  border-radius: 8px;
  background: #eaf1fb;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(62svh, 680px);
  min-height: 420px;
  object-fit: cover;
}

.hero-logo-showcase {
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 202, 10, 0.24), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(6, 70, 163, 0.17), transparent 38%),
    linear-gradient(145deg, #ffffff 8%, #f4f8ff 100%);
}

.hero-logo-showcase::before,
.hero-logo-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.hero-logo-showcase::before {
  top: 8%;
  right: -13%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(6, 70, 163, 0.13);
}

.hero-logo-showcase::after {
  bottom: 12%;
  left: -10%;
  width: 38%;
  aspect-ratio: 1;
  background: rgba(255, 202, 10, 0.12);
  filter: blur(2px);
}

.hero-logo-showcase img {
  position: relative;
  z-index: 1;
  width: 92%;
  object-fit: contain;
  padding: clamp(24px, 4vw, 56px);
  filter: drop-shadow(0 18px 26px rgba(6, 70, 163, 0.14));
}

.availability-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  width: min(330px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(16px);
}

.availability-card strong {
  display: block;
  margin-bottom: 3px;
  color: #101828;
}

.availability-card p {
  margin: 0;
  font-size: 0.9rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.14);
}

.section {
  padding: clamp(68px, 8vw, 124px) clamp(18px, 6vw, 86px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.trust-grid,
.category-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.brand-strip {
  padding: clamp(56px, 7vw, 92px) clamp(18px, 6vw, 86px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.07);
}

.brand-strip-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: 2.3rem;
}

.brand-strip-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-card {
  position: relative;
  display: grid;
  min-height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 70, 163, 0.24);
  box-shadow: var(--shadow-soft);
}

.brand-card img {
  width: min(72%, 190px);
  max-height: 68px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
}

.brand-fallback {
  display: none;
  color: #1d2939;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-fallback.ford {
  color: #0646a3;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.35rem;
}

.brand-fallback.chevrolet,
.brand-fallback.gmc {
  color: #b8860b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-fallback.dodge {
  color: #b42318;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-fallback.jeep {
  color: #263244;
  font-size: 1.35rem;
}

.brand-fallback.chrysler,
.brand-fallback.cadillac {
  color: #344054;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.brand-fallback.pontiac {
  color: #c91f2e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card,
.category-card,
.step-card,
.location-card,
.rating-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 278px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.category-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon,
.cat-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(6, 70, 163, 0.08);
}

.icon svg,
.cat-icon svg {
  width: 30px;
  height: 30px;
}

.categories-section,
.quote-section,
.facebook-section {
  background: var(--soft);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-card {
  min-height: 168px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  border-color: rgba(6, 70, 163, 0.26);
}

.category-card h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.process-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 70, 163, 0.96), rgba(7, 55, 124, 0.98));
}

.process-section h2,
.process-section h3 {
  color: #ffffff;
}

.process-section p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section .eyebrow {
  color: var(--yellow);
}

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

.step-card {
  min-height: 270px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.step-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 999px;
  color: #101828;
  background: var(--yellow);
  font-weight: 900;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(6, 70, 163, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
  font-weight: 700;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
}

.quote-form {
  display: grid;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #263244;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 24, 40, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(6, 70, 163, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.form-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #b42318;
  font-weight: 900;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.review-card,
.facebook-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rating-box {
  min-width: 310px;
  padding: 24px;
  border: 0;
  background: var(--soft);
  box-shadow: none;
}

.stars {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow-600);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
}

.rating-box strong {
  display: block;
  margin-bottom: 4px;
  color: #101828;
  font-size: 1.15rem;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 22px;
  align-items: stretch;
}

.map-frame {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.location-card h3 {
  font-size: 1.45rem;
}

.hours {
  display: grid;
  gap: 4px;
  margin: 10px 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.hours strong {
  color: #101828;
}

.hours span {
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 86px) clamp(68px, 8vw, 110px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 70, 163, 0.98), rgba(7, 55, 124, 0.98));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  color: #ffffff;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  gap: 34px;
  padding: 44px clamp(18px, 6vw, 86px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #101828;
}

.footer-brand img {
  width: 180px;
  height: 74px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
}

.footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer a:hover {
  color: var(--yellow);
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-whatsapp {
  display: none;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-copy > p {
    font-size: 1.12rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .quote-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .trust-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-strip-inner {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-card span {
    margin-bottom: 28px;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
  }

  .quote-section {
    order: 2;
  }

  .process-section {
    order: 3;
  }

  .trust-section {
    order: 4;
  }

  .brand-strip {
    order: 5;
  }

  .categories-section {
    order: 6;
  }

  .social-proof {
    order: 7;
  }

  .facebook-section {
    order: 8;
  }

  .location-section {
    order: 9;
  }

  .final-cta {
    order: 10;
  }

  .site-header {
    position: sticky;
    padding: 10px 16px;
  }

  .brand {
    width: 132px;
    height: 48px;
    padding: 5px 8px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 22px 16px 24px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.28rem;
    line-height: 1.02;
  }

  h2 {
    margin-bottom: 12px;
    font-size: 1.82rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    line-height: 1.52;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .btn,
  .header-cta {
    min-height: 46px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-proof span {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero-media {
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
  }

  .hero-media img {
    min-height: 0;
    height: 176px;
  }

  .hero-logo-showcase img {
    width: 100%;
    height: 230px;
    padding: 18px;
  }

  .availability-card {
    position: static;
    width: auto;
    margin: 12px;
    padding: 12px;
  }

  .section {
    padding: 34px 16px;
  }

  .section-head,
  .section-head.center {
    margin-bottom: 22px;
    text-align: left;
  }

  .section-head p {
    margin-bottom: 0;
  }

  .trust-grid,
  .category-grid,
  .process-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(235px, 78%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-grid::-webkit-scrollbar,
  .category-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card,
  .category-card,
  .step-card {
    scroll-snap-align: start;
  }

  .feature-card,
  .category-card {
    min-height: 164px;
    padding: 18px;
  }

  .feature-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .icon,
  .cat-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .icon svg,
  .cat-icon svg {
    width: 23px;
    height: 23px;
  }

  .brand-strip {
    padding: 34px 16px;
  }

  .brand-strip-inner {
    gap: 20px;
    padding: 18px;
  }

  .brand-strip-copy h2 {
    font-size: 1.72rem;
  }

  .brand-logo-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 132px;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .brand-logo-grid::-webkit-scrollbar {
    display: none;
  }

  .brand-card {
    min-height: 78px;
    scroll-snap-align: start;
  }

  .brand-card img {
    width: min(78%, 150px);
    max-height: 48px;
  }

  .step-card {
    min-height: 176px;
    padding: 20px;
  }

  .step-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
  }

  .quote-panel {
    gap: 22px;
    padding: 16px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.1);
  }

  .quote-copy .eyebrow,
  .quote-copy p {
    display: none;
  }

  .quote-copy h2 {
    margin-bottom: 0;
    font-size: 1.72rem;
  }

  .clean-list {
    display: none;
  }

  .form-grid,
  .review-card,
  .facebook-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .quote-panel,
  .review-card,
  .facebook-card {
    border-radius: 8px;
  }

  .review-card,
  .facebook-card {
    gap: 18px;
    padding: 16px;
  }

  .rating-box {
    min-width: 0;
    padding: 16px;
  }

  .map-frame {
    min-height: 220px;
  }

  .location-card {
    padding: 18px;
  }

  .final-cta {
    gap: 14px;
    margin: 0 16px 42px;
    padding: 20px;
    border-radius: 8px;
  }

  .footer {
    gap: 22px;
    padding: 34px 16px 24px;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 50;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #101828;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-600));
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.22);
    font-weight: 900;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 118px;
  }

  .header-cta {
    padding: 0 13px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-media img {
    height: 150px;
  }

  .hero-logo-showcase img {
    height: 205px;
  }

  input,
  select,
  textarea {
    min-height: 46px;
  }
}
