/* ═══════════════════════════════════════════════════════════
   BOOK & CLEAN — Design System Tokens (Logo-matched palette)
═══════════════════════════════════════════════════════════ */
:root {
  /* Surfaces — Warm Cream from logo background */
  --bg:              #F9F3EC;
  --surface:         #FDFAF5;
  --surface-low:     #F4EDE3;
  --surface-mid:     #F0E8DC;
  --surface-high:    #E8DDD1;
  --surface-highest: #DDD1C5;
  --surface-bright:  #FFFFFF;

  /* Brand Colors — Coral Primary, Steel Blue Secondary */
  --primary:         #E8705A;
  --primary-ctr:     #E8705A;
  --primary-dim:     #C95740;
  --secondary:       #2B4A8B;
  --secondary-ctr:   #3A5EA8;
  --tertiary:        #FFF0ED;
  --tertiary-ctr:    #FFE0D9;
  --hero-blue:       #E8705A;
  --hero-yellow:     #2B4A8B;

  /* On-colors */
  --on-primary:      #ffffff;
  --on-bg:           #2A1A14;
  --on-surface:      #3A2318;
  --on-surface-var:  #7A6560;
  --on-secondary:    #ffffff;

  /* Utility */
  --outline:         #E0D4CC;
  --outline-var:     #CFC3BA;
  --error:           #C9394A;

  /* Typography */
  --ff-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;

  /* Radius */
  --r-sm: 4px;
  --r:    8px;
  --r-md: 12px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Glows — coral toned */
  --glow-teal:    0 0 20px rgba(232, 112, 90, 0.40);
  --glow-teal-lg: 0 0 40px rgba(232, 112, 90, 0.25);
  --shadow-glass: 0 10px 40px rgba(42, 26, 20, 0.08);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}



/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--on-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f3f5; }
::-webkit-scrollbar-thumb { background: var(--surface-highest); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--outline-var); }

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════════ */
.glass {
  background: rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  will-change: transform;
  transform: translateZ(0);
}
.glass-teal {
  background: rgba(232, 112, 90, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 112, 90, 0.15);
  will-change: transform;
  transform: translateZ(0);
}
.text-gradient {
  background: linear-gradient(135deg, var(--primary-ctr) 0%, var(--secondary-ctr) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-teal { color: var(--primary-ctr); }
.text-muted { color: var(--on-surface-var); }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Gradient border utility */
.grad-border {
  position: relative;
  isolation: isolate;
}
.grad-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary-ctr), var(--tertiary-ctr));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.grad-border:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   ANIMATED BACKGROUND SHADER (WebGL orbs from Stitch)
═══════════════════════════════════════════════════════════ */
#bg-shader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: multiply; opacity: 0.2;
}
#bg-shader canvas { display: block; width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  min-height: 80px;
  display: flex;
  background: var(--hero-blue);
  border-bottom: none;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
nav.nav-scrolled {
  min-height: 60px;
  background: rgba(232, 112, 90, 0.92); /* Glassmorphic steel blue */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-svg {
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 8px;
  padding: 0px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.nav-brand {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.nav-tagline {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hero-yellow);
  border-radius: 2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  color: var(--hero-blue);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.btn-call:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}
.btn-call svg { width: 14px; height: 14px; fill: var(--hero-blue); flex-shrink: 0; }
.btn-outline {
  background: var(--hero-yellow);
  color: var(--hero-blue);
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.btn-outline:hover {
  background: #f0c000;
  transform: translateY(-2px);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 10;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,112,90,0.06);
  border: 1px solid rgba(232,112,90,0.2);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--primary-ctr);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary-ctr);
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--primary-ctr);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--on-bg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  display: block;
  filter: drop-shadow(0 0 20px rgba(232,112,90,0.25));
}
.hero-sub {
  font-size: 18px;
  color: var(--on-surface-var);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-ctr) 0%, var(--secondary-ctr) 100%);
  color: #ffffff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
  text-decoration: none;
  box-shadow: 0 0 30px rgba(232,112,90,0.2), 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-teal-lg), 0 8px 30px rgba(0,0,0,0.4);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-speed {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--on-surface-var);
  font-weight: 500;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--on-surface-var);
  font-weight: 500;
}
.trust-item span:first-child { font-size: 16px; }
.city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.city-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-full);
  color: var(--on-surface-var);
  letter-spacing: 0.03em;
}

/* Hero Quote Card */
.hero-card {
  background: rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(232,112,90,0.15);
  box-shadow: var(--shadow-glass), 0 0 40px rgba(232,112,90,0.06);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-ctr), transparent);
  opacity: 0.6;
}
.hero-card-head {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.hero-card-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--on-bg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(232,112,90,0.1);
  border: 1px solid rgba(232,112,90,0.2);
  border-radius: var(--r-full);
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

@media(max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { min-height: auto; padding: 100px 24px 40px; }
}
@media(max-width: 640px) {
  .hero { padding: 88px 16px 40px; }
  .hero-sub { font-size: 16px; }
  .btn-primary { font-size: 15px; padding: 13px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════════════════════════ */
.section {
  padding: 72px 24px;
  position: relative;
  z-index: 10;
}
.section-alt {
  background: rgba(0,0,0,0.02);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.section-dark {
  background: #f9fafb;
  border-top: 1px solid rgba(232,112,90,0.08);
  border-bottom: 1px solid rgba(232,112,90,0.08);
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-ctr);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--on-bg);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  color: var(--on-surface-var);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.section-title-white { color: var(--on-bg); }
.section-sub-white { color: var(--on-surface-var); }

/* ═══════════════════════════════════════════════════════════
   QUOTE CALCULATOR — PROGRESS BAR
═══════════════════════════════════════════════════════════ */
.quote-section {
  padding: 16px 24px 48px;
  position: relative;
  z-index: 1;
}
.quote-header {
  text-align: center;
  margin-bottom: 20px;
}
.quote-kicker {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary-ctr);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.quote-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(24px, 4.5vw, 38px);
  color: var(--primary-ctr);
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,112,90,0.12);
  border: 1px solid rgba(232,112,90,0.25);
  color: var(--secondary);
  border-radius: var(--r-lg);
  padding: 8px 20px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(15px, 4vw, 22px);
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(232,112,90,0.15);
}
.quote-note {
  font-size: 14px;
  color: var(--on-surface-var);
  max-width: 520px;
  margin: 0 auto;
}

/* Progress Stepper */
.prog {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pd {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-mid);
  border: 1.5px solid var(--outline-var);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--on-surface-var);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring), background-color 0.35s var(--ease-spring), border-color 0.35s var(--ease-spring), color 0.35s var(--ease-spring), opacity 0.35s var(--ease-spring);
  font-family: var(--ff-mono);
}
.pd.act {
  background: rgba(232,112,90,0.1);
  border-color: var(--primary-ctr);
  color: var(--primary-ctr);
  box-shadow: 0 0 0 4px rgba(232,112,90,0.1), var(--glow-teal);
  transform: scale(1.1);
}
.pd.dn {
  background: var(--primary-ctr);
  border-color: var(--primary-ctr);
  color: #ffffff;
}
.pl {
  flex: 1;
  height: 2px;
  background: var(--outline-var);
  transition: background-color 0.4s var(--ease);
}
.pl.dn { background: linear-gradient(90deg, var(--primary-ctr), var(--secondary)); }

/* ═══════════════════════════════════════════════════════════
   FORM CARD
═══════════════════════════════════════════════════════════ */
.fc {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(0,0,0,0.04);
  border-radius: var(--r-xl);
  border: 1px solid rgba(232,112,90,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-glass), 0 0 40px rgba(232,112,90,0.04);
  position: relative;
}
.fc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,112,90,0.5), transparent);
}
.fh {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: rgba(232,112,90,0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fht {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--on-bg);
}
.fhs {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--primary-ctr);
  font-weight: 600;
  background: rgba(232,112,90,0.08);
  border: 1px solid rgba(232,112,90,0.15);
  border-radius: var(--r-full);
  padding: 3px 12px;
}
.fb {
  padding: 28px 24px;
  min-height: 280px;
  position: relative;
}
.fs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.fs.act {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  padding: 0;
  /* keep visibility hidden and opacity 0 until .on is added */
}
.fs.act.on, .fs.on {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fq {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--on-bg);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.fqs {
  font-size: 14px;
  color: var(--on-surface-var);
  margin-bottom: 22px;
}

/* Option Buttons */
.og { display: grid; gap: 12px; margin-bottom: 8px; }
.og2 { grid-template-columns: repeat(2, 1fr); }
.oga { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); }

.obtn {
  padding: 16px 12px 14px;
  background: var(--surface-mid);
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  font-family: var(--ff-body);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  min-height: 98px;
  color: var(--on-bg);
}
@media (hover: hover) {
  .obtn:hover {
    border-color: rgba(232,112,90,0.4);
    background: rgba(232,112,90,0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
}
.obtn.sel {
  border-color: var(--primary-ctr);
  background: rgba(232,112,90,0.08);
  box-shadow: 0 0 0 1px var(--primary-ctr), 0 4px 20px rgba(232,112,90,0.15);
  transform: translateY(-2px);
}
.obtn.sel::after {
  content: '✓';
  position: absolute;
  top: 6px; right: 8px;
  font-size: 9px;
  color: #ffffff;
  background: var(--primary-ctr);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.oi { font-size: 24px; line-height: 1; display: block; }
.on2 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--on-bg);
  line-height: 1.2;
  margin-top: 1px;
}
.obtn.sel .on2 { color: var(--primary-ctr); }
.obtn .op {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2px;
  white-space: nowrap;
}

/* Carpet */
.cg {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.cbtn {
  padding: 16px 6px;
  background: var(--surface-mid);
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  font-family: var(--ff-body);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  min-height: 64px;
  color: var(--on-bg);
}
@media (hover: hover) {
  .cbtn:hover {
    border-color: rgba(232,112,90,0.4);
    background: rgba(232,112,90,0.05);
    transform: translateY(-2px);
  }
}
.cbtn.sel {
  border-color: var(--primary-ctr);
  background: rgba(232,112,90,0.08);
  box-shadow: 0 0 0 1px var(--primary-ctr);
  transform: translateY(-2px);
}
.cl { font-size: 13px; font-weight: 600; color: var(--on-bg); line-height: 1.2; }
.cbtn.sel .cl { color: var(--primary-ctr); }
.cp2 { font-family: var(--ff-mono); font-size: 11px; font-weight: 700; color: var(--secondary); display: block; margin-top: 3px; }

/* Add-ons */
.ag { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.adn {
  padding: 14px 16px;
  background: var(--surface-mid);
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  position: relative;
  font-family: var(--ff-body);
  color: var(--on-bg);
}
@media (hover: hover) {
  .adn:hover {
    border-color: rgba(232,112,90,0.4);
    background: rgba(232,112,90,0.04);
    transform: translateY(-2px);
  }
}
.adn.sel {
  border-color: var(--primary-ctr);
  background: rgba(232,112,90,0.08);
  box-shadow: 0 0 0 1px var(--primary-ctr);
  transform: translateY(-2px);
}
.adi { font-size: 22px; flex-shrink: 0; width: 28px; text-align: center; }
.adinf { flex: 1; min-width: 0; }
.adn2 { font-size: 13px; font-weight: 600; color: var(--on-bg); line-height: 1.25; }
.adn.sel .adn2 { color: var(--primary-ctr); }
.adp { font-family: var(--ff-mono); font-size: 12px; font-weight: 700; color: var(--secondary); display: block; margin-top: 2px; }
.adck {
  width: 22px; height: 22px;
  border: 1.5px solid var(--outline-var);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  background: var(--surface-mid);
}
.adn.sel .adck {
  background: var(--primary-ctr);
  border-color: var(--primary-ctr);
  color: #ffffff;
  transform: scale(1.05);
}
.adn-hint {
  display: block;
  font-size: 11px;
  color: var(--on-surface-var);
  line-height: 1.3;
  margin-top: 3px;
  font-style: italic;
}

/* Qty stepper */
.adn-qty { cursor: default; }
.aqty-wrap { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.aqty-btn {
  width: 28px; height: 28px;
  border-radius: 7px;
  border: 1.5px solid var(--outline-var);
  background: var(--surface-high);
  color: var(--on-bg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
@media (hover: hover) {
  .aqty-btn:hover:not(:disabled) { border-color: var(--primary-ctr); background: rgba(232,112,90,0.1); color: var(--primary-ctr); }
}
.aqty-btn:disabled { opacity: .3; cursor: not-allowed; }
.aqty-plus { background: rgba(232,112,90,0.08); border-color: rgba(232,112,90,0.25); color: var(--primary-ctr); }
@media (hover: hover) {
  .aqty-plus:hover { background: var(--primary-ctr) !important; color: #ffffff !important; }
}
.aqty-num { font-family: var(--ff-mono); font-size: 15px; font-weight: 700; color: var(--on-bg); min-width: 18px; text-align: center; }
.adn.sel .aqty-num { color: var(--primary-ctr); }

/* Inputs */
.fi {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--on-bg);
  background: #ffffff;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  margin-bottom: 12px;
  outline: none;
}
.fi:focus {
  border-color: var(--primary-ctr);
  box-shadow: 0 0 0 3px rgba(232,112,90,0.12);
}
.fi.err { border-color: var(--error); background: rgba(255,180,171,0.06); }
.fi::placeholder { color: var(--on-surface-var); opacity: 0.7; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.f2 .fi { margin-bottom: 0; }
.fe { font-size: 12px; color: var(--error); margin-top: -8px; margin-bottom: 12px; display: none; font-weight: 500; padding-left: 4px; }
.fe.on { display: block; }

/* Suburb autocomplete */
.sw { position: relative; margin-bottom: 12px; }
.sw .fi { margin-bottom: 0; }
.sd {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--surface-high);
  border: 1.5px solid var(--primary-ctr);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
  display: block;
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  box-shadow: var(--shadow-glass);
}
.sd.on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sdi {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--ff-body);
  color: var(--on-bg);
}
.sdi:hover { background: rgba(232,112,90,0.08); }
.sdi b { color: var(--primary-ctr); }

/* Wizard Nav */
.fn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.bb {
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-var);
  font-family: var(--ff-body);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
@media (hover: hover) {
  .bb:hover { border-color: var(--primary-ctr); color: var(--primary-ctr); background: rgba(232,112,90,0.05); }
}
.bn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-ctr), var(--secondary));
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--ff-head);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(232,112,90,0.2);
  letter-spacing: -0.01em;
}
@media (hover: hover) {
  .bn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,112,90,0.3); filter: brightness(1.15); }
}
.bn:active { transform: translateY(0); }

/* Quote Result */
.qr { display: none; opacity: 0; transform: translateY(15px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.qr.on { display: block; opacity: 1; transform: translateY(0); }
.qcb {
  background: rgba(232,112,90,0.08);
  border: 1px solid rgba(232,112,90,0.2);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.qbk {
  background: var(--surface-mid);
  border: 1px solid var(--outline-var);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.qrw {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 14px;
}
.qrw:last-child { border-bottom: none; }
.ql { color: var(--on-bg); font-weight: 500; }
.qa { font-family: var(--ff-mono); font-weight: 800; font-size: 14px; color: var(--primary-ctr); }
.qt {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
  background: rgba(232,112,90,0.06);
  border-top: 1px solid rgba(232,112,90,0.15);
  font-family: var(--ff-head); font-weight: 800; font-size: 18px; color: var(--on-bg);
}
.ts { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 16px; }
.tc {
  border: 1.5px solid rgba(232,112,90,0.15);
  border-radius: var(--r-lg);
  padding: 18px;
  background: var(--surface-mid);
}
.tn { font-family: var(--ff-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--on-surface-var); margin-bottom: 6px; }
.tp { font-family: var(--ff-mono); font-weight: 800; font-size: 36px; color: var(--primary-ctr); line-height: 1; margin-bottom: 12px; text-shadow: 0 0 20px rgba(232,112,90,0.3); }
.tf { font-size: 12px; color: var(--on-surface-var); margin-bottom: 4px; display: flex; gap: 6px; line-height: 1.4; }
.tf::before { content: '✓'; color: var(--secondary); font-weight: 800; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.tbk {
  display: block; width: 100%; padding: 14px 10px;
  border: none; border-radius: var(--r-md);
  font-size: 14px; font-weight: 700; text-align: center;
  cursor: pointer; margin-top: 14px;
  font-family: var(--ff-head); text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease); letter-spacing: -0.01em;
}
.tbk:hover { transform: translateY(-1px); }
.tbk.s {
  background: linear-gradient(135deg, var(--primary-ctr), var(--secondary));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(232,112,90,0.25);
}
.dep { text-align: center; font-size: 12px; color: var(--on-surface-var); margin-top: 8px; }
.qs {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(232,112,90,0.08);
  border: 1px solid rgba(232,112,90,0.2);
  border-radius: var(--r-md);
  padding: 11px; font-size: 13px; color: var(--secondary); font-weight: 600; margin-top: 10px;
}
.rst {
  display: block; width: 100%; padding: 10px;
  background: transparent; border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md); font-size: 13px; color: var(--on-surface-var);
  text-align: center; cursor: pointer; margin-top: 10px;
  font-family: var(--ff-body); transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
@media (hover: hover) {
  .rst:hover { color: var(--primary-ctr); border-color: var(--primary-ctr); background: rgba(232,112,90,0.05); }
}
.ir {
  display: flex; justify-content: space-between;
  padding: 10px 18px;
  background: rgba(232,112,90,0.06);
  border-bottom: 1px solid rgba(232,112,90,0.15);
  font-size: 13px;
}
.ir .ql { color: var(--secondary); }
.ir .qa { color: var(--secondary); font-size: 13px; }
.qaddon {
  margin-top: 16px; padding: 18px;
  background: var(--surface-low);
  border: 1.5px dashed rgba(232,112,90,0.2);
  border-radius: var(--r-lg); position: relative;
}
.qaddon-badge {
  display: inline-block;
  background: rgba(232,112,90,0.1); color: var(--primary-ctr);
  font-family: var(--ff-mono); font-weight: 700; font-size: 10px;
  letter-spacing: 1.5px; padding: 3px 10px; border-radius: var(--r-full);
  margin-bottom: 8px; text-transform: uppercase;
}
.qaddon-t { font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--on-bg); margin-bottom: 4px; }
.qaddon-sub { font-size: 12px; color: var(--on-surface-var); margin-bottom: 12px; line-height: 1.5; }
.qaddon-i { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--on-bg); padding: 6px 0; }
.qaddon-p { font-family: var(--ff-mono); font-weight: 700; color: var(--on-bg); }
.qaddon-tot { display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-mono); font-weight: 800; font-size: 14px; color: var(--on-bg); padding: 10px 0 4px; margin-top: 8px; border-top: 1px solid rgba(0,0,0,0.07); }
.qaddon-n { font-size: 11.5px; color: var(--on-surface-var); margin-top: 8px; font-style: italic; line-height: 1.5; }

/* Bond Back Guarantee mini-card */
.bbg-wrap { max-width: 860px; margin: 28px auto; padding: 0 24px; }
.bbg-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-ctr);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.bbg-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.bbg-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bbg-ico { font-size: 22px; line-height: 1; }
.bbg-title { font-family: var(--ff-head); font-weight: 800; font-size: 17px; color: var(--on-bg); margin: 0; }
.bbg-text { font-size: 14px; color: var(--on-surface-var); line-height: 1.6; margin-bottom: 10px; }
.bbg-link { font-family: var(--ff-mono); font-weight: 700; font-size: 13px; color: var(--primary-ctr); text-decoration: none; transition: color 0.15s; }
.bbg-link:hover { color: var(--secondary); text-decoration: underline; }

/* OTP area */
#otpWrap .bn { box-shadow: var(--glow-teal); }

/* Scope note */
.scope-note {
  background: var(--surface-mid);
  border: 1px solid rgba(232,112,90,0.12);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.scope-dl {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary-ctr), var(--secondary));
  color: #ffffff; padding: 10px 20px;
  border-radius: var(--r-md); font-family: var(--ff-mono); font-weight: 700; font-size: 13px;
  text-decoration: none; transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease); white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,112,90,0.2);
}
.scope-dl:hover { transform: translateY(-1px); box-shadow: var(--glow-teal); }

/* ═══════════════════════════════════════════════════════════
   CARDS (Generic)
═══════════════════════════════════════════════════════════ */
.card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  border-color: rgba(232,112,90,0.2);
}
.card-teal {
  background: rgba(232,112,90,0.05);
  border-color: rgba(232,112,90,0.15);
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.statc {
  text-align: center;
  padding: 20px 16px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(4px);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.statc:hover { border-color: rgba(232,112,90,0.2); transform: translateY(-2px); }
.statn { font-family: var(--ff-mono); font-weight: 800; font-size: 32px; color: var(--primary-ctr); line-height: 1; text-shadow: 0 0 20px rgba(232,112,90,0.3); }
.statl { font-size: 13px; color: rgba(0,0,0,0.7); margin-top: 8px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.step-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-ctr), var(--secondary));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); border-color: rgba(232,112,90,0.2); }
.step-card:hover::before { opacity: 1; }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(232,112,90,0.15), rgba(232,112,90,0.05));
  border: 1px solid rgba(232,112,90,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ff-mono);
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-ctr);
  box-shadow: 0 4px 12px rgba(232,112,90,0.15);
}
.step-card h3 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: var(--on-bg); margin-bottom: 10px; }
.step-card p { font-size: 13.5px; color: var(--on-surface-var); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.review-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.review-card:hover { transform: translateY(-2px); border-color: rgba(232,112,90,0.15); }
.rev-stars { color: #FBBC05; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.rev-text { font-size: 13.5px; color: var(--on-surface-var); font-style: italic; line-height: 1.65; margin-bottom: 14px; }
.rev-name { font-family: var(--ff-mono); font-size: 11px; font-weight: 700; color: var(--on-surface-var); text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════
   COMPARISON MATRIX
═══════════════════════════════════════════════════════════ */
.cmp {
  max-width: 680px;
  margin: 28px auto 0;
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 13.5px;
}
.cmp-h {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: rgba(232,112,90,0.06);
  font-family: var(--ff-mono);
  font-weight: 700;
  color: var(--primary-ctr);
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.cmp-r {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 12px 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
  align-items: center;
}
.cmp-r .f { color: var(--on-bg); font-weight: 500; padding-right: 8px; }
.cmp-r .y { color: var(--secondary); font-weight: 800; text-align: center; font-size: 16px; }
.cmp-r .n { color: var(--on-surface-var); text-align: center; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   INCLUDED SCOPE
═══════════════════════════════════════════════════════════ */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.scope-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.scope-card:hover { transform: translateY(-2px); border-color: rgba(232,112,90,0.2); }
.scope-card h3 {
  font-family: var(--ff-head);
  font-size: 15px; font-weight: 700; color: var(--on-bg);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 8px;
}
.scope-card ul { list-style: none; }
.scope-card li {
  font-size: 13px; color: var(--on-surface-var);
  padding: 4px 0;
  display: flex; gap: 8px; line-height: 1.5;
}
.scope-card li::before { content: '✓'; color: var(--secondary); font-weight: 800; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.scope-card li.hi { color: var(--primary-ctr); font-weight: 600; }
.scope-card li.hi::before { color: var(--primary-ctr); }

/* ═══════════════════════════════════════════════════════════
   ADDON SCOPE ACCORDION
═══════════════════════════════════════════════════════════ */
.addon-scope { margin-top: 40px; }
.ash { margin-bottom: 20px; }
.as-i {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.as-i.open { border-color: rgba(232,112,90,0.2); }
.as-q {
  font-family: var(--ff-head);
  font-weight: 700; font-size: 15px; color: var(--on-bg);
  padding: 16px 20px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.as-q .fqi { font-size: 20px; color: var(--primary-ctr); font-weight: 600; }
.as-a {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.2s, padding 0.3s;
  padding: 0 20px;
  font-size: 14px; line-height: 1.65; color: var(--on-surface-var);
}
.as-i.open .as-a { max-height: 350px; opacity: 1; padding: 10px 20px 16px; }
.as-i.open .fqi { transform: rotate(45deg); color: var(--secondary); }
.inc-l { color: var(--secondary); font-family: var(--ff-mono); font-weight: 700; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 4px; }
.exc-l { color: var(--error); font-family: var(--ff-mono); font-weight: 700; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; display: block; margin: 10px 0 4px; }
.never-inc { max-width: 760px; margin: 22px auto 0; font-size: 13px; color: var(--on-surface-var); line-height: 1.7; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   GUARANTEE SECTION
═══════════════════════════════════════════════════════════ */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.guar-card {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-md);
  padding: 18px;
  backdrop-filter: blur(4px);
}
.guar-title { font-family: var(--ff-head); font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.guar-desc { font-size: 12.5px; color: rgba(0,0,0,0.6); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   GUARANTEE FULL TERMS
═══════════════════════════════════════════════════════════ */
.bbt-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.bbt-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bbt-row:last-child { border-bottom: none; }
.bbt-ic { font-size: 20px; flex-shrink: 0; width: 28px; margin-top: 1px; }
.bbt-lbl { font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--on-bg); margin-bottom: 4px; }
.bbt-desc { font-size: 13.5px; color: var(--on-surface-var); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   AFTER-BOOKING TIMELINE
═══════════════════════════════════════════════════════════ */
.ab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  position: relative;
}
.ab-grid::before {
  content: '';
  position: absolute;
  top: 24px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-ctr), var(--secondary));
  z-index: 0;
}
.ab-c {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 22px 18px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.ab-c:hover { border-color: rgba(232,112,90,0.2); transform: translateY(-3px); }
.ab-n {
  font-family: var(--ff-mono);
  font-size: 9px; font-weight: 800;
  color: var(--primary-ctr); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 10px;
  background: rgba(232,112,90,0.08); border-radius: var(--r-full);
  display: inline-block; padding: 3px 10px;
}
.ab-t { font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--on-bg); margin-bottom: 8px; }
.ab-d { font-size: 12.5px; color: var(--on-surface-var); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   AREAS
═══════════════════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 14px;
}
.area-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 24px;
}
.area-card:hover { border-color: rgba(232,112,90,0.15); }
.area-h { font-family: var(--ff-head); font-weight: 800; font-size: 16px; color: var(--on-bg); margin-bottom: 10px; }
.area-list { font-size: 13px; color: var(--on-surface-var); line-height: 2; }

/* ═══════════════════════════════════════════════════════════
   PHOTO GALLERY
═══════════════════════════════════════════════════════════ */
.pgrid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pgal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-high);
  border: 1px solid rgba(0,0,0,0.06);
}
.pgal-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s var(--ease);
}
.pgal-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   FAQ — Premium Accordion + Tabbed (with Google Schema)
═══════════════════════════════════════════════════════════ */

/* Legacy FAQ support (for any other pages) */
.faq-list {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 28px;
}
.fi2 {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 18px 24px;
  transition: background-color 0.2s;
}
.fi2:last-child { border-bottom: none; }
.fi2:hover { background-color: rgba(232,112,90,0.02); }
.fq2 {
  font-family: var(--ff-head);
  font-size: 15px; font-weight: 700; color: var(--on-bg);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.fqi { color: var(--primary-ctr); font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform 0.25s; }
.fa {
  font-size: 14px; color: var(--on-surface-var); line-height: 1.65;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.2s, padding 0.3s;
  padding: 0;
}
.fi2.op .fa { max-height: 250px; opacity: 1; padding: 12px 0 4px; }
.fi2.op .fqi { transform: rotate(45deg); color: var(--secondary); }

/* ── New FAQ Section Layout ── */
.faq-section { position: relative; }
.faq-header { text-align: center; margin-bottom: 36px; }

/* ── Category Tabs ── */
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.faq-tab {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--outline-var);
  background: var(--surface);
  color: var(--on-surface-var);
  cursor: pointer;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease), opacity 0.22s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.faq-tab:hover {
  border-color: var(--primary-ctr);
  color: var(--primary-ctr);
  background: rgba(26,62,47,0.04);
  transform: translateY(-1px);
}
.faq-tab.active {
  background: var(--primary-ctr);
  border-color: var(--primary-ctr);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(26,62,47,0.25);
  transform: translateY(-1px);
}

/* ── FAQ Groups ── */
.faq-group {
  display: none;
  animation: faqFadeIn 0.28s var(--ease) both;
}
.faq-group.active { display: block; }
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FAQ Items ── */
.faq-item {
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq-item:hover {
  border-color: rgba(26,62,47,0.25);
  box-shadow: 0 4px 20px rgba(26,62,47,0.06);
}
.faq-item.open {
  border-color: var(--primary-ctr);
  box-shadow: 0 6px 24px rgba(26,62,47,0.1);
}

/* ── FAQ Question Button ── */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--on-bg);
  letter-spacing: -0.015em;
  line-height: 1.35;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-ctr); }
.faq-item.open .faq-q { color: var(--primary-ctr); }

/* ── The +/× icon ── */
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--outline-var);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s var(--ease-spring), background-color 0.25s var(--ease-spring), border-color 0.25s var(--ease-spring), color 0.25s var(--ease-spring), opacity 0.25s var(--ease-spring);
  background: var(--surface-mid);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary-ctr);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon {
  background: var(--primary-ctr);
  border-color: var(--primary-ctr);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: #ffffff;
}

/* ── FAQ Answer Panel ── */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--on-surface-var);
  line-height: 1.72;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.faq-a-inner strong { color: var(--on-bg); }

/* ── FAQ CTA ── */
.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 28px 24px;
  border: 1.5px dashed var(--outline-var);
  border-radius: var(--r-xl);
  background: var(--surface-low);
}
.faq-cta p {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--on-bg);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .faq-tab { font-size: 12px; padding: 8px 14px; }
  .faq-q { font-size: 14.5px; padding: 16px 18px; }
  .faq-a-inner { padding: 0 18px 16px; padding-top: 14px; font-size: 14px; }
}



/* ═══════════════════════════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.story-stat {
  background: var(--surface-high);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  color: white;
}
.story-stat-label { font-size: 13px; color: rgba(0,0,0,0.55); margin-bottom: 6px; }
.story-stat-num { font-family: var(--ff-mono); font-size: 38px; font-weight: 800; color: var(--primary-ctr); line-height: 1; text-shadow: 0 0 20px rgba(232,112,90,0.3); }
.story-stat-cities { font-size: 12px; color: rgba(0,0,0,0.4); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   PHOTO HERO STRIP
═══════════════════════════════════════════════════════════ */
.photohero {
  position: relative;
  min-height: 180px;
  padding: 88px 16px 32px; /* 88px top to comfortably clear the 68px fixed nav */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
}
.photohero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(232,112,90,0.08) 50%, rgba(255,255,255,0.88) 100%);
  backdrop-filter: blur(2px);
}
.photohero-content { position: relative; z-index: 2; text-align: center; padding: 16px; max-width: 720px; margin: 0 auto; width: 100%; }
.photohero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.photohero-trust span {
  background: rgba(232,112,90,0.08); border: 1px solid rgba(232,112,90,0.2);
  color: var(--on-bg); font-family: var(--ff-mono); font-size: 10.5px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-full); backdrop-filter: blur(4px); white-space: nowrap;
}
.photohero-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 8px; }
.photohero-cities span {
  background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.85); font-size: 10.5px; font-weight: 600;
  padding: 3px 10px; border-radius: var(--r-full); font-family: var(--ff-mono);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--surface-low);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 40px 24px;
  position: relative;
  z-index: 10;
}
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-brand { font-family: var(--ff-head); font-weight: 800; font-size: 17px; color: var(--on-bg); }
.footer-caption { font-family: var(--ff-mono); font-size: 11px; color: var(--on-surface-var); margin-top: 2px; letter-spacing: 0.03em; }
.footer-right { font-family: var(--ff-mono); font-size: 11.5px; color: var(--on-surface-var); text-align: right; line-height: 2; }
.footer-right a { color: var(--primary-ctr); text-decoration: none; font-weight: 500; }
.footer-right a:hover { text-decoration: underline; }



/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════════════════════ */
.mcta { display: none; }
@media(max-width:640px) {
  body { padding-bottom: 68px; }
  .mcta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999; transition: transform 0.25s var(--ease);
    background: var(--surface-high);
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  }
  .mcta a, .mcta button {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    font-family: var(--ff-mono); font-weight: 700; font-size: 13px;
    padding: 12px 8px; border-radius: var(--r-md); text-decoration: none; border: none; cursor: pointer;
    letter-spacing: 0.02em;
  }
  .mc-call { background: rgba(232,112,90,0.1); border: 1.5px solid rgba(232,112,90,0.3); color: var(--primary-ctr); }
  .mc-quote { background: linear-gradient(135deg, var(--primary-ctr), var(--secondary)); color: #ffffff; }
  
  
  
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: 1fr; }
  .ab-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-grid::before { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .pgrid-new { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:640px) {
  .f2 { grid-template-columns: 1fr; }
  .og2 { grid-template-columns: 1fr; }
  .cg { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ag { grid-template-columns: 1fr 1fr; }
  .oga { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .ts { grid-template-columns: 1fr; }
  .cmp-h, .cmp-r { grid-template-columns: 1.4fr 0.8fr 0.8fr; padding: 10px 12px; }
  .cmp { font-size: 12px; }
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .ab-grid { grid-template-columns: 1fr; }
}
@media(max-width:400px) {
  .cg { grid-template-columns: repeat(2, 1fr); }
}



/* ═══════════════════════════════════════════════════════════
   OPTION 2 NEW UI OVERRIDES
═══════════════════════════════════════════════════════════ */
body {
  background: var(--bg); /* Cream background */
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 120px 24px 160px;
  background: var(--hero-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}
.hero-bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  clip-path: ellipse(75% 100% at 75% 50%);
}
.hero-bg-yellow-shape {
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 0;
  width: 110%;
  background: var(--hero-yellow);
  clip-path: ellipse(80% 100% at 80% 55%);
}

.hero-bg-gradient {
  display: none;
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.hero-kicker {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--on-bg);
  background: var(--hero-yellow);
  padding: 8px 16px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--on-primary);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.1;
  max-width: 600px;
  width: 100%;
}
.hero-badge {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--hero-yellow);
  margin-bottom: 28px;
  display: block;
  max-width: 600px;
  width: 100%;
}
.hero-badge span { display: none; }
.hero-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Trust Badges in Hero */
.hero-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 580px;
  margin-bottom: 20px;
}
.htb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 16px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.htb-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htb-icon { font-size: 18px; }

/* FLOATING WIDGET */
.floating-widget-wrapper {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.stepper-container {
  background: white;
  border-radius: 24px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.stepper-container .prog { margin-bottom: 0; padding: 0; box-shadow: none; border: none; margin-top: 0; }
.avail-strip {
  position: relative;
  background: #f0f4ff;
  border-top: none;
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  margin-bottom: 0;
}
.avail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.avail-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avail-icon {
  background: #e0e7ff;
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
}
.avail-text {
  font-size: 14px;
  color: var(--on-bg);
}
.avail-slots-pill {
  background: #ffe4e6;
  color: #e11d48;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.avail-cta {
  background: var(--hero-yellow);
  color: var(--on-bg);
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}
.avail-cta:hover {
  transform: translateY(-2px);
}

/* Stepper */
.prog {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 20;
}
.pd-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  background: white;
}
.pd {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e0e7ff;
  color: var(--on-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.pd.act {
  background: var(--hero-blue);
  border-color: var(--hero-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(10, 52, 217, 0.3);
}
.pd-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface-var);
  text-align: center;
}
.pd-wrap.act .pd-label {
  color: var(--on-bg);
}
.pl {
  flex: 1;
  height: 2px;
  background: var(--outline);
  margin: 23px -10px 0;
  position: relative;
  z-index: 1;
}
.pl.act-line {
  background: var(--primary);
}

/* Quote Section & Form Container */
.quote-section {
  padding: 0 24px 60px;
  position: relative;
  z-index: 10;
  margin-top: -30px; /* Pull it up slightly over the hero */
}
.fc {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.02);
  border: 1px solid var(--outline);
  padding: 40px;
  width: 100%;
  transition: min-height 0.3s var(--ease);
}
.fh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.fht {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--on-bg);
}
.fhs {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--on-primary);
  background: var(--tertiary-ctr);
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.fs {
  display: none;
}
.fs.act { display: block; }

.fq {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--on-bg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.fqs {
  font-size: 15px;
  color: var(--on-surface-var);
  margin-bottom: 32px;
}

/* Card Grids */
.og {
  display: grid;
  gap: 16px;
}
.oga { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.ogc { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.obtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 24px 16px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
  color: var(--on-surface);
  text-align: center;
}
@media (hover: hover) {
  .obtn:hover {
    border-color: var(--outline-var);
    background: var(--surface-low);
    transform: translateY(-2px);
  }
}
.obtn.sel {
  border-color: var(--primary);
  border-width: 2px;
  background: var(--tertiary); /* Faint green tint */
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(26,62,47,0.08);
}
.obtn .oi {
  font-size: 32px;
  margin-bottom: 4px;
}
.obtn .on2 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
}

/* Next Step Button */
.nxt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 40px;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
  float: right;
}
@media (hover: hover) {
  .nxt:hover {
    background: var(--primary-dim);
    transform: translateX(2px);
  }
}
.nxt::after {
  content: '→';
  font-size: 18px;
  font-weight: 400;
}

@media(max-width: 1024px) {
  .hero-section { padding-top: 100px; }
  .hero-h1 { font-size: 32px; }
  .hero-bg-image { width: 100%; opacity: 0.3; }
  .fc { padding: 24px; border-radius: 16px; }
  .prog { display: none; } /* Hide stepper on very small mobile if needed, or simplify it */
}


.trust-badges-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--tertiary);
  border-radius: 20px;
  padding: 24px 32px;
  max-width: 900px;
  margin: 0 auto 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tb-icon {
  font-size: 24px;
}
.tb-text {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--on-bg);
  max-width: 100px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE COMPATIBILITY (Added for full responsiveness)
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  /* Navigation styling handled in main mobile overrides */
}

@media (max-width: 1024px) {
  /* Hide top nav links and secondary buttons on mobile, since we have the bottom sticky nav */
  .nav-right .btn-outline { display: none; }
  .nav-inner { gap: 8px; padding: 12px 16px; flex-wrap: wrap; }

  /* Hero Section */
  .hero-section {
    padding: 100px 20px 40px;
    min-height: auto;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-bg-image {
    display: none; /* Simplify background on mobile */
  }
  .hero-h1 {
    font-size: 36px;
  }
  .hero-note {
    font-size: 16px;
    padding: 0 12px;
  }
  
  /* Trust Badges Banner */
  .trust-badges-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  .tb-item {
    width: 100%;
    justify-content: center;
  }
  .tb-text {
    max-width: none;
  }
  
  /* Avail Strip */
  .avail-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Form Container */
  .fc {
    padding: 24px 16px;
  }
  .fqs {
    font-size: 14px;
  }
  .prog {
    flex-wrap: wrap;
    gap: 12px;
  }
  .st {
    font-size: 11px;
  }
  
  /* Grids and Cards */
  .ogc {
    grid-template-columns: 1fr 1fr;
  }
  .oga {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Comparison Table */
  .cmp {
    padding: 16px;
  }
  .cmp-h {
    font-size: 12px;
    gap: 8px;
  }
  .cmp-r {
    padding: 12px 0;
    gap: 8px;
  }
  .cmp-r .f {
    font-size: 13px;
  }
  .cmp-r .n {
    font-size: 13px;
  }
  
  /* Services & How It Works layout fixes */
  .container > .fc > div[style*="display: flex"] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  /* Ultra-small phones */
  .hero-h1 {
    font-size: 32px;
  }
  /* nav-inner and nav-links handled in main mobile overrides */
  .btn-call {
    font-size: 13px;
    padding: 8px 12px;
  }
  .btn-outline {
    font-size: 13px;
    padding: 8px 12px;
  }
  .fc {
    border-radius: 12px;
    padding: 20px 12px;
  }
}


/* Fix for Add-on Grid 2-column layout on mobile */
@media(max-width: 640px) {
  .adn {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px 8px !important;
    gap: 8px !important;
  }
  .adinf {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .adn2 {
    font-size: 13px !important;
  }
  .adn-hint {
    display: none !important; /* Hide long hint text to save space in 2-col mode */
  }
  .adck {
    margin-left: 0 !important;
    margin-top: 4px !important;
  }
  .aqty-wrap {
    justify-content: center;
    margin-top: 4px;
    width: 100%;
  }
  .adi {
    font-size: 24px !important;
    margin-bottom: 4px;
  }
}


/* Fix for top right buttons overlapping on small phones */
@media(max-width: 480px) {
  .btn-call {
    font-size: 0 !important; /* Hide text */
    padding: 0 !important;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    justify-content: center;
    min-width: 0 !important;
  }
  .btn-call svg {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS (Reveal on Scroll)
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes scroll-reveal {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .reveal-on-scroll {
      animation: scroll-reveal auto ease-out both;
      animation-timeline: view(block);
      animation-range: entry 5% cover 25%;
    }
  }
}

/* Fallback for browsers without animation-timeline support */
.reveal-fallback .reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: transform, opacity;
}
.reveal-fallback .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}
.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 90px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BEFORE & AFTER SLIDER
═══════════════════════════════════════════════════════════ */
.ba-slider-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--r-xl);
}

/* The main comparison container */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #000;
}

/* Both images fill the container */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Before image — clipped via clip-path on its wrapper */
.ba-before-wrap {
  position: absolute;
  inset: 0;
  /* clip-path set via JS */
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
  transition: clip-path 0.02s linear; /* sub-frame smoothing */
}

.ba-before-wrap .ba-img {
  position: absolute;
}

/* Vertical divider line */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  will-change: left;
  transition: left 0.02s linear;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* Circular drag handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 3px rgba(26,62,47,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: col-resize;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.ba-slider:active .ba-handle,
.ba-slider.dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 4px rgba(26,62,47,0.35);
}

/* Before / After floating labels */
.ba-label {
  position: absolute;
  top: 16px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  will-change: transform;
  transform: translateZ(0);
  pointer-events: none;
  transition: opacity 0.3s;
}

.ba-label-before {
  left: 16px;
  background: rgba(220, 60, 60, 0.85);
  color: #fff;
}

.ba-label-after {
  right: 16px;
  background: rgba(26, 62, 47, 0.85);
  color: #fff;
}

.ba-label-icon {
  font-size: 11px;
}

/* Hint text under slider */
.ba-hint {
  text-align: center;
  font-size: 13px;
  color: var(--on-surface-var);
  margin-top: 12px;
  margin-bottom: 0;
  transition: opacity 0.5s;
}

.ba-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 600px) {
  .ba-slider {
    aspect-ratio: 3 / 4;
  }
  .ba-handle {
    width: 44px;
    height: 44px;
  }
  .ba-label {
    font-size: 11px;
    padding: 4px 9px;
  }
}

/* Pulsing animation on handle to invite interaction */
@keyframes ba-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 0 0 3px rgba(26,62,47,0.25); }
  50%       { box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 8px rgba(26,62,47,0.12); }
}

.ba-handle.pulse {
  animation: ba-pulse 1.8s ease-in-out infinite;
}

/* Intro sweep animation */
@keyframes ba-intro-sweep {
  0%   { clip-path: inset(0 0% 0 0);   }
  40%  { clip-path: inset(0 80% 0 0);  }
  70%  { clip-path: inset(0 20% 0 0);  }
  100% { clip-path: inset(0 50% 0 0);  }
}


.ba-before-wrap.intro-anim {
  animation: ba-intro-sweep 1.8s var(--ease) forwards;
}


/* ═══════════════════════════════════════════════════════════
   WHATSAPP WIDGET (replaces old .whatsapp-float)
═══════════════════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media(max-width:640px) {
  .wa-widget { bottom: 80px; right: 14px; }
}

/* Trigger button */
.wa-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,86,219,0.45);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  position: relative;
}

.wa-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(26,86,219,0.55);
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  border: 2px solid white;
  animation: wa-badge-pop 0.4s var(--ease-spring);
}

@keyframes wa-badge-pop {
  0%   { transform: scale(0); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Popup bubble */
.wa-bubble {
  background: #fff;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  width: 300px;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-spring), opacity 0.25s;
}

.wa-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-bubble-header {
  background: var(--primary);
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--ff-head);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-bubble-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.wa-bubble-status {
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}

.wa-bubble-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s;
  flex-shrink: 0;
}

.wa-bubble-close:hover { color: #fff; }

.wa-bubble-body {
  padding: 14px;
  background: var(--surface-low);
}

.wa-bubble-msg {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: #111;
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}

.wa-bubble-msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -6px;
  border: 6px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}

.wa-bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--on-secondary);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  text-decoration: none;
  transition: background 0.15s;
}

.wa-bubble-btn:hover { background: var(--secondary-ctr); }

/* ═══════════════════════════════════════════════════════════
   STICKY MOBILE CTA — UPGRADED (3 buttons)
═══════════════════════════════════════════════════════════ */
@media(max-width:640px) {
  .mc-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--ff-mono);
    font-weight: 700;
    font-size: 12px;
    padding: 12px 6px;
    border-radius: var(--r-md);
    text-decoration: none;
    background: var(--secondary);
    border: 1px solid var(--secondary-ctr);
    color: var(--on-secondary);
    cursor: pointer;
    letter-spacing: 0.02em;
  }
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE TOGGLE BUTTON
═══════════════════════════════════════════════════════════ */
.dm-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--outline-var);
  background: var(--surface-low);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
  flex-shrink: 0;
  line-height: 1;
}
.dm-toggle:hover {
  background: var(--surface-mid);
  transform: rotate(20deg) scale(1.08);
}
.dm-toggle .dm-sun { display: none; }
.dm-toggle .dm-moon { display: block; }
[data-theme="dark"] .dm-toggle .dm-sun { display: block; }
[data-theme="dark"] .dm-toggle .dm-moon { display: none; }

/* ═══════════════════════════════════════════════════════════
   ANIMATED STATS COUNTER
═══════════════════════════════════════════════════════════ */
.statn[data-count] {
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}
.statn.counted {
  animation: stat-pop 0.4s var(--ease-spring);
}
@keyframes stat-pop {
  0%   { transform: scale(0.85); opacity: 0.4; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1);    opacity: 1; }
}



/* ═══════════════════════════════════════════════════════════
   SUBURB AUTOCOMPLETE
═══════════════════════════════════════════════════════════ */
.suburb-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.suburb-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--ff-body);
  color: var(--on-bg);
  background: var(--surface);
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
select.suburb-input {
  -webkit-appearance: auto;
  appearance: auto;
}
.suburb-input:focus {
  border-color: var(--primary-ctr);
  box-shadow: 0 0 0 3px rgba(26,62,47,0.1);
}
[data-theme="dark"] .suburb-input:focus {
  box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
}
.suburb-input::placeholder { color: var(--on-surface-var); }

.suburb-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--surface);
  border: 1.5px solid var(--outline-var);
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
  display: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.suburb-dropdown.open { display: block; }
.suburb-option {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--on-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.1s;
  border-bottom: 1px solid var(--outline);
}
.suburb-option:last-child { border-bottom: none; }
.suburb-option:hover,
.suburb-option.highlighted { background: var(--surface-low); }
.suburb-option strong { color: var(--primary-ctr); font-weight: 700; }
.suburb-option .sub-city {
  margin-left: auto;
  font-size: 11px;
  color: var(--on-surface-var);
  background: var(--surface-mid);
  padding: 2px 7px;
  border-radius: var(--r-full);
}
.suburb-empty {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--on-surface-var);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   VIEW TRANSITIONS (page-to-page)
═══════════════════════════════════════════════════════════ */
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vt-fade-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
::view-transition-old(root) {
  animation: 220ms var(--ease) both vt-fade-out;
}
::view-transition-new(root) {
  animation: 280ms var(--ease) both vt-fade-in;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════════════════════════ */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hero-yellow);
  color: var(--hero-blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
  z-index: 997; /* Below whatsapp widget if it exists */
}
#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#scrollTopBtn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
@media(max-width:640px) {
  #scrollTopBtn {
    bottom: 80px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CUSTOMER DASHBOARD (report.html)
═══════════════════════════════════════════════════════════ */
.dashboard-header {
  text-align: center; margin-bottom: 40px; padding: 40px;
  background: var(--surface); border-radius: 16px; border: 1px solid var(--outline);
}
.dh-top {
  display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
}
.dh-id {
  font-family: var(--ff-mono); font-size: 14px; font-weight: 700; color: var(--on-surface-var);
}
.dh-status {
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--ff-mono);
}
.status-completed {
  background: rgba(34, 197, 94, 0.15); color: #166534; border: 1px solid rgba(34, 197, 94, 0.3);
}
.dh-title {
  font-family: var(--ff-head); font-size: 32px; color: var(--primary); margin-bottom: 16px;
}
.dh-desc {
  font-size: 16px; color: var(--on-surface-var); line-height: 1.6; max-width: 600px; margin: 0 auto;
}

.dashboard-actions {
  display: flex; justify-content: center; margin-bottom: 40px;
}
.dl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; padding: 16px 32px; border-radius: 99px;
  background: var(--primary); color: white; text-decoration: none; font-weight: 600;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.dl-btn:hover {
  transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.review-cta {
  background: linear-gradient(135deg, var(--surface-high), var(--surface));
  border: 1px solid var(--outline); border-radius: 16px; padding: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-bottom: 40px;
}
.r-cta-title { font-family: var(--ff-head); font-size: 24px; color: var(--primary); margin-bottom: 8px; }
.r-cta-desc { font-size: 15px; color: var(--on-surface-var); line-height: 1.6; margin: 0; }
.btn-review {
  background: #4285F4; color: white; padding: 14px 28px; border-radius: 99px;
  text-decoration: none; font-weight: 600; white-space: nowrap; transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.btn-review:hover {
  background: #3367D6; transform: scale(1.05);
}

.guarantee-badge {
  background: rgba(232, 112, 90, 0.05); border: 1px solid rgba(232, 112, 90, 0.2);
  border-radius: 12px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 40px;
}
.gb-icon { font-size: 24px; line-height: 1; }
.gb-text strong { display: block; color: var(--primary); font-size: 16px; margin-bottom: 4px; }
.gb-text span { color: var(--on-surface-var); font-size: 14px; line-height: 1.6; display: block; }

.photo-gallery {
  background: var(--surface); padding: 40px; border-radius: 16px; border: 1px solid var(--outline);
}
.pg-title { font-family: var(--ff-head); font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.pg-desc { font-size: 16px; color: var(--on-surface-var); line-height: 1.6; margin-bottom: 32px; }
.pg-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.pg-item {
  display: flex; flex-direction: column; gap: 12px;
}
.pg-label { font-weight: 600; color: var(--on-surface); font-size: 15px; }
.pg-img-wrap {
  background: var(--surface-high); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--outline); position: relative;
}
.pg-img-wrap::before {
  content: ''; display: block; padding-top: 75%; /* 4:3 aspect ratio */
}
.placeholder-text {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-surface-var); font-family: var(--ff-mono); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; background: rgba(0,0,0,0.02);
}
.before-img .placeholder-text { color: #dc2626; background: rgba(220, 38, 38, 0.05); }
.after-img .placeholder-text { color: #16a34a; background: rgba(22, 163, 74, 0.05); }

@media(max-width: 1024px) {
  .review-cta { flex-direction: column; text-align: center; }
  .btn-review { width: 100%; text-align: center; }
  .pg-grid { grid-template-columns: 1fr; }
}
/* Hamburger toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
}
.nav-toggle svg {
  fill: var(--text-color);
  width: 28px;
  height: 28px;
}

@media (max-width: 1024px) {
  /* Show hamburger on tablets & mobile */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-right {
    gap: 8px;
  }
}

/* Fix Hero scaling */
@media (max-width: 1024px) {
  .hero-badge {
    font-size: clamp(24px, 6vw, 32px) !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.2;
    padding: 10px !important;
    height: auto !important;
    margin-bottom: 15px !important;
  }
  .hero-h1 {
    font-size: 32px !important;
    margin-bottom: 10px;
  }
  .hero-note {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .trust-badges-banner {
    gap: 12px;
  }
}
/* Global mobile smoothness and prevent wobble */
html, body {
  overflow-x: hidden;
  width: 100%;
}



/* Make property selection icons fill their button width */
.prop-icon {
  width: 100%;
  max-width: 140px; /* Limit size on desktop */
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .prop-icon {
    max-width: 100%; /* Fully fill the button on small screens */
  }
}

/* Fix the 300ms tap delay on mobile devices */

/* Force mobile clicks to register exclusively on the button element */
/* pointer-events removed to fix iOS click bug */

/* ═══════════════════════════════════════════════════════════
   PRODUCTION MOBILE CSS — Book & Clean
   Complete, authoritative mobile overrides.
   Replaces all scattered patches. Added at end of style.css.
═══════════════════════════════════════════════════════════ */

/* ── BASE: Prevent horizontal scroll on ALL devices ─────── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }
img, video, svg { max-width: 100%; height: auto; }

/* ── CRITICAL: iOS input zoom fix (font-size must be ≥16px) */
input, select, textarea {
  font-size: 16px !important;
  -webkit-text-size-adjust: 100%;
}

/* ── Tap target minimum size for all clickable elements ──── */
/* ── Remove hover transforms on touch to prevent stuck states */
@media (hover: none) {
  .obtn:active, .cbtn:active, .bn:active, .btn-primary:hover,
  .btn-call:hover, .btn-outline:hover, .step-card:hover,
  .review-card:hover, .scope-card:hover, .area-card:hover,
  .ab-c:hover, .statc:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV — SLIDE-IN DRAWER (≤1024px)
   Single source of truth for all mobile nav behaviour.
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Nav bar sizing ─────────────────────────────────────── */
  nav {
    min-height: 64px;
    padding: 0;
  }
  .nav-inner {
    padding: 0 16px;
    min-height: 64px;
    flex-wrap: nowrap;
    position: relative;
  }

  /* ── Slide-in drawer (left side) ────────────────────────── */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: min(82vw, 300px);
    height: 100dvh;
    height: 100vh; /* fallback */
    background: var(--surface, #faf8f5);
    flex-direction: column;
    padding: 72px 24px 40px;
    gap: 4px;
    box-shadow: 4px 0 32px rgba(0,0,0,0.18);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    white-space: normal;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav-links {
    transform: translateX(0);
  }

  /* ── Nav links inside drawer ─────────────────────────────── */
  .nav-links a {
    color: var(--secondary, #1a2e4a) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 15px 0 !important;
    display: flex !important;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-align: left;
    min-height: 48px;
    text-decoration: none;
  }
  .nav-links a:hover, .nav-links a:active {
    color: var(--primary, #e8705a) !important;
  }
  .nav-links a::after { display: none !important; }

  /* ── Full-screen dark overlay behind drawer ─────────────── */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    cursor: pointer;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  body.nav-open .nav-overlay {
    display: block;
  }
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  /* ── Hamburger button ───────────────────────────────────── */
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 10px;
    margin-left: 8px;
    cursor: pointer;
    z-index: 10001;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }
  .nav-toggle svg {
    fill: #ffffff !important;
    width: 26px;
    height: 26px;
    display: block;
    pointer-events: none;
  }

  /* ── Close button inside drawer ─────────────────────────── */
  .nav-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary, #1a2e4a);
    pointer-events: none;
  }

  /* ── Desktop-only: hide Get Quote in nav-right on mobile ─── */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    z-index: 10001;
    position: relative;
  }
  .nav-right .btn-outline { display: none; }


  .btn-call {
    font-size: 12px;
    padding: 7px 12px;
    white-space: nowrap;
  }
  .btn-call svg { width: 13px; height: 13px; }

  /* ── HERO SECTION ───────────────────────────────────────── */
  .hero-section {
    padding: 130px 20px 32px;
    min-height: auto;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-bg-wrapper { display: none; }
  .hero-kicker { font-size: 11px; margin-bottom: 12px; }
  .hero-h1 {
    font-size: clamp(30px, 8vw, 38px);
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .hero-badge {
    font-size: clamp(16px, 4.8vw, 20px);
    margin-top: 6px;
    margin-bottom: 16px;
    line-height: 1.25;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .hero-note {
    font-size: 14.5px;
    line-height: 1.5;
    padding: 0;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .hero-trust-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .hts-item {
    flex: none !important;
    min-width: 0 !important;
    padding: 6px 10px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }
  .hts-icon-wrap {
    width: 28px !important;
    height: 28px !important;
  }
  .hts-icon-wrap svg {
    width: 14px !important;
    height: 14px !important;
  }
  .hts-title {
    font-size: 11px !important;
  }
  .hts-desc {
    font-size: 9.5px !important;
    margin-top: 0px !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 16px !important;
    width: 100% !important;
    max-width: 480px !important;
  }
  .hero-ctas .btn-hero-primary, .hero-ctas .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    font-size: 15px;
  }

  /* ── QUOTE FORM ─────────────────────────────────────────── */
  .fc {
    padding: 0;
    border-radius: 16px;
    margin: 0 -4px;
  }
  .fh { padding: 14px 16px; }
  .fb { padding: 16px; min-height: auto; }
  .fq { font-size: 17px !important; }
  .fqs { font-size: 13px; margin-bottom: 20px; }

  /* Property size grid — 2 columns on mobile */
  .oga { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .obtn { min-height: 80px; padding: 12px 8px 10px; gap: 4px; }
  .on2 { font-size: clamp(10px, 3.2vw, 12px); }
  .prop-icon { max-width: 72px; height: 72px; object-fit: contain; }

  /* Property type grid — 2 columns */
  .og2 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }

  /* Carpet options — 2 columns on mobile */
  .cg { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .cbtn { min-height: 60px; padding: 10px 6px; font-size: 12px; }

  /* Add-ons grid */
  .ag { grid-template-columns: 1fr !important; gap: 10px; }
  .adn { padding: 14px; }

  /* Next/Prev buttons */
  .fn {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
  }
  .bn {
    flex: 1;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
    padding: 12px 16px;
  }

  /* Form inputs */
  .fi, .fi2 { padding: 14px; margin-bottom: 12px; }
  .fi input, .fi2 input, .fi select, .fi2 select {
    font-size: 16px;
    min-height: 44px;
  }
  .f2 { grid-template-columns: 1fr; gap: 0; }

  /* Progress stepper */
  .prog {
    padding: 12px 16px;
    gap: 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .pd { min-width: 28px; min-height: 28px; font-size: 12px; }
  .st { font-size: 9px; }
  .pl { min-width: 12px; }

  /* ── TRUST BADGES BANNER ────────────────────────────────── */
  .trust-badges-banner {
    padding: 20px 16px;
    gap: 16px;
    margin-bottom: 40px;
  }
  .tb-item { width: 100%; justify-content: center; }
  .tb-text { max-width: none; }

  /* ── SECTION PADDING ────────────────────────────────────── */
  .section { padding: 48px 20px; }
  .section-alt { padding: 48px 20px; }
  .section-dark { padding: 48px 20px; }

  /* ── SECTION HEADINGS ───────────────────────────────────── */
  .sh { font-size: clamp(22px, 6vw, 32px); }
  .ss { font-size: 14px; }

  /* ── COMPARISON TABLE ───────────────────────────────────── */
  .cmp { padding: 16px; border-radius: 12px; overflow-x: auto; }
  .cmp-h { font-size: 11px; gap: 6px; }
  .cmp-h, .cmp-r { grid-template-columns: 1.6fr 0.7fr 0.7fr; }
  .cmp-r { padding: 10px 0; gap: 6px; font-size: 12px; }

  /* ── STAT BAR ───────────────────────────────────────────── */
  .statbar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .statn { font-size: 28px; }

  /* ── BEFORE/AFTER SLIDER ────────────────────────────────── */
  .ba-wrap { height: 260px; border-radius: 12px; }
  .ba-hint { font-size: 12px; }

  /* ── REVIEW CARDS ───────────────────────────────────────── */
  .review-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 20px; }

  /* ── GUARANTEE SECTION ──────────────────────────────────── */
  .guarantee-grid { grid-template-columns: 1fr; gap: 24px; }

  /* ── AREAS GRID ─────────────────────────────────────────── */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-card { padding: 12px; }

  /* ── FOOTER ─────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-right { text-align: left; }
  .footer-links { flex-wrap: wrap; gap: 8px; }


  /* ── FLOATING WHATSAPP ──────────────────────────────────── */
  .wa-widget { bottom: 80px; right: 16px; }

  /* ── PRICING PAGE ───────────────────────────────────────── */
  .pgrid-new { grid-template-columns: 1fr; gap: 16px; }
  .pcard { padding: 24px 20px; }

  /* ── HOW IT WORKS ───────────────────────────────────────── */
  .step-card { padding: 20px; }
  .step-icon { width: 48px; height: 48px; font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   480px — SMALL PHONES
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-section { padding: 120px 16px 24px; }
  .hero-h1 { font-size: clamp(28px, 8vw, 34px); margin-bottom: 6px; }
  .hero-badge { font-size: clamp(15px, 5vw, 17px); margin-top: 6px; margin-bottom: 14px; line-height: 1.2; }

  .fb { padding: 12px; }
  .oga { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
  .obtn { padding: 10px 6px 8px; min-height: 72px; }
  .on2 { font-size: 10.5px; }

  .cg { grid-template-columns: repeat(3, 1fr) !important; gap: 6px; }
  .cbtn { min-height: 56px; padding: 8px 4px; font-size: 11px; }

  .statbar { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .areas-grid { grid-template-columns: 1fr; }

  .section, .section-alt, .section-dark { padding: 40px 16px; }

  .cmp-h, .cmp-r { grid-template-columns: 1.5fr 0.75fr 0.75fr; }
  .cmp-h { font-size: 10px; }
  .cmp-r { font-size: 11px; }

  .htb-item { font-size: 11px; padding: 7px 10px; }

  /* quote section stays full-width */
  .quote-section { padding-left: 12px; padding-right: 12px; }
  .fc { margin: 0; border-radius: 12px; }


}

/* ═══════════════════════════════════════════════════════════
   390px — IPHONE SE / SMALL PHONES
═══════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-h1 { font-size: 26px; }
  .hero-badge { font-size: 14px; }
  .oga { gap: 6px !important; }
  .obtn { min-height: 68px; padding: 8px 4px; }
  .cg { gap: 5px !important; }
  .prog { padding: 10px 12px; }
  .pd { min-width: 24px; min-height: 24px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════
   SAFE AREA — iPhone notch / Dynamic Island / bottom bar
═══════════════════════════════════════════════════════════ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  
  .wa-widget {
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
  
}

/* ═══════════════════════════════════════════════════════════
   POINTER: HOVER DISABLED on touch screens
═══════════════════════════════════════════════════════════ */
@media (pointer: coarse) {
  /* Ensure 44px minimum tap targets everywhere */
  .obtn { min-height: 72px; }
  .cbtn { min-height: 56px; }
  .adn { min-height: 56px; }
  .bn { min-height: 50px; }
  .nav-links a { min-height: 48px; }
  .aqty-btn { min-width: 40px; min-height: 40px; }
}


/* ── Mobile CTA bar: ensure WhatsApp button has correct styles */
@media (max-width: 640px) {
  .mc-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1.5px solid rgba(37, 211, 102, 0.4);
    color: #128C7E;
  }
  .mcta a, .mcta button {
    min-height: 48px;
  }
  /* Fix z-index: sticky summary ABOVE mcta */
  
  
  /* Fix hero section on iPhone notch */
  .hero-section {
    padding-top: calc(max(80px, calc(64px + env(safe-area-inset-top))) + 50px);
  }
  
  /* Avail strip compact on mobile */
  .avail-strip { padding: 10px 16px; }
  .avail-inner { flex-wrap: wrap; gap: 8px; text-align: center; justify-content: center; }
  .avail-cta { white-space: nowrap; font-size: 13px; }
  .avail-text { font-size: 13px; }
  
  /* Form: hide comparison table on small mobile, keep it accessible via scroll */
  .cmp { font-size: 11px; }
  
  /* OTP section mobile */
  #otpWrap { padding: 16px; }
  .otp-input-group { gap: 8px; }
  .otp-input { width: 44px; height: 52px; font-size: 20px; }
}

/* ── Floating widget z-index fix */
.wa-widget {
  z-index: 9997 !important;
}
@media (max-width: 640px) {
  .wa-widget { bottom: 80px; right: 16px; }
  .wa-trigger { width: 52px; height: 52px; }
}


/* nav-close: shown only in mobile (handled inside mobile nav media query above) */
.nav-close {
  display: none;
}


/* ── Mobile Performance Fixes for selection states ── */
@media (max-width: 1024px) {
  .obtn, .cbtn, .bn, .adn {
    transition: background-color 0.1s, border-color 0.1s, color 0.1s !important;
  }
  .obtn.sel {
    transform: none !important;
    box-shadow: 0 0 0 1.5px var(--primary-ctr) !important; /* simple solid outline, no blur */
  }
  .cbtn.sel, .adn.sel {
    transform: none !important;
    box-shadow: 0 0 0 1.5px var(--primary-ctr) !important;
  }
}

/* ── Ultimate iOS Sticky Hover Fix ── */
@media (hover: none), (pointer: coarse) {
  .obtn:active, .cbtn:active, .bn:active, .btn-primary:hover,
  .btn-call:hover, .btn-outline:hover, .step-card:hover,
  .review-card:hover, .scope-card:hover, .area-card:hover,
  .ab-c:hover, .statc:hover, .bb:active, .rst:active, .aqty-btn:active {
    transform: none !important;
    box-shadow: none !important;
    border-color: inherit;
    background: inherit;
  }
  
  /* Retain selected states since they are class-based, not hover-based */
  .obtn.sel {
    border-color: var(--primary-ctr) !important;
    background: rgba(232,112,90,0.08) !important;
  }
  .cbtn.sel {
    border-color: var(--primary-ctr) !important;
    background: rgba(232,112,90,0.08) !important;
  }
}


/* ── Stepper Mobile Overflow Fix ── */
@media (max-width: 1024px) {
  .prog { 
    overflow-x: auto; 
    flex-wrap: nowrap; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  .prog::-webkit-scrollbar { 
    display: none; 
  }
  .pd-wrap { 
    flex-shrink: 0; 
    min-width: 68px; 
  }
  .pd-label { 
    white-space: nowrap; 
    font-size: 11px; 
    letter-spacing: -0.2px; 
  }
}

/* ───────────────────────────────────────────────────────────
   ADDITIONAL RESPONSIVENESS AND LAYOUT FIXES
─────────────────────────────────────────────────────────── */

/* 1. Services page grid (.services-grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 2. Story Stats grid (.story-stats-grid) */
.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .story-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 3. Pricing page bedroom size buttons (.pricing-title & .pricing-price) */
.pricing-title {
  font-family: var(--ff-head);
  font-size: 20px;
  color: var(--primary) !important;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 16px;
  color: var(--on-bg);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .pricing-title {
    font-size: 16px;
  }
  .pricing-price {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .pricing-title {
    font-size: 14px;
  }
  .pricing-price {
    font-size: 13px;
  }
}

/* 4. Tagline auto-hide on very small mobile headers */
@media (max-width: 360px) {
  .nav-tagline {
    display: none !important;
  }
}

/* 5. General content cards mobile padding (when .fc does not contain .fb) */
@media (max-width: 1024px) {
  .fc {
    padding: 24px 20px;
    margin: 0;
  }
  .quote-section .fc {
    padding: 0;
    margin: 0 -4px;
  }
}
@media (max-width: 480px) {
  .fc {
    padding: 20px 16px;
  }
  .quote-section .fc {
    padding: 0;
    margin: 0 -4px;
  }
}

/* 6. DIY Calculator Spacing & Padding overrides */
@media (max-width: 768px) {
  .diy-calc-container {
    padding: 24px 16px !important;
  }
}

/* 7. Story Grid Padding override */
@media (max-width: 768px) {
  .story-grid {
    padding: 24px 16px !important;
  }
}

/* 8. Dashboard Header padding override */
@media (max-width: 768px) {
  .dashboard-header {
    padding: 24px 16px !important;
  }
}

/* 9. Trust Badges grid on mobile/tablet */
@media (max-width: 1024px) {
  .trust-badges-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 24px 20px;
  }
  .tb-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  .tb-text {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .trust-badges-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding: 20px 12px;
  }
  .tb-text {
    font-size: 12px;
  }
  .tb-icon {
    font-size: 20px;
  }
}

/* 10. Carpet grid stack under 400px */
@media (max-width: 400px) {
  .cg {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* 11. Footer Centering & Stack under 480px */
@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   CLICK & TOUCH FIX — All buttons, icons and interactive
   elements. Eliminates 300ms delay, double-tap, ghost clicks.
   Applied globally to every page via shared style.css.
═══════════════════════════════════════════════════════════ */

/* ── 1. Touch-action: manipulation on ALL interactive elements
        Eliminates 300ms tap delay on iOS/Android without
        needing touchend event listeners.                    */
button,
a,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
.obtn, .cbtn, .bn, .bb, .rst,
.btn-primary, .btn-call, .btn-outline,
.faq-tab, .faq-q, .nav-toggle, .nav-close,
.wa-trigger, .wa-bubble-btn, .wa-bubble-close,
.aqty-btn, .adn, .tbk, .scope-dl,
.mc-call, .mc-whatsapp, .mc-quote,
.as-q, .bbg-link, .avail-cta,
#otpSendBtn, #otpCheckBtn, #scrollTopBtn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── 2. Prevent text selection on buttons (stops double-tap
        "select all text" behavior on mobile)               */
.obtn, .cbtn, .bn, .bb, .rst,
.btn-primary, .btn-call, .btn-outline,
.faq-tab, .nav-toggle, .nav-close,
.wa-trigger, .aqty-btn, .adn,
.mc-call, .mc-whatsapp, .mc-quote,
#otpSendBtn, #otpCheckBtn {
  -webkit-user-select: none;
  user-select: none;
}

/* ── 3. Pointer-events: none on ALL decorative icons/images
        inside buttons — prevents sub-element from eating clicks.
        parent .closest() still works; this fixes iOS cases
        where the img/span is the actual target.            */
.obtn > img,
.obtn > span.oi,
.obtn > span.on2,
.obtn > span.op,
img.prop-icon,
.cbtn > span.cl,
.cbtn > span.cp2,
.adn > span.adi,
.adn > span.adck,
.adn > span.adinf,
.adn > span.adinf > *,
.bn > svg,
.bb > svg,
.btn-primary > svg,
.btn-call > svg,
.btn-outline > svg,
.faq-tab > span,
.faq-q > span.faq-icon,
.faq-q > span:first-child,
.nav-toggle > svg,
.wa-trigger > svg,
.wa-trigger > .wa-badge,
.htb-icon, .htb-icon-wrap,
.tb-icon {
  pointer-events: none;
}

/* ── 4. Minimum touch target: 44px on coarse-pointer devices */
@media (pointer: coarse) {
  .bn, .bb { min-height: 50px; min-width: 44px; }
  .aqty-btn { min-width: 44px; min-height: 44px; width: 44px !important; height: 44px !important; }
  .obtn { min-height: 72px; }
  .cbtn { min-height: 60px; }
  .adn  { min-height: 56px; }
  .nav-toggle, .nav-close { min-width: 44px; min-height: 44px; }
  .wa-trigger { min-width: 52px; min-height: 52px; }
  .faq-tab { min-height: 44px; }
  .faq-q   { min-height: 52px; }
  .wa-bubble-close { min-width: 40px; min-height: 40px; padding: 8px !important; }
  .mc-call, .mc-whatsapp, .mc-quote { min-height: 50px; }
  #otpSendBtn, #otpCheckBtn { min-height: 48px; }
}

/* ── 5. Cursor: pointer on all clickable elements (catch-all) */
.obtn, .cbtn, .adn, .as-q, .faq-tab, .faq-q,
.bbg-link, .scope-dl, .tbk, .rst,
.suburb-option, .sdi { cursor: pointer; }

/* ── 6. Active/pressed visual feedback for touch devices    */
@media (pointer: coarse) {
  .obtn:active { background: rgba(232,112,90,0.12) !important; border-color: rgba(232,112,90,0.5) !important; }
  .cbtn:active { background: rgba(232,112,90,0.12) !important; border-color: rgba(232,112,90,0.5) !important; }
  .bn:active   { opacity: 0.85 !important; transform: scale(0.98) !important; }
  .bb:active   { opacity: 0.75 !important; }
  .faq-tab:active { opacity: 0.8 !important; }
  .adn:active  { background: rgba(232,112,90,0.12) !important; border-color: rgba(232,112,90,0.5) !important; }
  .aqty-btn:active { background: rgba(232,112,90,0.2) !important; border-color: var(--primary-ctr) !important; }
}

/* ── 7. Disabled button appearance                          */
button:disabled,
.bn:disabled,
.bb:disabled,
.aqty-btn:disabled {
  opacity: 0.38 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ── 8. Background shader/overlays must NEVER block clicks  */
#bg-shader            { pointer-events: none !important; z-index: 0 !important; }
.hero-bg-wrapper      { pointer-events: none !important; }
.hero-bg-image        { pointer-events: none !important; }
.hero-bg-yellow-shape { pointer-events: none !important; }
.photohero-overlay    { pointer-events: none !important; }

/* nav-overlay pointer-events: handled within the mobile nav media query */
.nav-overlay { pointer-events: none; }
body.nav-open .nav-overlay { pointer-events: auto; }

/* ── 10. WhatsApp bubble doesn't block page clicks when closed */
.wa-bubble:not(.open) { pointer-events: none !important; }

/* ── 11. Sticky summary container — let clicks pass through
         when not needed; enabled when .visible             */


/* ── 12. Suburb dropdown must appear above everything       */
.suburb-dropdown { z-index: 500 !important; }
.suburb-wrap     { z-index: 200; position: relative; }

/* ── 13. Ensure form-step container never clips buttons    */
.fb  { overflow: visible !important; }

/* ── 14. Isolate form card stacking context cleanly        */
.quote-section { isolation: isolate; }

/* ── 15. FAQ accordion icon pseudo-elements               */
.faq-icon::before,
.faq-icon::after { pointer-events: none; }

/* ── 16. Nav links and close button in mobile menu        */
.nav-links a { cursor: pointer; }
.nav-close   { cursor: pointer; }

/* ── 17. Footer links minimum tap target                  */
footer a { display: inline-block; min-height: 24px; padding: 2px 0; }

/* ── 18. See My Quote button state clarity                */
#seeQuoteBtn[style*="pointer-events:none"],
#seeQuoteBtn[style*="pointer-events: none"] { cursor: not-allowed; }

/* ── 19. Empty span spacer in Step 1 .fn row              */
.fn > span:empty { display: none; }

/* ── 20. Addon scope toggle                               */
.as-q { pointer-events: auto; user-select: none; }
.as-q .fqi { pointer-events: none; }

/* ── 21. Obtn selected check mark must not block clicks   */
.obtn.sel::after { pointer-events: none; }


/* ═══════════════════════════════════════════════════════════
   INLINE PRICE SUMMARY  (replaces sticky bottom bar)
═══════════════════════════════════════════════════════════ */
.inline-price-summary {
  position: relative;
  width: 100%;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  font-size: 14px;
  color: var(--on-surface-var);
  line-height: 1.6;
  display: none;
}
.inline-price-summary.ips-visible {
  display: block;
}
.inline-price-summary strong {
  display: inline;
  margin-left: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
  font-family: var(--ff-head);
}
.inline-price-summary .additional-price {
  display: block;
  font-size: 12px;
  color: var(--secondary);
  margin-top: 2px;
}
.form-navigation {
  position: relative;
  z-index: 10;
}
.back-button,
.next-button {
  position: relative;
  z-index: 11;
  pointer-events: auto;
  min-height: 44px;
}


/* ═══════════════════════════════════════════════════════════
   CITY SELECTOR
═══════════════════════════════════════════════════════════ */
.city-selector-wrap {
  max-width: 860px;
  margin: 0 auto 16px auto;
  position: relative;
}
.city-select-dropdown {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--outline-var);
  background: var(--surface-mid);
  color: var(--on-bg);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238e8e93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.city-select-dropdown:focus {
  border-color: var(--primary-ctr);
  box-shadow: 0 0 0 3px rgba(232, 112, 90, 0.15);
}
.city-select-dropdown.err {
  border-color: #d9381e !important;
  box-shadow: 0 0 0 3px rgba(217, 56, 30, 0.15) !important;
  animation: shake 0.3s ease-in-out;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}


/* ═══════════════════════════════════════════════════════════
   BOOK & CLEAN — Visual Identity Update Styles
   ═══════════════════════════════════════════════════════════ */

/* Section Spacing & Dividers */
.section {
  padding: 80px 24px; /* Generous breathing room */
}
.section-alt {
  background: var(--surface-low);
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* Hero Section Adjustments */
.hero-section {
  padding: 120px 24px 140px;
}

/* Compact Horizontal Trust Strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  max-width: 600px;
  width: 100%;
}
.hts-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 10px);
  min-width: 220px;
  backdrop-filter: blur(4px);
}
.hts-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--hero-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--hero-yellow);
}
.hts-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.hts-text {
  display: flex;
  flex-direction: column;
}
.hts-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--on-primary);
  line-height: 1.2;
}
.hts-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}

/* Hero CTA Buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  max-width: 600px;
  width: 100%;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-yellow);
  color: var(--on-primary) !important;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(43, 74, 139, 0.25);
}
.btn-hero-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn-hero-secondary {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-primary) !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.btn-hero-secondary:hover {
  border-color: var(--on-primary);
  opacity: 0.9;
}

/* Booking Form Heading block */
.quote-heading-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.quote-heading {
  font-family: var(--ff-head);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quote-subtext {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--on-surface-var);
}

/* Booking Form Card Styling differentiation */
.fc {
  border-radius: 16px;
  border: 1px solid rgba(43,74,139,0.08);
  box-shadow: 0 20px 50px rgba(43,74,139,0.06), 0 0 0 1px rgba(43,74,139,0.02);
  background: var(--surface-bright);
}
.fc::before {
  background: linear-gradient(90deg, transparent, rgba(43,74,139,0.15), transparent);
}

/* Premium Testimonials Section Layout & Styling */
.reviews-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.review-card-v2 {
  background: var(--surface-bright);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 30px rgba(42, 26, 20, 0.03);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42, 26, 20, 0.06);
}
.rc2-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.rc2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.rc2-quote-icon {
  color: rgba(232, 112, 90, 0.15);
  display: flex;
  align-items: center;
}
.rc2-quote-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.rc2-stars {
  color: #FBBC05;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}
.rc2-text {
  font-size: 14px;
  color: var(--on-surface);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 400;
}
.rc2-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}
.rc2-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(43, 74, 139, 0.08);
  color: var(--secondary);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.rc2-info {
  display: flex;
  flex-direction: column;
}
.rc2-name {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--on-bg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.rc2-city {
  font-size: 11px;
  color: var(--on-surface-var);
  margin-top: 1px;
}

/* Book & Clean Promise Section */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.promise-item {
  background: var(--surface-bright);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.02);
  transition: transform 0.2s var(--ease);
}
.promise-item:hover {
  transform: translateY(-2px);
}
.promise-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(232, 112, 90, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.promise-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}
.promise-item h3 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.promise-item p {
  font-size: 13.5px;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* Guarantee Section Icon Fix */
.guar-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(43, 74, 139, 0.06);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary);
}
.guar-icon-wrap svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.2;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .reviews-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-trust-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .hts-item {
    flex: none !important;
    min-width: 0 !important;
    padding: 6px 10px !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }
  .hts-icon-wrap {
    width: 28px !important;
    height: 28px !important;
  }
  .hts-icon-wrap svg {
    width: 14px !important;
    height: 14px !important;
  }
  .hts-title {
    font-size: 11px !important;
  }
  .hts-desc {
    font-size: 9.5px !important;
    margin-top: 0px !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin-top: 16px !important;
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-hero-primary {
    width: 100%;
    padding: 12px 24px;
  }
  .btn-hero-secondary {
    text-align: center;
    align-self: center;
    border-bottom-width: 1px;
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .reviews-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section {
    padding: 60px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOOK & CLEAN — Redesigned Component Styles
   ═══════════════════════════════════════════════════════════ */

/* 1. Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-card {
  background: var(--surface-bright);
  border: 1px solid var(--outline);
  border-radius: var(--r);
  padding: 24px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(42, 26, 20, 0.02);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(42, 26, 20, 0.06);
  border-color: var(--primary-ctr);
}
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary);
  color: var(--primary-ctr);
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.service-card-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--on-bg);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--on-surface-var);
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-link {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--primary-ctr);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s var(--ease);
  padding-bottom: 2px;
}
.service-link:hover {
  border-color: var(--primary-ctr);
}

/* 2. Navy Promise Section */
.promise-section {
  background: var(--secondary);
  color: #ffffff;
  padding: 64px 24px;
  position: relative;
  z-index: 10;
}
.promise-header {
  text-align: center;
  margin-bottom: 40px;
}
.promise-title {
  font-family: var(--ff-head);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.promise-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.80);
  max-width: 600px;
  margin: 0 auto;
}
.promise-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .promise-grid-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .promise-grid-horizontal {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.promise-card-horizontal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.promise-card-horizontal:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}
.promise-icon-horizontal {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-ctr);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
}
.promise-icon-horizontal svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.promise-card-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15.5px;
  color: #ffffff;
  margin-bottom: 8px;
}
.promise-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}



/* 4. Process Booking Timeline */
.timeline-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 48px;
}
.timeline-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--outline);
  z-index: 0;
}
.timeline-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
}
.timeline-icon-wrap {
  background: var(--bg);
  padding: 4px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.timeline-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-bright);
  border: 2px solid var(--primary-ctr);
  color: var(--primary-ctr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.timeline-stage:hover .timeline-icon {
  transform: scale(1.1);
  background: var(--primary-ctr);
  color: #ffffff;
}
.timeline-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.timeline-content {
  max-width: 180px;
}
.timeline-stage-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--on-bg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.timeline-stage-desc {
  font-size: 12.5px;
  color: var(--on-surface-var);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .timeline-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .timeline-line {
    top: 24px;
    bottom: 24px;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline-stage {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .timeline-icon-wrap {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .timeline-content {
    max-width: 100%;
    margin-top: 8px;
  }
  .timeline-stage-title {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .timeline-stage-desc {
    font-size: 13px;
  }
}

/* 5. Trust Strip Bar */
.trust-strip-bar {
  background: var(--surface-low);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  padding: 18px 24px;
  position: relative;
  z-index: 10;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-bg);
}
.trust-strip-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-ctr);
  flex-shrink: 0;
  stroke-width: 2.2;
}
.trust-strip-divider {
  width: 1px;
  height: 20px;
  background: var(--outline-var);
}
@media (max-width: 991px) {
  .trust-strip-inner {
    justify-content: center;
  }
  .trust-strip-divider {
    display: none;
  }
  .trust-strip-item {
    flex: 0 0 calc(50% - 16px);
    justify-content: flex-start;
    padding: 6px 12px;
  }
}
@media (max-width: 520px) {
  .trust-strip-item {
    flex: 0 0 100%;
    font-size: 13px;
  }
}

/* 6. Redesigned Reviews Grid and Carousel */
.reviews-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
@media (max-width: 991px) {
  .reviews-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .reviews-grid-new {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .review-card-new {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}
.review-card-new {
  position: relative;
  background: var(--surface-bright);
  border: 1px solid var(--outline);
  border-radius: var(--r);
  padding: 32px 24px 24px;
  box-shadow: 0 4px 16px rgba(42, 26, 20, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-card-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 26, 20, 0.06);
}
.rc-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  border-top-left-radius: var(--r);
  border-top-right-radius: var(--r);
}
.rc-quote-top {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--outline-var);
}
.quote-svg {
  width: 20px;
  height: 20px;
  opacity: 0.2;
}
.rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star-icon {
  width: 14px;
  height: 14px;
  fill: #F39C12;
  stroke: none;
}
.review-text-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-bg);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}
.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--surface-low);
  padding-top: 16px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-low);
  color: var(--primary-ctr);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--outline);
}
.review-meta {
  display: flex;
  flex-direction: column;
}
.review-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--on-bg);
}
.review-city {
  font-size: 11.5px;
  color: var(--on-surface-var);
}

/* 7. Split Layout (Location Coverage) */
.split-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 991px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.split-text {
  text-align: left;
}
.split-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}
.coverage-summary-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(42, 26, 20, 0.03);
  width: 100%;
  max-width: 420px;
}
.csc-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--on-bg);
  margin-bottom: 18px;
  border-bottom: 1.5px solid var(--outline);
  padding-bottom: 10px;
}
.csc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.csc-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.csc-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary-ctr);
  margin-top: 3px;
  flex-shrink: 0;
  stroke-width: 2.2;
}
.csc-list li strong {
  display: block;
  font-size: 14px;
  color: var(--on-bg);
  margin-bottom: 2px;
}
.csc-list li span {
  font-size: 12.5px;
  color: var(--on-surface-var);
  line-height: 1.4;
  display: block;
}

/* Extra Form Icon SVG layout */
.obtn svg, .adn svg {
  width: 24px;
  height: 24px;
  color: var(--primary-ctr);
  margin-bottom: 6px;
  stroke-width: 2;
  transition: transform 0.2s var(--ease);
}
.obtn.sel svg, .adn.sel svg {
  transform: scale(1.1);
  color: var(--primary-ctr);
}
.adi {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   GUARANTEE — SPLIT LAYOUT (navy bg, left icon + right grid)
═══════════════════════════════════════════════════════════ */
.section-navy {
  background: #1a2e4a;
  padding: 52px 0;
}
.guar-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.guar-left-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.guar-meta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.guar-meta-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 18px;
}
.guar-meta-card svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.guar-meta-card-h {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 4px;
}
.guar-meta-card-d {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   FULL TERMS — 2-COL ICON CARD GRID
═══════════════════════════════════════════════════════════ */
.terms-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.terms-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s;
}
.terms-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.terms-card svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-bottom: 6px;
}
.terms-card-h {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--on-bg);
}
.terms-card-d {
  font-size: 13.5px;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CITY OPS GRID (4-city cards with expandable suburb lists)
═══════════════════════════════════════════════════════════ */
.city-ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.city-ops-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.city-ops-card:hover {
  border-color: rgba(232,112,90,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.city-ops-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,112,90,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.city-ops-icon svg { width: 20px; height: 20px; color: var(--primary); }
.city-ops-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--on-bg);
  margin-bottom: 6px;
}
.city-ops-desc {
  font-size: 13.5px;
  color: var(--on-surface-var);
  line-height: 1.55;
  margin-bottom: 14px;
}
.city-ops-details {
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 12px;
}
.city-ops-details summary {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.city-ops-details summary::-webkit-details-marker { display: none; }
.city-ops-details summary::after {
  content: '›';
  font-size: 15px;
  margin-left: auto;
  transition: transform 0.2s;
}
.city-ops-details[open] summary::after { transform: rotate(90deg); }
.city-ops-suburb-list {
  font-size: 12.5px;
  color: var(--on-surface-var);
  line-height: 2;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════
   WHAT'S INCLUDED — TAB PANEL
═══════════════════════════════════════════════════════════ */
.incl-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 32px 0 0;
}
.incl-tab-btn {
  background: #ffffff;
  border: 1px solid rgba(43, 74, 139, 0.15);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.incl-tab-btn svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  transition: color 0.25s var(--ease);
  flex-shrink: 0;
}
.incl-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.incl-tab-btn:hover svg {
  color: var(--primary);
}
.incl-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(232, 112, 90, 0.2);
}
.incl-tab-btn.active svg {
  color: #ffffff;
}
.incl-panels {
  margin-top: 24px;
}
.incl-panel {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.incl-panel.active {
  display: block;
}
.incl-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}
.incl-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--on-surface-var);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.incl-check-item:last-child {
  border-bottom: none;
}
.incl-check-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.incl-check-item.hi {
  color: var(--on-bg);
  font-weight: 600;
}
.incl-check-item.hi svg {
  color: var(--primary);
}
.incl-check-item:not(.hi) svg {
  color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════
   ADD-ON SERVICE CARDS (3-col grid)
═══════════════════════════════════════════════════════════ */
.addon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.addon-svc-card {
  background: var(--surface-mid);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.addon-svc-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border-color: rgba(232,112,90,0.2);
}
.addon-svc-icon {
  width: 38px;
  height: 38px;
  background: rgba(43,74,139,0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.addon-svc-icon svg { width: 18px; height: 18px; color: var(--secondary); }
.addon-svc-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--on-bg);
  margin-bottom: 5px;
}
.addon-svc-desc {
  font-size: 12.5px;
  color: var(--on-surface-var);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}
.addon-svc-price {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(43,74,139,0.08);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 12px;
  width: fit-content;
}
.addon-svc-details {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 10px;
  margin-top: auto;
}
.addon-svc-details summary {
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--ff-mono);
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}
.addon-svc-details summary::-webkit-details-marker { display: none; }
.addon-svc-details summary::after {
  content: '›';
  margin-left: auto;
  transition: transform 0.2s;
  font-size: 14px;
}
.addon-svc-details[open] summary::after { transform: rotate(90deg); }
.addon-svc-details-body {
  margin-top: 8px;
  font-size: 12px;
  color: var(--on-surface-var);
  line-height: 1.55;
}
.addon-inc-lbl, .addon-exc-lbl {
  display: block;
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 7px;
  margin-bottom: 2px;
}
.addon-inc-lbl { color: var(--secondary); }
.addon-exc-lbl { color: #c0392b; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .guar-split { grid-template-columns: 1fr; gap: 28px; }
  .city-ops-grid { grid-template-columns: 1fr 1fr; }
  .terms-card-grid { grid-template-columns: 1fr; }
  .addon-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .incl-checklist { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .guar-meta-cards { grid-template-columns: 1fr; }
  .city-ops-grid { grid-template-columns: 1fr; }
  .addon-cards-grid { grid-template-columns: 1fr; }
  .incl-tabs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .incl-tab-btn {
    font-size: 11px !important;
    padding: 6px 4px !important;
    height: 48px !important;
    white-space: normal !important;
    text-align: center;
    line-height: 1.2 !important;
    flex-direction: row !important;
    gap: 6px !important;
    justify-content: center !important;
  }
  .incl-tab-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  .section-navy { padding: 40px 0; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE HERO LAYOUT REFRESH (768px and smaller)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section {
    height: auto !important;
    min-height: unset !important;
    padding-top: calc(max(64px, calc(56px + env(safe-area-inset-top))) + 16px) !important;
    padding-bottom: calc(68px + env(safe-area-inset-bottom) + 24px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 0 !important;
  }
  .hero-kicker {
    order: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
  .hero-h1 {
    order: 2 !important;
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-align: center !important;
    width: auto !important;
    max-width: 100% !important;
  }
  .hero-badge {
    display: none !important;
  }
  .hero-note {
    order: 3 !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    max-width: 360px !important;
    padding: 0 8px !important;
  }
  .hero-ctas {
    order: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  .btn-hero-primary {
    width: 100% !important;
    max-width: 380px !important;
    height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14.5px !important;
    border-radius: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 10px rgba(43, 74, 139, 0.15) !important;
  }
  .btn-hero-secondary {
    display: inline-block !important;
    width: auto !important;
    text-align: center !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline !important;
    border-bottom: none !important;
    padding: 4px 8px !important;
    margin: 0 !important;
  }
  .hero-trust-strip {
    order: 5 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 440px !important;
    padding: 0 4px !important;
  }
  .hts-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    background: #ffffff !important;
    border: 1px solid var(--outline) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    height: 100% !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
  }
  .hts-icon-wrap {
    width: 24px !important;
    height: 24px !important;
    border: none !important;
    color: var(--secondary) !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  .hts-icon-wrap svg {
    width: 16px !important;
    height: 16px !important;
    stroke: var(--secondary) !important;
    stroke-width: 2 !important;
  }
  .hts-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .hts-title {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    line-height: 1.25 !important;
  }
  .hts-desc {
    display: none !important;
  }
}

