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

:root {
  /* Brand */
  --violet-50:   #f5f3ff;
  --violet-100:  #ede9fe;
  --violet-500:  #8b5cf6;
  --violet-600:  #7c3aed;
  --violet-700:  #6d28d9;
  --violet-800:  #5b21b6;
  --violet-900:  #4c1d95;
  --indigo-600:  #4f46e5;
  --green-400:   #4ade80;
  --green-500:   #22c55e;
  --green-600:   #16a34a;
  --amber-400:   #fbbf24;
  --red-400:     #f87171;
  --red-500:     #ef4444;

  /* Surface */
  --bg-dark:      #0c0a1a;
  --bg-dark-2:    #120f2a;
  --bg-light:     #ffffff;
  --bg-soft:      #f8f7ff;
  --bg-soft-2:    #f1effd;

  /* Text */
  --text-primary:   #0f0e1a;
  --text-secondary: #4b4869;
  --text-muted:     #7c7a96;
  --text-light:     #ffffff;
  --text-light-sub: rgba(255,255,255,0.72);

  /* Layout */
  --max-w: 1120px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px rgba(109,40,217,0.35);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.section {
  padding: 96px 0;
}

.section-light { background: var(--bg-light); }
.section-dark  { background: var(--bg-dark); }
.section-soft  { background: var(--bg-soft); }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-600);
  background: var(--violet-50);
  border: 1px solid var(--violet-100);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light {
  color: #c4b5fd;
  background: rgba(109,40,217,0.25);
  border-color: rgba(109,40,217,0.4);
}

.section-h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 48px;
}
.section-h2.light { color: var(--text-light); }

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 40%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-sm  { font-size: 14px; padding: 8px 16px; }
.btn-lg  { font-size: 16px; padding: 14px 28px; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: white;
  box-shadow: 0 2px 12px rgba(109,40,217,0.4), 0 1px 2px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(109,40,217,0.5), 0 2px 8px rgba(0,0,0,0.12);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

.btn-white {
  background: white;
  color: var(--violet-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn.full-width { width: 100%; justify-content: center; }

/* ─── NAVIGATION ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.nav-scrolled {
  background: rgba(12, 10, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: white; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg-dark);
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,40,217,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(109,40,217,0.35) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #c4b5fd;
  background: rgba(109,40,217,0.2);
  border: 1px solid rgba(109,40,217,0.4);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 64px;
}

/* ─── HERO IMAGE ────────────────────────────────────────────────────────── */
.hero-image-wrap {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 32px 80px rgba(0,0,0,0.55), var(--shadow-glow);
  position: relative;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

/* ─── HERO MOCKUP ───────────────────────────────────────────────────────── */
.hero-mockup {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 32px 80px rgba(0,0,0,0.6), var(--shadow-glow);
  text-align: left;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }
.mockup-url {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.mockup-body { padding: 24px; }

.mockup-chat { display: flex; flex-direction: column; gap: 12px; }

.chat-bubble {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.55;
}
.chat-bubble.user {
  background: rgba(109,40,217,0.25);
  border: 1px solid rgba(109,40,217,0.35);
  color: rgba(255,255,255,0.88);
  align-self: flex-end;
  max-width: 85%;
}
.chat-bubble.ai {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
}
.ai-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 10px;
}

.ai-progress { display: flex; flex-direction: column; gap: 6px; }
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.progress-step.done { color: var(--green-400); }
.progress-step.active { color: #a78bfa; }
.progress-step.pending { color: rgba(255,255,255,0.28); }
.step-icon { width: 16px; text-align: center; font-size: 11px; }
.step-icon.spin {
  animation: spin 1.2s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mockup-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ─── PROOF BAR ─────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--bg-soft);
  border-top: 1px solid #ede9fe;
  border-bottom: 1px solid #ede9fe;
  padding: 16px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.proof-divider {
  color: #d1d5db;
  font-size: 13px;
}
@media (max-width: 640px) { .proof-divider { display: none; } }

/* ─── WALL SECTION ──────────────────────────────────────────────────────── */
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .wall-grid { grid-template-columns: 1fr; } }

.wall-card {
  background: white;
  border: 1px solid #ede9fe;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.wall-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wall-icon-red    { background: #fef2f2; }
.wall-icon-yellow { background: #fffbeb; }
.wall-icon-blue   { background: #eef2ff; }

.wall-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.wall-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.wall-stat {
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.wall-stat.red    { background: #fef2f2; color: #b91c1c; }
.wall-stat.yellow { background: #fffbeb; color: #92400e; }
.wall-stat.blue   { background: #eef2ff; color: #3730a3; }

.wall-resolution {
  text-align: center;
  position: relative;
}
.resolution-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #7c3aed);
  margin: 0 auto 24px;
}
.wall-resolution p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── STEPS ─────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(109,40,217,0.5), rgba(79,70,229,0.2));
}

.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}
.step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }

.step-num {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--violet-500);
  background: rgba(109,40,217,0.15);
  border: 2px solid rgba(109,40,217,0.3);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.step-content { flex: 1; }
.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  margin-top: 16px;
}
.step-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
}

.step-example {
  background: rgba(109,40,217,0.15);
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: #c4b5fd;
}
.example-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 6px;
}
.step-example em { font-style: normal; }

.step-stages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.stage {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.stage.done {
  background: rgba(34,197,94,0.15);
  color: var(--green-400);
  border: 1px solid rgba(34,197,94,0.25);
}
.stage.active {
  background: rgba(109,40,217,0.25);
  color: #a78bfa;
  border: 1px solid rgba(109,40,217,0.4);
}
.stage-arrow { color: rgba(255,255,255,0.2); font-size: 14px; }

.step-ownership { display: flex; flex-direction: column; gap: 8px; }
.own-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .steps::before { display: none; }
  .step { flex-direction: column; gap: 16px; }
}

/* ─── COMPARISON TABLE ──────────────────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #ede9fe;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
.col-feature { text-align: left !important; color: var(--text-muted); width: 32%; }
.col-agency   { background: #fafafa;    color: var(--text-secondary); width: 22%; }
.col-sidekick { background: #f8f9ff;    color: var(--text-secondary); width: 22%; }
.col-trooix   { background: var(--violet-700); color: white; width: 24%; border-radius: 0; }

.compare-table tbody td {
  padding: 14px 20px;
  border-top: 1px solid #f0ecff;
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}
.compare-table tbody tr:hover td { background: #faf9ff; }
.compare-table tbody tr:hover .trooix-cell { background: var(--violet-800); }

.agency-cell   { text-align: center; color: var(--text-secondary); background: #fafafa; }
.sidekick-cell { text-align: center; color: var(--text-secondary); background: #f8f9ff; }
.sidekick-cell.na { color: var(--red-400); }
.trooix-cell   {
  text-align: center;
  background: var(--violet-700);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.trooix-cell.highlight { color: #86efac; font-weight: 700; }

.cost-row td { border-top: 2px solid #ede9fe !important; }
.trooix-cost { color: white !important; font-size: 16px; }

.compare-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── USE CASES ─────────────────────────────────────────────────────────── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .use-case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .use-case-grid { grid-template-columns: 1fr; } }

.use-case {
  background: white;
  border: 1px solid #ede9fe;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.use-case:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.uc-icon { font-size: 28px; margin-bottom: 14px; }
.use-case h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.use-case p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.uc-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-600);
  background: var(--violet-50);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}
.uc-custom {
  background: linear-gradient(135deg, var(--violet-700), var(--indigo-600));
  border-color: transparent;
  color: white;
}
.uc-custom h3 { color: white; }
.uc-custom p  { color: rgba(255,255,255,0.75); }
.uc-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,181,253,0.35);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.uc-cta:hover { color: white; border-color: rgba(255,255,255,0.6); }

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: white;
  border: 1px solid #ede9fe;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-avatar::before { content: attr(data-initials); }
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-meta { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ─── PRICING ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 32px;
}
@media (max-width: 680px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
}
.pricing-card-featured {
  background: rgba(109,40,217,0.18);
  border-color: rgba(109,40,217,0.5);
  box-shadow: 0 0 0 1px rgba(109,40,217,0.3), 0 24px 60px rgba(109,40,217,0.2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 4px;
}
.price-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
  line-height: 1;
}
.price-once {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding-bottom: 6px;
}
.pricing-recurring {
  font-size: 16px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 14px;
}
.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.pricing-features svg { flex-shrink: 0; }

.pricing-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  margin-top: 14px;
}

.pricing-agency-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* Single-card pricing layout */
.pricing-single {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.pricing-card-solo {
  max-width: 520px;
  width: 100%;
}

/* CTA section install button + trust row */
.cta-install-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  padding: 18px 40px;
  margin-bottom: 32px;
}
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid #f0ecff;
}
.faq-item:first-child { border-top: 1px solid #f0ecff; }

.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--violet-500);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 20px;
  max-width: 620px;
}

/* ─── WAITLIST / CTA ────────────────────────────────────────────────────── */
.section-cta {
  background: var(--bg-dark-2);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(109,40,217,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-input, .form-textarea {
  font-family: inherit;
  font-size: 15px;
  color: white;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(109,40,217,0.7);
  background: rgba(255,255,255,0.1);
}
.form-textarea { resize: vertical; min-height: 90px; }

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 16px;
  color: var(--green-400);
}
.waitlist-success p { margin: 0; }
.hidden { display: none !important; }

.form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-top: 8px;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
  flex-wrap: wrap;
}
.footer-brand .nav-logo { color: rgba(255,255,255,0.8); font-size: 17px; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin-top: 8px;
}
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }
  .nav-inner { gap: 16px; }
  .compare-table { font-size: 13px; }
  .compare-table thead th, .compare-table tbody td { padding: 10px 12px; }
  .footer-inner { flex-direction: column; gap: 36px; }
}

@media (max-width: 500px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

/* ─── FAVICON INLINE ─────────────────────────────────────────────────────── */
/* Favicon is an SVG file at /assets/favicon.svg */
