/* ============================================
   CLAIMIFY — Liquid Glass Design System
   Deep purple glass morphism
   Typography: Inter (single family, all weights)
   Primary: #7c3aed (purple) | Secondary: #4f46e5 (indigo) | Accent: #a78bfa (violet)
   ============================================ */

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

:root {
  /* === Backgrounds === */
  --bg: #0a0a14;
  --bg-alt: #0f0c1a;

  /* === Glass === */
  --glass-fill: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  --glass-blur: blur(20px);

  /* === Text === */
  --fg: #ffffff;
  --fg-muted: rgba(255,255,255,0.7);
  --fg-dim: rgba(255,255,255,0.45);

  /* === Accent Colors === */
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dim: rgba(124,58,237,0.12);
  --purple-border: rgba(124,58,237,0.3);
  --indigo: #4f46e5;
  --indigo-dim: rgba(79,70,229,0.12);
  --indigo-border: rgba(79,70,229,0.3);
  --violet: #a78bfa;

  /* === Status Colors === */
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-dim: rgba(16,185,129,0.12);
  --emerald-border: rgba(16,185,129,0.3);
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --danger: #ef4444;
  --danger-dim: rgba(239,68,68,0.12);
  --danger-border: rgba(239,68,68,0.3);

  /* === Borders === */
  --border: rgba(255,255,255,0.06);

  /* === Layout === */
  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

/* === Global Reset & Base === */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: linear-gradient(135deg, #0d0814 0%, #130d1f 40%, #0a0a14 100%);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === Ambient Glow Orbs === */
.ambient-orb-1 {
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
  z-index: 0;
}
.ambient-orb-2 {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.12), transparent 70%);
  top: 100px; right: -150px;
  pointer-events: none;
  z-index: 0;
}
.ambient-orb-3 {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,0.1), transparent 70%);
  bottom: -100px; left: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above orbs */
body > * { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === Custom Scrollbar === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,0.7); }

/* === Selection === */
::selection { background: rgba(124,58,237,0.3); color: var(--fg); }

/* ============================================
   LIQUID GLASS COMPONENTS
   ============================================ */

/* Glass Panel — applies to ALL cards, nav, modals, table containers, stat blocks */
.glass-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Glass Card (alias) */
.glass-card {
  background: var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
}

/* Glass Button — Primary (Purple Gradient) */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border: none; border-radius: var(--radius-lg);
  color: white; font-weight: 600; font-family: var(--font);
  padding: 10px 20px; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s ease;
  box-shadow: 0 0 0 rgba(124,58,237,0);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(124,58,237,0.4);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); }

/* Glass Button — Ghost */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  color: var(--purple-light);
  font-weight: 500; font-family: var(--font);
  padding: 10px 20px; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.5);
}

/* Glass Button — Secondary */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--fg-muted);
  font-weight: 500; font-family: var(--font);
  padding: 10px 20px; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--fg);
}

/* Glass Button — Danger */
.btn-danger {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--danger-dim);
  border: 1px solid var(--danger-border);
  border-radius: var(--radius-md);
  color: #f87171;
  font-weight: 500; font-family: var(--font);
  padding: 8px 14px; font-size: 0.8rem;
  cursor: pointer; transition: all 0.2s ease;
}
.btn-danger:hover { background: rgba(239,68,68,0.2); }

/* Glass Input */
.glass-input, input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--fg);
  padding: 12px 16px;
  font-size: 0.9rem; font-family: var(--font);
  transition: all 0.2s ease; outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--fg-dim); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(124,58,237,0.6);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.45)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Badge / Status Pills */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-paid    { background: var(--emerald-dim); color: var(--emerald-light); border: 1px solid var(--emerald-border); }
.badge-pending { background: var(--purple-dim); color: var(--purple-light); border: 1px solid var(--purple-border); }
.badge-overdue { background: var(--danger-dim); color: #f87171; border: 1px solid var(--danger-border); }
.badge-resolved{ background: var(--emerald-dim); color: var(--emerald-light); border: 1px solid var(--emerald-border); }
.badge-emailed { background: var(--indigo-dim); color: #818cf8; border: 1px solid var(--indigo-border); }
.badge-replied { background: var(--purple-dim); color: var(--purple-light); border: 1px solid var(--purple-border); }

/* ============================================
   NAVIGATION (Marketing)
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  background: rgba(13,8,20,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-mark { color: var(--purple); font-size: 1.3rem; }
.logo-name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border: none; border-radius: var(--radius-lg);
  color: white; font-weight: 600; font-family: var(--font);
  padding: 9px 20px; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s;
}
.nav-cta:hover { box-shadow: 0 0 20px rgba(124,58,237,0.4); transform: translateY(-1px); }

/* ============================================
   MARKETING SITE — SECTIONS
   ============================================ */

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 0 60px; padding-top: 100px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mesh-1 {
  position: absolute; top: -20%; right: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 70%);
}
.mesh-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.06) 0%, transparent 70%);
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.glow-1 { width: 500px; height: 500px; background: rgba(124,58,237,0.07); top: 5%; right: 15%; }
.glow-2 { width: 350px; height: 350px; background: rgba(79,70,229,0.05); bottom: 10%; left: 5%; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 1; padding-top: 40px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 28px;
  padding: 6px 14px; border: 1px solid var(--purple-border);
  border-radius: 100px; background: var(--purple-dim);
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--purple);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.035em;
  color: var(--fg); margin-bottom: 24px;
}
.hero-headline .accent { color: var(--purple-light); }
.hero-lede {
  font-size: 1.1rem; color: var(--fg-muted); max-width: 480px;
  line-height: 1.7; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff; font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: var(--font);
}
.btn-hero:hover { box-shadow: 0 0 32px rgba(124,58,237,0.4); transform: translateY(-1px); }
.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.08); color: var(--purple-light);
  font-size: 0.95rem; font-weight: 500;
  padding: 14px 20px; border-radius: var(--radius-lg);
  border: 1px solid rgba(124,58,237,0.3);
  transition: all 0.2s; font-family: var(--font); cursor: pointer;
}
.btn-ghost-hero:hover { background: rgba(124,58,237,0.15); }
.hero-stats-row {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: var(--purple-light); line-height: 1; }
.stat-label { font-size: 0.7rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* ---- Hero Visual ---- */
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.dashboard-frame {
  width: 100%; max-width: 500px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.frame-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 10px; height: 10px; border-radius: 50%; }
.frame-dots span:nth-child(1) { background: #ff5f57; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:nth-child(3) { background: #28ca42; }
.frame-title { font-size: 0.78rem; color: var(--fg-dim); font-weight: 500; }
.frame-body { padding: 20px; }
.agent-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.agent-header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.agent-avatar {
  width: 36px; height: 36px;
  background: var(--purple-dim);
  border: 1px solid var(--purple-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); font-size: 1.1rem;
}
.agent-info { flex: 1; }
.agent-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.agent-status { font-size: 0.72rem; color: var(--purple-light); margin-top: 2px; }
.agent-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--purple-dim);
  color: var(--purple-light);
  border-radius: 4px;
  border: 1px solid var(--purple-border);
}
.activity-list { padding: 4px 0; }
.activity-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.activity-row:last-child { border-bottom: none; }
.activity-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fg-dim); flex-shrink: 0; }
.activity-row.success .activity-dot { background: var(--purple); }
.activity-row.warning .activity-dot { background: var(--amber); }
.activity-text { flex: 1; color: var(--fg-muted); line-height: 1.4; }
.activity-time { color: var(--fg-dim); font-size: 0.68rem; white-space: nowrap; }
.cash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--purple-dim);
  border-top: 1px solid var(--purple-border);
}
.cash-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.cash-value { font-size: 1.4rem; font-weight: 800; color: var(--purple-light); }

/* ---- Trust Bar ---- */
.trust { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 60px; }
.trust-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-dim); text-align: center; margin-bottom: 32px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { font-size: 1rem; font-weight: 700; color: var(--fg-dim); letter-spacing: -0.01em; opacity: 0.5; transition: opacity 0.2s; }
.trust-logo:hover { opacity: 0.8; }

/* ---- Section Shared ---- */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 60px; }
.section-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 16px; }
.section-heading { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: var(--fg); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.65; max-width: 560px; margin-bottom: 64px; }

/* ---- Features Grid ---- */
.features-grid { padding: 100px 0; }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header-center .section-sub { margin: 0 auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl); overflow: hidden; }
.feature-card { padding: 40px 32px; background: rgba(255,255,255,0.05); transition: background 0.25s; }
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  color: var(--purple-light);
}
.feature-icon.violet { background: var(--indigo-dim); border-color: var(--indigo-border); color: #818cf8; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.feature-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.65; }

/* ---- How It Works ---- */
.how-it-works { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.step-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.step-number { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--fg-dim); margin-bottom: 20px; }
.step-icon { margin-bottom: 16px; }
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector { display: flex; align-items: center; padding: 0 12px; padding-top: 80px; }

/* ---- Stats ---- */
.stats { padding: 100px 0; position: relative; }
.stats-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stats .section-inner { position: relative; }
.stats-heading { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; color: var(--fg-muted); margin-bottom: 48px; max-width: 560px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 40px; }
.big-stat { padding: 40px 32px; background: rgba(255,255,255,0.05); }
.big-stat-value { font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 900; color: var(--purple-light); line-height: 1; margin-bottom: 12px; }
.big-stat-label { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }
.stats-callout {
  font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7;
  max-width: 620px; padding: 20px 28px;
  border: 1px solid var(--purple-border); border-radius: 12px;
  background: var(--purple-dim);
}
.callout-accent { color: var(--fg); font-weight: 600; }

/* ---- Testimonials ---- */
.testimonials { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: border-color 0.25s;
}
.testimonial-card:hover { border-color: rgba(124,58,237,0.3); }
.testimonial-quote { font-size: 0.95rem; color: var(--fg); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-quote::before { content: '"'; color: var(--purple-light); font-size: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple-dim);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--purple-light); font-size: 0.9rem;
  border: 1px solid var(--purple-border);
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.author-title { font-size: 0.75rem; color: var(--fg-dim); }

/* ---- CTA Section ---- */
.cta-section { padding: 100px 0; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-heading { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 20px; }
.cta-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: 40px; }
.cta-proof {
  display: flex; align-items: center; justify-content: center; gap: 32px; padding: 20px 28px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  width: fit-content; margin: 0 auto;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.proof-value { font-size: 1.4rem; font-weight: 800; color: var(--purple-light); }
.proof-label { font-size: 0.68rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.proof-sep { color: var(--fg-dim); font-size: 1.2rem; }

/* ---- Footer ---- */
footer { padding: 60px 0 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: 1fr auto; gap: 80px; margin-bottom: 48px; }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--fg); display: block; margin-bottom: 10px; }
.footer-desc { font-size: 0.82rem; color: var(--fg-dim); line-height: 1.6; max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.footer-col a { font-size: 0.82rem; color: var(--fg-dim); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 0 60px; display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--fg-dim); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 14px 24px; }
  .hero { padding: 80px 24px 60px; }
  .section-inner { padding: 0 24px; }
  .hero-stats-row { flex-direction: column; align-items: start; gap: 16px; }
  .stat-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-proof { flex-direction: column; }
  .proof-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}