/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #08080f;
  color: #f0eeff;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --bg: #08080f;
  --bg2: #0f0f1a;
  --bg3: #161622;
  --surface: #1c1c28;
  --surface2: #232332;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --accent: #6d4afe;
  --accent2: #9b7cff;
  --accent3: #c4b5fd;
  --green: #1ed9a4;
  --amber: #f5a623;
  --red: #f87171;
  --text: #f0eeff;
  --text2: #a09bc0;
  --text3: #5e5a78;
  --font-head: 'Syne', sans-serif;
  --radius: 14px;
  --radius-sm: 9px;
}

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

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary-sm {
  background: var(--accent);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  display: inline-block;
}
.btn-primary-sm:hover { background: #7d60ff; transform: translateY(-1px); }

.btn-ghost-sm {
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: all .2s;
  display: inline-block;
}
.btn-ghost-sm:hover { border-color: var(--border2); color: var(--text); background: var(--surface); }

.btn-hero {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-head);
  display: inline-block;
  transition: all .25s;
  box-shadow: 0 0 40px rgba(109,74,254,.35);
}
.btn-hero:hover { background: #7d60ff; transform: translateY(-2px); box-shadow: 0 0 60px rgba(109,74,254,.5); }

.btn-hero-ghost {
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: all .2s;
}
.btn-hero-ghost:hover { border-color: var(--accent2); color: var(--text); }

/* ── NAV ─────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}
.logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
}
.nav-links a {
  padding: 6px 13px;
  color: var(--text2);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .2s; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 28px 16px; border-top: 1px solid var(--border); }
.nav-mobile a { padding: 9px 12px; color: var(--text2); font-size: 14px; border-radius: var(--radius-sm); }
.nav-mobile a:hover { color: var(--text); background: var(--surface); }
.nav-mobile.open { display: flex; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  left: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  bottom: -80px;
  right: 100px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(109,74,254,.12);
  border: 1px solid rgba(109,74,254,.3);
  color: var(--accent3);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-proof { display: flex; align-items: center; gap: 20px; }
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-num { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--text); }
.proof-label { font-size: 12px; color: var(--text3); }
.proof-div { width: 1px; height: 32px; background: var(--border2); }
.hero-visual { position: relative; z-index: 1; }

/* MOCKUP */
.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
}
.mockup-bar {
  background: var(--bg2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.mockup-url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--text3);
  background: var(--bg3);
  padding: 3px 12px;
  border-radius: 99px;
  flex: 1;
  text-align: center;
}
.mockup-body { display: flex; height: 280px; }
.mock-sidebar {
  width: 130px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  flex-shrink: 0;
}
.mock-logo {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  margin-bottom: 10px;
  color: var(--accent2);
}
.mock-nav-item {
  padding: 6px 8px;
  font-size: 11px;
  color: var(--text3);
  border-radius: 6px;
  margin-bottom: 2px;
}
.mock-nav-item.active { background: rgba(109,74,254,.15); color: var(--accent2); }
.mock-main { flex: 1; padding: 14px; overflow: hidden; }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.mock-stat {
  background: var(--bg3);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.ms-val { font-family: var(--font-head); font-size: 14px; font-weight: 800; }
.ms-lbl { font-size: 9px; color: var(--text3); }
.ms-val.accent { color: var(--accent2); }
.ms-val.green { color: var(--green); }
.ms-val.amber { color: var(--amber); }
.mock-bar-wrap { margin-bottom: 10px; }
.mock-bar-label { display: flex; justify-content: space-between; font-size: 9px; color: var(--text3); margin-bottom: 4px; }
.mock-bar { height: 4px; background: var(--bg3); border-radius: 99px; }
.mock-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--green)); }
.mock-files { display: flex; flex-direction: column; gap: 5px; }
.mock-file {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
}
.mf-icon { font-size: 14px; }
.mf-name { flex: 1; color: var(--text2); }
.mf-badge {
  font-size: 9px;
  background: rgba(30,217,164,.12);
  color: var(--green);
  padding: 2px 7px;
  border-radius: 99px;
}

/* ── TRUST ───────────────────────────────────────── */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-label {
  text-align: center;
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logos span {
  color: var(--text3);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .03em;
}

/* ── SECTIONS ────────────────────────────────────── */
.section-label {
  font-size: 12px;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* ── FEATURES ────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.feat-card--large { grid-column: span 2; }
.feat-card--right { }
.feat-icon { font-size: 28px; margin-bottom: 12px; }
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p { color: var(--text2); font-size: 14px; line-height: 1.65; }
.feat-tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat-tag {
  font-size: 12px;
  background: rgba(109,74,254,.1);
  border: 1px solid rgba(109,74,254,.2);
  color: var(--accent3);
  padding: 3px 10px;
  border-radius: 99px;
}

/* ── HOW IT WORKS ────────────────────────────────── */
.how { padding: 100px 0; background: var(--bg2); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
}
.step {
  flex: 1;
  min-width: 200px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-size: 22px;
  color: var(--text3);
  flex-shrink: 0;
  margin-top: 28px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p { color: var(--text2); font-size: 14px; }

/* ── PRICING ─────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: all .2s;
}
.price-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(109,74,254,.08) 0%, var(--surface) 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 99px;
  white-space: nowrap;
  font-family: var(--font-head);
}
.price-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}
.price-amount span { font-size: 15px; color: var(--text3); font-weight: 400; }
.price-desc { color: var(--text2); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { font-size: 14px; color: var(--text2); padding: 5px 0; }
.price-features li::first-letter { color: var(--green); }
.btn-price {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border2);
  color: var(--text);
  transition: all .2s;
  font-family: var(--font-head);
}
.btn-price:hover { background: var(--surface2); }
.btn-price--featured { background: var(--accent); border-color: transparent; color: #fff; }
.btn-price--featured:hover { background: #7d60ff; }
.pricing-note {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text3);
  font-size: 13px;
  padding-top: 8px;
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.testi-card--accent { border-color: var(--accent); }
.testi-stars { color: var(--amber); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { font-size: 14px; font-weight: 600; display: block; }
.testi-author span { font-size: 12px; color: var(--text3); }

/* ── FAQ ─────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-list { max-width: 680px; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  gap: 12px;
}
.faq-arrow { color: var(--text3); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  color: var(--text2);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA FINAL ───────────────────────────────────── */
.cta-final { padding: 100px 0; }
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: .1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.cta-box p { color: var(--text2); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text3); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text3); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--text2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--text3);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 20px 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card--large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 28px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-proof { gap: 12px; }
  .cta-box { padding: 40px 20px; }
}
