:root {
  --bg: #081120;
  --bg-2: #0c1730;
  --panel: rgba(15, 24, 45, 0.72);
  --border: rgba(255, 255, 255, 0.10);
  --text: #edf3ff;
  --muted: #aebbd8;
  --primary: #5b8cff;
  --primary-2: #7c4dff;
  --cyan: #33d6ff;
  --success: #1ec98f;
  --danger: #ff6b81;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(91, 140, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(124, 77, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #07101d 0%, #091221 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent 85%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  width: 380px;
  height: 380px;
  top: -90px;
  left: -120px;
  background: rgba(51, 214, 255, 0.18);
}

.orb-2 {
  width: 420px;
  height: 420px;
  right: -130px;
  top: 220px;
  background: rgba(124, 77, 255, 0.16);
}

.glass {
  background: linear-gradient(180deg, rgba(18, 29, 55, 0.78), rgba(10, 18, 35, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 10, 20, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(91, 140, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 12px 16px;
  border-radius: 14px;
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.hero { padding: 78px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #dce7ff;
  font-size: 0.84rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 4.7rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(91, 140, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-full { width: 100%; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe5fb;
  font-size: 0.96rem;
}

.point-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(30, 201, 143, 0.14);
  color: #6df3c0;
  font-weight: 700;
}

.mockup {
  border-radius: 28px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), transparent 30%, transparent 70%, rgba(124,77,255,0.08));
  pointer-events: none;
}

.mockup-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.mockup-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.24);
}

.mockup-body { display: grid; gap: 16px; }

.stat-card,
.progress-card,
.mini-box {
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.stat-card p,
.mini-box span,
.progress-label span:first-child {
  color: var(--muted);
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.24), rgba(124, 77, 255, 0.24));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-box {
  padding: 16px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.progress-card { padding: 18px; }

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.progress-bar {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 82%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--primary-2));
}

.trust-strip { padding: 20px 0 12px; }

.trust-wrap {
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
}

.trust-item {
  text-align: center;
  color: #dbe5fb;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.section { padding: 78px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.section-head h2,
.testimonial h2,
.lead-box h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-head p,
.testimonial p,
.lead-box p {
  color: var(--muted);
  line-height: 1.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius);
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.22), rgba(124, 77, 255, 0.22));
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.testimonial,
.lead-box {
  border-radius: 26px;
  padding: 26px;
}

.quote {
  margin-top: 22px;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--cyan);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: #dce8ff;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.alert {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.alert-success {
  background: rgba(30, 201, 143, 0.12);
  color: #93f5d0;
  border: 1px solid rgba(30, 201, 143, 0.18);
}

.alert-error {
  background: rgba(255, 107, 129, 0.10);
  color: #ffb3c1;
  border: 1px solid rgba(255, 107, 129, 0.18);
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #d7e4ff;
  font-size: 0.96rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
  font: inherit;
  transition: 0.25s ease;
}

.field select option {
  color: #111827;
}

.field input::placeholder {
  color: #8392b2;
}

.field input:focus,
.field select:focus {
  border-color: rgba(91, 140, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(91, 140, 255, 0.14);
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.check input {
  width: 18px;
  height: 18px;
}

.form-note {
  margin-top: 14px;
  color: #91a2c8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  transition: 0.25s ease;
  flex: 0 0 auto;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background: rgba(91, 140, 255, 0.22);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.site-footer {
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-wrap p {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

  .cards-grid,
  .trust-wrap,
  .mini-grid,
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .info-card,
  .testimonial,
  .lead-box,
  .mockup {
    border-radius: 20px;
  }
}