:root {
  --bg: #08070a;
  --bg-alt: #0e0d11;
  --surface: #17151a;
  --surface-2: #201d24;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);
  --ink: #f6f4f2;
  --muted: #a29da8;
  --accent: #ff5a1f;
  --accent-light: #ff9152;
  --accent-2: #ffb020;
  --accent-hover: #ff7439;
  --accent-glow: rgba(255, 90, 31, 0.45);
  --radius: 18px;
  --shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.7);
  --glass-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  --glass-bg-hover: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 48px -24px rgba(0, 0, 0, 0.7);
  --font-head: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  z-index: 200;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }
input, select, textarea { accent-color: var(--accent); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.text-accent {
  background: linear-gradient(100deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow, .eyebrow-light {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #140904;
  box-shadow: 0 10px 26px -10px var(--accent-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px var(--accent-glow);
}
.btn-secondary { background: var(--surface-2); color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-light); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.22); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-light); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 5, 7, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.logo em { font-style: normal; color: var(--accent); }
.main-nav { display: flex; gap: 30px; }
.main-nav a { position: relative; font-weight: 600; font-size: 0.95rem; color: var(--ink); padding: 6px 0; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent-light); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  padding: 120px 0 90px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero::before {
  width: 620px; height: 620px;
  top: -260px; right: -180px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.32), transparent 70%);
}
.hero::after {
  width: 480px; height: 480px;
  bottom: -260px; left: -160px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.16), transparent 70%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 145, 82, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 145, 82, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at top, black 10%, transparent 70%);
}
.hero-inner { position: relative; max-width: 780px; }
.hero h1 { color: var(--ink); margin-bottom: 22px; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-badges { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong { font-family: var(--font-head); font-size: 1.9rem; color: var(--accent-light); }
.hero-badge span { font-size: 0.85rem; color: var(--muted); max-width: 160px; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero-inner { position: relative; max-width: none; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.dash-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--glass-shadow), 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  animation: float-y 6s ease-in-out infinite;
}
.dash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.dash-card-head { position: relative; display: flex; align-items: center; gap: 8px; padding: 14px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); }
.dash-card-head span { width: 9px; height: 9px; border-radius: 50%; background: #423d47; }
.dash-card-title { flex: 1; min-width: 0; margin-left: 6px; font-size: 0.72rem; color: var(--muted); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-card-body { position: relative; padding: 22px; }
.dash-stat-row { display: flex; justify-content: space-between; margin-bottom: 22px; }
.dash-stat { display: flex; flex-direction: column; }
.dash-stat strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dash-stat span { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 110px; }
.dash-bar { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--accent-light), var(--accent)); border-radius: 4px 4px 0 0; }
.dash-pin { position: relative; display: flex; align-items: center; gap: 6px; padding: 12px 22px; border-top: 1px solid var(--border); font-size: 0.78rem; font-weight: 600; color: var(--accent-light); background: rgba(255, 90, 31, 0.06); }
.dash-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--glass-shadow);
  animation: float-y 5s ease-in-out infinite;
  white-space: nowrap;
}
.dash-badge-1 { top: -18px; right: 10px; animation-delay: 0.4s; }
.dash-badge-2 { bottom: -16px; left: 10px; animation-delay: 1.2s; }

@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Marquee strip */
.marquee-strip { position: relative; background: #000; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; }
.marquee-strip::before, .marquee-strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(270deg, #000, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee-x 32s linear infinite; }
.marquee-group { display: flex; gap: 52px; padding-right: 52px; flex-shrink: 0; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 0.98rem; white-space: nowrap; }
.marquee-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* Ticker (dual-row marquee) */
.ticker-stack { display: flex; flex-direction: column; gap: 16px; }
.ticker-row { overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: marquee-x 26s linear infinite; }
.ticker-row.ticker-reverse .ticker-track { animation-name: marquee-x-reverse; animation-duration: 30s; }
@keyframes marquee-x-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.ticker-group { display: flex; gap: 16px; padding-right: 16px; flex-shrink: 0; }
.ticker-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  padding: 14px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ticker-row:hover .ticker-track { animation-play-state: paused; }

/* Sections */
.section { padding: 90px 0; background: var(--bg); border-top: 1px solid rgba(255,255,255,0.05); }
.section-alt, .section-form { position: relative; background: var(--bg-alt); overflow: hidden; }
.section-alt::before, .section-form::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  top: -300px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.14), transparent 70%);
  pointer-events: none;
}
.section-alt .wrap, .section-form .wrap { position: relative; }
.section-dark { background: #000; }
.section-dark p { color: var(--muted); }
.section-dark h2 { color: var(--ink); }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-lead { font-size: 1.08rem; }
.center-copy { max-width: 680px; margin: 0 auto; text-align: center; }
.center-cta { text-align: center; margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.two-col-reverse { grid-template-columns: 1fr 1fr; }

/* Stat cards */
.stat-stack { display: flex; flex-direction: column; gap: 22px; }
.stat-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent);
  pointer-events: none;
}
.stat-card:hover { border-color: rgba(255, 90, 31, 0.4); transform: translateY(-3px); background: var(--glass-bg-hover); }
.stat-card h3 { color: var(--ink); margin-bottom: 10px; position: relative; }
.stat-card p { margin: 0; position: relative; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.feature-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), transparent);
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.4);
  background: var(--glass-bg-hover);
  box-shadow: var(--glass-shadow), 0 20px 40px -24px var(--accent-glow);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.28), rgba(255, 176, 32, 0.12));
  border: 1px solid rgba(255, 90, 31, 0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--accent-light); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; position: relative; }
.feature-card p { margin: 0; font-size: 0.95rem; position: relative; }

/* Process */
.process-list { display: flex; flex-direction: column; gap: 30px; max-width: 820px; margin: 0 auto; }
.process-step {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.process-step:hover { border-color: rgba(255, 90, 31, 0.35); transform: translateY(-2px); background: var(--glass-bg-hover); }
.process-number {
  position: relative;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 60px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-content { position: relative; }
.process-content h3 { margin-bottom: 8px; }
.process-content p { margin: 0; }

/* No more list */
.strike { color: var(--accent-light); text-decoration: line-through; text-decoration-color: rgba(255, 90, 31, 0.6); margin-right: 6px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}
.faq-item[open] { border-color: rgba(255, 90, 31, 0.35); background: var(--glass-bg-hover); }
.faq-item summary { position: relative; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 1rem;
  color: var(--accent-light);
  transition: all 0.2s ease;
}
.faq-item[open] summary::after { content: '\2212'; background: var(--accent); color: #140904; border-color: var(--accent); }
.faq-item p { margin-top: 14px; margin-bottom: 0; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.checklist li { padding-left: 28px; position: relative; font-weight: 600; color: var(--ink); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-light); font-weight: 700; }

/* Fit (qualify / disqualify) */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 980px; margin: 0 auto; }
.fit-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
.fit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.fit-card h3 { position: relative; margin-bottom: 18px; }
.fit-yes { border: 1px solid rgba(255, 90, 31, 0.3); }
.fit-yes h3 { color: var(--accent-light); }
.fit-no { border: 1px solid rgba(239, 68, 68, 0.28); }
.fit-no h3 { color: #f87171; }
.fit-list { position: relative; display: flex; flex-direction: column; gap: 14px; }
.fit-list li { padding-left: 30px; position: relative; font-size: 0.98rem; color: var(--ink); }
.fit-yes .fit-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent-light); font-weight: 700; }
.fit-no .fit-list li::before { content: '✕'; position: absolute; left: 0; top: 0; color: #f87171; font-weight: 700; }

/* Lead form */
.lead-form-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), transparent);
  pointer-events: none;
}
.lead-form-card > * { position: relative; }
.lead-form-card h3 { margin-bottom: 8px; }
.lead-form-sub { font-size: 0.92rem; margin-bottom: 24px; }
.form-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem; font-weight: 600; }
.form-alert-error { background: rgba(239, 68, 68, 0.14); color: #ff8b83; border: 1px solid rgba(239, 68, 68, 0.35); }
.cf-turnstile { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink); }
.form-field label span { color: var(--accent-light); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-alt);
  color: var(--ink);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #6b6672; }
.form-field select { color-scheme: dark; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-top: 8px; }
.checkbox-item { display: flex; align-items: flex-start; gap: 8px; font-weight: 500; font-size: 0.88rem; color: var(--ink); cursor: pointer; }
.checkbox-item input { width: auto; margin-top: 3px; }
.form-disclaimer { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* Page hero (secondary pages) */
.page-hero { position: relative; background: #000; color: var(--ink); padding: 90px 0 70px; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -240px; right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.28), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .hero-sub { color: var(--muted); max-width: 640px; }

/* Services page */
.service-block { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-light); font-weight: 700; }

.service-visual { display: flex; justify-content: center; }
.mock-card, .mock-browser {
  position: relative;
  overflow: hidden;
  width: 100%; max-width: 360px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
.mock-card::before, .mock-browser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.mock-card > * { position: relative; }
.mock-line { height: 12px; background: rgba(255,255,255,0.09); border-radius: 6px; margin-bottom: 12px; }
.mock-line-title { width: 70%; height: 18px; }
.mock-line.short { width: 45%; }
.mock-stars { color: var(--accent-light); font-weight: 700; margin-bottom: 14px; }
.mock-stars span { color: var(--muted); font-weight: 500; font-size: 0.85rem; margin-left: 8px; }
.mock-pill { display: inline-block; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #140904; font-weight: 700; font-size: 0.85rem; padding: 8px 16px; border-radius: 999px; margin-top: 6px; }
.mock-browser { padding: 0; overflow: hidden; }
.mock-browser-bar { position: relative; display: flex; gap: 6px; padding: 12px 14px; background: rgba(255,255,255,0.05); }
.mock-browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #423d47; }
.mock-browser-body { position: relative; padding: 24px; }
.mock-chart { display: flex; align-items: flex-end; gap: 10px; height: 100px; margin-bottom: 14px; }
.mock-bar { flex: 1; background: linear-gradient(180deg, var(--accent-light), var(--accent)); border-radius: 4px 4px 0 0; }

/* Timeline (results page) */
.timeline { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border); padding-left: 32px; }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent), 0 0 16px 2px var(--accent-glow);
}
.timeline-marker { font-family: var(--font-head); font-weight: 700; color: var(--accent-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.timeline-content h3 { margin-bottom: 8px; }
.timeline-content p { margin: 0; }

/* Service areas table */
.table-wrap {
  overflow: hidden;
  overflow-x: auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
.areas-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--glass-bg); }
.areas-table th, .areas-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.areas-table th { font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: rgba(255,255,255,0.04); }
.areas-table tr:last-child td { border-bottom: none; }
.status-pill { display: inline-block; padding: 5px 14px; border-radius: 999px; font-weight: 700; font-size: 0.8rem; }
.status-open { background: rgba(34, 197, 94, 0.16); color: #4ade80; }
.status-claimed { background: rgba(239, 68, 68, 0.16); color: #f87171; }

/* Contact page */
.contact-details { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 26px; }
.contact-details strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 2px; }
.contact-details a { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.contact-details a:hover { color: var(--accent-light); }

/* Thank you */
.thank-you-section { padding: 120px 0; background: var(--bg); }
.thank-you-mark { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--accent)); color: #140904; font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 16px 34px -10px var(--accent-glow); }

/* Footer */
.site-footer { background: #000; color: var(--muted); padding: 70px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--border); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 0.92rem; color: var(--muted); }
.footer-col a:hover { color: var(--accent-light); }
.footer-col a.footer-cta, .footer-col a.footer-cta:hover { color: #140904; }
.footer-brand p { font-size: 0.92rem; margin: 14px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--muted);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent-light); background: var(--glass-bg-hover); }
.footer-cta { align-self: flex-start; margin-top: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer-fine { color: #57525d; margin: 0; }

/* Responsive */
.nav-cta { display: none; }

@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .two-col, .two-col-reverse, .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }

  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .site-header.nav-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a::after { display: none; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: block; margin-top: 14px; text-align: center; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; }
  .hero { padding: 90px 0 60px; }
  .section { padding: 64px 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: 20px; }
  .dash-badge-2 { left: 0; }
}

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="1"] { transition-delay: 0.05s; }
[data-reveal="2"] { transition-delay: 0.12s; }
[data-reveal="3"] { transition-delay: 0.19s; }
[data-reveal="4"] { transition-delay: 0.26s; }
[data-reveal="5"] { transition-delay: 0.33s; }
[data-reveal="6"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .ticker-track, .dash-card, .dash-badge { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
