/* ===== Tokens ===== */
:root {
  --background: #0F1115;
  --foreground: #F1F5F9;
  --surface: #181B22;
  --surface-elev: #1F232C;
  --card: #181B22;
  --muted: #1A1E26;
  --muted-fg: #9aa3b2;
  --border: rgba(120, 130, 150, 0.22);
  --primary: #FF5F05;
  --primary-2: #FF7A2A;
  --primary-fg: #0a0a0a;
  --accent: #E63946;
  --success: #22c55e;

  --gradient-primary: linear-gradient(135deg, #FF5F05 0%, #E63946 100%);
  --gradient-hero: radial-gradient(ellipse at top, rgba(255,95,5,0.18) 0%, transparent 60%), linear-gradient(180deg, #0F1115 0%, #07080B 100%);
  --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 60px -10px rgba(255,95,5,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.1; font-weight: 800; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 4rem; } }

.section { padding: 6rem 0; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }
.section-alt { background: rgba(24,27,34,0.4); }

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.eyebrow { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.section-head h2 { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } }
.muted { color: var(--muted-fg); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding: 0 1.5rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-hero {
  background: var(--gradient-primary); color: var(--primary-fg);
  box-shadow: var(--shadow-glow);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 0 80px -10px rgba(255,95,5,0.8); }
.btn-sos {
  background: rgba(230,57,70,0.12); color: #ff8a93;
  border: 1px solid rgba(230,57,70,0.4);
}
.btn-sos:hover { background: rgba(230,57,70,0.2); border-color: var(--accent); }
.btn-emergency {
  background: #fff; color: var(--accent);
  height: 3.5rem; padding: 0 2rem; font-size: 1rem;
}
.btn-emergency:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
@media (min-width: 640px) {
  .btn { height: 3.5rem; padding: 0 2.25rem; font-size: 1rem; }
}

.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,95,5,0.6); }
  50% { box-shadow: 0 0 0 16px rgba(255,95,5,0); }
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s;
}
.header.scrolled {
  background: rgba(15,17,21,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .header-inner { height: 5rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  display: grid; place-items: center; height: 2.25rem; width: 2.25rem;
  border-radius: 0.5rem; background: var(--gradient-primary);
  box-shadow: var(--shadow-glow); color: var(--primary-fg);
}
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1; font-size: 1.1rem; }
.logo-sub { display: block; font-size: 0.625rem; font-weight: 500; color: var(--muted-fg); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.2rem; }

.nav-desktop { display: none; gap: 2rem; }
.nav-desktop a { font-size: 0.9rem; font-weight: 500; color: var(--muted-fg); transition: color 0.2s; position: relative; }
.nav-desktop a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--primary); transition: width 0.3s; }
.nav-desktop a:hover { color: var(--foreground); }
.nav-desktop a:hover::after { width: 100%; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.header-right { display: none; align-items: center; gap: 1.25rem; }
@media (min-width: 768px) { .header-right { display: flex; } }
.status-indicator { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-fg); }
.status-em { color: var(--foreground); font-weight: 500; }
.dot { display: inline-block; width: 0.625rem; height: 0.625rem; border-radius: 9999px; }
.dot-success { background: var(--success); animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); }
.header-phone:hover { opacity: 0.85; }

.menu-btn { display: grid; place-items: center; padding: 0.5rem; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.nav-mobile { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 1rem; border-top: 1px solid var(--border); background: rgba(15,17,21,0.95); backdrop-filter: blur(16px); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-weight: 500; }
.nav-mobile-phone { color: var(--primary); font-weight: 700; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  padding-top: 6rem; overflow: hidden; background: var(--gradient-hero);
}
@media (min-width: 1024px) { .hero { min-height: 100vh; padding-top: 5rem; } }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { height: 100%; width: 100%; object-fit: cover; opacity: 0.7; }
@media (min-width: 1024px) { .hero-bg img { opacity: 0.6; } }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), rgba(15,17,21,0.55) 50%, rgba(15,17,21,0.2)); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,17,21,0.85), rgba(15,17,21,0.3) 50%, transparent); }
.hero-inner { position: relative; padding: 3rem 1rem; max-width: 1280px; }
@media (min-width: 1024px) { .hero-inner { padding: 7rem 4rem; } }

.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.8rem; border-radius: 9999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.7rem; color: var(--muted-fg); margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .badge-pill { font-size: 0.75rem; } }

.hero h1 { font-size: 2rem; line-height: 1.05; margin-bottom: 1.25rem; max-width: 900px; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

.hero-lead { font-size: 1rem; color: var(--muted-fg); max-width: 36rem; margin-bottom: 2rem; line-height: 1.7; }
@media (min-width: 1024px) { .hero-lead { font-size: 1.25rem; } }

.hero-cta { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-cta .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; gap: 1rem; }
  .hero-cta .btn { width: auto; }
}

.hero-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-width: 42rem; }
@media (min-width: 640px) { .hero-badges { gap: 1rem; } }
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem; border-radius: 0.75rem;
  background: rgba(24,27,34,0.6); border: 1px solid var(--border);
  backdrop-filter: blur(8px); min-width: 0;
}
.hero-badge svg { color: var(--primary); flex-shrink: 0; width: 16px; height: 16px; }
.hero-badge span { font-size: 0.6875rem; font-weight: 500; line-height: 1.2; }
@media (min-width: 640px) {
  .hero-badge { padding: 0.75rem; gap: 0.75rem; }
  .hero-badge svg { width: 20px; height: 20px; }
  .hero-badge span { font-size: 0.875rem; }
}

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.svc-card {
  position: relative; overflow: hidden; border-radius: 1rem;
  border: 1px solid var(--border);
  min-height: 280px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.3s, border-color 0.3s;
}
@media (min-width: 1024px) { .svc-card { min-height: 340px; padding: 2rem; } }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,95,5,0.4); }
.svc-card.span2 { grid-column: span 1; }
@media (min-width: 768px) { .svc-card.span2 { grid-column: span 2; } }
.svc-card.highlight { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.svc-card .bg {
  position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.svc-card:hover .bg { transform: scale(1.1); }
.svc-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,17,21,0.95), rgba(15,17,21,0.7) 50%, rgba(15,17,21,0.2));
}
.svc-card.highlight .overlay {
  background: linear-gradient(to top, rgba(230,57,70,0.85), rgba(230,57,70,0.55) 50%, rgba(15,17,21,0.3));
}
.svc-top {
  position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.svc-icon {
  display: grid; place-items: center; height: 3rem; width: 3rem;
  border-radius: 0.75rem; backdrop-filter: blur(8px);
  background: rgba(15,17,21,0.6); border: 1px solid var(--border);
  color: var(--primary);
}
.svc-card.highlight .svc-icon { background: rgba(15,17,21,0.2); border-color: rgba(255,255,255,0.2); color: #fff; }
.svc-arrow { color: rgba(241,245,249,0.8); transition: transform 0.3s; }
.svc-card.highlight .svc-arrow { color: #fff; }
.svc-card:hover .svc-arrow { transform: translate(4px, -4px); }
.svc-content { position: relative; }
.svc-content h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .svc-content h3 { font-size: 1.5rem; } }
.svc-card.highlight .svc-content h3, .svc-card.highlight .svc-content p { color: #fff; }
.svc-content p { font-size: 0.875rem; color: rgba(241,245,249,0.75); line-height: 1.6; }
@media (min-width: 1024px) { .svc-content p { font-size: 1rem; } }

/* ===== Tabs / Compare ===== */
.tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab-btn {
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted-fg); font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--foreground); border-color: rgba(255,95,5,0.4); }
.tab-btn.is-active { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }

.compare-wrap {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.compare {
  position: relative; width: 100%; height: min(60vh, 600px);
  user-select: none; touch-action: none;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare-after { z-index: 1; }
.compare-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; z-index: 2; }
.compare-before { width: 200%; max-width: none; }
.compare-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff; z-index: 3;
  transform: translateX(-50%); cursor: ew-resize;
}
.compare-handle {
  position: absolute; top: 50%; left: 50%;
  width: 40px; height: 40px; border-radius: 9999px;
  background: #fff; color: #000;
  display: grid; place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.compare-label {
  position: absolute; top: 1rem; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; z-index: 4;
}
.compare-label-before { left: 1rem; background: rgba(15,17,21,0.8); backdrop-filter: blur(8px); }
.compare-label-after { right: 1rem; background: var(--primary); color: var(--primary-fg); }

/* ===== SOS ===== */
.sos-card {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  padding: 2rem 1.5rem; color: #fff; box-shadow: var(--shadow-glow);
}
@media (min-width: 1024px) { .sos-card { padding: 4rem; } }
.sos-bg { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.sos-overlay-1 { position: absolute; inset: 0; background: var(--gradient-primary); opacity: 0.9; mix-blend-mode: multiply; }
.sos-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,17,21,0.4), transparent 50%, rgba(15,17,21,0.2)); }
.sos-blob { position: absolute; border-radius: 9999px; filter: blur(64px); }
.sos-blob-1 { top: -6rem; right: -6rem; width: 18rem; height: 18rem; background: rgba(255,255,255,0.1); }
.sos-blob-2 { bottom: -8rem; left: -5rem; width: 20rem; height: 20rem; background: rgba(0,0,0,0.2); }
.sos-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .sos-grid { grid-template-columns: 1fr 1fr; } }
.sos-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.8rem; border-radius: 9999px;
  background: rgba(0,0,0,0.2); backdrop-filter: blur(8px);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.sos-title { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .sos-title { font-size: 3.75rem; } }
.dim { color: rgba(255,255,255,0.85); }
.sos-lead { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 28rem; }

.coverage {
  border-radius: 1rem; background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem;
}
.coverage-head { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.coverage-map { width: 100%; height: auto; }
.coverage-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1rem; }
.coverage-cities div { text-align: center; font-size: 0.75rem; font-weight: 500; padding: 0.5rem; border-radius: 0.5rem; background: rgba(255,255,255,0.1); }

/* ===== Trust ===== */
.stats-card { position: relative; overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); margin-bottom: 5rem; }
.stats-bg { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.stats-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), rgba(15,17,21,0.8) 50%, rgba(15,17,21,0.4)); }
.stats-grid { position: relative; display: grid; gap: 1.5rem; padding: 1.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); padding: 2.5rem; } }
.stat {
  padding: 2rem; border-radius: 1rem;
  background: rgba(15,17,21,0.6); backdrop-filter: blur(8px);
  border: 1px solid var(--border); text-align: center;
}
.stat-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 3rem; }
@media (min-width: 1024px) { .stat-value { font-size: 3.75rem; } }
.stat p { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.75rem; }

.reviews-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: 1.5rem; border-radius: 1rem;
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.review-stars { color: var(--primary); display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.review-stars svg { fill: currentColor; }
.review blockquote { color: rgba(241,245,249,0.9); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.review-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.review-name { font-weight: 600; font-size: 0.875rem; }
.review-car { font-size: 0.75rem; color: var(--muted-fg); }
.review-source { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--success); font-weight: 500; }

.marquee-wrap { margin-top: 5rem; overflow: hidden; position: relative; }
.marquee-fade { position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 10; pointer-events: none; }
.marquee-fade-l { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.marquee {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee span { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: rgba(154,163,178,0.5); letter-spacing: 0.18em; }
@media (min-width: 1024px) { .marquee span { font-size: 1.875rem; } }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: rgba(24,27,34,0.4); }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 1rem; }
@media (min-width: 768px) { .footer-grid { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; padding: 5rem 4rem; } }
.footer-logo { margin-bottom: 1.5rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-list svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-list a:hover { color: var(--primary); }

.socials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.social-icon {
  display: grid; place-items: center; height: 2.75rem; width: 2.75rem;
  border-radius: 0.75rem; background: var(--surface); border: 1px solid var(--border);
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--primary); color: var(--primary); }
.social-max { width: auto; padding: 0 1rem; gap: 0.5rem; display: inline-flex; align-items: center; font-size: 0.875rem; font-weight: 600; }
.max-letter { font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--primary); }

.map-wrap { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); height: 320px; background: var(--surface); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(40%); }

.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.5rem 1rem; font-size: 0.75rem; color: var(--muted-fg); }
.footer-bottom-inner a:hover { color: var(--foreground); }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }

/* ===== Floating widgets ===== */
.floating-mobile { position: fixed; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; z-index: 40; }
@media (min-width: 640px) { .floating-mobile { display: none; } }
.floating-mobile-inner {
  display: flex; align-items: stretch; gap: 0.5rem;
  border-radius: 1rem; background: rgba(24,27,34,0.95);
  backdrop-filter: blur(16px); border: 1px solid var(--border);
  padding: 0.5rem; box-shadow: var(--shadow-card);
}
.fm-phone {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; border-radius: 0.75rem; background: var(--surface);
  border: 1px solid var(--border); font-weight: 600; font-size: 0.875rem;
}
.fm-phone svg { color: var(--primary); }
.fm-wa, .fm-max {
  display: grid; place-items: center; height: 3rem; width: 3rem; border-radius: 0.75rem;
}
.fm-wa { background: rgba(34,197,94,0.15); color: var(--success); border: 1px solid rgba(34,197,94,0.3); }
.fm-max { background: rgba(255,95,5,0.15); color: var(--primary); border: 1px solid rgba(255,95,5,0.3); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem; }

.floating-wa {
  display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  height: 3.5rem; width: 3.5rem; border-radius: 9999px;
  background: var(--success); color: var(--background);
  place-items: center; box-shadow: var(--shadow-card); transition: transform 0.2s;
}
@media (min-width: 640px) { .floating-wa { display: grid; } }
.floating-wa:hover { transform: scale(1.1); }

.floating-urgency {
  display: none; position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 40; max-width: 280px;
  border-radius: 1rem; background: rgba(24,27,34,0.9); backdrop-filter: blur(16px);
  border: 1px solid var(--border); padding: 1rem; box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .floating-urgency { display: block; } }
.fu-head { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.floating-urgency p { font-size: 0.875rem; }
.floating-urgency strong { color: var(--primary); }

/* ===== Dialog ===== */
.dialog-backdrop {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  padding: 1rem; animation: fadeIn 0.2s;
}
.dialog-backdrop[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.dialog {
  position: relative; max-width: 32rem; width: 100%;
  border-radius: 1rem; background: var(--card); border: 1px solid var(--border);
  overflow: hidden;
}
.dialog-center { text-align: center; padding: 2.5rem; }
.dialog-center h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dialog-center p { color: var(--muted-fg); margin-bottom: 1.5rem; }
.exit-emoji { font-size: 3rem; margin-bottom: 0.75rem; }
.dialog-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  color: var(--muted-fg);
}
.dialog-close:hover { color: var(--foreground); }
.dialog-progress { height: 4px; background: var(--surface); }
.dialog-progress-bar { height: 100%; background: var(--gradient-primary); transition: width 0.3s; width: 33%; }
.dialog-body { padding: 1.5rem; }
@media (min-width: 1024px) { .dialog-body { padding: 2rem; } }
.dialog-step-head { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.dialog-discount { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); font-weight: 600; }
.dialog-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.problem-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1.25rem; border-radius: 0.75rem;
  border: 1px solid var(--border); background: var(--surface);
  font-weight: 600; transition: all 0.2s;
}
.problem-btn:hover { border-color: rgba(255,95,5,0.4); }
.problem-btn svg { color: var(--primary); }
.input {
  width: 100%; height: 3rem; padding: 0 1rem;
  border-radius: 0.5rem; background: var(--surface); border: 1px solid var(--border);
  color: var(--foreground); font-size: 1rem; font-family: inherit;
}
.input:focus { outline: 2px solid var(--primary); outline-offset: -1px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.brand-chip { font-size: 0.75rem; padding: 0.4rem 0.75rem; border-radius: 9999px; background: var(--muted); }
.brand-chip:hover { background: var(--surface-elev); }
.dialog-back { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.dialog-back:hover { color: var(--foreground); }
.success-icon {
  margin: 0 auto 1.25rem; height: 4rem; width: 4rem;
  border-radius: 9999px; background: rgba(34,197,94,0.15); color: var(--success);
  display: grid; place-items: center;
}
.terms { font-size: 0.6875rem; color: var(--muted-fg); margin-top: 0.75rem; text-align: center; }
