/* ============================================
   The Stream Team Pressure Washing — Mockup Styles
   ============================================ */

:root {
  --color-primary: #0369a1;
  --color-primary-dark: #075985;
  --color-primary-light: #0ea5e9;
  --color-accent: #06b6d4;
  --color-dark: #0f172a;
  --color-dark-soft: #1e293b;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #0c4a6e;
  --color-border: #e2e8f0;
  --color-success: #10b981;

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --header-height: 84px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  /* Prevent soft scaling on high-DPI (Retina) screens */
  image-rendering: auto;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
}

.container {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 40px; }
.btn--lg { padding: 0.9375rem 1.75rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #fff;
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.45);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__list a,
.header__phone {
  color: var(--color-dark);
}

.nav__list a:hover {
  color: var(--color-primary);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo__img--footer {
  height: 88px;
}

.logo--footer {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.nav__list a {
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.header__phone span {
  white-space: nowrap;
}

.header__phone:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.hero__bg-logo {
  width: min(95vw, 900px);
  height: auto;
  max-height: 95%;
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.hero__text {
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.hero .badge {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(6, 182, 212, 0.2);
  color: var(--color-accent);
  border: 1px solid rgba(6, 182, 212, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero .btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  backdrop-filter: none;
}

.hero .btn--outline:hover {
  background: rgba(3, 105, 161, 0.08);
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.trust-badges svg { color: #fbbf24; flex-shrink: 0; }
.trust-badges li:nth-child(2) svg,
.trust-badges li:nth-child(3) svg { color: var(--color-accent); }

.trust-badges__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  transition: opacity var(--transition);
}

.trust-badges__link:hover { opacity: 0.85; }

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.hero__card img,
.hero__card-video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.hero__card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero__card-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__card-badge span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ---- Sections ---- */
.section {
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section__header--light h2,
.section__header--light p { color: #fff; }
.section__header--light .section__label { color: var(--color-accent); }

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section__header p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---- Services ---- */
.services {
  background: var(--color-bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  height: 200px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__body p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.service-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: gap var(--transition);
}

.service-card__link:hover { color: var(--color-primary-light); }

.service-card--compact .service-card__body p {
  margin-bottom: 0;
}

.services__grid--overview {
  margin-bottom: 4rem;
}

/* ---- Service Detail Blocks ---- */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 4rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.service-detail--reverse .service-detail__content { order: 2; }
.service-detail--reverse .service-detail__media { order: 1; }

.service-detail__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(14, 165, 233, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.service-detail__content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail__lead {
  font-size: 1.0625rem;
  color: var(--color-dark-soft);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-detail__content > p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-detail__content > p a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-detail__content > p a:hover {
  color: var(--color-primary-dark);
}

.service-detail__list {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.service-detail__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--color-primary-light);
  border-radius: 50%;
}

.service-detail__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail__media--video .service-detail__video-wrap {
  width: 100%;
}

.service-detail__media--video .service-detail__video-wrap video {
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
}

.service-detail__media--ba {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail__media--ba .ba-slider {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.service-detail__media--ba .ba-slider__after img,
.service-detail__media--ba .ba-slider__before img,
.service-detail__media--ba .ba-slider__after video,
.service-detail__media--ba .ba-slider__before video {
  height: 100%;
  object-fit: cover;
}

.service-detail__ba-labels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-detail__ba-labels .gallery__tag--before {
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.service-detail__ba-labels .gallery__tag--after {
  background: var(--color-primary-light);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.service-detail__ba-labels .gallery__hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* Dual showcase sections — roof, deck/patio + pavers */
.service-detail.service-detail--roof,
.service-detail.service-detail--deck {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

.service-detail__content--full {
  width: 100%;
}

.service-detail__showcases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.service-detail--roof .service-detail__showcases {
  grid-template-columns: repeat(3, 1fr);
}

.service-detail__showcase-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.service-detail__showcase .service-detail__media--ba {
  margin: 0;
}

.service-detail__video-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}

.service-detail__video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
}

.service-detail__video-caption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0.75rem 0 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .service-detail__showcases,
  .service-detail--roof .service-detail__showcases {
    grid-template-columns: 1fr;
  }
}

.services__cta-box {
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.services__cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.services__cta-box > p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.services__cta-box a:not(.btn) {
  color: var(--color-primary);
  font-weight: 700;
}

.services__cta-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 1024px) {
  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
  }

  .service-detail--reverse .service-detail__content,
  .service-detail--reverse .service-detail__media {
    order: unset;
  }

  .service-detail__media img { height: 280px; }
}

@media (max-width: 768px) {
  .service-detail { padding: 1.5rem; }
  .services__cta-box { padding: 2rem 1.25rem; }
  .services__cta-box-actions { flex-direction: column; }
  .services__cta-box-actions .btn { width: 100%; }
}

/* ---- Before / After Gallery ---- */
.gallery {
  background: linear-gradient(160deg, var(--color-bg-dark) 0%, var(--color-dark) 100%);
  padding: 5rem 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ba-item__label {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}

.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
}

.ba-slider__after img,
.ba-slider__before img,
.ba-slider__after video,
.ba-slider__before video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-slider--video video {
  pointer-events: none;
  background: #000;
}

.ba-slider__before {
  z-index: 2;
  overflow: hidden;
  width: 50%;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 4px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.ba-slider__handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-slider__handle span::before,
.ba-slider__handle span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

.ba-slider__handle span::before {
  left: 10px;
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--color-primary) transparent transparent;
}

.ba-slider__handle span::after {
  right: 10px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--color-primary);
}

.ba-slider__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

.gallery__labels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery__tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.gallery__tag--before {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.gallery__tag--after {
  background: var(--color-accent);
  color: var(--color-dark);
}

.gallery__hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- About ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media > img,
.about__media-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: #000;
}

.about__stats {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.stat {
  padding: 1.25rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about__content > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

.feature-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
}

.feature-list p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* ---- Services jump nav (internal SEO links) ---- */
.services__jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: -1.5rem auto 2.5rem;
  max-width: 900px;
}

.services__jump-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition: var(--transition);
}

.services__jump-nav a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ---- Local SEO content hub ---- */
.local-seo {
  background: var(--color-bg-alt);
}

.local-seo__intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.local-seo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.local-seo__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.local-seo__card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.local-seo__card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

.local-seo__card a {
  color: var(--color-primary);
  font-weight: 600;
}

.local-seo__card a:hover {
  text-decoration: underline;
}

.local-seo__cities {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
}

.local-seo__cities h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.local-seo__cities > p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.local-seo__city-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 2rem;
  margin-bottom: 1.25rem;
}

.local-seo__city-list li {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
}

.local-seo__cta-text {
  margin: 0;
  font-weight: 500;
  color: var(--color-dark-soft);
}

.local-seo__cta-text a {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .local-seo__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .local-seo__grid { grid-template-columns: 1fr; }
  .local-seo__city-list { grid-template-columns: 1fr; }
  .local-seo__cities { padding: 1.5rem; }
  .services__jump-nav { margin-top: 0; }
}

/* ---- Service Area ---- */
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.area__content > p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.area__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.area__cities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-dark-soft);
}

.area__cities li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.area__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.area__map-canvas {
  width: 100%;
  height: 100%;
  min-height: 320px;
  z-index: 1;
}

.area__map-canvas.leaflet-container {
  font-family: var(--font-body);
}

.area__map-canvas .leaflet-control-attribution {
  margin-bottom: 1.6rem;
  font-size: 0.625rem;
  background: rgba(255, 255, 255, 0.85);
}

.area__map-legend {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  pointer-events: none;
}

.area__map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark-soft);
}

.area__map-legend-item::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.area__map-legend-item--primary::before {
  background: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25);
}

.area__map-legend-item--secondary::before {
  background: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.25);
}

.area__map-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--color-border);
  pointer-events: none;
}

.area-map-marker {
  background: transparent;
  border: none;
}

.area-map-marker__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.35);
}

.area-map-marker--primary .area-map-marker__dot {
  background: var(--color-primary);
}

.area-map-marker--secondary .area-map-marker__dot {
  background: var(--color-accent);
}

.area-map-popup {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.area-map-popup__county {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-top: 0.15rem;
}

/* ---- Reviews ---- */
.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.reviews__summary-stars {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #fbbf24;
  line-height: 1;
}

.reviews__summary-rating {
  font-size: 1.125rem;
  color: var(--color-dark);
  margin: 0.35rem 0 0;
}

.reviews__summary-rating strong {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
}

.reviews__summary-verified {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0.25rem 0 0;
}

.reviews__cards-empty {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: -1rem 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
}

.reviews__cards-empty code {
  font-size: 0.8125rem;
  background: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.reviews__loading {
  text-align: center;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.reviews__loading[hidden] {
  display: none;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.review-card__avatar--photo {
  object-fit: cover;
  display: block;
  background: var(--color-border);
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.reviews__rating span {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reviews__grid:empty {
  display: none;
  margin-bottom: 0;
}

.review-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card footer > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-dark);
}

.review-card footer span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* ---- Google Reviews Hub ---- */
.google-profile-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: var(--transition);
  max-width: 720px;
  margin-inline: auto;
}

.google-profile-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.google-profile-card__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.google-profile-card__body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.google-profile-card__stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.google-profile-card__stars span:first-child {
  color: #fbbf24;
  letter-spacing: 1px;
}

.google-profile-card__stars span:last-child {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.google-profile-card__body > p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin: 0;
}

.google-profile-card__arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
}

.reviews__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.reviews__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
}

.reviews__note a {
  color: var(--color-primary);
  font-weight: 600;
}

.reviews__note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .google-profile-card {
    flex-wrap: wrap;
    padding: 1.25rem;
  }

  .google-profile-card__arrow { display: none; }

  .reviews__actions { flex-direction: column; }
  .reviews__actions .btn { width: 100%; }
}

/* ---- FAQ ---- */
.faq {
  background: var(--color-bg-alt);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.faq__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq__intro p {
  color: var(--color-text-light);
}

.faq__intro a {
  color: var(--color-primary);
  font-weight: 600;
}

.faq__intro a:hover { text-decoration: underline; }

.faq__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq__item[open] {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

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

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
  padding: 4rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

/* ---- Contact ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact__info > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__details svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__details strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}

.contact__details a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact__details a:hover { text-decoration: underline; }

.contact__form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

.contact__form.form--success {
  position: relative;
}

.contact__form.form--success::after {
  content: 'Thank you! We\'ll be in touch within 24 hours.';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-success);
  text-align: center;
  padding: 2rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a,
.footer__social-link {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.footer__social a[hidden] {
  display: none !important;
}

.footer__social svg {
  pointer-events: none;
}

.footer__social a:hover,
.footer__social-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer__social-text {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
}

.footer__social-text-link {
  color: var(--color-primary-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__social-text-link:hover {
  color: #fff;
}

.footer__links h4,
.footer__cta h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__cta p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer__cta .btn { margin-bottom: 0.75rem; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__legal a:hover { color: #fff; }

/* ---- Mobile Sticky CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta__call,
.mobile-cta__quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  min-height: 48px;
}

.mobile-cta__call {
  background: var(--color-bg-alt);
  color: var(--color-dark);
  border: 1.5px solid var(--color-border);
}

.mobile-cta__quote {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    justify-content: flex-start;
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav__list a {
    display: block;
    padding: 0.875rem 0;
    color: var(--color-dark) !important;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-toggle { display: flex; }

  .header__actions .btn--sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .trust-badges { justify-content: center; }

  .hero__card {
    max-width: 420px;
    margin-inline: auto;
  }

  .hero__card-badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    max-width: calc(100% - 2rem);
  }

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

  .about__grid,
  .area__grid,
  .contact__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__media > img,
  .about__media-video { height: 360px; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__phone span { display: none; }
  .logo__img { height: 58px; }
  .logo__img--footer { height: 76px; }

  /* Hide before/after gallery on mobile */
  #gallery {
    display: none;
  }

  .nav li:has(a[href="#gallery"]),
  .footer__links li:has(a[href="#gallery"]) {
    display: none;
  }

  .services__grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__actions { justify-content: center; width: 100%; }
  .cta-banner__actions .btn { flex: 1; min-width: 140px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }

  .about__stats {
    position: static;
    transform: none;
    margin-top: 1.5rem;
    width: 100%;
  }

  .stat { flex: 1; padding: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .trust-badges { flex-direction: column; align-items: center; gap: 0.75rem; }
  .contact__form { padding: 1.5rem; }
  .area__cities { grid-template-columns: 1fr; }
}
