/* =========================================================
   BlitzFrei Reinigung — Stylesheet
   Farben exakt aus dem Logo ausgelesen (siehe process-images.ps1
   / Farbmessung: Teal #1D9AA0, Navy #0D3049)
   ========================================================= */

:root {
  /* Markenfarben aus dem Logo */
  --color-teal: #1d9aa0;
  --color-teal-dark: #157a80;
  --color-teal-light: #e4f4f4;
  --color-navy: #0d3049;
  --color-navy-light: #16496b;

  /* Neutrale Töne */
  --color-white: #ffffff;
  --color-bg: #f7f8f8;
  --color-bg-alt: #eef2f3;
  --color-text: #1c2b30;
  --color-text-muted: #55686d;
  --color-border: #dfe5e6;

  /* Typografie */
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(13, 48, 73, 0.1);
  --shadow-sm: 0 4px 14px rgba(13, 48, 73, 0.08);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header p {
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-block;
  color: var(--color-teal-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.bg-alt {
  background: var(--color-bg-alt);
}

.bg-navy {
  background: var(--color-navy);
  color: #d9e6ec;
}

.bg-navy h2, .bg-navy h3 {
  color: var(--color-white);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-teal-dark);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

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

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

.btn-block {
  width: 100%;
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--color-teal);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  color: var(--color-navy);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.92rem;
}

.icon-btn:hover {
  background: var(--color-teal-dark);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */

.hero {
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 18px;
}

.hero-copy .lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--color-navy);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-media .photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero-media .photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Hero-Slideshow ---------- */

.hero-slideshow {
  position: relative;
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero-media .hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  display: block;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: background var(--transition);
}

.slide-arrow:hover {
  background: #fff;
}

.slide-arrow.prev { left: 12px; }
.slide-arrow.next { right: 12px; }

.slide-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--color-navy);
}

.slide-dots {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slide-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.slide-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* ---------- Lightbox ---------- */

.zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  transition: background var(--transition);
}

.ba-slider .zoom-btn {
  top: auto;
  bottom: 10px;
  right: 10px;
  z-index: 6;
}

.zoom-btn:hover {
  background: #fff;
}

.zoom-btn svg {
  width: 18px;
  height: 18px;
  color: var(--color-navy);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 22, 0.8);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  position: relative;
  max-width: min(900px, 90vw);
  max-height: 85vh;
  background: #1c1c1e;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lightbox-img-wrap {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap[hidden] {
  display: none;
}

.lightbox-slider-wrap {
  width: min(560px, 85vw);
  padding: 8px;
}

.lightbox-slider-wrap[hidden] {
  display: none;
}

.lightbox-slider-wrap .ba-slider {
  width: 100%;
  box-shadow: none;
}

.lightbox-img {
  display: block;
  max-width: min(900px, 90vw);
  max-height: 85vh;
  cursor: zoom-in;
}

.lightbox-img.is-zoomed {
  max-width: none;
  max-height: none;
  width: auto;
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

/* ---------- Kundenbewertungen ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #f0a93f;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
}

.review-source {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.review-summary .review-stars {
  margin: 0;
}

.review-summary strong {
  color: var(--color-navy);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}

.hero-badge svg {
  width: 34px;
  height: 34px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.hero-badge strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.hero-badge span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ---------- Service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-teal-dark);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  margin-bottom: 0.6em;
}

.service-card a.card-link {
  color: var(--color-teal-dark);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Full service page layout */

.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) .service-detail-media {
  order: 2;
}

.service-detail-media {
  position: relative;
}

.service-detail-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-detail-body ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}

.service-detail-body li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-text-muted);
}

.service-detail-body li svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Before/After Slider ---------- */

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

.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  user-select: none;
  touch-action: pan-y;
}

.ba-slider .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-slider .ba-after-wrap img {
  position: absolute;
  inset: 0;
  width: var(--ba-img-w, 100%);
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(13, 48, 73, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  z-index: 4;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(13, 48, 73, 0.2);
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.ba-handle-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-navy);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
}

.ba-caption {
  margin-top: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

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

.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.showcase-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.showcase-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(13, 48, 73, 0.85), transparent);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- Steps / process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 0 10px;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

/* ---------- Testimonials / quote ---------- */

.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  margin: 0 0 16px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
}

.cta-band p {
  color: #c3d5de;
  margin: 0;
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-teal-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-note svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-note a {
  color: var(--color-teal-dark);
  font-weight: 700;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #e3f6ee;
  color: #1a7a4c;
}

.form-status.is-error {
  display: block;
  background: #fbe8e8;
  color: #b3261e;
}

.checkbox-row label {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
}

.contact-list li:first-child {
  border-top: none;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-navy);
  color: #b9cbd4;
  padding: 56px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 14px;
  transition: background var(--transition);
}

.social-btn:hover {
  background: var(--color-teal);
}

.social-btn svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-logo {
  height: 44px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--color-white);
  padding: 6px 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Legal pages ---------- */

.legal-content h2 {
  margin-top: 2em;
}

.legal-content h3 {
  margin-top: 1.4em;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content ul {
  color: var(--color-text-muted);
}

.legal-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2em;
}

/* ---------- Breadcrumb / page hero ---------- */

.page-hero {
  padding: 44px 0 40px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.page-hero p {
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 10px auto 0;
}

/* ---------- Sticky mobile call bar ---------- */

.mobile-call-bar {
  display: none;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

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

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

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

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

  .service-detail,
  .service-detail:nth-child(even) .service-detail-media {
    grid-template-columns: 1fr;
    order: 0;
  }

  .service-detail {
    display: block;
  }

  .service-detail-media {
    margin-bottom: 24px;
  }

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

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

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .icon-btn span {
    display: none;
  }

  .header-actions .icon-btn {
    padding: 10px;
  }

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

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

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

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  body {
    padding-bottom: 76px;
  }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -6px 20px rgba(13, 48, 73, 0.12);
  }

  .mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    font-weight: 700;
    font-size: 0.95rem;
  }

  .mobile-call-bar a:first-child {
    background: var(--color-teal);
    color: #fff;
  }

  .mobile-call-bar a:last-child {
    color: var(--color-navy);
  }
}
