/* ============================================================
   Deelway Cleaning Services — Design System
   Blue & white, fresh, premium, trustworthy.
   ============================================================ */

:root {
  /* Palette */
  --navy: #0a2a5e;
  --navy-deep: #061d44;
  --blue: #1e6fd6;
  --blue-bright: #2f8bff;
  --sky: #9cc8ff;
  --mint: #18c2a4; /* "fresh / clean" accent, used sparingly */
  --ink: #142133;
  --slate: #56657c;
  --slate-soft: #8493a8;
  --mist: #eef4ff;
  --mist-2: #f6f9ff;
  --line: #dde7f5;
  --white: #ffffff;

  --grad-hero: radial-gradient(120% 120% at 12% 8%, #1e6fd6 0%, #0a2a5e 52%, #061d44 100%);
  --grad-band: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  --grad-cta: linear-gradient(135deg, #2f8bff 0%, #1e6fd6 60%, #0a2a5e 100%);

  --shadow-sm: 0 2px 10px rgba(10, 42, 94, 0.06);
  --shadow-md: 0 16px 40px -18px rgba(10, 42, 94, 0.28);
  --shadow-lg: 0 40px 80px -32px rgba(6, 29, 68, 0.45);

  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.light { color: var(--sky); }

.lead { font-size: 1.15rem; color: var(--slate); max-width: 62ch; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section.mist { background: var(--grad-band); }
.section.alt { background: var(--mist-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(30, 111, 214, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(30, 111, 214, 0.8); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-3px); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--navy); letter-spacing: -0.02em; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--grad-cta);
  box-shadow: 0 8px 18px -8px rgba(30, 111, 214, 0.8);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-soft); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--mist); color: var(--blue); }

/* dropdown */
.has-menu > a::after { content: "▾"; margin-left: 5px; font-size: 0.7em; color: var(--slate-soft); }
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { padding: 10px 12px; font-size: 0.92rem; border-radius: 10px; }

.header-cta { display: inline-flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-display); font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; }
.header-phone svg { width: 17px; height: 17px; color: var(--blue); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--grad-hero);
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0 clamp(90px, 12vw, 160px);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(110% 90% at 80% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(110% 90% at 80% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--sky); }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 54ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 32px; align-items: center; }
.hero-trust .ht-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.hero-trust .ht-item svg { width: 20px; height: 20px; color: var(--mint); flex: none; }

/* floating bubbles */
.bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.55), rgba(156,200,255,0.05) 60%, transparent 70%); border: 1px solid rgba(255,255,255,0.18); animation: float 9s var(--ease) infinite; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

/* hero card / visual */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-card h3 { color: var(--navy); }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stars { display: inline-flex; gap: 2px; color: #f5b301; }
.stars svg { width: 18px; height: 18px; }
.hero-card .hc-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-card .hc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--slate); }
.hero-card .hc-list svg { width: 20px; height: 20px; color: var(--mint); flex: none; margin-top: 1px; }
.hero-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--mint); color: #032b24;
  font-family: var(--font-display); font-weight: 700;
  padding: 16px 20px; border-radius: 18px; line-height: 1;
  box-shadow: var(--shadow-md);
}
.hero-badge span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-top: 5px; }

/* wave divider */
.wave { display: block; width: 100%; height: auto; margin-top: -1px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--line); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 18px 48px; justify-content: space-between; align-items: center; padding-top: 28px; padding-bottom: 28px; }
.trust-stat { text-align: left; }
.trust-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); line-height: 1; }
.trust-stat span { font-size: 0.85rem; color: var(--slate); }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-cta); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--mist); color: var(--blue);
  transition: background 0.3s, color 0.3s;
}
.svc-icon svg { width: 28px; height: 28px; }
.service-card:hover .svc-icon { background: var(--grad-cta); color: #fff; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: 0.97rem; flex: 1; }
.svc-link { font-family: var(--font-display); font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; }
.svc-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip .split-media { order: 2; }
.feature-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fl-ico { width: 30px; height: 30px; border-radius: 9px; background: var(--mist); color: var(--blue); display: grid; place-items: center; flex: none; }
.feature-list .fl-ico svg { width: 17px; height: 17px; }
.feature-list b { display: block; color: var(--navy); font-family: var(--font-display); }
.feature-list span { color: var(--slate); font-size: 0.95rem; }

/* decorative media panel (SVG scene) */
.media-panel {
  border-radius: var(--radius-lg);
  background: var(--grad-hero);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
}
.media-panel .mp-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px); background-size: 22px 22px; }
.room-illu { position: relative; z-index: 2; width: 100%; height: auto; }

/* ---------- Why / values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .v-ico { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--mist), #fff); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; border: 1px solid var(--line); }
.value-card .v-ico svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.15rem; }
.value-card p { color: var(--slate); font-size: 0.95rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--sky); line-height: 1; }
.step h3 { font-size: 1.1rem; margin: 10px 0 6px; }
.step p { color: var(--slate); font-size: 0.93rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-card .stars { margin-bottom: 14px; }
.testi-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--ink); flex: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex: none; }
.testi-author b { display: block; color: var(--navy); font-family: var(--font-display); font-size: 0.98rem; }
.testi-author span { font-size: 0.85rem; color: var(--slate-soft); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: #fff; }
.ba-stage { position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(10,42,94,0.15); z-index: 3; pointer-events: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; z-index: 4; pointer-events: none; color: var(--blue); }
.ba-handle svg { position: static; width: 20px; height: 20px; }
.ba-tag { position: absolute; bottom: 12px; padding: 4px 12px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; z-index: 3; }
.ba-tag.before { left: 12px; background: rgba(20,33,51,0.78); color: #fff; }
.ba-tag.after { right: 12px; background: var(--mint); color: #032b24; }
.ba-meta { padding: 16px 20px; }
.ba-meta b { font-family: var(--font-display); color: var(--navy); display: block; }
.ba-meta span { font-size: 0.88rem; color: var(--slate); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--grad-hero); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price-card.featured h3, .price-card.featured .price b { color: #fff; }
.price-card.featured .price small, .price-card.featured .pc-desc { color: rgba(255,255,255,0.78); }
.price-card.featured .feature-list span { color: rgba(255,255,255,0.85); }
.price-card.featured .feature-list .fl-ico { background: rgba(255,255,255,0.14); color: var(--sky); }
.pc-tag { position: absolute; top: 22px; right: 22px; background: var(--mint); color: #032b24; font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }
.pc-desc { color: var(--slate); font-size: 0.95rem; min-height: 44px; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.price b { font-family: var(--font-display); font-size: 2.8rem; color: var(--navy); line-height: 1; }
.price small { color: var(--slate); font-size: 0.92rem; }
.price-card .btn { margin-top: 20px; }
.price-card .feature-list { margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--sky); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ico { width: 26px; height: 26px; flex: none; border-radius: 8px; background: var(--mist); color: var(--blue); display: grid; place-items: center; transition: transform 0.3s; }
.faq-item[open] summary .q-ico { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--slate); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--mist-2); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(30,111,214,0.12);
}
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-grid label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--mist-2); color: var(--ink); font-family: var(--font-body); font-weight: 600;
}
.checkbox-grid input { width: 18px; height: 18px; accent-color: var(--blue); flex: none; }
.booking-summary {
  padding: 18px 20px; border: 1px solid rgba(30,111,214,0.22); border-radius: 16px;
  background: linear-gradient(135deg, #f6f9ff, #fff); color: var(--slate);
}
.booking-summary b { display: block; color: var(--navy); font-family: var(--font-display); margin-bottom: 4px; }
.booking-summary p { margin: 0; }
.booking-summary ul { margin: 10px 0 0; padding-left: 20px; columns: 2; }
.form-note { font-size: 0.85rem; color: var(--slate-soft); margin-top: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; background: rgba(24,194,164,0.12); color: #0c6e5c; border: 1px solid rgba(24,194,164,0.4); }
.form-status.err { display: block; background: #fdecec; color: #b3261e; border: 1px solid #f3c2c0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-cta); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px); text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: clamp(64px, 9vw, 110px) 0 clamp(70px, 9vw, 120px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 26px 26px; -webkit-mask-image: radial-gradient(120% 90% at 85% 0%, #000, transparent 70%); mask-image: radial-gradient(120% 90% at 85% 0%, #000, transparent 70%); }
.page-hero .container { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 60ch; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a { color: var(--sky); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- Checklist columns ---------- */
.check-cols { columns: 2; column-gap: 40px; list-style: none; margin: 0; padding: 0; }
.check-cols li { break-inside: avoid; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--slate); }
.check-cols svg { width: 20px; height: 20px; color: var(--mint); flex: none; margin-top: 2px; }

/* ---------- Locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.loc-pill { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--navy); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.loc-pill svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.loc-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky); color: var(--blue); }

.service-area-section { background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%); }
.service-map {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
  margin: -18px auto 34px; max-width: 900px;
}
.map-panel {
  position: relative; min-height: 260px; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(156,200,255,0.55);
  background:
    linear-gradient(90deg, rgba(10,42,94,0.07) 1px, transparent 1px),
    linear-gradient(rgba(10,42,94,0.07) 1px, transparent 1px),
    radial-gradient(circle at 62% 30%, rgba(24,194,164,0.22), transparent 26%),
    radial-gradient(circle at 36% 64%, rgba(47,139,255,0.20), transparent 28%),
    #ffffff;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  box-shadow: var(--shadow-md);
}
.map-panel::before {
  content: ""; position: absolute; inset: 44px 70px 42px 70px; border-radius: 46% 54% 42% 58%;
  border: 2px solid rgba(30,111,214,0.26); transform: rotate(-8deg);
  background: rgba(238,244,255,0.72);
}
.map-pin {
  position: absolute; z-index: 2; display: grid; place-items: center; width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--grad-cta); color: #fff; font-family: var(--font-display); font-weight: 800;
  line-height: 1; font-size: 1rem; text-align: center;
  box-shadow: 0 18px 36px -16px rgba(6,29,68,0.55);
}
.map-pin::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,0.42); border-radius: 12px; }
.map-pin.ma { left: 48%; top: 48%; }
.map-pin.ri { left: 58%; top: 64%; background: linear-gradient(135deg, #18c2a4, #0e8f7a); }
.map-pin.nh { left: 42%; top: 20%; background: linear-gradient(135deg, #2f8bff, #0a2a5e); }
.state-badges { display: grid; gap: 14px; }
.state-badges span {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-radius: 16px; border: 1px solid var(--line);
  background: #fff; color: var(--navy); font-family: var(--font-display); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.state-badges span::after { content: "Covered"; color: var(--blue); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-card .i-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--mist); color: var(--blue); display: grid; place-items: center; flex: none; }
.info-card .i-ico svg { width: 22px; height: 22px; }
.info-card b { font-family: var(--font-display); color: var(--navy); display: block; margin-bottom: 2px; }
.info-card a, .info-card p { color: var(--slate); margin: 0; }
.whatsapp-btn { background: #25d366; color: #fff; }
.whatsapp-btn:hover { background: #1eb858; transform: translateY(-3px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 72px 0 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 18px; font-family: var(--font-display); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: rgba(255,255,255,0.5); }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.footer-links a:hover { color: var(--sky); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.94rem; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact svg { width: 18px; height: 18px; color: var(--sky); flex: none; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .service-grid, .testi-grid, .gallery-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .header-phone { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; gap: 5px;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: fixed; inset: 76px 0 0; z-index: 99;
    background: #fff; padding: 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    display: flex; flex-direction: column; gap: 4px;
  }
  body.nav-open .mobile-nav { transform: none; }
  .mobile-nav a { padding: 14px 16px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy); border-bottom: 1px solid var(--mist); }
  .mobile-nav a:hover { background: var(--mist); }
  .mobile-nav .mn-group { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-soft); padding: 18px 16px 6px; border: 0; }
  .mobile-nav .btn { margin-top: 18px; }
}
@media (min-width: 861px) { .mobile-nav { display: none; } }

@media (max-width: 680px) {
  body { font-size: 16px; }
  .split, .split.flip .split-media { grid-template-columns: 1fr; order: 0; }
  .service-grid, .testi-grid, .gallery-grid, .value-grid, .steps, .form-grid { grid-template-columns: 1fr; }
  .service-map, .checkbox-grid { grid-template-columns: 1fr; }
  .map-panel { min-height: 230px; }
  .booking-summary ul { columns: 1; }
  .check-cols { columns: 1; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .trustbar .container { justify-content: space-between; gap: 18px 24px; }
  .trust-stat b { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
