:root {
  --bg: #0F0F10;
  --bg-card: #161618;
  --bg-card-hover: #1C1C1F;
  --fg: #F5F0E8;
  --fg-muted: #A09890;
  --accent: #E85D2B;
  --accent-dim: rgba(232, 93, 43, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --positive: #4CAF50;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-30%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(232, 93, 43, 0.08) 0%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}

/* DASHBOARD CARD */
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(232, 93, 43, 0.05), 0 32px 64px rgba(0,0,0,0.4);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1A1A1C;
  border-bottom: 1px solid var(--border);
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot.green { background: #4CAF50; }
.dash-dot.yellow { background: #FF9800; }
.dash-dot.red { background: #F44336; }
.dash-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.metric-box {
  background: var(--bg-card);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  font-family: var(--font-display);
}
.metric-key {
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-clients {
  padding: 8px 0;
}
.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.client-row:hover { background: var(--bg-card-hover); }
.client-row:last-child { border-bottom: none; }
.client-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.client-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.client-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.client-location {
  font-size: 11px;
  color: var(--fg-muted);
}
.client-stars {
  font-size: 11px;
  color: #FFB800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.client-meta {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.client-reviews {
  font-size: 12px;
  color: var(--fg-muted);
  display: block;
}
.client-rate {
  font-size: 11px;
  font-weight: 600;
  display: block;
}
.client-rate.positive { color: var(--positive); }
.dash-footer {
  padding: 10px 16px;
  background: #1A1A1C;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  animation: pulse 2s ease-in-out infinite;
}

/* SECTIONS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
}

/* FUNNEL SECTION */
.funnel {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.funnel-visual {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 360px;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.funnel-step {
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.funnel-step h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.funnel-step p {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.funnel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.funnel-split {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.split-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.path-high { background: rgba(74, 175, 80, 0.05); border-color: rgba(74, 175, 80, 0.15); }
.path-low { background: rgba(232, 93, 43, 0.05); border-color: rgba(232, 93, 43, 0.15); }
.path-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.path-google .path-label { color: #4285F4; }
.path-private .path-label { color: var(--accent); }
.path-action { font-size: 13px; font-weight: 600; color: var(--fg); }
.path-desc { font-size: 11px; color: var(--fg-muted); text-align: center; }

/* FEATURES */
.features {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-main {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card), rgba(232, 93, 43, 0.04));
  border-color: rgba(232, 93, 43, 0.2);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.feature-card:hover {
  border-color: rgba(232, 93, 43, 0.25);
  background: var(--bg-card-hover);
}
.feature-icon-lg {
  margin-bottom: 20px;
}
.feature-icon {
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.feature-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 8px;
  border-radius: 4px;
}

/* AGENCIES */
.agencies {
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agencies h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin: 16px 0;
}
.agencies-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.whitelabel-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wl-icon { flex-shrink: 0; margin-top: 2px; }
.wl-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
}
.wl-item span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* WHITE-LABEL PREVIEW */
.wl-preview {
  background: #1E1E22;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.wl-browser-bar {
  background: #161618;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.wl-dots { display: flex; gap: 5px; }
.wl-dots div { width: 9px; height: 9px; border-radius: 50%; background: #333; }
.wl-url {
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
}
.wl-dashboard { padding: 24px; }
.wl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.wl-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.wl-nav {
  font-size: 11px;
  color: var(--fg-muted);
  display: flex;
  gap: 16px;
}
.wl-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.wl-metric {
  background: #1A1A1C;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wl-mval {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.wl-mkey {
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wl-footer-note {
  font-size: 11px;
  color: var(--positive);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CLOSING */
.closing {
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 93, 43, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.closing-rocket {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing > .closing-inner > p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.cstat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(160, 152, 144, 0.4);
}
.cstat.accent {
  color: var(--accent);
  text-decoration: none;
}
.cstat-divider {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cstat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.closing-tagline {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  font-style: italic;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-builtby {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-builtby a {
  color: var(--accent);
  text-decoration: none;
}
.footer-builtby a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .funnel-visual { grid-template-columns: 1fr; gap: 12px; }
  .funnel-arrow { display: none; }
  .funnel-split { grid-row: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: span 1; }
  .agencies { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .funnel, .features, .agencies, .closing { padding-left: 20px; padding-right: 20px; }
  .closing-stats { flex-direction: column; }
}