/* =========================================================================
   Precise Pro Cleaning — Design System
   Palette drawn from the logo (deep black + gold + off-white).
   Concept: minimal, premium/boutique. Typography as the protagonist.
   ========================================================================= */

:root {
  /* Core palette (from logo) */
  --black: #0A0A0A;
  --panel: #121212;
  --panel-2: #1A1A1A;
  --panel-3: #2B2B2B;
  --gold-deep: #C9A227;
  --gold: #D4AF37;
  --gold-soft: #E0C178;
  --white: #FAFAFA;
  --muted: rgba(250, 250, 250, 0.64);
  --muted-2: rgba(250, 250, 250, 0.42);
  --border: rgba(212, 175, 55, 0.16);
  --border-strong: rgba(212, 175, 55, 0.34);

  --gold-grad: linear-gradient(135deg, #E0C178 0%, #D4AF37 45%, #C9A227 100%);
  --gold-text: linear-gradient(120deg, #E7CE8E 0%, #D4AF37 55%, #C9A227 100%);

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 14px 40px rgba(201, 162, 39, 0.22);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@view-transition { navigation: auto; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(46px, 6vw, 80px) 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section--center .eyebrow::before { display: none; }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.section--center .section-title,
.section--center .eyebrow,
.section--center .section-lead { margin-left: auto; margin-right: auto; }
.section--center .section-head { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
}
.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: var(--gold-grad);
  color: #201703;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 18px 46px rgba(201, 162, 39, 0.34); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.08); }
.btn--wa { background: #25D366; color: #04310f; }
.btn--wa:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, 0.32); }
.btn svg { width: 19px; height: 19px; }
.btn--lg { padding: 17px 36px; font-size: 1.02rem; }

/* --------------------------------------------------------------- Navbar */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  padding: 10px 0;
}
.nav.hide { transform: translateY(-102%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { display:flex;align-items:center;gap:12px;color:var(--white); }
.site-brand img { width:48px;height:48px;border-radius:50%;object-fit:cover; }
.site-brand span { display:flex;flex-direction:column;line-height:1.05; }
.site-brand strong { font-family:var(--serif);font-size:1.22rem;letter-spacing:.2px; }
.site-brand small { margin-top:4px;color:var(--gold);font-size:.6rem;font-weight:600;letter-spacing:2.6px;text-transform:uppercase; }
.dedicated-back { color:var(--muted);font-size:.82rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;transition:color .2s; }
.dedicated-back:hover { color:var(--gold); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
.nav.scrolled .nav__brand img { height: 40px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.94rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { color: var(--white); font-weight: 600; font-size: 0.94rem; display: inline-flex; align-items: center; gap: 8px; }
.nav__phone svg { width: 16px; height: 16px; color: var(--gold); }
.nav__toggle {
  display: none; background: none; border: none; padding: 6px;
  color: var(--white); width: 44px; height: 44px;
}
.nav__toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 var(--gutter);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; padding: 12px 0;
  border-bottom: 1px solid var(--border); color: var(--white);
}
.mobile-menu .btn { margin-top: 26px; }

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: clamp(130px, 20vh, 200px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(212, 175, 55, 0.14), transparent 62%),
    radial-gradient(760px 520px at 6% 108%, rgba(201, 162, 39, 0.10), transparent 60%),
    var(--black);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.78rem; letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.18); }
.hero h1 {
  font-size: clamp(2.55rem, 6.2vw, 4.6rem);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: transparent; background: var(--gold-text); -webkit-background-clip: text; background-clip: text; }
.hero__sub {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 46ch;
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px 26px;
  color: var(--muted); font-size: 0.9rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* Hero visual: photo */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--panel-2);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.55), transparent 42%);
  pointer-events: none;
}
.hero__photo-chip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong); font-size: 0.86rem;
}
.hero__photo-chip .stars { color: var(--gold); letter-spacing: 1px; }
.hero__photo-chip b { font-weight: 600; }
.hero__photo-chip span { color: var(--muted); }
.hero__phonecard {
  margin-top: 22px;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.5);
}
.hero__phonecard .ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #201703;
}
.hero__phonecard .ic svg { width: 22px; height: 22px; }
.hero__phonecard small { color: var(--muted-2); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; }
.hero__phonecard strong { font-size: 1.24rem; font-family: var(--serif); }

/* --------------------------------------------------------------- Trust bar */
.trustbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
.trustbar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 28px 0;
}
.trustbar__item { display: flex; align-items: center; gap: 14px; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.trustbar__item b { display: block; font-size: 0.98rem; }
.trustbar__item span { color: var(--muted); font-size: 0.84rem; }

/* --------------------------------------------------------------- Cards / grids */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.card:hover::after { transform: scaleX(1); }
.card__ic {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid var(--border);
  color: var(--gold);
}
.card__ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Service card variant */
.service {
  display: flex; flex-direction: column;
}
.service__tag {
  margin-top: 18px; font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.06em; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.service ul { margin-top: 18px; display: grid; gap: 10px; }
.service ul li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.94rem; }
.service ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* --------------------------------------------------------------- Steps (how it works) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); position: relative; }
.step__n {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 900;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------- Why / feature split */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.numlist { display: grid; gap: 22px; }
.numlist li { display: flex; gap: 20px; }
.numlist .n {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700;
  background: rgba(212,175,55,0.1); border: 1px solid var(--border); color: var(--gold);
}
.numlist h4 { font-size: 1.12rem; margin-bottom: 6px; font-family: var(--serif); }
.numlist p { color: var(--muted); font-size: 0.96rem; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border: 1px solid var(--border-strong); border-radius: 999px;
  font-size: 0.84rem; color: var(--white); background: rgba(212,175,55,0.05);
}
.badge svg { width: 15px; height: 15px; color: var(--gold); }

.showcase-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(43,43,43,0.45), rgba(10,10,10,0.5));
  padding: clamp(28px, 4vw, 46px); box-shadow: var(--shadow-lg);
}
.showcase-card .row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.showcase-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.showcase-card .row:first-child { padding-top: 0; }
.showcase-card .row svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.showcase-card .row b { display: block; margin-bottom: 3px; }
.showcase-card .row span { color: var(--muted); font-size: 0.92rem; }

/* --------------------------------------------------------------- Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; letter-spacing: 0.02em; }

/* --------------------------------------------------------------- Service areas */
.areas__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--panel); font-size: 0.96rem; color: var(--white);
  display: inline-flex; align-items: center; gap: 9px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }
.chip:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(212,175,55,0.06); }

/* --------------------------------------------------------------- Testimonials */
.review {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  padding: 32px 30px; display: flex; flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.review p { color: rgba(250,250,250,0.86); font-size: 1.02rem; font-style: italic; font-family: var(--serif); }
.review__who { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.review__av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; color: #201703;
  background: var(--gold-grad); font-family: var(--serif);
}
.review__who b { display: block; font-size: 0.98rem; }
.review__who span { color: var(--muted); font-size: 0.84rem; }

/* --------------------------------------------------------------- CTA band */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(43,43,43,0.6), rgba(10,10,10,0.7));
  padding: clamp(44px, 6vw, 78px);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212,175,55,0.16), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 18px auto 0; font-size: 1.08rem; }
.cta-band .hero__actions { justify-content: center; }

/* --------------------------------------------------------------- Text/Call button */
.btn--text {
  background: rgba(212, 175, 55, 0.08);
  color: var(--white);
  border-color: var(--border-strong);
}
.btn--text:hover { border-color: var(--gold); background: rgba(212, 175, 55, 0.14); }
.btn--text svg { color: var(--gold); }

/* --------------------------------------------------------------- Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--black);
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track { display: flex; width: max-content; animation: tickerScroll 34s linear infinite; }
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: flex; align-items: center; gap: 34px; padding: 0 17px;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500; white-space: nowrap;
}
.ticker__item b { color: var(--gold); font-weight: 600; }
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; flex: none; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- Hero scroll cue */
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrollCue 2.2s var(--ease) infinite; }
.hero__scroll-txt { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2); }
@keyframes scrollCue { 0% { top: -40%; } 60%,100% { top: 100%; } }

/* --------------------------------------------------------------- Before / After */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.ba {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: var(--panel); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.ba:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.ba__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  --pos: 50%; touch-action: none; cursor: ew-resize; user-select: none;
}
.ba__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--gold);
  transform: translateX(-1px); z-index: 3; pointer-events: none;
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23201703' stroke-width='2.4' stroke-linecap='round'><path d='M9 6l-4 6 4 6M15 6l4 6-4 6'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 22px;
}
.ba__tag {
  position: absolute; top: 12px; z-index: 3; font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(6px); border: 1px solid var(--border);
}
.ba__tag--before { left: 12px; color: var(--muted); }
.ba__tag--after { right: 12px; color: var(--gold); }
.ba__label { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ba__label h3 { font-size: 1.16rem; }
.ba__label span { font-size: 0.82rem; color: var(--muted-2); }

/* --------------------------------------------------------------- Footer */
.footer { background: var(--panel); border-top: 1px solid var(--border); padding: 72px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer__brand img { height: 58px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 0.94rem; max-width: 32ch; }
.footer h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer ul { display: grid; gap: 12px; }
.footer ul a, .footer ul li { color: var(--muted); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer ul a:hover { color: var(--white); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted); transition: all 0.25s var(--ease);
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  color: var(--muted-2); font-size: 0.86rem;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--white); }
.legal {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center;
  gap: 18px; color: var(--muted-2); font-size: 0.86rem;
}
.legal > * { min-width: 0; }
.legal-design { text-align: center; font-size: 0.82rem; white-space: nowrap; }
.legal-design a, .legal-policies a { color: inherit; font-weight: 650; }
.legal-design a:hover, .legal-policies a:hover { color: var(--white); }
.legal-policies { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 8px 20px; text-align: right; }
.legal-policies a { margin: 0; white-space: nowrap; }

/* --------------------------------------------------------------- Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.4s var(--ease) infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* --------------------------------------------------------------- Mobile sticky CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: none; gap: 10px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { flex: 1; padding: 14px; }

/* --------------------------------------------------------------- Cookie banner */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 520px; margin: 0 auto;
  background: var(--panel-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.cookie p a { color: var(--gold); text-decoration: underline; }
.cookie__row { display: flex; gap: 10px; }
.cookie__row .btn { padding: 10px 20px; font-size: 0.88rem; }

/* --------------------------------------------------------------- Scroll reveal */
.rv { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; }
  .page-hero .eyebrow,.page-hero h1,.page-hero p,.prose { animation:none!important;opacity:1!important;transform:none!important; }
  html { scroll-behavior: auto; }
  .wa-float::after { animation: none; }
}

/* --------------------------------------------------------------- Sub-pages (legal + quote) */
.page-hero { padding: clamp(140px, 18vh, 190px) 0 clamp(40px, 6vw, 70px); border-bottom: 1px solid var(--border); position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(800px 400px at 80% -20%, rgba(212,175,55,0.1), transparent 60%), var(--black); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--muted); margin-top: 14px; max-width: 60ch; }
.page-hero .eyebrow { animation: pageRise .6s .04s both; }
.page-hero h1 { animation: pageRise .68s .11s both; }
.page-hero p { animation: pageRise .68s .18s both; }
.prose { animation: pageRise .72s .16s both; }
@keyframes pageRise { from { opacity:0;transform:translateY(14px); } to { opacity:1;transform:none; } }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: rgba(250,250,250,0.78); margin-bottom: 14px; font-size: 1.02rem; }
.prose ul { list-style: none; display: grid; gap: 10px; margin-bottom: 18px; }
.prose ul li { position: relative; padding-left: 24px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose a { color: var(--gold); text-decoration: underline; }
.prose .updated { color: var(--muted-2); font-size: 0.9rem; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .grid--4, .stats, .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn, .nav__phone span { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .grid--3, .grid--2, .steps, .ba-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .sticky-cta { display: flex; }
  .wa-float { bottom: 84px; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .hero__actions .btn { flex: 1; }
  .success .hero__actions { margin-top: 30px; }
}
@media (max-width: 560px) {
  .legal { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .legal-design { white-space: normal; }
  .legal-policies { justify-content: center; gap: 14px; text-align: center; }
  .legal-policies a { margin: 0; }
  .success .hero__actions { flex-direction: column; }
  .success .hero__actions .btn { width: 100%; flex: none; }
  .site-brand strong { font-size:1.08rem; }.site-brand small { letter-spacing:1.8px; }.dedicated-back { font-size:.72rem; }
}
@media (max-width: 460px) {
  .stats, .trustbar__inner, .grid--4 { grid-template-columns: 1fr; }
}
