/* Marblehead Maids - Clone Styles */
:root {
  --primary: #ffc52f;
  --dark: #12284b;
  --slate: #4a4a4a;
  --section-2: #eef2f7;
  --section-1: #f5f7fa;
  --section-3: #e8edf4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --yellow-400: #facc15;
  --blue-600: #2563eb;
  --red-600: #dc2626;
  --nextdoor-green: #8bc540;
  --light: #fafafa;
  --primary-light: #ffc52f;
  --max-width: 80rem;
  --gutter: 1.25rem;
  --gutter-md: 1.5rem;
  --gutter-lg: 2rem;
  --btn-padding-y: 0.875rem;
  --btn-padding-x: 1.5rem;
  --btn-min-height: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--slate);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

@media (min-width: 640px) {
  .container {
    padding-left: max(var(--gutter-md), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gutter-md), env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: max(var(--gutter-lg), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gutter-lg), env(safe-area-inset-right, 0px));
  }
}

.text-dark { color: var(--dark); }
.text-primary { color: var(--primary); }
.text-slate { color: var(--slate); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--white);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header__inner {
    height: 5rem;
  }
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav__link,
.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--slate);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 0.5rem 0;
}

.nav__link:hover,
.nav__dropdown-btn:hover,
.nav__dropdown.is-open .nav__dropdown-btn {
  color: var(--dark);
}

.nav__dropdown-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.nav__dropdown.is-open .nav__dropdown-btn svg {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 15rem;
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.12);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 0;
  z-index: 50;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--slate);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav__dropdown-menu .nav__dropdown-label {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--slate);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav__dropdown-menu a:hover {
  color: var(--dark);
  background: var(--gray-100);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header__actions {
    display: flex;
  }
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: var(--primary);
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #e6b12a;
}

.btn-quote--header {
  min-width: 9.5rem;
  width: auto;
  height: auto;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

.btn-quote--full {
  width: 100%;
  padding: 1rem 1.5rem;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-phone:hover {
  background: #000;
}

.btn-phone--header {
  min-width: 9.5rem;
  width: auto;
  height: auto;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.btn-phone--full {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.btn-phone svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-phone--full svg {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--slate);
  transition: color 0.2s;
}

.menu-toggle:hover {
  color: var(--dark);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgb(0 0 0 / 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: 85%;
  max-width: 24rem;
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 30px rgb(0 0 0 / 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-panel__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}

.mobile-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--slate);
  transition: color 0.2s;
}

.mobile-panel__close:hover {
  color: var(--dark);
}

.mobile-panel__close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-panel__nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.mobile-panel__group {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-panel__toggle,
.mobile-panel__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}

.mobile-panel__link:hover,
.mobile-panel__toggle:hover {
  color: var(--primary);
}

.mobile-panel__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate);
  transition: transform 0.2s;
}

.mobile-panel__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-panel__submenu {
  background: var(--gray-100);
  padding: 0.25rem 0;
}

.mobile-panel__submenu a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}

.mobile-panel__submenu a:hover {
  color: var(--dark);
}

.mobile-panel__submenu .mobile-panel__sublabel {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
}

.mobile-panel__actions {
  padding: 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 50vh;
    padding-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 65vh;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 80vh;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("../images/heroes/home.jpg");
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 0.6),
    rgb(0 0 0 / 0.5),
    rgb(0 0 0 / 0.7)
  );
}

.hero__content {
  position: relative;
  width: 100%;
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .hero__content {
    padding-block: 5rem;
  }
}

.hero__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.hero__badge-star {
  color: var(--yellow-400);
  font-size: 0.875rem;
}

.hero__badge-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.hero__cta {
  display: flex;
  justify-content: center;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 640px) {
  .hero__cta-group {
    flex-direction: row;
    gap: 1rem;
    width: auto;
    max-width: none;
  }
}

.btn-hero-quote {
  width: 100%;
  min-width: 0;
  min-height: var(--btn-min-height);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--dark);
  transition: background 0.3s;
}

@media (min-width: 640px) {
  .btn-hero-quote {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-hero-quote:hover {
  background: var(--gray-100);
}

.btn-hero-phone {
  width: 100%;
  min-width: 0;
  min-height: var(--btn-min-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: 0.5rem;
  transition: background 0.3s;
}

@media (min-width: 640px) {
  .btn-hero-phone {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-hero-phone:hover {
  background: #000;
}

.btn-hero-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== TRUST SECTION ===== */
.trust {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .trust {
    padding: 3rem 0;
  }
}

.trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .trust__inner {
    flex-direction: row;
    gap: 2rem;
  }
}

.trust__heading {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .trust__heading {
    display: block;
  }
}

.trust__heading h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.trust__heading p {
  font-size: 0.875rem;
  color: var(--slate);
}

.trust__logos {
  flex: 1;
  width: 100%;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}

@media (min-width: 640px) {
  .trust__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

.trust__item {
  text-align: center;
}

.trust__item img {
  height: 1.75rem;
  margin: 0 auto 0.5rem;
}

@media (min-width: 640px) {
  .trust__item img {
    height: 2rem;
  }
}

.trust__item--nextdoor {
  grid-column: span 2;
}

@media (min-width: 640px) {
  .trust__item--nextdoor {
    grid-column: span 1;
  }
}

.trust__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .trust__brand {
    font-size: 1.5rem;
  }
}

.trust__brand--nextdoor {
  color: var(--nextdoor-green);
}

.stars {
  display: flex;
  gap: 2px;
  justify-content: center;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

.stars--yellow svg { fill: var(--yellow-400); color: var(--yellow-400); }
.stars--blue svg { fill: var(--blue-600); color: var(--blue-600); }
.stars--red svg { fill: var(--red-600); color: var(--red-600); }
.stars--dark svg { fill: #1f2937; color: #1f2937; }
.stars--green svg { fill: var(--nextdoor-green); color: var(--nextdoor-green); }

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--section-2);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .services {
    padding: 6rem 0;
  }
}

.services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.services__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .services__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services__title {
    font-size: 3rem;
  }
}

.services__intro {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .services__grid {
    gap: 2rem;
  }
}

.service-card {
  display: block;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  width: 100%;
}

@media (min-width: 768px) {
  .service-card {
    width: calc(50% - 0.75rem);
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .service-card {
    width: calc(33.333% - 1.334rem);
    padding: 2rem;
  }
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transform: translateY(-4px);
}

.service-card__icon {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: var(--slate);
  margin-bottom: 1rem;
  line-height: 1.625;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s;
}

.service-card:hover .service-card__link {
  transform: translateX(4px);
}

.service-card__link svg {
  width: 1rem;
  height: 1rem;
}

/* ===== RECURRING PLANS SECTION ===== */
.recurring {
  background: var(--section-2);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .recurring {
    padding: 6rem 0;
  }
}

.recurring__header {
  text-align: center;
  margin-bottom: 3rem;
}

.recurring__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .recurring__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .recurring__title {
    font-size: 3rem;
  }
}

.recurring__subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

.recurring__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .recurring__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .recurring__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recurring-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.recurring-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: var(--primary);
}

.recurring-card--popular {
  border-color: var(--primary);
}

.recurring-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.recurring-card__dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.recurring-card__dots--offset {
  margin-top: 0.5rem;
}

.recurring-card__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--primary);
}

.recurring-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.recurring-card__desc {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.recurring-card__discount {
  display: inline-block;
  background: rgb(255 197 47 / 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.recurring__footer {
  text-align: center;
}

.recurring__text {
  color: var(--slate);
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.recurring__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .recurring__cta {
    flex-direction: row;
  }
}

.btn-recurring-quote,
.btn-recurring-phone {
  width: 100%;
  max-width: 14rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s, background 0.3s;
}

@media (min-width: 640px) {
  .btn-recurring-quote,
  .btn-recurring-phone {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-recurring-quote:hover,
.btn-recurring-phone:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.btn-recurring-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* WHY TRUST SECTION */
.why-trust {
  background: var(--section-2);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .why-trust {
    padding: 6rem 0;
  }
}

.why-trust__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .why-trust__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .why-trust__title {
    font-size: 3rem;
  }
}

.why-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .why-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-card {
  background: var(--light);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.trust-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgb(255 197 47 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.trust-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.trust-card__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.625;
}

.why-trust__promise {
  max-width: 48rem;
  margin: 0 auto;
  background: rgb(255 197 47 / 0.05);
  border: 1px solid rgb(255 197 47 / 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.trust-promise__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgb(255 197 47 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-promise__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.trust-promise__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.trust-promise__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.625;
}

/* BOOKING STEPS SECTION */
.booking-steps {
  background: #fff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .booking-steps {
    padding: 6rem 0;
  }
}

.booking-steps__header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-steps__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .booking-steps__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .booking-steps__title {
    font-size: 3rem;
  }
}

.booking-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .booking-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__icon-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
}

.step-card__circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__circle svg {
  width: 2rem;
  height: 2rem;
  color: var(--dark);
}

.step-card__badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.step-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.step-card__desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.625;
  max-width: 20rem;
  margin: 0 auto;
}

.booking-steps__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .booking-steps__cta {
    flex-direction: row;
  }
}

.btn-steps-quote,
.btn-steps-phone {
  width: 100%;
  max-width: 14rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s, background 0.3s;
}

@media (min-width: 640px) {
  .btn-steps-quote,
  .btn-steps-phone {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-steps-quote:hover,
.btn-steps-phone:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.btn-steps-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* LOCATIONS SECTION */
.locations {
  background: var(--section-1);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .locations {
    padding: 6rem 0;
  }
}

.locations__header {
  text-align: center;
  margin-bottom: 3rem;
}

.locations__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .locations__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .locations__title {
    font-size: 3rem;
  }
}

.locations__divider {
  width: 4rem;
  height: 0.25rem;
  background: var(--primary);
  margin: 0 auto 1rem;
}

.locations__label {
  font-size: 1.125rem;
  color: var(--slate);
}

.locations__intro {
  font-size: 1rem;
  color: var(--slate);
  max-width: 48rem;
  margin: 1rem auto 0;
  line-height: 1.625;
}

.locations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.location-card {
  background: var(--white);
  color: var(--dark);
  border-radius: 0.5rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s, background 0.3s;
  width: 100%;
  text-decoration: none;
}

@media (min-width: 480px) {
  .location-card {
    width: calc(50% - 0.5rem);
  }
}

@media (min-width: 768px) {
  .location-card {
    width: calc(25% - 0.75rem);
  }
}

.location-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  background: var(--primary-light);
}

.location-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.location-card__label {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--section-3);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 6rem 0;
  }
}

.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .testimonials__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .testimonials__title {
    font-size: 3rem;
  }
}

.testimonials__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}

.testimonials__google-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.testimonials__stars {
  display: flex;
  color: var(--yellow-400);
  font-size: 0.875rem;
}

.testimonials__rating {
  font-size: 0.875rem;
  color: var(--slate);
}

.testimonials__grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    display: grid;
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial-card {
  background: var(--light);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card__stars {
  display: flex;
  color: var(--yellow-400);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.testimonial-card__quote {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgb(255 197 47 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__initial {
  color: var(--primary);
  font-weight: 700;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--slate);
}

.testimonials__carousel {
  position: relative;
}

@media (min-width: 768px) {
  .testimonials__carousel {
    display: none;
  }
}

.testimonials__track-wrap {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.3s ease-out;
}

.testimonials__slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.5rem;
}

.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  cursor: pointer;
  transition: color 0.2s;
}

.testimonials__nav:hover {
  color: var(--dark);
}

.testimonials__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials__nav--prev {
  left: 0.25rem;
}

.testimonials__nav--next {
  right: 0.25rem;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.testimonials__dot.is-active {
  background: var(--primary);
}

/* FAQ SECTION */
.faq {
  background: #fff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .faq {
    padding: 6rem 0;
  }
}

.faq__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq__title {
    font-size: 3rem;
  }
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background: var(--light);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item__question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__answer-wrap {
  padding: 0 1.25rem 1.25rem;
}

.faq-item__answer {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.625;
}

/* FINAL CTA SECTION */
.final-cta {
  position: relative;
  padding: 4rem 0;
  background-color: var(--dark);
  background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 5rem 0;
  }
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgb(18 40 75 / 0.85);
}

.final-cta__content {
  position: relative;
  text-align: center;
}

.final-cta__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta__title {
    font-size: 3rem;
  }
}

.final-cta__text {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .final-cta__buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn-final-quote,
.btn-final-phone {
  width: 100%;
  max-width: 14rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  justify-content: center;
  font-size: 1rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .btn-final-quote,
  .btn-final-phone {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-final-quote:hover {
  background: #e6b12a;
}

.btn-final-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: var(--white);
}

.footer__inner {
  padding-block: 3rem 2.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    padding-block: 4rem 3rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 3rem;
  }
}

.footer__logo {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social-link {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--white);
}

.footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

.footer__contact a,
.footer__contact span {
  word-break: break-word;
}

.footer__contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer__contact a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__map {
  margin-top: 1rem;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid #374151;
}

@media (min-width: 768px) {
  .footer__map {
    max-width: 200px;
  }
}

.footer__map iframe {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2.5rem;
  padding: 2rem 0.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-top: 2rem;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .footer__legal {
    justify-content: flex-start;
  }
}

.footer__legal a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--white);
}

.footer__sep {
  color: #4b5563;
}

.footer__copy {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
  max-width: 100%;
}

.footer__credit {
  margin-top: 1rem;
  text-align: center;
}

.footer__credit-link {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.footer__credit-link:hover {
  color: #f7f7f7;
}

/* INTERNAL PAGES */
.page-hero {
  background: var(--section-1);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0;
  }
}

.page-hero__inner {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.page-hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 3rem;
  }
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.625;
  margin-bottom: 2rem;
}

.page-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .page-hero__cta {
    flex-direction: row;
    gap: 1rem;
  }
}

.btn-page-quote,
.btn-page-phone {
  width: 100%;
  max-width: 14rem;
  min-height: var(--btn-min-height);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  justify-content: center;
  font-size: 1rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .btn-page-quote,
  .btn-page-phone {
    width: auto;
    min-width: 12.5rem;
  }
}

.btn-page-phone svg {
  width: 1.25rem;
  height: 1.25rem;
}

.trust--compact {
  padding: 2rem 0;
}

.trust--compact .trust__inner {
  justify-content: center;
}

.page-content {
  background: #fff;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .page-content {
    padding: 5rem 0;
  }
}

.page-content__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.page-block + .page-block {
  margin-top: 2.5rem;
}

.page-block__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.page-block__text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.625;
}

/* Service page sections */
.service-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .service-hero {
    min-height: 50vh;
    padding-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .service-hero {
    min-height: 65vh;
  }
}

@media (min-width: 1280px) {
  .service-hero {
    min-height: 80vh;
  }
}

.service-hero__bg {
  position: absolute;
  inset: 0;
}

.service-hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 0.6),
    rgb(0 0 0 / 0.5),
    rgb(0 0 0 / 0.7)
  );
}

.service-hero__content {
  position: relative;
  width: 100%;
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .service-hero__content {
    padding-block: 5rem;
  }
}

.service-hero__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.service-hero__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .service-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .service-hero__title {
    font-size: 3.75rem;
  }
}

.service-hero__subtitle {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .service-hero__subtitle {
    font-size: 1.25rem;
  }
}

.service-hero__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

.service-hero__cta .service-hero__cta-group,
.service-hero__cta {
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .service-hero__cta {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    max-width: none;
    width: auto;
  }

  .service-hero__cta .service-hero__cta-group,
  .service-hero__cta {
    flex-direction: row;
    align-items: center;
  }
}

.service-hero__cta .btn-hero-quote,
.service-hero__cta .btn-hero-phone,
.service-hero__cta .btn-page-quote,
.service-hero__cta .btn-page-phone {
  width: 100%;
}

@media (min-width: 640px) {
  .service-hero__cta .btn-hero-quote,
  .service-hero__cta .btn-hero-phone,
  .service-hero__cta .btn-page-quote,
  .service-hero__cta .btn-page-phone {
    width: auto;
  }
}

.service-intro,
.service-checklist,
.service-when,
.service-how,
.service-pricing {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .service-intro,
  .service-checklist,
  .service-when,
  .service-how,
  .service-pricing {
    padding: 6rem 0;
  }
}

.service-intro {
  background: var(--section-1);
}

.service-checklist {
  background: var(--section-2);
}

.service-when {
  background: #fff;
}

.service-how {
  background: var(--section-1);
}

.service-pricing {
  background: var(--section-2);
}

.service-why.why-trust {
  background: #fff;
}

.service-page-other.services {
  background: #fff;
}

.service-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-section__header--narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.service-section__body {
  max-width: 56rem;
  margin: 0 auto;
}

.service-section__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .service-section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .service-section__title {
    font-size: 3rem;
  }
}

.service-section__text {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.service-section__text--center {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.service-intro__cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .service-intro__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-intro__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-intro__card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.service-intro__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-intro__card-desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
}

.service-checklist__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-checklist__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.service-checklist__card {
  background: var(--light);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .service-checklist__card {
    padding: 2rem;
  }
}

.service-checklist__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-checklist__title svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-checklist__list {
  list-style: none;
  padding: 0;
}

.service-checklist__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.service-checklist__list li svg {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-when__stack {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-when__card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

@media (min-width: 1024px) {
  .service-when__card {
    padding: 2rem;
  }
}

.service-when__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-when__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgb(255 197 47 / 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-when__desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.625;
  padding-left: 2.75rem;
}

.service-pricing__table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(18, 40, 75, 0.08);
}

.service-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.service-pricing__table thead tr {
  background: var(--dark);
  color: var(--white);
}

.service-pricing__table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
}

.service-pricing__table td {
  padding: 1rem 1.5rem;
  color: var(--slate);
}

.service-pricing__row--alt {
  background: var(--gray-100);
}

.service-pricing__cell--size {
  font-weight: 600;
  color: var(--dark);
}

.service-pricing__cell--deep {
  color: var(--primary);
  font-weight: 600;
}

.service-pricing__note {
  margin-top: 1rem;
  font-size: 1rem;
}

.service-pricing__cta {
  margin-top: 1.5rem;
  text-align: center;
}

.service-page-other {
  background: #fff;
}

.about-stats {
  padding: 3rem 0;
  background: var(--section-2);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stats__item {
  text-align: center;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}

.about-stats__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.about-stats__label {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--slate);
}

.about-team__list {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  list-style: none;
  padding: 0;
}

.about-team__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--slate);
}

.about-team__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.checklist-page,
.checklist-footer,
.contact-cards,
.contact-form-section,
.contact-area,
.careers-intro,
.careers-form-section {
  padding: 4rem 0;
}

.checklist-page {
  background: var(--section-1);
}

.checklist-footer {
  background: #fff;
}

.checklist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.checklist-tabs__btn {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
}

.checklist-tabs__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.checklist-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(18, 40, 75, 0.08);
}

.checklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.checklist-table thead tr {
  background: var(--dark);
  color: #fff;
}

.checklist-table th,
.checklist-table td {
  padding: 0.875rem 1rem;
  text-align: left;
}

.checklist-table__cell {
  text-align: center;
  width: 8rem;
}

.checklist-table__yes {
  color: #22c55e;
  font-weight: 700;
}

.checklist-table__no {
  color: #94a3b8;
  font-weight: 700;
}

.checklist-table__na {
  color: var(--slate);
  font-size: 0.8125rem;
}

.checklist-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--slate);
  font-size: 0.875rem;
}

.contact-cards {
  background: var(--section-1);
}

.contact-cards__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.contact-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-card__line {
  margin: 0 0 0.375rem;
  color: var(--slate);
  font-size: 0.9375rem;
}

.contact-card__line--link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.contact-form-section {
  background: #fff;
}

.quote-form {
  max-width: 48rem;
  margin: 2rem auto 0;
}

.quote-form__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .quote-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.quote-form__field--full {
  grid-column: 1 / -1;
}

.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font: inherit;
}

.quote-form .btn-quote {
  margin-top: 1.25rem;
  width: 100%;
  padding: 1rem 1.5rem;
}

@media (min-width: 480px) {
  .quote-form .btn-quote {
    width: auto;
    min-width: 12rem;
  }
}

.page-block__list {
  margin: 1rem 0 0 1.25rem;
  color: var(--slate);
  line-height: 1.6;
}

.page-block__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.5rem 0 0.75rem;
}

.hidden {
  display: none !important;
}

.location-services {
  background: #fff;
}

.contact-faq,
.contact-area {
  background: var(--section-2);
}

.careers-form-section {
  background: var(--section-1);
}

.about-beliefs {
  background: #fff;
}

.about-team-section {
  background: var(--section-2);
}

.about-local-section {
  background: #fff;
}

/* ===== RESPONSIVE POLISH ===== */
.header__inner {
  gap: 0.75rem;
}

.header__actions {
  gap: 0.625rem;
}

.hero__cta {
  padding: 0 0.25rem;
}

.hero__title,
.service-hero__title,
.page-hero__title,
.final-cta__title,
.services__title,
.locations__title,
.testimonials__title,
.why-trust__title,
.recurring__title {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-hero__title {
  padding: 0 0.25rem;
}

.service-hero__subtitle,
.hero__subtitle,
.page-hero__subtitle,
.final-cta__text {
  padding: 0 0.25rem;
}

.page-hero__cta {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .page-hero__cta {
    max-width: none;
    width: auto;
  }
}

.checklist-tabs {
  padding: 0 0.25rem;
}

.checklist-tabs__btn {
  padding: 0.625rem 1rem;
}

.checklist-legend {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0 0.5rem;
  text-align: center;
}

.checklist-table-wrap,
.service-pricing__table-wrap {
  -webkit-overflow-scrolling: touch;
}

.checklist-table th,
.checklist-table td,
.service-pricing__table th,
.service-pricing__table td {
  padding: 0.875rem 0.75rem;
}

@media (min-width: 640px) {
  .checklist-table th,
  .checklist-table td,
  .service-pricing__table th,
  .service-pricing__table td {
    padding: 1rem 1.5rem;
  }
}

.contact-card,
.recurring-card,
.service-card,
.testimonial-card {
  min-width: 0;
}

.mobile-panel__actions {
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-panel__nav {
  padding: 0 0.5rem;
}

.faq-item__trigger {
  padding: 1rem 1.125rem;
}

.faq-item__answer-wrap {
  padding: 0 1.125rem 1.125rem;
}

.about-stats__grid {
  padding: 0 0.25rem;
}

@media (max-width: 479px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    gap: 1.25rem;
  }

  .footer__grid {
    gap: 2.5rem;
  }
}

.service-pricing__cta .btn-quote {
  width: 100%;
  max-width: 14rem;
  padding: var(--btn-padding-y) var(--btn-padding-x);
}

@media (min-width: 480px) {
  .service-pricing__cta .btn-quote {
    width: auto;
  }
}

/* ===== QUOTE MODAL ===== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 40, 75, 0.55);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.quote-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.quote-modal {
  background: var(--white);
  border-radius: 1rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}

.quote-modal-overlay.is-open .quote-modal {
  transform: translateY(0) scale(1);
}

.quote-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.quote-modal__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--dark);
}

.quote-modal__close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  color: var(--slate);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.quote-modal__close:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.quote-modal__close svg {
  width: 1.125rem;
  height: 1.125rem;
}

.quote-modal__body {
  padding: 1.5rem;
}

.quote-modal__subtitle {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Form inside modal */
.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.qf-full { grid-column: 1 / -1; }

.qf-group {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.qf-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
}

.qf-label .qf-req {
  color: var(--red-600);
  margin-left: 2px;
}

.qf-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.4;
}

.qf-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 197, 47, 0.2);
}

.qf-input.is-error {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.qf-error {
  font-size: 0.75rem;
  color: var(--red-600);
  margin-top: 2px;
}

/* Phone row with flag prefix */
.qf-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--white);
}

.qf-phone-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 197, 47, 0.2);
}

.qf-phone-wrap.is-error {
  border-color: var(--red-600);
}

.qf-phone-prefix {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0 0.75rem;
  background: var(--gray-100);
  border-right: 1.5px solid var(--gray-200);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
  flex-shrink: 0;
}

.qf-phone-prefix .flag {
  font-size: 1.125rem;
  line-height: 1;
}

.qf-phone-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: none;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--dark);
  background: transparent;
  min-width: 0;
}

.qf-phone-input:focus { outline: none; }

/* Checkbox */
.qf-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.qf-checkbox {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.qf-checkbox-label {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.5;
  cursor: pointer;
}

/* Submit */
.qf-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.qf-submit:hover:not(:disabled) { background: #e6b12a; }
.qf-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.qf-submit .spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(18,40,75,0.25);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.qf-submit.loading .spinner { display: block; }
.qf-submit.loading .btn-text { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.quote-modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  gap: 1rem;
}

.quote-modal__success.is-shown { display: flex; }

.quote-modal__success-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-modal__success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #16a34a;
}

.quote-modal__success-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.quote-modal__success-msg {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  max-width: 320px;
}

.qf-general-error {
  background: #fee2e2;
  color: #7f1d1d;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: none;
}
.qf-general-error.is-shown { display: block; }

@media (max-width: 480px) {
  .qf-grid { grid-template-columns: 1fr; }
  .qf-full { grid-column: 1; }
}
