/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #080c14;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Utility ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(99,102,241,.15);
  color: #818cf8;
  border: 1px solid rgba(99,102,241,.3);
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px; font-size: 15px;
  font-weight: 600; cursor: pointer; transition: all .2s; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 24px rgba(99,102,241,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.5); }
.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,.15);
}
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ─── Nav ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(8,12,20,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-size: 20px; font-weight: 800; letter-spacing: -.4px;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: #94a3b8; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #e2e8f0; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: #e2e8f0; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99,102,241,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: #94a3b8; max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 72px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.stat-label { font-size: 13px; color: #64748b; margin-top: 4px; }

/* ─── Feature Grid ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(99,102,241,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.7; }

/* ─── How it Works ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: #64748b; }
.step-connector {
  display: none; /* shown via grid separator */
}

/* ─── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.plan-card.popular {
  border-color: rgba(99,102,241,.6);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.08));
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  letter-spacing: .06em; text-transform: uppercase;
}
.plan-name { font-size: 14px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; }
.plan-price { margin: 12px 0 4px; }
.plan-price span { font-size: 48px; font-weight: 800; letter-spacing: -.03em; }
.plan-price sub { font-size: 16px; color: #64748b; font-weight: 500; }
.plan-tagline { font-size: 13px; color: #64748b; margin-bottom: 28px; }
.plan-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 24px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #cbd5e1; }
.plan-features li::before { content: '✓'; color: #6366f1; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: #0d1117; border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px;
}
.testimonial-text { font-size: 15px; color: #cbd5e1; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: #64748b; }
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; }

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(139,92,246,.15));
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.cta-banner p { color: #94a3b8; font-size: 18px; margin-bottom: 36px; }

/* ─── Section Heading ──────────────────────────────────────── */
.section-heading { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section-heading h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 14px; }
.section-heading p { font-size: 16px; color: #64748b; }

/* ─── Contact Form ─────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 36px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.contact-info p { color: #64748b; font-size: 16px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(99,102,241,.15); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-detail-text span { font-size: 14px; color: #64748b; }
.form-card {
  background: #0d1117; border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #94a3b8; margin-bottom: 8px; letter-spacing: .03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: #161b25;
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  color: #e2e8f0; font-size: 14px; font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(99,102,241,.6);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: #4ade80; font-size: 18px; font-weight: 600;
}
.form-error { display: none; color: #f87171; font-size: 13px; margin-top: 12px; }

/* ─── About Page ───────────────────────────────────────────── */
.about-hero { padding: 140px 0 80px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: #0d1117; border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px;
}
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #64748b; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-block {
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(139,92,246,.1));
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 20px; padding: 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.metric-item { display: flex; gap: 16px; align-items: center; }
.metric-num { font-size: 32px; font-weight: 800; }
.metric-desc { font-size: 13px; color: #64748b; }

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: #64748b; max-width: 560px; margin: 0 auto; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: #0d1117; border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: #e2e8f0; font-size: 15px; font-weight: 600; padding: 20px 24px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q .arrow { transition: transform .25s; font-size: 18px; flex-shrink: 0; color: #64748b; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: #64748b; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: #475569; line-height: 1.8; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #475569; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #94a3b8; }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.04);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #334155; flex-wrap: wrap; gap: 8px;
}

/* ─── Divider ──────────────────────────────────────────────── */
.divider { height: 1px; background: rgba(255,255,255,.06); }

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #0d1117; border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 20px 24px; gap: 20px;
  }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .cta-banner { padding: 48px 24px; }
  .hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ─── Scroll Animations ────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: none;
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* ─── Skeleton Shimmer ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #1e2530 25%, #252d3a 50%, #1e2530 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ─── Hero Mockup ──────────────────────────────────────────── */
.hero-mockup {
  margin-top: 56px;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(99,102,241,.15);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.mockup-topbar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red    { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green  { background: #22c55e; }
.mockup-title { flex: 1; text-align: center; font-size: 12px; color: #475569; margin-left: -50px; }
.mockup-badge.live { font-size: 11px; font-weight: 700; color: #4ade80; letter-spacing: .04em; }
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 120px; flex-shrink: 0;
  background: #0d1117; border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 0; display: flex; flex-direction: column; gap: 2px;
}
.mockup-nav-item {
  padding: 8px 16px; font-size: 12px; color: #475569; cursor: default;
  border-radius: 6px; margin: 0 6px;
}
.mockup-nav-item.active { background: rgba(99,102,241,.15); color: #818cf8; font-weight: 600; }
.mockup-content { flex: 1; padding: 16px; }
.mockup-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.mockup-stat {
  background: #161b22; border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 12px; text-align: center;
}
.mockup-stat.accent { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.08); }
.mockup-stat-num { font-size: 20px; font-weight: 800; color: #f1f5f9; line-height: 1; }
.mockup-stat.accent .mockup-stat-num { color: #818cf8; }
.mockup-stat-label { font-size: 10px; color: #475569; margin-top: 4px; }
.mockup-prospect-list { display: flex; flex-direction: column; gap: 6px; }
.mockup-prospect {
  display: flex; align-items: center; gap: 10px;
  background: #161b22; border: 1px solid rgba(255,255,255,.04);
  border-radius: 8px; padding: 10px 12px;
}
.mockup-score {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.mockup-score.high { background: rgba(34,197,94,.15); color: #4ade80; }
.mockup-score.mid  { background: rgba(245,158,11,.12); color: #fbbf24; }
.mockup-prospect-info { flex: 1; min-width: 0; }
.mockup-prospect-name { font-size: 12px; font-weight: 600; color: #e2e8f0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-prospect-url  { font-size: 10px; color: #475569; }
.mockup-tag { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px; white-space: nowrap; }
.mockup-tag.interested { background: rgba(34,197,94,.15); color: #4ade80; }
.mockup-tag.sent       { background: rgba(99,102,241,.15); color: #818cf8; }
.mockup-tag.scoring    { background: rgba(245,158,11,.12); color: #fbbf24; }
@media (max-width: 640px) {
  .mockup-sidebar { display: none; }
  .mockup-stats-row { grid-template-columns: repeat(2, 1fr); }
}
