@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --bg: #080c14;
  --bg-2: #0d1220;
  --surface: #111827;
  --surface-2: #1a2235;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.13);
  --text: #f1f5f9;
  --text-muted: #64748b;
  --text-mid: #94a3b8;
  --accent: #3b82f6;
  --accent-2: #6366f1;
  --accent-glow: rgba(59,130,246,0.15);
  --green: #10b981;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 0.4rem;
}
.logo-dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-size: 0.875rem !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #2563eb !important; transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1.75rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 1.5rem;
  max-width: 780px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.15rem; color: var(--text-mid); max-width: 600px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 0 24px rgba(59,130,246,0.35);
  transition: all 0.25s;
}
.btn-primary:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,0.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text-mid); font-weight: 500; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: 10px;
  border: 1px solid var(--border-bright); cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--surface); color: var(--text); }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.trust-logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-logos span {
  font-size: 0.85rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase; opacity: 0.6;
}

/* ── STATS ───────────────────────────────────────────── */
.stats-section { padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -1px;
  background: linear-gradient(135deg, #60a5fa, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── SECTION HEADERS ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.75px; margin-bottom: 1rem; max-width: 560px;
}
.section-sub { font-size: 1rem; color: var(--text-mid); max-width: 520px; margin-bottom: 3.5rem; }

/* ── FEATURES ────────────────────────────────────────── */
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--border-bright); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.feature-card.featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(99,102,241,0.08));
  border-color: rgba(99,102,241,0.25); grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.icon-box {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(59,130,246,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how-bg { background: var(--bg-2); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 1rem; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; transition: border-color 0.3s;
}
.step-card:hover { border-color: var(--border-bright); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.25rem;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--accent); background: linear-gradient(160deg, rgba(59,130,246,0.1), var(--surface));
  position: relative;
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: 999px; letter-spacing: 0.5px;
}
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.plan-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.25rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-mid); margin-bottom: 0.75rem;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-btn {
  display: block; width: 100%; text-align: center; margin-top: 2rem;
  padding: 0.85rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.plan-btn-primary { background: var(--accent); color: #fff; }
.plan-btn-primary:hover { background: #2563eb; }
.plan-btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-bright); }
.plan-btn-outline:hover { background: var(--surface-2); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-bg { background: var(--bg-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.testi-stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.9rem; color: var(--text-mid); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
}
.testi-name { font-size: 0.9rem; font-weight: 700; }
.testi-role { font-size: 0.775rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
}
.faq-q {
  width: 100%; background: var(--surface); border: none;
  padding: 1.25rem 1.5rem; text-align: left; color: var(--text); cursor: pointer;
  font-size: 0.95rem; font-weight: 600; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  background: var(--surface);
}
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a1f2e 50%, #251e3a 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px; padding: 5rem; text-align: center; margin: 60px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.2) 0%, transparent 65%);
}
.cta-banner h2 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.75px; margin-bottom: 1rem; position: relative; }
.cta-banner p { font-size: 1rem; color: var(--text-mid); margin-bottom: 2rem; position: relative; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.contact-info-item:hover { border-color: var(--border-bright); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(59,130,246,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.ci-val { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-top: 0.2rem; }
.contact-form-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.825rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-mid); }
.form-control {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.25); border: 1px solid var(--border-bright);
  border-radius: 8px; color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.form-control::placeholder { color: var(--text-muted); }

/* ── LEGAL PAGES ─────────────────────────────────────── */
.page-hero {
  padding: 140px 0 60px; border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 3rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.5rem; }
.legal-body { max-width: 820px; padding: 60px 0 80px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 2.5rem 0 0.75rem; color: var(--text); }
.legal-body p { font-size: 0.925rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.legal-body ul { padding-left: 1rem; }
.legal-body li { font-size: 0.925rem; color: var(--text-mid); margin-bottom: 0.6rem; line-height: 1.7; }
.legal-body li::marker { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border); padding: 5rem 0 2.5rem;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-mid); margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-size: 0.825rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.875rem; color: var(--text-mid); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
}
.footer-bottom p { font-size: 0.825rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.825rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ── ANIMATIONS ──────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .features-layout, .features-layout .feature-card.featured { grid-template-columns: 1fr; grid-column: span 1; }
  .steps-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links .nav-links-group { display: none; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
