
/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand-50: #f0fdfa;
  --sand-100: #ccfbf1;
  --sand-200: #99f6e4;
  --sand-300: #5eead4;
  --ocean-400: #2dd4bf;
  --ocean-500: #0d9488;
  --ocean-600: #0f766e;
  --ocean-700: #115e59;
  --ocean-800: #134e4a;
  --coral-400: #ea6c3e;
  --coral-500: #c2410c;
  --coral-600: #9a3412;
  --seafoam: #ccfbf1;
  --seafoam-light: #f0fdfa;
  --warm-white: #fafdfb;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(19,78,74,.06);
  --shadow-md: 0 4px 16px rgba(19,78,74,.08);
  --shadow-lg: 0 8px 32px rgba(19,78,74,.12);
  --shadow-xl: 0 24px 48px rgba(19,78,74,.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --coral-700: #7c2d12;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,251,248,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
  background: rgba(253,251,248,.95);
  box-shadow: 0 4px 24px rgba(15,52,61,.04);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ocean-700);
}

.nav-logo span { color: var(--ocean-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .3s;
}

.nav-links a:hover { color: var(--ocean-600); }

.nav-cta {
  background: var(--coral-500) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: background .3s, transform .2s, box-shadow .3s !important;
  box-shadow: 0 4px 16px rgba(212,96,63,.25);
}

.nav-cta:hover {
  background: var(--coral-600) !important;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(212,96,63,.35);
}

.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral-500);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,96,63,.25);
}
.btn-primary:hover {
  background: var(--coral-600);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(212,96,63,.35);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--ocean-600);
  border: 1.5px solid var(--ocean-400);
}
.btn-secondary:hover { background: var(--seafoam-light); }

.btn-coral {
  background: var(--coral-500);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-600); }

.btn-white {
  background: #fff;
  color: var(--ocean-700);
}
.btn-white:hover { background: var(--sand-100); }

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* === HERO === */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--sand-100) 40%, var(--seafoam-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74,158,173,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--seafoam);
  color: var(--ocean-600);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--ocean-800);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--ocean-400);
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-dot.ocean { background: var(--ocean-400); }
.trust-dot.coral { background: var(--coral-400); }
.trust-dot.green { background: #4abe8a; }

.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--ocean-700);
}

.hero-card-value sup {
  font-size: 20px;
  top: -12px;
  color: var(--text-muted);
}

.hero-card-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-card-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

.hero-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-card-features li svg {
  flex-shrink: 0;
  color: var(--ocean-400);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
}

.hero-float.rating {
  top: -10px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ocean-700);
}

.hero-float.homes {
  bottom: 40px;
  left: -30px;
  color: var(--text-secondary);
}

.hero-float .num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ocean-600);
}

/* === STATS BAR === */
.stats-bar {
  padding: 48px 0;
  background: var(--ocean-700);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  font-weight: 500;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}

.section-sand { background: var(--sand-50); }
.section-seafoam { background: var(--seafoam-light); }

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ocean-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  color: var(--ocean-800);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === SERVICES (asymmetric layout) === */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-featured {
  grid-row: span 2;
  background: linear-gradient(165deg, var(--ocean-700) 0%, var(--ocean-600) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.service-featured::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.service-featured-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-featured h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-featured p {
  font-size: 16px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 20px;
}

.service-featured .price-line {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-featured .price-note {
  font-size: 14px;
  opacity: .6;
  margin-bottom: 24px;
}

.service-featured .btn-white { position: relative; z-index: 1; }

.service-secondary {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow .25s;
}

.service-secondary:hover { box-shadow: var(--shadow-md); }

.service-secondary.highlight {
  background: linear-gradient(165deg, var(--coral-500) 0%, var(--coral-600) 100%);
  color: #fff;
  border: none;
}

.service-secondary.highlight .service-tag { background: rgba(255,255,255,.2); color: #fff; }
.service-secondary.highlight p { opacity: .85; }

.service-tag {
  display: inline-block;
  background: var(--seafoam);
  color: var(--ocean-600);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
  align-self: flex-start;
}

.service-secondary h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-secondary p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-secondary.highlight p { color: rgba(255,255,255,.85); }

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ocean-600);
}

.service-secondary.highlight .service-price { color: #fff; }

.service-compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.service-compact {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .25s;
}

.service-compact:hover { box-shadow: var(--shadow-sm); }

.service-compact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral-500);
}

.service-compact h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.service-compact p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.service-compact .service-price {
  font-size: 18px;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: box-shadow .25s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.popular {
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 1px var(--ocean-400), var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.pricing-card h4 {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--ocean-700);
  line-height: 1;
}

.pricing-per {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-list li svg { color: var(--ocean-400); flex-shrink: 0; }

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

/* === TESTIMONIALS === */
.testimonial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-featured {
  background: var(--ocean-700);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-featured blockquote {
  font-size: 20px;
  line-height: 1.7;
  font-style: italic;
  opacity: .95;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--ocean-400);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-loc {
  font-size: 14px;
  opacity: .6;
  margin-top: 2px;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-compact {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
}

.testimonial-compact blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-compact .testimonial-author { color: var(--text-primary); font-size: 14px; }
.testimonial-compact .testimonial-loc { color: var(--text-muted); font-size: 13px; }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--ocean-400);
  transition: transform .2s;
}

.faq-item.open .faq-q::after {
  content: '-';
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* === CTA BANNER === */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--ocean-700) 0%, var(--ocean-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,158,173,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}

.cta-ghost:hover { background: rgba(255,255,255,.18); }

/* === FOOTER === */
.footer {
  background: var(--ocean-800);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand h3 span { color: var(--ocean-400); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-brand a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .03em;
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  font-size: 14px;
  transition: color .2s;
}

.footer ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* === MOBILE STICKY CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border-light);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

.mobile-cta-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-cta .btn { flex: 1; justify-content: center; }

.mobile-cta .btn-call {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--coral-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right .3s ease;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,52,61,.4);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.mobile-menu a:hover { background: var(--sand-50); }

.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 8px 0;
}

/* === FADE UP === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === AREAS GRID === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: box-shadow .25s;
}

.area-card:hover { box-shadow: var(--shadow-sm); }

.area-card h4 {
  font-size: 18px;
  color: var(--ocean-700);
  margin-bottom: 6px;
}

.area-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 400px; }
  .services-layout { grid-template-columns: 1fr; }
  .service-featured { min-height: auto; grid-row: span 1; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-val { font-size: 28px; }
  .service-compact-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-float.rating { right: 0; }
  .hero-float.homes { left: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-row { flex-direction: column; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-content h2 { font-size: 28px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; text-align: center; justify-content: center; }
}


/* === PHOTO OVERLAY HERO (Area Pages) === */
.hero-photo {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--ocean-800, #0f343d);
  min-height: 420px;
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,78,74,0.6) 0%, rgba(250,253,251,0.72) 100%);
}
.hero-photo .container {
  position: relative;
  z-index: 1;
}
.hero-photo h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-photo p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.95);
  max-width: 560px;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.hero-photo .hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-photo { padding: 120px 0 80px; }
  .hero-photo h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero-photo { padding: 100px 0 60px; }
}

/* === NAV DROPDOWNS === */
.nav-dropdown { position:relative; }
.nav-dropdown > a::after { content:" ▾"; font-size:10px; opacity:.5; transition:transform .3s; }
.nav-dropdown:hover > a::after { transform:rotate(180deg); }
.nav-dropdown:hover > a { color:var(--ocean-600); }
.dropdown-menu {
  position:absolute; top:100%; left:-12px;
  background:#fff;
  border:1px solid rgba(226,232,230,.5);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-xl);
  min-width:220px; padding:8px;
  z-index:100;
  opacity:0; visibility:hidden;
  transform:translateY(8px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav-dropdown:hover .dropdown-menu {
  opacity:1; visibility:visible;
  transform:translateY(0);
}
.dropdown-menu a {
  display:flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:var(--radius-sm);
  font-size:14px; color:var(--text-primary); font-weight:500;
  transition:background .2s, color .2s;
}
.dropdown-menu a:hover {
  background:var(--seafoam-light); color:var(--ocean-600);
}

/* === CONTENT GRID === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  max-width: 280px;
  margin: 0 auto;
}

/* === HERO SIMPLE === */
.hero-simple {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-simple.water-bg {
  background: linear-gradient(160deg, var(--ocean-600) 0%, var(--ocean-800) 100%);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.hero-simple.water-bg .container { position: relative; z-index: 1; }
.hero-simple.water-bg .hero-bg::after { display: none; }
.hero-simple.water-bg h1 { color: #fff; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-simple.water-bg p { color: rgba(255,255,255,.95); text-shadow: 0 1px 4px rgba(0,0,0,.3); }

.hero-simple.has-bg {
  background: var(--ocean-800);
}

.hero-simple .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-simple .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-simple .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,52,61,.65) 0%, rgba(15,52,61,.8) 100%);
}

.hero-simple.has-bg .container {
  position: relative;
  z-index: 1;
}

.hero-simple.has-bg h1 { color: #fff; font-weight: 800; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.hero-simple.has-bg p { color: rgba(255,255,255,.95); text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* === SECTION VARIANTS === */
.section-alt {
  background: var(--sand-50);
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ocean-500);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === CARD === */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon.blue {
  background: var(--seafoam-light);
  color: var(--ocean-600);
}

/* === GRIDS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* === CHECKLIST === */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: var(--ocean-600);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* === STATS ROW === */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  text-align: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ocean-700);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

/* === TESTIMONIAL (standalone) === */
.testimonial {
  padding: 24px;
  background: var(--sand-50);
  border-radius: var(--radius-lg);
}

/* === TRUST BAR & BADGES === */
.trust-bar {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trust-icon.blue {
  background: var(--seafoam-light);
}

/* === CTA BANNER (inline) === */
.cta-banner {
  background: var(--ocean-700);
  color: #fff;
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.75); }

/* === FREQUENCY TOGGLE === */
.freq-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.freq-btn {
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #fff;
  color: var(--text-secondary);
  transition: background .2s, color .2s, border-color .2s;
}

.freq-btn.active {
  background: var(--ocean-600);
  color: #fff;
  border-color: var(--ocean-600);
}

/* === PRICING FEATURES === */
.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.pricing-save {
  font-size: 13px;
  color: var(--coral-500);
  font-weight: 600;
  margin-top: 4px;
}

.popular-tag {
  background: var(--coral-500);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

/* === BUTTON BLOCK === */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* === FORMS === */
.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: #fff;
  transition: border-color .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-400);
  box-shadow: 0 0 0 3px rgba(74,158,173,.1);
}

/* === RESPONSIVE (new classes) === */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-grid.reverse { direction: ltr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-simple { padding: 110px 0 60px; }
  .stats-row { gap: 32px; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .content-image { max-width: 200px; }
  .hero-simple { padding: 100px 0 48px; }
  .cta-banner { padding: 32px 20px; }
  .stats-row { gap: 24px; }
  .stat-number { font-size: 2rem; }
}

/* ============================================
   BOOKING WIZARD
   ============================================ */

/* Layout */
.wizard-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.wizard-main {
  min-width: 0;
}

/* Progress Steps */
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  padding: 16px 0;
}

.bstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.bstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: var(--sand-100);
  color: var(--text-muted);
  border: 2px solid var(--border-light);
  transition: all .3s;
}

.bstep-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .3s;
}

.bstep.active .bstep-num {
  background: var(--ocean-500);
  color: #fff;
  border-color: var(--ocean-500);
}

.bstep.active .bstep-label {
  color: var(--ocean-600);
  font-weight: 600;
}

.bstep.completed .bstep-num {
  background: var(--seafoam);
  color: var(--ocean-700);
  border-color: var(--ocean-400);
}

.bstep.completed .bstep-label {
  color: var(--ocean-600);
}

.bstep-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  min-width: 12px;
  margin: 0 4px;
  margin-bottom: 20px;
}

/* Step Panels */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: stepFadeIn .35s ease;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-heading {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

/* First-time toggle */
.first-time-toggle {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--seafoam-light);
  border-radius: var(--radius-md);
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
}

.toggle-label input[type="checkbox"] {
  display: none;
}

.toggle-switch {
  width: 44px;
  height: 24px;
  background: var(--border-light);
  border-radius: 12px;
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.toggle-label input:checked + .toggle-switch {
  background: var(--ocean-500);
}

.toggle-label input:checked + .toggle-switch::after {
  transform: translateX(20px);
}

.toggle-hint {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  margin-left: 56px;
}

/* Service Type Cards */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  cursor: pointer;
}

.service-card input {
  display: none;
}

.service-card-inner {
  padding: 20px 24px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}

.service-card input:checked + .service-card-inner {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 3px rgba(43,122,138,.12);
  background: var(--seafoam-light);
}

.service-card-inner:hover {
  border-color: var(--ocean-400);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.service-card-header h3 {
  font-size: 1rem;
  margin: 0;
}

.service-tag {
  background: var(--coral-500);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-mult {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
}

.service-card-inner p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Add-On Cards */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.addon-card {
  cursor: pointer;
}

.addon-card input {
  display: none;
}

.addon-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
  color: var(--text-muted);
}

.addon-card input:checked + .addon-card-inner {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 3px rgba(43,122,138,.12);
  background: var(--seafoam-light);
  color: var(--ocean-600);
}

.addon-card-inner:hover {
  border-color: var(--ocean-400);
}

.addon-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.addon-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-600);
}

/* Time Slot Cards */
.timeslot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.timeslot-card {
  cursor: pointer;
}

.timeslot-card input {
  display: none;
}

.timeslot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
  color: var(--text-muted);
}

.timeslot-card input:checked + .timeslot-inner {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 3px rgba(43,122,138,.12);
  background: var(--seafoam-light);
  color: var(--ocean-600);
}

.timeslot-inner:hover {
  border-color: var(--ocean-400);
}

.timeslot-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.timeslot-range {
  font-size: 12px;
}

/* Frequency Cards */
.freq-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.freq-card {
  cursor: pointer;
}

.freq-card input {
  display: none;
}

.freq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
}

.freq-card input:checked + .freq-inner {
  border-color: var(--ocean-500);
  box-shadow: 0 0 0 3px rgba(43,122,138,.12);
  background: var(--seafoam-light);
}

.freq-inner:hover {
  border-color: var(--ocean-400);
}

.freq-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.freq-discount {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral-500);
  min-height: 16px;
}

/* Price Sidebar */
.price-sidebar {
  position: sticky;
  top: 88px;
}

.price-toggle {
  display: none;
}

.price-summary {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.price-summary h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-secondary);
}

.price-divider {
  height: 1px;
  background: var(--border-light);
  margin: 12px 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.price-per-clean {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  text-decoration: line-through;
}

.discount-amount {
  color: var(--coral-500);
  font-weight: 600;
}

/* Sidebar Trust */
.sidebar-trust {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.sidebar-trust-item svg {
  flex-shrink: 0;
}

/* Sidebar Phone */
.sidebar-phone {
  margin-top: 20px;
  text-align: center;
  padding: 16px;
  background: var(--seafoam-light);
  border-radius: var(--radius-md);
}

.sidebar-phone p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sidebar-phone a {
  font-size: 16px;
  font-weight: 700;
  color: var(--ocean-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Confirmation Summary */
.confirm-summary {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.confirm-section {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}

.confirm-section:last-child {
  border-bottom: none;
}

.confirm-section h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.confirm-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 3px 0;
  color: var(--text-secondary);
}

.confirm-line span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.confirm-total {
  padding: 16px 24px;
  background: var(--sand-50);
}

.price-line-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.savings-text {
  color: var(--coral-500) !important;
  font-weight: 600 !important;
}

/* Booking Error */
.booking-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 16px;
}

/* Booking Success */
.booking-success {
  text-align: center;
  padding: 48px 24px;
}

.booking-success svg {
  margin: 0 auto 20px;
  display: block;
}

.booking-success h2 {
  margin-bottom: 8px;
}

.success-id {
  font-size: 15px;
  color: var(--ocean-600);
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto;
}

.booking-success a {
  color: var(--ocean-600);
  font-weight: 600;
}

/* Validation States */
.field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important;
}

.group-error {
  position: relative;
}

.group-error::after {
  content: 'Required';
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #dc2626;
  font-weight: 500;
}

/* === BOOKING WIZARD RESPONSIVE === */
@media (max-width: 900px) {
  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-steps {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 28px;
    -webkit-overflow-scrolling: touch;
  }

  .bstep-label {
    font-size: 11px;
  }

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

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

  .timeslot-cards {
    grid-template-columns: 1fr;
  }

  /* Mobile price sidebar */
  .price-sidebar {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 16px rgba(15,52,61,.08);
    border-radius: 0;
  }

  .price-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
  }

  .price-toggle-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ocean-600);
  }

  .price-toggle-arrow {
    transition: transform .3s;
  }

  .price-sidebar.expanded .price-toggle-arrow {
    transform: rotate(180deg);
  }

  .price-sidebar-inner {
    display: none;
    padding: 0 20px 20px;
    max-height: 60vh;
    overflow-y: auto;
  }

  .price-sidebar.expanded .price-sidebar-inner {
    display: block;
  }

  .price-summary {
    box-shadow: none;
    border: none;
    padding: 0;
  }

  .step-heading {
    font-size: 1.25rem;
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .service-mult {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .freq-cards {
    grid-template-columns: 1fr 1fr;
  }

  .step-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

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