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

:root {
  --bg: #050914;
  --bg2: #080f20;
  --accent: #6c63ff;
  --accent2: #00d4ff;
  --accent3: #a855f7;
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(5,9,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s !important;
}
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px 60px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.35);
  color: #a89fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 200%;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108, 99, 255, 0.6);
}

.btn-ghost {
  color: var(--text);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(108, 99, 255, 0.5);
  background: rgba(108, 99, 255, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { text-align: center; }
.stat span:first-child {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span:last-of-type { font-size: 1.5rem; font-weight: 800; color: var(--accent2); }
.stat p { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--card-border); }

/* ===================== HERO VISUAL ===================== */
.hero-visual {
  position: relative;
  flex: 1;
  min-height: 380px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}
.orb-1 { width: 320px; height: 320px; background: rgba(108,99,255,0.25); top: -20px; left: -20px; }
.orb-2 { width: 200px; height: 200px; background: rgba(0,212,255,0.2); bottom: 20px; right: 20px; animation-delay: -2s; }
.orb-3 { width: 150px; height: 150px; background: rgba(168,85,247,0.2); top: 60%; left: 60%; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Live Feed Card */
.ai-card {
  position: relative;
  z-index: 2;
  background: rgba(8, 15, 32, 0.9);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  width: 340px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 80px rgba(108,99,255,0.1);
  animation: float 6s ease-in-out infinite;
  animation-delay: -1s;
  overflow: hidden;
}
.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--card-border);
}
.live-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
.live-dot-sm {
  display: inline-block;
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  margin-right: 4px;
}
.ai-card-title { font-size: 0.8rem; color: var(--text); font-weight: 700; }
.live-counter-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent2);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 3px 10px;
  border-radius: 999px;
}

.live-summary {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 16px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(108,99,255,0.05);
}
.live-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.live-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.live-stat-label { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.live-stat-div { width: 1px; height: 32px; background: var(--card-border); }

.live-feed {
  padding: 10px 0;
  max-height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  animation: feed-slide 0.4s ease;
  transition: background 0.2s;
}
.feed-item:last-child { border-bottom: none; }
@keyframes feed-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.feed-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.feed-text { flex: 1; line-height: 1.3; }
.feed-text strong { color: var(--text); font-weight: 600; }
.feed-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.badge-sent    { background: rgba(108,99,255,0.2); color: #a89fff; }
.badge-reply   { background: rgba(0,212,255,0.15); color: var(--accent2); }
.badge-hot     { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-convo   { background: rgba(168,85,247,0.2); color: #c084fc; }

.live-footer {
  padding: 10px 16px;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== SECTIONS SHARED ===================== */
.features, .contact {
  padding: 100px 32px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  display: inline-block;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: #a89fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* ===================== FEATURES GRID ===================== */
.features { background: var(--bg2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  text-align: left;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover {
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(108, 99, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--accent); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent2);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ===================== CONTACT ===================== */
.contact { background: var(--bg); }
.contact .section-inner { text-align: left; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  text-align: left !important;
}
.contact-text .section-label { text-align: left; }
.contact-text h2 { text-align: left; }
.contact-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  margin-top: 12px;
}
.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-perks li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================== FORM ===================== */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a5568; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }
.error-msg { font-size: 0.75rem; color: #ef4444; min-height: 16px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(108, 99, 255, 0.5);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.spin { width: 20px; height: 20px; animation: rotate 1s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #4ade80;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  animation: fade-in 0.4s ease;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  padding: 100px 32px;
  background: var(--bg2);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 10px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin-top: 24px;
  opacity: 0.4;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .steps-grid { flex-direction: column; align-items: center; gap: 8px; }
  .step-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, var(--accent), var(--accent2)); }
  .step { padding: 20px 0; }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,212,255,0.08));
  border-top: 1px solid rgba(108,99,255,0.2);
  border-bottom: 1px solid rgba(108,99,255,0.2);
  padding: 40px 32px;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.stats-bar-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stats-bar-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 160px;
}
.stats-bar-divider {
  width: 1px;
  height: 50px;
  background: var(--card-border);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .stats-bar-divider { display: none; }
  .stats-bar-inner { gap: 32px; }
}

/* ===================== AI AGENT SECTION ===================== */
.ai-agent-section {
  padding: 100px 32px;
  background: var(--bg2);
}
.agent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agent-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.agent-orb {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 7s ease-in-out infinite;
}
.agent-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: rgba(8,15,32,0.9);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 60px rgba(168,85,247,0.1);
}
.agent-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.agent-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
}
.agent-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
.agent-label-pill {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(168,85,247,0.2);
  border: 1px solid rgba(168,85,247,0.35);
  color: #c084fc;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.agent-log {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-log-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0;
  animation: log-appear 0.4s ease forwards;
}
.agent-log-line:nth-child(1) { animation-delay: 0.2s; }
.agent-log-line:nth-child(2) { animation-delay: 0.7s; }
.agent-log-line:nth-child(3) { animation-delay: 1.2s; }
.agent-log-line:nth-child(4) { animation-delay: 1.7s; }
.agent-log-line:nth-child(5) { animation-delay: 2.2s; }
@keyframes log-appear {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.log-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.log-tag.action { background: rgba(108,99,255,0.2); color: #a89fff; }
.log-tag.send   { background: rgba(0,212,255,0.15); color: var(--accent2); }
.log-tag.match  { background: rgba(34,197,94,0.15); color: #4ade80; }
.ellipsis {
  animation: ellipsis-blink 1.2s infinite;
}
@keyframes ellipsis-blink {
  0%,100% { opacity: 1; } 50% { opacity: 0; }
}

.agent-text h2 span {
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agent-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 12px 0 24px;
}
.agent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.agent-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-pricing {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(108,99,255,0.08);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.agent-price-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.agent-price-num {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.agent-price-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.agent-price-divider {
  width: 1px;
  height: 40px;
  background: rgba(108,99,255,0.25);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .agent-inner { grid-template-columns: 1fr; gap: 48px; }
  .agent-visual { order: -1; }
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 100px 32px;
  background: var(--bg);
}
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(108,99,255,0.35); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ===================== PRICING ===================== */
.pricing {
  padding: 100px 32px;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(108, 99, 255, 0.18);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pricing-plan {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-price-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--card-border);
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.pricing-sublabel {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-list .check { flex-shrink: 0; margin-top: 1px; }

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.pricing-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  color: #fff;
  box-shadow: 0 0 28px rgba(108, 99, 255, 0.35);
}
.pricing-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(108, 99, 255, 0.55);
}
.pricing-cta-ghost {
  color: var(--text);
  border: 1px solid var(--card-border);
  background: transparent;
}
.pricing-cta-ghost:hover {
  border-color: rgba(108, 99, 255, 0.5);
  background: rgba(108, 99, 255, 0.08);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
  width: fit-content;
}
.toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.toggle-btn.active {
  background: var(--accent);
  color: #fff;
}
.toggle-save-pill {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.toggle-btn.active .toggle-save-pill {
  background: rgba(34, 197, 94, 0.25);
}

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

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 28px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer p { color: var(--text-muted); font-size: 0.82rem; }
.footer-email {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--accent2); }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== HAMBURGER ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== RESPONSIVE ===================== */

/* Tablet & below */
@media (max-width: 900px) {
  /* Sections */
  .how-it-works, .features, .pricing,
  .ai-agent-section, .faq-section,
  .contact, .stats-bar { padding: 70px 24px; }

  /* Hero */
  .hero { flex-direction: column; text-align: center; padding: 110px 24px 60px; gap: 40px; min-height: unset; }
  .hero-content { max-width: 100%; }
  .hero-content > p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-text h2, .contact-text .section-label { text-align: center; }
  .contact-text p { text-align: center; }
  .contact-perks { align-items: center; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Nav — hamburger */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(5,9,20,0.97);
    backdrop-filter: blur(20px);
    padding: 80px 32px 40px;
    border-bottom: 1px solid var(--card-border);
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    color: var(--text) !important;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links li:last-child a { border-bottom: none; margin-top: 16px; text-align: center; }
  .btn-nav {
    background: var(--accent) !important;
    border-radius: 8px;
    padding: 12px 20px !important;
  }

  /* Hero */
  .hero { padding: 100px 20px 50px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .ai-card { width: 100%; max-width: 300px; }

  /* Sections */
  .how-it-works, .features, .pricing,
  .ai-agent-section, .faq-section,
  .contact { padding: 60px 20px; }
  .stats-bar { padding: 40px 20px; }

  /* Stats bar — 2×2 grid */
  .stats-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px; justify-items: center; }
  .stats-bar-divider { display: none; }
  .stats-bar-num { font-size: 1.8rem; }

  /* How it works */
  .step { padding: 16px 0; }
  .step-number { font-size: 2.2rem; }

  /* Billing toggle */
  .billing-toggle { width: 100%; }
  .toggle-btn { flex: 1; justify-content: center; }

  /* Agent card */
  .agent-card { max-width: 100%; }
  .agent-pricing { flex-direction: column; gap: 16px; align-items: flex-start; }
  .agent-price-divider { width: 40px; height: 1px; }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 16px 18px; }
  .faq-a p { padding: 0 18px 16px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }

  /* Section text */
  .section-sub { font-size: 0.95rem; }
  h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}
