/* ═══════════════════════════════════════════════
   PROSPEKTRAI — styles.css  v2.0
   Dark industrial. Built for contractors.
═══════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #09090B;
  --bg-card:     #111114;
  --bg-elevated: #18181C;
  --border:      #27272A;
  --border-dim:  #1C1C1F;

  --text:        #FAFAFA;
  --text-dim:    #A1A1AA;
  --text-muted:  #52525B;

  --amber:       #F59E0B;
  --amber-light: #FCD34D;
  --amber-dim:   rgba(245,158,11,0.12);
  --amber-glow:  rgba(245,158,11,0.25);

  --blue:        #3B82F6;
  --blue-light:  #60A5FA;
  --blue-dim:    rgba(59,130,246,0.12);
  --cyan:        #22D3EE;

  --green:       #22C55E;
  --red:         #EF4444;

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-amber: 0 0 40px rgba(245,158,11,0.15);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, button, textarea { font-family: inherit; }

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────── */
.text-amber { color: var(--amber); }
.text-dim   { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }

.text-gradient {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn svg, .btn i { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--amber);
  color: #000;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

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

.btn-lg   { padding: 15px 28px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-loading { opacity: 0.7; pointer-events: none; }

.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ─── Navbar ────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.2s, border-color 0.2s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border-dim);
  background: rgba(9,9,11,0.95);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn { margin-top: 8px; }

/* ─── Section Helpers ───────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── Reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Pulse dot ─────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat + .stat { border-left: 1px solid var(--border); }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--amber);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 120px;
}

/* ─── Ticker ────────────────────────────────── */
#ticker {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}
#ticker::before,
#ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
#ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-card), transparent); }
#ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-card), transparent); }

.ticker-track {
  display: flex;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item strong { color: var(--amber); font-weight: 700; }
.ticker-item i { width: 13px; height: 13px; color: var(--amber); flex-shrink: 0; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Pain Bar ──────────────────────────────── */
#pain-bar { padding: 72px 0; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pain-item {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.pain-item:hover { background: var(--bg-elevated); }
.pain-icon {
  width: 40px; height: 40px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}
.pain-icon i { width: 18px; height: 18px; }
.pain-item h4 { font-size: 0.95rem; font-weight: 700; }
.pain-item p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ─── ROI Calculator ────────────────────────── */
#roi-calc { padding: 80px 0; }

.calc-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.calc-header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--border);
}
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.calc-inputs {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
}
.calc-result-pane {
  padding: 40px 48px;
  background: rgba(245,158,11,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-field { margin-bottom: 32px; }
.calc-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 3px var(--amber-glow);
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--bg-card);
  cursor: pointer;
}

.calc-val-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.calc-current-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 6px;
}

.result-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.result-amount {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.result-annual {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.result-annual strong { color: var(--text); }
.result-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── Meet Vicki ────────────────────────────── */
#meet-vicki { padding: 80px 0; }

.vicki-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.vicki-avatar-wrap {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--amber), #D97706);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; font-weight: 900;
  color: #000;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.3);
}
.vicki-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.vicki-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
}
.vicki-chip i { width: 13px; height: 13px; color: var(--amber); }

/* Demo conversation */
.vicki-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.vicki-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.vicki-demo-av {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), #D97706);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 900; color: #000; flex-shrink: 0;
}
.vicki-demo-info {}
.vicki-demo-name { font-size: 0.88rem; font-weight: 700; }
.vicki-demo-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.73rem; color: var(--green);
}
.vicki-demo-status span {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.vicki-demo-msgs {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dmsg {
  display: flex;
  gap: 8px;
  max-width: 86%;
}
.dmsg.u { align-self: flex-end; flex-direction: row-reverse; }
.dmsg-av {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  align-self: flex-end;
}
.dmsg:not(.u) .dmsg-av { background: linear-gradient(135deg, var(--amber), #D97706); color: #000; }
.dmsg.u .dmsg-av { background: var(--bg-elevated); color: var(--text-dim); }
.dmsg-bubble {
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-dim);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.dmsg:not(.u) .dmsg-bubble { border-bottom-left-radius: 4px; }
.dmsg.u .dmsg-bubble {
  background: var(--amber);
  color: #000; font-weight: 500;
  border: none;
  border-bottom-right-radius: 4px;
}
.dmsg-time { font-size: 0.7rem; color: var(--text-muted); align-self: flex-end; padding: 0 4px; }

/* ─── How It Works ──────────────────────────── */
#how-it-works { padding: 80px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: var(--shadow-amber); }
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.step-icon {
  width: 48px; height: 48px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.step-icon i { width: 22px; height: 22px; }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }

/* ─── Proof ─────────────────────────────────── */
#proof { padding: 80px 0; }

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.proof-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.proof-stat:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-3px); }
.proof-stat-num {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-stat-label {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 6px;
}
.proof-stat-source { font-size: 0.72rem; color: var(--text-muted); }

.proof-quote-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.04), rgba(245,158,11,0.01));
  border: 1px solid rgba(245,158,11,0.15);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.proof-quote-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.proof-quote-cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── Founding Offer ────────────────────────── */
#founding { padding: 80px 0; }

.founding-wrap {
  background: linear-gradient(135deg, rgba(245,158,11,0.07), rgba(245,158,11,0.02));
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.founding-wrap::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.07), transparent 70%);
  pointer-events: none;
}
.founding-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.founding-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.founding-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.founding-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.fp-icon {
  width: 24px; height: 24px;
  background: var(--amber-dim);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  flex-shrink: 0; margin-top: 1px;
}
.fp-icon i { width: 13px; height: 13px; }
.founding-perk strong { color: var(--text); }

.spots-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
}
.spots-num {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.spots-subtitle {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.spots-bar-track {
  background: var(--border);
  border-radius: 99px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.spots-bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 99px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.spots-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ─── Pricing ───────────────────────────────── */
#services { padding: 80px 0; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.card-featured {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(245,158,11,0.07) 0%, var(--bg-card) 60%);
  box-shadow: var(--shadow-amber);
}
.card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.card-icon i { width: 20px; height: 20px; }
.price-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.card-price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.card-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.card-setup { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.card-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 24px; }
.card-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.card-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-dim);
}
.card-features li i { color: var(--green); width: 14px; height: 14px; flex-shrink: 0; }

/* ─── FAQ ───────────────────────────────────── */
#faq { padding: 80px 0; }

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,158,11,0.3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  user-select: none;
}
.faq-q i { width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--amber); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ─── Contact ───────────────────────────────── */
#contact { padding: 80px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.audit-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.audit-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-dim);
}
.audit-perks li i { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }

.audit-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); }
.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group select:focus { border-color: var(--amber); }
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

.form-success {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 36px;
  text-align: center;
}
.form-success.hidden { display: none; }
.success-icon { margin-bottom: 16px; }
.success-icon i { width: 48px; height: 48px; color: var(--green); }
.form-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.form-success p  { font-size: 0.9rem; color: var(--text-dim); }

/* ─── Footer ────────────────────────────────── */
#footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.footer-email { font-size: 0.85rem; color: var(--amber); font-weight: 600; }
.footer-email:hover { text-decoration: underline; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   CHAT WIDGET
═══════════════════════════════════════════════ */
#chat-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#chat-bubble {
  width: 56px; height: 56px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
#chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(245,158,11,0.55); }
#chat-bubble svg { width: 24px; height: 24px; color: #000; }
#bubble-icon, #bubble-close { display: flex; align-items: center; justify-content: center; }

#notification-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 13px; height: 13px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--bg);
}
#notification-dot.hidden { display: none; }

#chat-teaser {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 260px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s;
  line-height: 1.45;
}
#chat-teaser:hover { border-color: var(--amber); }
#chat-teaser.hidden { display: none; }
#teaser-close {
  background: none; border: none;
  color: var(--text-muted); font-size: 1.1rem;
  cursor: pointer; flex-shrink: 0; padding: 0;
  transition: color 0.15s; line-height: 1;
}
#teaser-close:hover { color: var(--text); }

#chat-panel {
  width: 360px; height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
#chat-panel.open { display: flex; }

#chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
#header-left { display: flex; align-items: center; gap: 12px; }
#avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--amber), #D97706);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #000;
}
#header-name { font-size: 0.9rem; font-weight: 700; }
#header-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.73rem; color: var(--green);
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
#header-close {
  background: none; border: none;
  color: var(--text-muted); cursor: pointer;
  padding: 4px; border-radius: 6px;
  transition: color 0.15s;
}
#header-close:hover { color: var(--text); }
#header-close svg { width: 18px; height: 18px; display: block; }

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
#chat-messages::-webkit-scrollbar { width: 4px; }
#chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

.msg { display: flex; gap: 8px; }
.msg.user { flex-direction: row-reverse; }
.msg-avatar {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--amber), #D97706);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900; color: #000;
  flex-shrink: 0; align-self: flex-end;
}
.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.55;
}
.msg.bot .msg-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-dim);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--amber);
  color: #000; font-weight: 500;
  border-bottom-right-radius: 4px;
}
.typing-bubble { display: flex; align-items: center; gap: 4px; padding: 12px 16px; }
.typing-dot {
  width: 6px; height: 6px;
  background: var(--text-muted); border-radius: 50%;
  animation: typing-dot 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%,80%,100% { transform: scale(0.7); opacity: 0.4; }
  40%         { transform: scale(1);   opacity: 1;   }
}

.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 38px; }
.chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--amber); color: var(--amber); }

#success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
#success-overlay.show { display: flex; }
#success-content { text-align: center; padding: 32px; }
#success-check { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--green); }
#success-check svg { width: 100%; height: 100%; }
#success-check circle { stroke: var(--green); stroke-width: 2; fill: none; }
#success-check path { stroke: var(--green); stroke-width: 3; fill: none; stroke-dasharray: 30; stroke-dashoffset: 30; animation: check-draw 0.4s 0.2s ease forwards; }
@keyframes check-draw { to { stroke-dashoffset: 0; } }
#success-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
#success-content p  { font-size: 0.85rem; color: var(--text-dim); }

#chat-input-area {
  display: flex; gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
#chat-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 0.875rem;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
}
#chat-input::placeholder { color: var(--text-muted); }
#chat-input:focus { border-color: var(--amber); }
#chat-input:disabled { opacity: 0.5; }
#send-btn {
  width: 38px; height: 38px;
  background: var(--amber);
  border: none; border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
#send-btn:hover { background: var(--amber-light); }
#send-btn:disabled { opacity: 0.4; cursor: not-allowed; }
#send-btn svg { width: 16px; height: 16px; color: #000; }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .calc-body { grid-template-columns: 1fr; }
  .calc-inputs { border-right: none; border-bottom: 1px solid var(--border); }
  .vicki-grid { grid-template-columns: 1fr; gap: 40px; }
  .founding-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { flex-direction: column; width: 100%; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }

  .steps-grid  { grid-template-columns: 1fr; }
  .cards-grid  { grid-template-columns: 1fr; }
  .faq-list    { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .calc-header, .calc-inputs, .calc-result-pane { padding: 28px 24px; }
  .founding-wrap { padding: 36px 28px; }
}

@media (max-width: 480px) {
  #chat-panel  { width: calc(100vw - 32px); }
  #chat-widget { right: 16px; bottom: 16px; }
}

/* ─── Onepager overrides ────────────────────── */
.op-hero { padding: 80px 0 60px; text-align: center; }
.op-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.03em; }
.op-hero p  { font-size: 1.1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }

.op-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 64px; }
.op-stat { text-align: center; }
.op-stat-num { display: block; font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--amber), var(--amber-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.op-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.op-section { padding: 48px 0; border-top: 1px solid var(--border); }
.op-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }

.op-problem { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 48px; }
.op-problem h2 { color: #f87171; }
.op-problem ul { display: flex; flex-direction: column; gap: 12px; }
.op-problem li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-dim); font-size: 1rem; }
.op-problem li::before { content: "→"; color: #f87171; flex-shrink: 0; font-weight: 700; }

.op-how { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 24px; }
.op-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.op-step-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.3); border-radius: 50%; font-size: 0.85rem; font-weight: 700; color: var(--amber); margin-bottom: 16px; }
.op-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.op-step p  { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

.op-proof { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-top: 24px; }
.op-proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 24px; }
.op-proof-item { text-align: center; padding: 20px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.op-proof-item strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--amber); margin-bottom: 6px; }
.op-proof-item span { font-size: 0.82rem; color: var(--text-muted); }

.op-pricing { margin-top: 24px; }
.op-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.op-plan { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.op-plan.featured { border-color: var(--amber); box-shadow: var(--shadow-amber); }
.op-plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #000; font-size: 0.72rem; font-weight: 800; padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
.op-plan-name { font-size: 1rem; font-weight: 700; color: var(--text-dim); margin-bottom: 8px; }
.op-plan-price { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.op-plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.op-plan-setup { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.op-plan-features { display: flex; flex-direction: column; gap: 10px; }
.op-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-dim); }
.op-plan-features li i { color: var(--green); flex-shrink: 0; width: 15px; height: 15px; }

.op-cta { text-align: center; padding: 60px 0 80px; }
.op-cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.op-cta p  { color: var(--text-dim); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.op-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.op-nav { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.op-nav-logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.op-nav-logo span { color: var(--amber); }
.quote { font-style: italic; color: var(--text-dim); border-left: 3px solid var(--amber); padding-left: 16px; margin: 24px 0; line-height: 1.7; }

@media (max-width: 600px) {
  .op-stats { gap: 28px; }
  .op-cta-buttons { flex-direction: column; align-items: center; }
}

/* ─── Before / After Transformation ────────── */
#transformation { padding: 80px 0; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.ba-col {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ba-before { background: var(--bg-card); }
.ba-after {
  background: linear-gradient(180deg, rgba(34,197,94,0.05), var(--bg-card) 60%);
  border-color: rgba(34,197,94,0.2);
}
.ba-header {
  padding: 14px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.ba-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.ba-badge-red  { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.18); }
.ba-badge-green { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.ba-items {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ba-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ba-icon i { width: 13px; height: 13px; }
.ba-icon-x  { background: rgba(239,68,68,0.1); color: #f87171; }
.ba-icon-ok { background: rgba(34,197,94,0.1); color: var(--green); }
.ba-text { display: flex; flex-direction: column; gap: 2px; }
.ba-text strong { font-size: 0.88rem; font-weight: 700; }
.ba-before .ba-text strong { color: var(--text-dim); }
.ba-after  .ba-text strong { color: var(--text); }
.ba-text span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ─── Mobile: prevent iOS input zoom (font-size < 16px) ── */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  #chat-input { font-size: 16px; }
}

/* ─── Reduced Motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .pulse-dot { animation: none; }
  .status-dot { animation: none; }
  .vicki-demo-status span { animation: none; }
  .typing-dot { animation: none; }
  .spots-bar-fill { transition: none; }
  * { scroll-behavior: auto !important; }
}
