/* ============================================================
   YUMA TINT MASTERS — style.css  (Desert Heat Edition v2)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Syne:wght@700;800&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0c0b09;
  --bg-2:         #111009;
  --bg-3:         #161410;
  --surface:      #1a1814;
  --surface-2:    #201e18;
  --surface-3:    #242118;

  --border:       rgba(255,255,255,0.06);
  --border-warm:  rgba(255,180,0,0.15);
  --border-gold:  rgba(255,180,0,0.35);

  --gold:         #e8a800;
  --gold-bright:  #ffbf00;
  --gold-deep:    #b87e00;
  --gold-glow:    rgba(232,168,0,0.18);
  --gold-subtle:  rgba(232,168,0,0.07);
  --ember:        #c0440a;
  --ember-glow:   rgba(192,68,10,0.2);

  --text:         #f0ead8;
  --text-2:       #a89f88;
  --text-3:       #6b6254;
  --text-inv:     #0c0b09;

  --radius:       6px;
  --radius-lg:    12px;
  --radius-xl:    20px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Familjen Grotesk', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --tr:           0.22s var(--ease);
  --tr-slow:      0.45s var(--ease);

  --max-w:        1240px;
  --nav-h:        68px;

  --shadow-glow:  0 0 60px rgba(232,168,0,0.12), 0 4px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 9999;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--text);
}
h1 { font-size: clamp(3.5rem, 11vw, 9rem); font-weight: 800; }
h2 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }
em { font-style: normal; color: var(--gold); }
a { color: inherit; text-decoration: none; }
p { color: var(--text-2); line-height: 1.75; }

/* ── UTILITIES ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--tr);
}
.btn:hover::before { opacity: 1; }

.btn-lg { padding: 1rem 2.75rem; font-size: .9rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: #080600;
  font-weight: 800;
  box-shadow: 0 2px 20px rgba(232,168,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(232,168,0,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-warm);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.btn-nav {
  background: var(--gold);
  color: #080600;
  font-weight: 800;
  font-size: .8rem;
  padding: .55rem 1.25rem;
  box-shadow: 0 2px 12px rgba(232,168,0,0.25);
}
.btn-nav:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 20px rgba(232,168,0,0.4);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(12,11,9,0.0);
  transition: background var(--tr-slow), border-color var(--tr-slow);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,11,9,0.94);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-mark {
  background: var(--gold);
  color: #080600;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: .28rem .65rem;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(232,168,0,0.3);
}
.logo-text {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-links { display: none; flex: 1; list-style: none; gap: 2.5rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--tr);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: none;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
@media (min-width: 960px) { .nav-actions { display: flex; } }

.nav-phone {
  font-size: .78rem;
  letter-spacing: 0.03em;
  gap: .4rem;
}
.nav-phone svg { flex-shrink: 0; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr), color var(--tr);
}
.mobile-menu a:not(.btn):hover {
  background: var(--surface);
  color: var(--text);
}
.mobile-menu .btn {
  margin: 1rem 1.5rem 1.25rem;
  border-radius: var(--radius);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,68,10,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,168,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,168,0,0.05) 0%, transparent 60%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.1rem;
  background: rgba(232,168,0,0.08);
  border: 1px solid var(--border-warm);
  border-radius: 2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 0.9s var(--ease) both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,168,0,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(232,168,0,0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 0.95;
  color: var(--text);
}

.line-reveal {
  display: block;
  opacity: 0;
  animation: revealLine 0.9s var(--ease) forwards;
}
.line-reveal[style*="--d:0"] { animation-delay: 0.1s; }
.line-reveal[style*="--d:1"] { animation-delay: 0.22s; }
.line-reveal[style*="--d:2"] { animation-delay: 0.34s; }
.line-reveal[style*="--d:3"] { animation-delay: 0.46s; }
.line-reveal[style*="--d:4"] { animation-delay: 0.58s; }
.line-reveal[style*="--d:5"] { animation-delay: 0.7s; }

@keyframes revealLine {
  from { opacity: 0; transform: translateY(28px) skewY(1.5deg); }
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

.accent-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-2);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
@media (max-width: 540px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}
@media (max-width: 540px) {
  .hero-stats { gap: 1.5rem; padding: 1.25rem 1.5rem; }
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-label {
  font-size: .72rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-3);
  font-size: .7rem;
  letter-spacing: 0.15em;
  animation: scrollBounce 3s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.trust-icon {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-divider { display: none; }
  .trust-item { padding: .4rem 1rem; font-size: .78rem; }
}

/* ── TICKER BAR ── */
.ticker-bar {
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-warm);
  padding: .85rem 0;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-bar::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }

.ticker-track {
  display: flex;
  gap: 4rem;
  animation: scroll-ticker 32s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.ticker-track span .ticker-icon {
  margin-right: .3rem;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--bg-2); }

.section-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: .75rem;
  text-transform: uppercase;
}

.section-tag::before {
  content: '—';
  margin-right: .5rem;
  opacity: 0.5;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-top: 1rem;
  line-height: 1.8;
}

/* ── HOW IT WORKS / STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-connector { display: none; }
}

.step-card {
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--tr-slow), box-shadow var(--tr-slow);
  box-shadow: var(--shadow-card);
  animation-delay: var(--delay, 0s);
}
.step-card:hover {
  border-color: var(--border-warm);
  box-shadow: 0 0 40px rgba(232,168,0,0.08), var(--shadow-card);
}
.step-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
}
.step-card p {
  font-size: .9rem;
  line-height: 1.75;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  margin-top: 4rem;
  color: var(--text-3);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.step-connector::before {
  content: '→';
  color: var(--gold-deep);
  opacity: 0.5;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--tr-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: 0;
  transition: opacity var(--tr-slow);
}
.service-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(232,168,0,0.05) 100%);
  box-shadow: 0 0 40px rgba(232,168,0,0.1), var(--shadow-card);
}
.service-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.card-featured-label {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-inv);
  background: var(--gold);
  padding: .3rem .75rem;
  border-radius: 2rem;
  text-transform: uppercase;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.card-icon { font-size: 1.75rem; }
.card-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-3);
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: .6rem;
  color: var(--text);
}
.service-card > p {
  font-size: .92rem;
  margin-bottom: 1.75rem;
  color: var(--text-2);
}

.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li {
  padding: .55rem 0;
  color: var(--text-2);
  font-size: .9rem;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.card-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

/* ── ADD-ONS ── */
.add-ons {
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.addon-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--tr);
  align-items: flex-start;
}
.addon-item:hover {
  border-color: var(--border-warm);
  background: var(--bg-2);
}
.addon-icon { font-size: 1.75rem; flex-shrink: 0; }
.addon-item strong { display: block; margin-bottom: .25rem; color: var(--text); font-weight: 600; }
.addon-item p { font-size: .875rem; color: var(--text-3); margin: 0; }

/* ── BRANDS STRIP ── */
.brands-strip {
  text-align: center;
}
.brands-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.brand-pill {
  padding: .5rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  transition: all var(--tr);
}
.brand-pill:hover {
  border-color: var(--border-warm);
  color: var(--text-2);
}

/* ── VISUALIZER ── */
.viz-wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .viz-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}

.viz-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 968 / 446;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #050404;
  box-shadow: var(--shadow-glow);
  --tint-opacity: 0;
  border: 1px solid var(--border);
}
.viz-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,6,3,var(--tint-opacity));
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 4;
}
.viz-car-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.viz-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 700;
  font-size: .8rem;
  border-radius: 2rem;
  z-index: 10;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.1);
}
.viz-badge-vlt { top: 1rem; left: 1rem; }
.viz-badge-legal {
  top: 1rem; right: 1rem;
  background: rgba(0,50,20,0.85);
  border-color: rgba(0,200,80,0.3);
  color: #4ade80;
}
.viz-badge-illegal {
  top: 1rem; right: 1rem;
  background: rgba(100,30,0,0.85);
  border-color: rgba(232,168,0,0.3);
  color: var(--gold);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }
.badge-dot-sep { opacity: 0.5; }
.badge-name { opacity: 0.75; font-weight: 500; }

.viz-slider-wrapper { margin: 2rem 0; }

.slider-label-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viz-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
.viz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(232,168,0,0.2), 0 2px 8px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all var(--tr);
}
.viz-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(232,168,0,0.15), 0 4px 12px rgba(0,0,0,0.5);
  transform: scale(1.1);
}
.viz-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(232,168,0,0.2);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all var(--tr);
}

.viz-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: .75rem;
}
.viz-tick-btn {
  background: none;
  border: none;
  padding: .25rem .1rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-3);
  cursor: pointer;
  transition: color var(--tr);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}
.viz-tick-btn:hover { color: var(--text-2); }
.viz-tick-btn.active { color: var(--gold); }

.viz-stats-section {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-block {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--tr);
}
.stat-block:hover {
  border-color: var(--border-warm);
  background: var(--surface-2);
}
.stat-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.stat-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-mono);
}
.stat-text { font-size: 1rem; }

.law-note {
  background: rgba(232,168,0,0.05);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 1.1rem;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.law-note strong { color: var(--gold); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--tr-slow), transform var(--tr-slow);
  animation-delay: var(--delay, 0s);
}
.review-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.review-text {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  color: var(--text);
  font-size: .9rem;
}
.review-detail {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: .15rem;
}

.reviews-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.rating-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.rating-stars {
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .2rem;
}
.rating-label {
  font-size: .75rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ── QUOTE ── */
.quote-wrap { max-width: 720px; }

.form-group { margin-bottom: 2.5rem; }

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: .75rem;
}
.option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-body);
}
.option-btn:hover {
  border-color: var(--border-warm);
  background: var(--surface-2);
  color: var(--text);
}
.option-btn.active {
  background: var(--gold);
  color: #080600;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(232,168,0,0.3);
}
.opt-icon { font-size: 1.6rem; }
.opt-sub { font-size: .68rem; opacity: 0.7; }

.quote-result {
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.quote-result::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.result-label {
  font-size: .75rem;
  color: var(--text-3);
  margin-bottom: .5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.result-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: .4rem;
  line-height: 1;
}
.result-note {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.quote-breakdown {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-family: var(--font-mono);
}

/* ── BOOKING FORM ── */
.booking-trust {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  background: var(--surface);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-wrap: wrap;
}
.booking-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  flex: 1;
  min-width: 160px;
  border-right: 1px solid var(--border);
}
.booking-trust-item:last-child { border-right: none; }
.booking-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .booking-trust { flex-direction: column; }
  .booking-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-trust-item:last-child { border-bottom: none; }
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: .6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--surface);
  color: var(--text);
  transition: all var(--tr);
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field select option { background: var(--surface); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,168,0,0.08);
  background: var(--surface-2);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 1rem;
  line-height: 1.6;
}

.booking-wrap {
  max-width: 760px;
}
.booking-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(74,222,128,0.1);
  border: 2px solid rgba(74,222,128,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #4ade80;
  margin: 0 auto 1.5rem;
}
.success-hours {
  font-size: .875rem;
  color: var(--text-3);
  margin: 1rem 0;
}

/* ── FAQ ── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--tr);
  text-align: left;
  font-family: var(--font-body);
  gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--tr);
  color: var(--text-3);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-subtle);
  border-color: var(--border-warm);
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 0 1.5rem; color: var(--text-2); line-height: 1.9; font-size: .95rem; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 5rem clamp(1.25rem, 4vw, 3rem) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.footer-brand > p { color: var(--text-3); margin: 1rem 0 1.5rem; font-size: .9rem; max-width: 300px; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  display: flex;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: all var(--tr);
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #080600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  padding: .35rem 0;
  color: var(--text-3);
  font-size: .875rem;
  transition: color var(--tr);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-3);
}
@media (max-width: 640px) { .footer-bottom { flex-direction: column; text-align: center; } }
.footer-bottom a { color: var(--gold-deep); transition: color var(--tr); }
.footer-bottom a:hover { color: var(--gold); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: #080600;
  border-radius: 100px;
  padding: .8rem 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(232,168,0,0.4);
  transition: all var(--tr);
  z-index: 150;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-body);
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,168,0,0.55);
}
@media (max-width: 480px) {
  .float-cta { bottom: 1rem; right: 1rem; padding: .7rem 1.25rem; }
}

/* ── SCROLL REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
  margin: 0;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section { padding: 4rem 0; }
  .hero-stats { flex-direction: column; gap: 1.25rem; padding: 1.25rem; }
  .stat-divider { width: 60px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .add-ons { padding: 1.75rem; }
  .faq-q { font-size: .95rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta { flex-direction: column; }
}
