:root {
  --bg: #08080a;
  --bg-card: #0f0f12;
  --bg-card-hover: #141418;
  --fg: #f2f0ec;
  --fg-muted: #7a7670;
  --fg-dim: #4a4744;
  --accent: #6c63ff;
  --accent-bright: #8b85ff;
  --accent-dim: rgba(108, 99, 255, 0.10);
  --accent-border: rgba(108, 99, 255, 0.30);
  --green: #2dd98e;
  --green-dim: rgba(45, 217, 142, 0.10);
  --border: rgba(242, 240, 236, 0.07);
  --border-card: rgba(242, 240, 236, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 10, 0.85);
}
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent-bright);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 2px 7px;
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 240, 236, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 236, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 0%, transparent 100%);
}
.hero-glow-1 {
  position: absolute;
  top: 25%; left: 30%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(108, 99, 255, 0.07) 0%, transparent 70%);
}
.hero-glow-2 {
  position: absolute;
  top: 60%; left: 70%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(45, 217, 142, 0.05) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 130px 48px 100px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 32px;
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-price-note { color: var(--green); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border-card);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-secondary:hover { color: var(--fg); border-color: var(--border); }
.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-dim);
}
.trust-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(45, 217, 142, 0.3);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── SECTION UTILITIES ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 64px;
}

/* ── SERVICES ── */
.services {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card-hover); }
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(108, 99, 255, 0.02) 0%, transparent 100%);
}
.how-inner { max-width: 960px; margin: 0 auto; }
.steps { display: flex; align-items: stretch; gap: 0; }
.step { flex: 1; padding: 40px 32px; }
.step-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }
.step-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1060px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--border); }
.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(108, 99, 255, 0.06) 0%, var(--bg-card) 100%);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  padding: 3px 14px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  color: var(--fg-muted);
}
.pricing-period { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; }
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-dim);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pricing-cta {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--fg-muted);
}
.pricing-cta:hover { border-color: var(--border); color: var(--fg); }
.pricing-cta.featured-cta {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.pricing-cta.featured-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.3);
}
.pricing-cta-link {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  padding: 13px 12px;
}
.pricing-talk-link {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: none;
  border: none;
  color: var(--fg-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.15s;
  text-align: center;
}
.pricing-talk-link:hover { color: var(--fg-muted); text-decoration: underline; }
.pricing-trust {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── FAQ ── */
.faq {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--accent-bright); }
.faq-q-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s, color 0.15s;
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  border-color: var(--accent-border);
  color: var(--accent-bright);
}
.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── LEAD FORM MODAL ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.88);
  z-index: 500;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}
.modal-close:hover { color: var(--fg); border-color: var(--border); }
.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.modal-sub { font-size: 14px; color: var(--fg-muted); margin-bottom: 36px; line-height: 1.6; }
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-card);
  color: var(--fg);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7670' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: #0f0f12; color: var(--fg); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-dim); }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(108, 99, 255, 0.3); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { font-size: 12px; color: var(--fg-dim); text-align: center; margin-top: 14px; line-height: 1.5; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success h3 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.success-icon { font-size: 44px; margin-bottom: 16px; }
.form-error { font-size: 13px; color: #ff6b6b; margin-top: 10px; text-align: center; display: none; }

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent 0%, rgba(108, 99, 255, 0.04) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 44px; }
.closing-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.footer-tag { font-size: 13px; color: var(--fg-muted); }
.footer-right { font-size: 13px; color: var(--fg-dim); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-cta { display: none; }
  .hero-inner { padding: 96px 20px 72px; }
  .services, .how-it-works, .pricing, .faq, .closing, .site-footer { padding-left: 20px; padding-right: 20px; }
  .service-grid { grid-template-columns: 1fr; border-radius: 8px; }
  .steps { flex-direction: column; }
  .step-divider { width: 100%; height: 1px; }
  .step { padding: 32px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { order: -1; }
  .modal { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 14px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
