/* ===========================================================
   Haulo — Junk Removal & Hauling
   Custom styles layered on top of Tailwind CDN.
   =========================================================== */

:root {
  --ink-950: #050505;
  --ink-900: #0a0a0a;
  --ink-800: #141414;
  --ink-700: #1c1c1c;
  --ink-300: #9a9a9a;
  /* brand accent (token kept as --lime-* for compatibility) — ORANGE */
  --lime-300: #fdab5e;
  --lime-400: #f97316;
  --lime-500: #ea670c;
  --lime-700: #9a3f0a;
  /* light-theme surfaces — warm cream/beige base, white cards on top */
  --paper: #f5efe2;      /* main content section background (the beige) */
  --paper-alt: #ede4cf;  /* alternating sec-alt bands, a touch deeper */
  --card-bg: #ffffff;    /* cards, panels and tiles stay white so they pop on beige */
  --line: rgba(15,12,10,0.10);
  --text-strong: #1a1614;
  --text-body: #4b4540;
  --text-muted: #7a7268;
  /* warm charcoal — shared by the transparent nav + Why Choose section */
  --charcoal: #33302b;
  --charcoal-rgb: 51,48,43;
  --charcoal-lo: #2a2723;  /* deeper charcoal for gradient bottoms */
  --charcoal-hi: #3b3731;  /* lighter charcoal for gradient tops */
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

::selection { background: var(--lime-400); color: #fff; }

/* Hero left-side scrim makes any photo readable. The neon-lime accent under the
   subject keeps Sparky glowing even if the underlying image lacks contrast. */
.hero-bg {
  background:
    /* darken-left scrim */
    linear-gradient(90deg, rgba(5,5,5,0.90) 0%, rgba(5,5,5,0.65) 35%, rgba(5,5,5,0.25) 60%, rgba(5,5,5,0.55) 100%),
    /* fallback gradient if image missing */
    radial-gradient(80% 60% at 75% 50%, rgba(249,115,22,0.10), transparent 60%),
    url('images/hero.webp'),
    url('images/hero.jpg'),
    url('images/hero.jpeg'),
    url('images/hero.png');
  background-color: #050505;
  background-size: cover, cover, cover, cover, cover, cover;
  background-position: center, center, 70% center, 70% center, 70% center, 70% center;
  background-repeat: no-repeat;
}

/* glass frame around the hero H1 + subhead — lifts the message off the
   photo and adds depth without obscuring Sparky on the right */
.hero-frame {
  padding: 1.25rem 1.5rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,5,5,0.32);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  box-shadow:
    0 24px 60px -28px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
@media (min-width: 768px) {
  .hero-frame { padding: 1.5rem 1.875rem 1.875rem; border-radius: 24px; }
}

/* layered: edge vignette frames the headline + truck,
   warm orange spotlight pulls the eye to Sparky, then the bottom fade so the stat bar reads */
.hero-overlay {
  background:
    /* edge vignette frames the headline + truck */
    radial-gradient(115% 92% at 50% 44%, transparent 46%, rgba(0,0,0,0.30) 84%, rgba(0,0,0,0.44) 100%),
    /* warm spotlight toward Sparky */
    radial-gradient(28% 38% at 72% 56%, rgba(249,115,22,0.12), transparent 70%);
  pointer-events: none;
}

/* =============================
   Wordmark: the 'o' sits inside an orange rounded badge
   ============================= */
.o-badge {
  display: inline-block;
  background: var(--lime-400);
  color: #ffffff;
  padding: 0.04em 0.20em;
  border-radius: 0.22em;
  line-height: 1;
  margin: 0 0.02em;
}

/* =============================
   Legacy: halo ring above the 'o' (kept for backward compat, unused now)
   ============================= */
.halo-ring {
  position: absolute;
  left: 50%;
  top: -0.34em;
  transform: translateX(-50%);
  width: 0.85em;
  height: 0.34em;
  border: 2.5px solid var(--lime-400);
  border-radius: 50% / 100%;
  border-bottom: 0;
  /* professional theme: clean static halo, no neon glow / pulse */
  box-shadow: none;
  animation: none;
}
@keyframes haloPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(249,115,22,0.55), 0 0 28px rgba(249,115,22,0.25); }
  50%      { box-shadow: 0 0 22px rgba(249,115,22,0.85), 0 0 44px rgba(249,115,22,0.40); }
}

/* =============================
   Lime glow utilities
   ============================= */
.lime-glow {
  /* professional theme: accent color only, no neon text-glow */
  text-shadow: none;
}
.lime-halo {
  background: radial-gradient(60% 60% at 50% 40%, rgba(249,115,22,0.22), transparent 70%);
  filter: blur(40px);
}

/* =============================
   Primary lime button
   ============================= */
.btn-lime {
  background: var(--lime-400);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.7);
  transition: transform 0.18s ease, box-shadow 0.28s ease, background-color 0.18s ease;
}
.btn-lime:hover {
  background: var(--lime-300);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.75);
}
.btn-lime:active { transform: translateY(0); }

/* =============================
   Secondary "ghost" button — orange outline, orange text,
   transparent fill. Fills solid orange on hover for clear click intent.
   Works on both dark surfaces (hero, dark CTA band) and the beige sections.
   ============================= */
.btn-ghost {
  background: transparent;
  color: var(--lime-400);
  border: 1.5px solid var(--lime-400);
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.28s ease;
}
.btn-ghost:hover {
  background: var(--lime-400);
  color: #ffffff;
  border-color: var(--lime-400);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px rgba(249,115,22,0.5);
}
.btn-ghost:active { transform: translateY(0); }
/* keep the icon in sync with the button text color (override any explicit text-lime-400 on the svg) */
.btn-ghost svg { color: inherit; }

/* =============================
   Glass button — matches the .hero-frame style above it.
   Used for the long hero call-button so it reads as part of
   the same translucent system rather than as a competing solid.
   ============================= */
.btn-glass {
  background: rgba(5,5,5,0.32);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  box-shadow:
    0 24px 60px -28px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.28s ease;
}
.btn-glass:hover {
  background: rgba(20,20,20,0.45);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
  box-shadow:
    0 28px 64px -24px rgba(0,0,0,0.85),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.btn-glass:active { transform: translateY(0); }

/* =============================
   Section eyebrow + heading
   ============================= */
/* Eyebrows are hidden site-wide (per request). To bring them back,
   delete the `display:none` line below. */
.eyebrow {
  display: none !important;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-300);
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--lime-400);
}
.section-h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: white;
}

/* =============================
   Hero stat bar
   ============================= */
.stat-bar {
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  box-shadow:
    0 30px 60px -22px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
/* warm orange glow underneath, tying it to the brand color */
.stat-bar::after {
  content: '';
  position: absolute;
  inset: auto 10% -10px 10%;
  height: 24px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(249,115,22,0.40), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}
.stat-bar > div {
  position: relative;
}
.stat-bar > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 16%; bottom: 16%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 1023px) {
  .stat-bar > div:nth-child(2n)::after { display: none; }
  .stat-bar > div:nth-child(-n+2)::before {
    content: '';
    position: absolute;
    left: 8%; right: 8%; bottom: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
  }
}

/* =============================
   Service cards
   ============================= */
.service-card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(14,14,14,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 50% 0%, rgba(249,115,22,0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.28);
  box-shadow:
    0 24px 60px -28px rgba(0,0,0,0.9),
    0 0 0 1px rgba(249,115,22,0.10);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon {
  background: rgba(249,115,22,0.12);
  color: var(--lime-300);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.35), 0 0 24px -4px rgba(249,115,22,0.45);
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--lime-400);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.service-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 10px;
}
.service-body {
  color: #b3b3b3;
  font-size: 14.5px;
  line-height: 1.55;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime-300);
  transition: gap 0.2s ease;
}
.service-card:hover .service-link { gap: 10px; }

/* chips (also-haul strip) */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px;
  color: #c6c6c6;
  transition: all 0.25s ease;
}
.chip:hover {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.30);
  color: var(--lime-300);
}

/* =============================
   How It Works
   ============================= */
.how-spotlight {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(249,115,22,0.07), transparent 70%),
    radial-gradient(40% 40% at 90% 100%, rgba(249,115,22,0.04), transparent 70%);
}
.step-card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: rgba(20,20,20,0.65);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,0.30);
}
.step-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--lime-400);
  margin-bottom: 18px;
}
.step-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(5,5,5,0.6);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--lime-400);
  box-shadow: 0 0 0 6px rgba(28,28,28,1), 0 0 24px -4px rgba(249,115,22,0.35);
  margin-bottom: 20px;
}
.step-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 8px;
}
.step-body {
  color: #b3b3b3;
  font-size: 14.5px;
  line-height: 1.55;
}

/* =============================
   Why Choose feature rows
   ============================= */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,0.10);
  color: var(--lime-400);
  border: 1px solid rgba(249,115,22,0.25);
  box-shadow: 0 0 18px -4px rgba(249,115,22,0.30);
}
.feature-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: white;
  margin-bottom: 4px;
}
.feature-body {
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1.55;
}

/* =============================
   Pricing tiles
   ============================= */
.price-tile {
  padding: 16px 10px;
  border-radius: 14px;
  background: rgba(5,5,5,0.6);
  border: 1px solid rgba(255,255,255,0.07);
}
.price-tile-featured {
  background: linear-gradient(180deg, var(--lime-400) 0%, var(--lime-500) 100%);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 14px 32px -10px rgba(249,115,22,0.55);
  transform: translateY(-4px);
}

/* =============================
   Reviews
   ============================= */
.review-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,0.6) 0%, rgba(10,10,10,0.6) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}
.review-card-featured {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(249,115,22,0.10), transparent 70%),
    linear-gradient(180deg, rgba(28,28,28,0.85) 0%, rgba(10,10,10,0.85) 100%);
  border-color: rgba(249,115,22,0.28);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.9), 0 0 0 1px rgba(249,115,22,0.08);
}
.review-quote {
  color: #e6e6e6;
  font-size: 15.5px;
  line-height: 1.6;
}

/* =============================
   Service Area cards
   ============================= */
.area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.25s ease;
}
.area-card:hover {
  border-color: rgba(249,115,22,0.35);
  background: rgba(20,20,20,1);
  transform: translateX(2px);
}
.area-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime-400);
  box-shadow: 0 0 12px rgba(249,115,22,0.7);
}
.area-card-callout {
  background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(20,20,20,0.7));
  border-color: rgba(249,115,22,0.18);
}

/* =============================
   Final CTA backdrop
   ============================= */
.cta-bg {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(249,115,22,0.08), transparent 70%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-950) 100%);
}

/* =============================
   Footer
   ============================= */
.footer-h {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 18px;
}
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line);
  color: var(--text-strong);
  transition: all 0.22s ease;
}
.social-icon:hover {
  background: var(--lime-400);
  color: #ffffff;
  border-color: var(--lime-400);
  box-shadow: 0 0 18px -2px rgba(249,115,22,0.55);
}

/* =============================
   Scroll-reveal
   ============================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .halo-ring { animation: none; }
}

/* =============================
   Sticky nav shadow when scrolled
   ============================= */
nav#mainNav.is-scrolled {
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.85);
  border-bottom-color: rgba(255,255,255,0.07);
}

/* =============================
   Small responsive tweaks
   ============================= */
@media (max-width: 640px) {
  .stat-bar { border-radius: 18px; }
  .step-card, .service-card, .review-card { padding: 22px; }
}

/* ===========================================================
   MULTI-PAGE ADDITIONS (nav dropdowns, page hero, cards)
   =========================================================== */

/* ----- desktop nav dropdowns / mega menu ----- */
.nav-links .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-top-link { transition: color 0.2s ease; }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  margin-top: -2px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10,10,10,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 70px -24px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.03) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
/* invisible hover bridge so the panel doesn't drop while moving the cursor */
.mega-panel::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 16px;
}
.nav-item:hover > .mega-panel,
.nav-item:focus-within > .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-panel-wide { width: 560px; }
.mega-panel-sm  { width: 260px; }
.mega-panel-loc { width: 500px; }
/* Locations sits mid-nav; keep its wide panel from spilling off the right edge */
@media (max-width: 1320px) { .mega-panel-loc { left: auto; right: 0; } }
/* keep the wide services panel from spilling off the right edge */
@media (max-width: 1180px) { .mega-panel-wide { left: auto; right: 0; } }

.mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mega-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lime-300);
  transition: gap 0.2s ease;
}
.mega-all:hover { gap: 9px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.mega-grid-1 { grid-template-columns: 1fr; }
.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: #d8d8d8;
  transition: background 0.18s ease, color 0.18s ease;
}
.mega-link:hover { background: rgba(249,115,22,0.08); color: #fff; }
.mega-link-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--lime-400);
}
.mega-link:hover .mega-link-icon { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.3); }

/* ----- two-level Services menu: vertical service list + city flyout ----- */
.svc-menu { width: 286px; }
.svc-list { display: grid; gap: 1px; }
.svc-item { position: relative; }
.svc-link {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 11px;
  font-size: 13.5px; font-weight: 500; color: #d8d8d8;
  transition: background .16s ease, color .16s ease;
}
.svc-item:hover > .svc-link, .svc-item:focus-within > .svc-link,
.svc-link:hover, .svc-link:focus-visible { background: rgba(249,115,22,0.10); color: #fff; outline: none; }
.svc-link-icon {
  flex-shrink: 0; display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  color: var(--lime-400);
}
.svc-item:hover > .svc-link .svc-link-icon,
.svc-item:focus-within > .svc-link .svc-link-icon { background: rgba(249,115,22,0.14); border-color: rgba(249,115,22,0.3); }
.svc-caret { margin-left: auto; flex-shrink: 0; transform: rotate(-90deg); opacity: .5; transition: opacity .2s ease, color .2s ease; }
.svc-item:hover > .svc-link .svc-caret, .svc-item:focus-within > .svc-link .svc-caret { opacity: 1; color: var(--lime-400); }

.svc-flyout {
  position: absolute; top: -14px; left: 100%; z-index: 60;
  width: 384px; margin-left: 8px; padding: 16px;
  border-radius: 16px;
  background: rgba(8,8,8,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 70px -24px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.03) inset;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  max-height: 78vh; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.svc-flyout::before { content: ''; position: absolute; left: -14px; top: 0; bottom: 0; width: 16px; } /* hover bridge */
.svc-item:hover > .svc-flyout, .svc-item:focus-within > .svc-flyout { opacity: 1; visibility: visible; transform: none; }
.fly-head { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-400); margin: 2px 6px 10px; }
.fly-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.fly-link { padding: 6px 8px; border-radius: 8px; font-size: 12.5px; color: #cfcfcf; transition: background .15s ease, color .15s ease; }
.fly-link:hover, .fly-link:focus-visible { background: rgba(249,115,22,0.12); color: #fff; outline: none; }
@media (max-width: 1200px) { .svc-flyout { width: 330px; } }

/* ----- mobile nested accordion (Services → service → cities) ----- */
.m-acc-sum, .m-acc-sum2 { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; user-select: none; }
.m-acc-sum::-webkit-details-marker, .m-acc-sum2::-webkit-details-marker { display: none; }
.m-acc-sum { padding: 10px 0; color: #e6e6e6; font-weight: 600; font-size: 15px; }
.m-acc-sum2 { padding: 8px 0; color: #c6c6c6; font-weight: 500; font-size: 14px; }
.m-acc-caret { color: var(--lime-400); flex-shrink: 0; transition: transform .25s ease; }
details[open] > .m-acc-sum > .m-acc-caret, details[open] > .m-acc-sum2 > .m-acc-caret { transform: rotate(180deg); }
.m-acc-body { padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.1); margin: 0 0 4px 2px; }
.m-acc2 { border-top: 1px solid rgba(255,255,255,0.06); }
.m-acc-body2 { padding: 2px 0 10px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px 12px; }
.m-fly-link { display: block; padding: 6px 2px; color: #9a9a9a; font-size: 13px; }
.m-fly-link:hover { color: var(--lime-300); }
.m-fly-all { grid-column: 1 / -1; color: var(--lime-300); font-weight: 600; }

/* ----- inner page hero glow ----- */
.page-hero-glow {
  background:
    radial-gradient(55% 80% at 85% 0%, rgba(249,115,22,0.10), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(249,115,22,0.05), transparent 60%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-950) 100%);
}

/* ----- trust card (why-choose grid) ----- */
.trust-card {
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(14,14,14,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease;
}
.trust-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.25); }

/* ----- location card ----- */
.location-card {
  display: block;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(14,14,14,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.28);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.9), 0 0 0 1px rgba(249,115,22,0.10);
}
.location-card:hover .service-link { gap: 10px; }

/* ----- city page: services chips ----- */
.loc-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  border-radius: 16px;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  color: #d8d8d8;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.loc-svc:hover { transform: translateY(-3px); border-color: rgba(249,115,22,0.3); color: #fff; }
.loc-svc-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.18);
  color: var(--lime-400);
}

/* ----- FAQ accordion ----- */
.faq-item {
  border-radius: 16px;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(249,115,22,0.25); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--lime-400); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px 22px;
  color: #b3b3b3;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ----- pricing cards ----- */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,0.7) 0%, rgba(14,14,14,0.7) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(249,115,22,0.28); }
.price-card .btn-lime, .price-card a { margin-top: auto; }
.price-card-featured {
  background: linear-gradient(180deg, var(--lime-400) 0%, var(--lime-500) 100%);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 22px 50px -16px rgba(249,115,22,0.5);
}
.price-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--ink-950);
  color: var(--lime-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249,115,22,0.4);
  white-space: nowrap;
}

/* ----- contact tiles ----- */
.contact-tile {
  display: block;
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28,28,28,0.8) 0%, rgba(14,14,14,0.8) 100%);
  border: 1px solid rgba(249,115,22,0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 24px 60px -26px rgba(0,0,0,0.9), 0 0 28px -8px rgba(249,115,22,0.4);
}
.contact-info {
  padding: 26px;
  border-radius: 18px;
  background: rgba(20,20,20,0.7);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ----- eyebrow centered helper ----- */
.eyebrow[style*="center"]::before { display: none; }

/* ===========================================================
   LIGHT THEME — content sections sit on white / off-white.
   The chrome (nav, mobile menu, promo bar, footer), the photo
   hero, inner page heroes, the stat bar and the nav mega-menu
   intentionally STAY DARK (that's the "black" in the palette).
   These rules are scoped to .sec / .sec-alt so they never touch
   the dark chrome.
   =========================================================== */

/* section surfaces — share a subtle diagonal stripe pattern + warm orange
   accent stripes that sit on top of the beige base color */
.sec     { background-color: var(--paper); color: var(--text-body); }
.sec-alt { background-color: var(--paper-alt); color: var(--text-body);
           border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec {
  /* bold diagonal "wrap" stripe design — applied ONLY to the lighter
     near-white .sec sections (not the deeper-beige .sec-alt ones).
     A single sweep of three parallel orange stripes + warm corner glows. */
  background-image:
    linear-gradient(
      115deg,
      transparent 58%,
      rgba(249,115,22,0.22) 58%, rgba(249,115,22,0.22) 60.5%,
      transparent 60.5%, transparent 63%,
      rgba(249,115,22,0.14) 63%, rgba(249,115,22,0.14) 64.8%,
      transparent 64.8%, transparent 67%,
      rgba(249,115,22,0.09) 67%, rgba(249,115,22,0.09) 68.2%,
      transparent 68.2%
    ),
    radial-gradient(55% 45% at 100% 0%, rgba(249,115,22,0.11), transparent 60%),
    radial-gradient(50% 45% at 0% 100%, rgba(249,115,22,0.09), transparent 60%);
}
/* footer keeps the .sec color but NOT the stripes */
footer.sec { background-image: none; }

/* default content headings → strong dark (class headings handled below) */
.sec h2, .sec h3, .sec h4, .sec-alt h2, .sec-alt h3, .sec-alt h4 { color: var(--text-strong); }

/* flip muted text utilities INSIDE light sections only */
.sec .text-white, .sec-alt .text-white,
.sec .text-ink-100, .sec-alt .text-ink-100 { color: var(--text-strong); }
.sec .text-ink-200, .sec-alt .text-ink-200 { color: var(--text-body); }
.sec .text-ink-300, .sec-alt .text-ink-300 { color: var(--text-body); }
.sec .text-ink-400, .sec-alt .text-ink-400 { color: var(--text-muted); }
.sec .text-lime-300, .sec-alt .text-lime-300 { color: var(--lime-600); }

/* keep text white where it sits on an orange / dark fill */
.sec .btn-lime, .sec-alt .btn-lime,
.sec .bg-lime-400, .sec-alt .bg-lime-400,
.sec .price-card-featured .text-white, .sec-alt .price-card-featured .text-white,
.sec .price-tile-featured .text-white, .sec-alt .price-tile-featured .text-white { color: #fff; }

/* borders + translucent white fills → light equivalents */
.sec .border-white\/5,  .sec-alt .border-white\/5,
.sec .border-white\/10, .sec-alt .border-white\/10,
.sec .border-white\/15, .sec-alt .border-white\/15 { border-color: var(--line); }
.sec .bg-white\/5,  .sec-alt .bg-white\/5,
.sec .bg-white\/10, .sec-alt .bg-white\/10 { background-color: #ffffff; }
.sec .hover\:bg-white\/10:hover, .sec-alt .hover\:bg-white\/10:hover { background-color: #f9f3e6; }
.sec .hover\:border-white\/25:hover, .sec-alt .hover\:border-white\/25:hover { border-color: rgba(15,12,10,0.22); }

/* eyebrow reads darker on white */
.sec .eyebrow, .sec-alt .eyebrow { color: #c2540b; }
.sec .section-h2, .sec-alt .section-h2 { color: var(--text-strong); }

/* text component classes (only ever used in content) → dark */
.service-title, .step-title, .feature-title { color: var(--text-strong); }
.service-body, .step-body, .feature-body, .faq-a { color: var(--text-body); }
.review-quote, .faq-q { color: var(--text-strong); }
.service-link { color: var(--lime-600); }

/* cards → white, sitting on the beige sections */
.trust-card, .review-card, .step-card, .price-card,
.location-card, .contact-info, .area-card, .loc-svc, .faq-item, .price-tile {
  background: var(--card-bg);
  border-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(20,12,4,0.22);
}
.service-card { background: linear-gradient(180deg,#ffffff 0%,#fbf8f4 100%); border-color: var(--line); box-shadow: 0 10px 30px -18px rgba(20,12,4,0.22); }
.contact-tile { background: linear-gradient(180deg,#ffffff 0%,#fbf6f0 100%); border-color: rgba(249,115,22,0.30); box-shadow: 0 10px 30px -18px rgba(20,12,4,0.22); }
.service-card:hover, .trust-card:hover, .review-card:hover, .step-card:hover,
.price-card:hover, .location-card:hover, .area-card:hover, .loc-svc:hover, .contact-tile:hover {
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 18px 44px -20px rgba(20,12,4,0.3);
}
.area-card { background: #fff; }

/* panel = the old dark gradient cards */
.panel { border-radius: 22px; border: 1px solid var(--line); background: var(--card-bg); }
.panel-accent { border-radius: 22px; border: 1px solid rgba(249,115,22,0.35);
                background: linear-gradient(180deg,#fff 0%,#fff6ee 100%);
                box-shadow: 0 18px 44px -22px rgba(20,12,4,0.28); }

/* icon chips on light cards */
.service-icon, .step-icon, .loc-svc-icon, .feature-icon {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.22);
  color: var(--lime-500);
  box-shadow: none;
}
.service-card:hover .service-icon { background: rgba(249,115,22,0.18); color: var(--lime-500); box-shadow: none; }

/* price tiles — slightly deeper beige so they read as tiles on white panels */
.price-tile { background: #e9dfc6; border-color: var(--line); }

/* featured review card on light */
.review-card-featured {
  background: linear-gradient(180deg,#ffffff 0%,#fff5ea 100%);
  border-color: rgba(249,115,22,0.42);
  box-shadow: 0 18px 44px -20px rgba(20,12,4,0.3);
}

/* FAQ on light */
.faq-item[open] { border-color: rgba(249,115,22,0.42); }

/* step + service cards → brand-orange top stripe across the card.
   .service-card already uses ::before for its hover radial, so we
   ride on ::after there. .step-card uses ::before since it's free. */
.step-card, .service-card { overflow: hidden; }
.step-card::before, .service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime-400) 0%, var(--lime-500) 50%, var(--lime-400) 100%);
  border-radius: 22px 22px 0 0;
  transition: height 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}
.step-card:hover::before, .service-card:hover::after { height: 6px; }

/* =============================
   PROMO BANNER — "First haul" discount band between sections.
   Bold orange fill, white text, diagonal stripe accent on the right
   that echoes the hero pattern, and a white pill CTA that inverts
   the orange/white relationship for clarity.
   ============================= */
.promo-banner {
  background:
    radial-gradient(120% 95% at 0% 0%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, var(--lime-400) 0%, var(--lime-500) 60%, var(--lime-700) 130%);
  color: #ffffff;
  box-shadow:
    0 28px 60px -22px rgba(249,115,22,0.55),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.promo-stripes {
  background: repeating-linear-gradient(
    115deg,
    transparent 0px,
    transparent 26px,
    rgba(255,255,255,0.16) 26px,
    rgba(255,255,255,0.16) 30px,
    transparent 30px,
    transparent 70px,
    rgba(255,255,255,0.08) 70px,
    rgba(255,255,255,0.08) 73px
  );
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
          mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
}

/* chips on light */
.chip { background: #f3efe9; border-color: var(--line); color: var(--text-body); }
.chip:hover { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.4); color: var(--lime-700); }

/* primary-action chip — orange filled so "See all" / "All areas" / "All services"
   stands out as the action among the tag-style chips next to it */
.chip.chip-cta {
  background: var(--lime-400);
  border-color: var(--lime-400);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 6px 14px -8px rgba(249,115,22,0.55);
}
.chip.chip-cta:hover {
  background: var(--lime-500);
  border-color: var(--lime-500);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(249,115,22,0.6);
}

/* price badge */
.price-badge { background: #fff; color: var(--lime-600); border-color: rgba(249,115,22,0.4); }

/* CTA band — section is now light beige but the inner card stays dark.
   Re-assert white text + translucent white border/bg inside the card so
   the dark surface still reads correctly. Specificity ties with the .sec-alt
   text flips, so source order (these come after) wins. */
.cta-band .section-h2 { color: #fff; }
.cta-band .text-white { color: #ffffff; }
.cta-band .text-ink-100 { color: #ffffff; }
.cta-band .text-ink-200 { color: rgba(229,229,229,0.95); }
.cta-band .text-ink-300 { color: rgba(198,198,198,0.92); }
.cta-band .text-ink-400 { color: rgba(159,159,159,0.95); }
.cta-band .border-white\/10 { border-color: rgba(255,255,255,0.10); }
.cta-band .border-white\/15 { border-color: rgba(255,255,255,0.15); }
.cta-band .bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.cta-band .hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.10); }
.cta-band .hover\:border-white\/25:hover { border-color: rgba(255,255,255,0.25); }

/* =============================
   .dark-band — turn a content section fully dark (warm gradient).
   All inner text, panels, tiles get re-themed for the dark surface.
   Used on the Why Choose section.
   ============================= */
.dark-band {
  position: relative;
  background:
    radial-gradient(70% 50% at 80% 100%, rgba(249,115,22,0.09), transparent 60%),
    radial-gradient(60% 50% at 0% 0%, rgba(249,115,22,0.05), transparent 65%),
    linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  color: rgba(229,229,229,0.95);
}
/* heading + body text on dark */
.dark-band .section-h2,
.dark-band h2, .dark-band h3, .dark-band h4 { color: #ffffff; }
.dark-band .text-white, .dark-band .text-ink-100 { color: #ffffff; }
.dark-band .text-ink-200 { color: rgba(229,229,229,0.95); }
.dark-band .text-ink-300, .dark-band .text-ink-600 { color: rgba(198,198,198,0.92); }
.dark-band .text-ink-400, .dark-band .text-ink-500 { color: rgba(159,159,159,0.95); }
/* the "Haulo." orange period stays */
.dark-band .text-lime-400 { color: var(--lime-400); }
.dark-band .text-lime-300 { color: var(--lime-300); }
/* lime-700 (dark orange) is too dim on a dark bg — brighten links to lime-300 */
.dark-band .text-lime-700 { color: var(--lime-300); }

/* component overrides */
.dark-band .feature-title { color: #ffffff; }
.dark-band .feature-body { color: rgba(198,198,198,0.92); }
.dark-band .feature-icon {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.28);
  color: var(--lime-400);
  box-shadow: 0 0 18px -4px rgba(249,115,22,0.30);
}
.dark-band .panel {
  background: linear-gradient(180deg, rgba(28,28,28,0.85) 0%, rgba(10,10,10,0.92) 100%);
  border-color: rgba(255,255,255,0.10);
  color: rgba(229,229,229,0.95);
}
.dark-band .price-tile {
  background: rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,0.10);
  color: #ffffff;
}
.dark-band .price-badge {
  background: rgba(0,0,0,0.55);
  color: var(--lime-300);
  border-color: rgba(249,115,22,0.5);
}
/* utility flips */
.dark-band .border-white\/10 { border-color: rgba(255,255,255,0.10); }
.dark-band .border-white\/15 { border-color: rgba(255,255,255,0.15); }
.dark-band .bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.dark-band .hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.10); }

/* service cards inside a .dark-band — dark translucent cards with white text,
   orange icon chip with glow, brighter hover. */
.dark-band .service-card {
  background: linear-gradient(180deg, rgba(28,28,28,0.85) 0%, rgba(10,10,10,0.85) 100%);
  border-color: rgba(255,255,255,0.08);
  color: rgba(229,229,229,0.95);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.85);
}
.dark-band .service-card:hover {
  border-color: rgba(249,115,22,0.32);
  box-shadow:
    0 24px 60px -28px rgba(0,0,0,0.9),
    0 0 0 1px rgba(249,115,22,0.12);
}
.dark-band .service-title { color: #ffffff; }
.dark-band .service-body { color: rgba(198,198,198,0.92); }
.dark-band .service-link { color: var(--lime-300); }
.dark-band .service-icon {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.28);
  color: var(--lime-400);
  box-shadow: 0 0 18px -4px rgba(249,115,22,0.30);
}
.dark-band .service-card:hover .service-icon {
  background: rgba(249,115,22,0.20);
  box-shadow: 0 0 24px -4px rgba(249,115,22,0.55);
}

/* chips on dark — translucent dark tags */
.dark-band .chip {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: rgba(220,220,220,0.95);
}
.dark-band .chip:hover {
  background: rgba(249,115,22,0.15);
  border-color: rgba(249,115,22,0.40);
  color: #ffffff;
}

/* .wrap-band is retired — the bold diagonal stripe design now lives on every
   .sec / .sec-alt section site-wide (see the .sec, .sec-alt rule above).
   The class remains harmless in markup. */

/* dark chrome that sits OUTSIDE .sec must keep light text now that the
   document base text is dark (stat bar bridges the dark hero) */
.stat-bar { color: #fff; }

/* re-assert ORANGE accent fills AFTER the generic light-card overrides above
   (otherwise .price-card/.price-tile/.area-card white wins on source order) */
.price-card-featured {
  background: linear-gradient(180deg, var(--lime-400) 0%, var(--lime-500) 100%);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 20px 46px -18px rgba(249,115,22,0.5);
}
.price-tile-featured {
  background: linear-gradient(180deg, var(--lime-400) 0%, var(--lime-500) 100%);
  border-color: rgba(0,0,0,0.06);
}
.area-card-callout {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), #ffffff);
  border-color: rgba(249,115,22,0.22);
}

/* ===========================================================
   MOBILE OPTIMIZATION PASS
   Keeps desktop intact while tightening phone layouts.
   =========================================================== */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 74px;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section {
    max-width: 100%;
    overflow-x: clip;
  }

  nav#mainNav > div:first-child {
    height: 68px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.40) 0%, rgba(5,5,5,0.72) 50%, rgba(5,5,5,0.92) 100%),
      linear-gradient(90deg, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.36) 58%, rgba(5,5,5,0.18) 100%),
      radial-gradient(75% 52% at 78% 42%, rgba(249,115,22,0.12), transparent 68%),
      url('images/hero.webp'),
      url('images/hero.jpg'),
      url('images/hero.jpeg'),
      url('images/hero.png');
    background-size: cover, cover, cover, cover, cover, cover, cover;
    background-position: center, center, center, 68% center, 68% center, 68% center, 68% center;
  }

  .hero-overlay {
    background:
      radial-gradient(100% 65% at 50% 48%, transparent 30%, rgba(0,0,0,0.42) 100%),
      linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.40) 70%, rgba(0,0,0,0.78) 100%);
  }

  .hero-frame {
    width: min(100%, 350px);
    padding: 1.05rem 1.15rem 1.2rem;
    border-radius: 18px;
    background: rgba(5,5,5,0.40);
    backdrop-filter: blur(12px) saturate(112%);
    -webkit-backdrop-filter: blur(12px) saturate(112%);
  }

  .hero-frame h1 {
    font-size: clamp(42px, 13vw, 56px) !important;
    line-height: 0.96 !important;
  }

  .hero-frame p {
    margin-top: 1rem !important;
    font-size: 15.5px !important;
    line-height: 1.48 !important;
  }

  main > section:first-child {
    min-height: 565px !important;
    padding-top: 88px !important;
    padding-bottom: 34px !important;
  }

  main > section:first-child .btn-glass {
    max-width: 350px !important;
    padding: 0.95rem 1.25rem !important;
    font-size: 17px !important;
  }

  main > section:first-child .mt-8.flex.items-center {
    margin-top: 1.2rem !important;
    gap: 0.85rem !important;
    flex-wrap: wrap;
  }

  main > section:first-child .mt-8.flex.items-center > span {
    display: none !important;
  }

  .page-hero-glow + div {
    padding-top: 2.35rem !important;
    padding-bottom: 2.2rem !important;
  }

  .page-hero-glow ~ div h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.03 !important;
  }

  .page-hero-glow ~ div p {
    font-size: 16px !important;
    line-height: 1.58 !important;
  }

  .page-hero-glow ~ div .mt-8 {
    margin-top: 1.25rem !important;
  }

  .page-hero-glow ~ div .mt-8 a {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .page-hero-glow ~ div .mt-8 .btn-ghost {
    display: none !important;
  }

  section {
    scroll-margin-top: 74px;
  }

  .lime-halo {
    display: none !important;
  }

  .sec,
  .sec-alt,
  .dark-band {
    padding-top: 4.25rem !important;
    padding-bottom: 4.75rem !important;
  }

  .section-h2 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.04;
  }

  .service-card,
  .review-card,
  .step-card,
  .price-card,
  .trust-card,
  .contact-tile,
  .panel {
    border-radius: 18px !important;
  }

  .service-card {
    padding: 22px !important;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-body {
    font-size: 14px;
  }

  .price-card {
    padding: 24px !important;
    min-height: 0;
  }

  .price-card:hover {
    transform: none;
  }

  .price-card .text-\[56px\] {
    font-size: 44px !important;
    line-height: 1 !important;
  }

  .price-card .text-\[13px\] {
    font-size: 12px !important;
  }

  .price-card .mt-6 {
    margin-top: 1.15rem !important;
  }

  .price-card .btn-lime,
  .price-card a {
    min-height: 50px;
  }

  .faq-q {
    padding: 1rem 1.1rem !important;
    font-size: 15.5px !important;
    line-height: 1.35;
  }

  footer.sec {
    padding-top: 3.5rem !important;
    padding-bottom: calc(7.2rem + env(safe-area-inset-bottom)) !important;
  }

  footer.sec .grid {
    gap: 2rem !important;
  }

  .footer-h {
    margin-bottom: 0.8rem;
  }

  body > .lg\:hidden.fixed.bottom-3 {
    left: 10px !important;
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    z-index: 60 !important;
    gap: 8px !important;
    padding: 6px;
    border-radius: 999px;
    background: rgba(245,239,226,0.88);
    border: 1px solid rgba(15,12,10,0.10);
    box-shadow: 0 18px 42px -24px rgba(20,12,4,0.48);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
  }

  body > .lg\:hidden.fixed.bottom-3 a {
    min-height: 48px;
    padding: 0.8rem 0.6rem !important;
    font-size: 14px !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 380px) {
  .hero-frame h1 {
    font-size: 40px !important;
  }

  main > section:first-child {
    min-height: 545px !important;
  }
}
