/* ============================================
   Gateway Car Key Replacement homepage styles
   Design reference: A1 Garage Door Service
   ============================================ */

:root {
  --red: #be3a34;
  --red-dark: #a32e29;
  --charcoal: #2b2523;
  --brown: #4a3327;
  --text: #3d3935;
  --gray-bg: #efedeb;
  --card-bg: #f2f0ee;
  --white: #ffffff;
  --border: #d9d5d1;
  --max-w: 1220px;
}

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

html { scroll-behavior: smooth; }

html, body {
  /* hard guarantee: nothing can push the page wider than the screen */
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
}

h1, h2, h3, .btn, .nav a, .footer-col h4 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  font-size: 16px;
  padding: 12px 34px;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

/* ============================================
   Header
   ============================================ */
.header {
  background: var(--white);
  padding: 18px 0 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

/* Text logo */
.logo {
  text-decoration: none;
  line-height: 1;
  display: block;
}
.logo .logo-main {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo .logo-sub {
  font-family: "Oswald", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 3.1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  padding: 11px 22px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  background: var(--white);
}
.phone-pill:hover { background: var(--gray-bg); }
.phone-pill svg { width: 17px; height: 17px; fill: var(--charcoal); }

.header-cta .btn { padding: 12px 30px; font-size: 17px; }

.nav {
  display: flex;
  gap: 34px;
}
.nav a {
  color: var(--red);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nav a:hover { color: var(--red-dark); text-decoration: underline; }

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--gray-bg);
  padding: 78px 0 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
}

.hero p {
  font-size: 18.5px;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero p a { color: var(--red); font-weight: 700; text-decoration: none; }
.hero p a:hover { text-decoration: underline; }

.hero-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-buttons .btn { min-width: 250px; }

.hero-art { display: flex; justify-content: center; }

.hero-van {
  position: relative;
  max-width: 540px;
}
.hero-van img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
/* soft ground shadow under the van, like the A1 reference */
.hero-van::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: 52px;
  background: radial-gradient(ellipse closest-side, rgba(43, 37, 35, 0.3), transparent);
}

/* ============================================
   Services
   ============================================ */
.services {
  padding: 84px 0 96px;
  background: var(--white);
}

.section-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-size: 18.5px;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* services: static grid on desktop, sliding carousel on mobile */
.services-slider { position: relative; }

.services-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* large row gap + top padding leave room for the overlapping icon circles */
  gap: 96px 26px;
  padding: 64px 4px 8px;
}
/* center a lone card in the last row */
.services-track .service-card:last-child:nth-child(3n + 1) { grid-column: 2; }

.service-card {
  background: var(--white);
  border: 2px solid var(--red);
  text-align: left;
  padding: 74px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.card-buttons .btn {
  width: 100%;
  padding: 13px 10px;
  font-size: 16.5px;
}

/* arrows and dots only appear in carousel mode (mobile) */
.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--red); color: var(--white); }
.slider-prev { left: -16px; }
.slider-next { right: -16px; }

.slider-dots {
  display: none;
  justify-content: center;
  gap: 13px;
  margin: 30px 0 34px;
}
.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #c9c5c1;
  border: none;
  cursor: pointer;
  padding: 0;
}
.slider-dot.active { background: var(--red); }

.view-all-wrap { text-align: center; margin-top: 44px; }
.view-all-wrap .btn { min-width: 280px; }

.service-icon {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -59px;
  left: 50%;
  transform: translateX(-50%);
}
.service-icon svg { width: 56px; height: 56px; fill: var(--white); }

.service-card h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 17px;
  margin-bottom: 30px;
}

.service-card p strong { color: var(--red); }

/* ============================================
   Trust / info section
   ============================================ */
.trust {
  padding: 90px 0;
  background: var(--white);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.trust-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--red);
}

.trust h2 {
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 26px;
}

.trust > .container p { font-size: 18px; }

.trust-text p { font-size: 18px; margin-bottom: 34px; }

.trust-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
  margin-bottom: 44px;
}

.trust-bullets li {
  position: relative;
  padding-left: 26px;
  font-weight: 700;
  font-size: 17.5px;
  color: var(--charcoal);
}

.trust-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

/* ============================================
   How it works
   ============================================ */
.how-it-works {
  background: var(--gray-bg);
  padding: 80px 0 92px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 74px;
}

.step {
  background: var(--white);
  border: 2px solid var(--red);
  text-align: center;
  padding: 62px 26px 34px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}

.step p { font-size: 16.5px; }

/* ============================================
   Reviews
   ============================================ */
.reviews {
  padding: 80px 0 100px;
  background: var(--white);
}

.reviews-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 70px;
}

.review-bubble-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: var(--red); color: var(--white); }

.review-bubble {
  border: 3px solid var(--red);
  border-radius: 26px;
  padding: 46px 44px 40px;
  position: relative;
  text-align: center;
  flex: 1;
}

/* Speech-bubble tail (bottom left, pointing down) */
.review-bubble::before {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 58px;
  width: 0;
  height: 0;
  border-top: 38px solid var(--red);
  border-right: 48px solid transparent;
}
.review-bubble::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 63px;
  width: 0;
  height: 0;
  border-top: 30px solid var(--white);
  border-right: 37px solid transparent;
}

.review-bubble .quote {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: var(--brown);
  font-weight: 700;
  z-index: 2;
}
.review-bubble .quote-open { top: -30px; left: 30px; }
.review-bubble .quote-close { bottom: -58px; right: 30px; }

.stars {
  color: var(--red);
  font-size: 26px;
  letter-spacing: 6px;
  margin-bottom: 22px;
}

.review-content {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.review-content.is-fading { opacity: 0; }

.review-text {
  font-size: 17px;
  margin-bottom: 26px;
  /* JS sets min-height to the tallest review so the bubble never resizes */
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-author {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--red);
}

.reviews-side { text-align: center; }

.badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.badge .badge-stars { color: #f2a71b; font-size: 16px; letter-spacing: 2px; }
.badge .badge-sub {
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  color: #3d3935;
}

.angi-word {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ff6153;
}

.reviews-side .btn {
  display: block;
  max-width: 360px;
  margin: 0 auto 20px;
}

/* ============================================
   City pages: breadcrumb, mini services, FAQ
   ============================================ */
.breadcrumb {
  font-size: 14.5px;
  color: #8a827c;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--red); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.mini-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.mini-service {
  display: block;
  background: var(--white);
  border: 2px solid var(--red);
  padding: 24px 24px 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.mini-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(43, 37, 35, 0.12);
}
.mini-service h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
}
.mini-service p { font-size: 16px; }

.faq-section { padding: 80px 0 90px; background: var(--white); }

.faq-list {
  max-width: 860px;
  margin: 46px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid var(--red);
  background: var(--white);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--charcoal);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--red);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { color: var(--red); }
.faq-item p { padding: 0 22px 20px; font-size: 16.5px; }

/* ============================================
   Service areas
   ============================================ */
.areas {
  background: var(--gray-bg);
  padding: 80px 0 88px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.area-card {
  background: var(--white);
  border: 2px solid var(--red);
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--charcoal);
  text-align: center;
}
.area-card svg {
  width: 19px;
  height: 19px;
  fill: var(--red);
  flex: 0 0 auto;
}

/* area cards that link to a city page */
a.area-card { text-decoration: none; }
a.area-card:hover { background: var(--red); color: var(--white); }
a.area-card:hover svg { fill: var(--white); }

.areas-note {
  text-align: center;
  margin-top: 36px;
  font-size: 17.5px;
}
.areas-note a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}
.areas-note a:hover { text-decoration: underline; }

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  background: var(--white);
  padding: 70px 0 90px;
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.cta-art { display: flex; justify-content: center; }
.cta-art img { width: auto; height: 420px; }

.cta-text { text-align: center; }

.cta-text h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 26px;
}

.cta-text p {
  font-size: 18.5px;
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-text .btn { min-width: 300px; }

/* ============================================
   Quote / contact
   ============================================ */
.quote-section {
  background: var(--gray-bg);
  padding: 80px 0 90px;
}

.offer-pill-wrap { text-align: center; margin-bottom: 16px; }
.offer-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-top: 46px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  border: 2px solid var(--red);
  padding: 34px 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9c3bd;
  background: var(--white);
  padding: 13px 14px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  border-radius: 0;
}

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(190, 58, 52, 0.15);
}

.quote-submit { width: 100%; margin-top: 6px; }

.form-note {
  margin-top: 12px;
  font-size: 14.5px;
  color: #157f42;
  text-align: center;
}

.quote-info {
  background: var(--white);
  border: 2px solid var(--red);
  padding: 34px 30px;
  text-align: center;
}

.quote-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}

.quote-info p { font-size: 16.5px; margin-bottom: 20px; }

.quote-info .btn { display: block; margin-bottom: 24px; }

.quote-facts {
  list-style: none;
  text-align: left;
}
.quote-facts li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 16px;
  color: var(--charcoal);
}
.quote-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 2px solid var(--border);
  padding: 70px 0 40px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr 1.1fr;
  gap: 44px;
}

.footer-col h4 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 30px;
}

.footer-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icon svg { width: 22px; height: 22px; fill: var(--white); }

.footer-col .btn {
  display: block;
  max-width: 280px;
  margin-bottom: 16px;
  padding: 13px 20px;
  font-size: 17px;
}

.areas-list {
  list-style: none;
  columns: 2;
  column-gap: 30px;
}
.areas-list li { margin-bottom: 14px; font-size: 16.5px; }

.footer-links { list-style: none; }
.footer-links li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
}
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--red);
}
.footer-links a { color: var(--text); text-decoration: none; font-size: 16.5px; }
.footer-links a:hover { color: var(--red); }

.footer-contact p { margin-bottom: 14px; font-size: 16.5px; }
.footer-contact a { color: var(--text); text-decoration: none; }
.footer-contact a:hover { color: var(--red); }

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14.5px;
  color: #8a827c;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1000px) {
  .hero-inner, .trust-inner, .reviews-inner, .cta-inner {
    grid-template-columns: 1fr;
  }
  .services-track { grid-template-columns: repeat(2, 1fr); }
  .services-track .service-card:last-child:nth-child(3n + 1) { grid-column: auto; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .nav { flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
  .hero-art { order: -1; }
}

@media (max-width: 620px) {
  /* ---- compact header ---- */
  .header { padding: 14px 0 16px; }
  .header-inner { flex-direction: column; align-items: center; gap: 14px; }
  .header-right { align-items: center; gap: 12px; width: 100%; }
  .logo { text-align: center; }
  .logo .logo-main { font-size: 30px; }
  .logo .logo-sub { font-size: 11px; letter-spacing: 2.4px; }
  .header-cta { width: 100%; gap: 10px; }
  .phone-pill { flex: 1; justify-content: center; padding: 11px 10px; font-size: 15.5px; }
  .header-cta .btn { flex: 1; padding: 11px 10px; font-size: 15.5px; }
  .nav { justify-content: center; gap: 8px 18px; }
  .nav a { font-size: 15px; }

  /* ---- hero ---- */
  .hero { padding: 36px 0 54px; }
  .hero-inner { gap: 34px; }
  .hero h1 { font-size: 27px; }
  .hero p { font-size: 16.5px; margin-bottom: 26px; }
  .hero-van { max-width: 330px; }
  .hero-buttons { gap: 14px; }
  .hero-buttons .btn { flex: 1 1 100%; min-width: 0; }

  /* ---- shared section scale ---- */
  .section-heading { font-size: 28px; }
  .section-sub { font-size: 16.5px; margin-bottom: 76px; }

  /* ---- services: switch the grid into a swipeable carousel ---- */
  .services { padding: 56px 0 64px; }
  .services-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .services-track::-webkit-scrollbar { display: none; }
  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    padding: 66px 20px 26px;
  }
  .service-card p { font-size: 16px; }
  .slider-arrow { display: flex; width: 44px; height: 44px; font-size: 16px; }
  .slider-prev { left: -10px; }
  .slider-next { right: -10px; }
  .slider-dots { display: flex; }
  .view-all-wrap { margin-top: 0; }
  .view-all-wrap .btn { display: block; min-width: 0; }

  /* ---- how it works ---- */
  .how-it-works { padding: 52px 0 60px; }
  .steps { grid-template-columns: 1fr; gap: 70px; margin-top: 66px; }
  .step p { font-size: 16px; }

  /* ---- trust ---- */
  .trust { padding: 56px 0; }
  .trust-inner { gap: 40px; }
  .trust h2 { font-size: 28px; }
  .trust-text p { font-size: 16.5px; margin-bottom: 28px; }
  .trust-bullets { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .trust-text .btn { display: block; text-align: center; }

  /* ---- reviews: bubble on top, arrows side by side below it ---- */
  .reviews { padding: 56px 0 72px; }
  .reviews-inner { gap: 44px; margin-top: 44px; }
  .review-bubble-wrap { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .review-bubble { order: 1; flex: 1 1 100%; padding: 32px 20px 26px; }
  .carousel-arrow { order: 2; margin-top: 24px; }
  .review-text { font-size: 15.5px; margin-bottom: 18px; }
  .stars { font-size: 22px; margin-bottom: 14px; }
  .review-bubble .quote { font-size: 80px; }
  .review-bubble .quote-open { top: -24px; left: 20px; }
  .review-bubble .quote-close { bottom: -44px; right: 20px; }
  .badges { gap: 20px; }
  .reviews-side .btn { max-width: none; }

  /* ---- city pages ---- */
  .mini-services { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .faq-section { padding: 52px 0 60px; }
  .faq-list { margin-top: 28px; }
  .faq-item summary { font-size: 17px; padding: 15px 46px 15px 16px; }
  .faq-item p { padding: 0 16px 16px; font-size: 15.5px; }

  /* ---- service areas ---- */
  .areas { padding: 52px 0 60px; }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
  .area-card { font-size: 15.5px; padding: 14px 8px; }
  .areas-note { font-size: 16px; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 44px 0 60px; }
  .cta-inner { gap: 26px; }
  .cta-text h2 { font-size: 28px; }
  .cta-text p { font-size: 16.5px; margin-bottom: 28px; }
  .cta-text .btn { display: block; min-width: 0; }
  .cta-art img { height: 280px; }

  /* ---- quote ---- */
  .quote-section { padding: 52px 0 60px; }
  .quote-inner { grid-template-columns: 1fr; gap: 26px; margin-top: 30px; }
  .quote-form, .quote-info { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ---- footer ---- */
  .footer { padding: 46px 0 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col h4 { margin-bottom: 22px; }
  .footer-col .btn { max-width: none; }
  .footer-bottom { margin-top: 40px; }
}
