/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --bg: #0d1b2a;
  --bg-alt: #112235;
  --bg-card: #162841;
  --fg: #f0ede8;
  --fg-muted: #8a9bb5;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255,255,255,0.07);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --max-w: 1100px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0d1b2a;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* =====================
   HEADER
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg);
}
.logo svg rect { transition: transform 0.2s; }
.logo:hover svg rect { transform: scale(1.05); }
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 0.9rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* =====================
   HERO
   ===================== */
.hero {
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* =====================
   WIDGET CARD
   ===================== */
.widget-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.widget-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
.status-dot.live { animation: pulse 2s infinite; }
.widget-time { font-size: 0.78rem; color: var(--fg-muted); }
.widget-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-number { display: block; font-size: 0.7rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.call-name { display: block; font-size: 0.88rem; font-weight: 500; }
.call-actions { display: flex; gap: 6px; }
.action-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}
.action-chip.accept { background: rgba(34,197,94,0.15); color: #22c55e; }
.action-chip.decline { background: rgba(239,68,68,0.1); color: #ef4444; }

/* transcript */
.widget-transcript { margin-bottom: 12px; }
.transcript-label { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.transcript-bubble {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  margin-bottom: 6px;
  line-height: 1.5;
  max-width: 85%;
}
.transcript-bubble.customer { background: var(--bg); border-bottom-left-radius: 4px; }
.transcript-bubble.ai { background: rgba(245,158,11,0.15); border-bottom-right-radius: 4px; margin-left: auto; }
.widget-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
}
.tag-accept { background: rgba(34,197,94,0.15); color: #22c55e; }
.tag-book { background: rgba(59,130,246,0.15); color: #60a5fa; }

/* =====================
   STATS ROW
   ===================== */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.78rem; color: var(--fg-muted); }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =====================
   PROBLEM
   ===================== */
.problem-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
}
.problem-heading h2 {
  position: sticky;
  top: 80px;
  color: var(--fg);
}
.problem-list { display: flex; flex-direction: column; gap: 28px; }
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.problem-item strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.problem-item p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }
.problem-outro {
  text-align: center;
  font-size: 1.05rem;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-style: italic;
  padding: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   SECTION COMMON
   ===================== */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading { color: var(--fg); margin-bottom: 12px; }
.section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* =====================
   FEATURES
   ===================== */
.features-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-card h3 {
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card > p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* callout */
.features-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.callout-label { font-size: 0.85rem; color: var(--fg-muted); }
.callout-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.callout-price span { font-size: 1rem; color: var(--fg-muted); font-family: var(--font-body); font-weight: 400; }
.callout-detail { font-size: 0.88rem; color: var(--fg-muted); }

/* =====================
   PROCESS
   ===================== */
.process-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}
.process-step {
  flex: 1;
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 { color: var(--fg); margin-bottom: 8px; }
.step-content p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }
.process-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  align-self: center;
  flex-shrink: 0;
  margin: 0 -4px;
}
.process-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 100px;
  padding: 10px 24px;
  display: inline-block;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 2px; }
.testimonial-author { margin-bottom: 16px; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--fg-muted); }
.testimonial-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.metric-label { font-size: 0.8rem; color: var(--fg-muted); }

/* =====================
   CLOSING
   ===================== */
.closing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner h2 { color: var(--fg); margin-bottom: 24px; }
.closing-inner p { color: var(--fg-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.closing-cta { margin-top: 36px; }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--fg-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-top: 24px;
}

/* =====================
   EMAIL SEQUENCE
   ===================== */
.email-sequence-hero {
  padding: 80px 0 60px;
}
.email-sequence-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}
.email-sequence-hero h1 {
  margin-bottom: 20px;
  color: var(--fg);
}
.email-sequence-hero .hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}
.email-sequence-hero .hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.email-sequence-section {
  padding: 60px 0 80px;
  border-top: 1px solid var(--border);
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.email-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.email-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.email-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
}

.email-subject {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.email-preheader {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

.email-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  white-space: pre-line;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.email-card-footer {
  display: flex;
  justify-content: flex-end;
}

.email-cta {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* =====================
   GTM BRIEF
   ===================== */
.brief-persona-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.persona-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 16px;
}

.persona-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.persona-card > p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.persona-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.persona-attr {
  padding: 5px 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.brief-stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.brief-stats-section .section-label {
  margin-bottom: 20px;
}

/* =====================
   VALUE PROPOSITION
   ===================== */
.value-prop-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.value-props-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-prop-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.value-prop-claim {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.value-prop-proof {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* =====================
   COMPETITIVE DIFFERENTIATION
   ===================== */
.competitive-diff-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.diff-table {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
}

.diff-header,
.diff-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr 1.5fr 1.2fr;
  gap: 0;
}

.diff-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.diff-header > div {
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.diff-row {
  border-bottom: 1px solid var(--border);
}

.diff-row:last-child {
  border-bottom: none;
}

.diff-row > div {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
}

.diff-criterion {
  font-weight: 500;
  color: var(--fg) !important;
}

.diff-flowlocal {
  color: var(--accent) !important;
  font-weight: 500;
}

/* =====================
   PRICING
   ===================== */
.pricing-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =====================
   FORM
   ===================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.form-status.form-success { color: #22c55e; }
.form-status.form-error { color: #ef4444; }
.label-optional {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* =====================
   LEAD LANDER (/gas-safe/lead)
   ===================== */
.lead-hero-section {
  padding: 64px 0 40px;
}
.lead-hero-section .hero-inner {
  max-width: 720px;
}
.lead-form-section {
  padding: 48px 0 80px;
  border-top: 1px solid var(--border);
}
.lead-form-inner {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.lead-form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.lead-confirmation {
  max-width: 520px;
  margin: 80px auto;
  text-align: center;
  padding: 0 24px;
}
.lead-confirmation h2 {
  color: var(--fg);
  margin-bottom: 16px;
}
.lead-confirmation p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { order: -1; }
  .stats-row { justify-content: center; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-heading h2 { position: static; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-connector { width: 40px; height: 20px; margin: 0 auto; transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  h1 { font-size: 2rem; }
  .hero { padding: 60px 0 40px; }
  .header-nav { display: none; }
  .lead-form-inner { padding: 24px; }
}

/* =====================
   ADMIN LEADS TABLE
   ===================== */
.admin-leads-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
  font-size: 0.85rem;
}
.admin-leads-table th,
.admin-leads-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-leads-table th {
  background: var(--bg-card);
  color: var(--fg-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-leads-table tbody tr:last-child td { border-bottom: none; }
.admin-leads-empty { text-align: center; color: var(--fg-muted); }

/* =====================
   DASHBOARD (/dashboard)
   ===================== */
.dashboard-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.dashboard-header h1 { color: var(--fg); }
.dashboard-sub {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.dashboard-sub strong { color: var(--fg); font-weight: 500; }
.dashboard-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.dashboard-logout:hover { border-color: rgba(245,158,11,0.4); color: var(--accent); }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dashboard-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.dashboard-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.dashboard-card-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.dashboard-card-date {
  font-size: 1.05rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.dashboard-card-empty {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-top: auto;
}
.dashboard-quote-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dashboard-quote-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.dashboard-quote-list li:last-child { border-bottom: none; }
.dashboard-quote-status {
  font-family: var(--font-display);
  color: var(--fg);
  text-transform: capitalize;
}
.dashboard-quote-count {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.dashboard-flash {
  margin-bottom: 20px;
  padding: 10px 14px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .dashboard-stats { grid-template-columns: 1fr; }
}