:root {
  --bg: #f4f4f8;
  --surface: #ffffff;
  --text: #17161f;
  --muted: #666377;
  --line: #e7e2ef;
  --primary: #7a4df3;
  --primary-dark: #6339d9;
  --primary-soft: #efe7ff;
  --orange: #f59a3d;
  --green: #9ed24a;
  --lilac: #d9c6f5;
  --radius: 24px;
  --shadow: 0 18px 55px rgba(53, 29, 115, 0.10);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 244, 248, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 77, 243, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #9868ff);
  color: white;
  box-shadow: var(--shadow);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: none;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 72px 0 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.eyebrow.light {
  background: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
}
.hero h1,
.section-head h2,
.cta-box h2,
.testimonial-box h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero h1 span { color: var(--primary); }
.hero p,
.section-head p,
.testimonial-box p,
.cta-box p,
.site-footer p,
.feature-card p,
.step p,
.how-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9365ff);
  color: white;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: white;
  border: 1px solid var(--line);
}
.btn-light {
  background: white;
  color: var(--primary);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--muted);
  font-weight: 600;
}
.hero-visual {
  position: relative;
  min-height: 620px;
}
.phone-shell {
  background: linear-gradient(180deg, rgba(122,77,243,0.20), rgba(122,77,243,0.02));
  border: 1px solid rgba(122,77,243,0.12);
  border-radius: 36px;
  padding: 16px;
  width: min(100%, 520px);
  box-shadow: var(--shadow);
}
.phone-shell img {
  border-radius: 24px;
}
.metric-card {
  position: absolute;
  background: white;
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  max-width: 250px;
}
.metric-card span {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.metric-card strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.metric-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}
.metric-card.accent {
  background: #fff4e8;
}
.one { position: absolute; top: 0; right: 40px; }
.two { bottom: 110px; left: 0; }
.three { top: 72px; right: 0; }
.float-card { animation: float 7s ease-in-out infinite; }
.two { animation-delay: 0.5s; }
.three { animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.stats-strip {
  padding: 20px 0 10px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stats-grid > div,
.feature-card,
.how-card,
.preview-frame,
.faq-list details,
.testimonial-box,
.cta-box {
  background: white;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stats-grid > div {
  padding: 24px;
}
.stats-grid strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.stats-grid span {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}
.section.alt { background: #f0edf7; }
.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-head.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 46px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 28px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  color: white;
  background: var(--primary);
}
.soft-orange { background: var(--orange); }
.soft-green { background: var(--green); }
.soft-lilac { background: var(--lilac); color: var(--primary-dark); }
.feature-card h3,
.step h3,
.how-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.steps {
  display: grid;
  gap: 18px;
}
.step {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.step span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-soft);
}
.how-card {
  padding: 28px;
  position: sticky;
  top: 104px;
}
.how-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}
.preview-frame {
  padding: 18px;
  overflow: hidden;
}
.preview-frame img {
  border-radius: 22px;
}
.testimonial-box,
.cta-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-list details {
  padding: 24px 24px 8px;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding-bottom: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), #8a5eff);
  color: white;
}
.cta-box {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.cta-form {
  display: flex;
  gap: 12px;
  width: min(100%, 460px);
}
.cta-form input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 16px 18px;
  border-radius: 999px;
}
.site-footer {
  padding: 28px 0 40px;
  background: #110d1c;
  color: rgba(255,255,255,0.9);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}
.footer-brand { margin-bottom: 14px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,0.76);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid article:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    right: 16px;
    top: 72px;
    width: min(320px, calc(100% - 32px));
    background: white;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .two-col,
  .feature-grid,
  .stats-grid,
  .testimonial-box,
  .cta-box,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero {
    padding-top: 44px;
  }
  .hero-visual {
    min-height: unset;
    display: grid;
    gap: 16px;
  }
  .one,
  .two,
  .three,
  .metric-card {
    position: static;
    max-width: none;
    width: 100%;
  }
  .phone-shell {
    width: 100%;
  }
  .feature-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .cta-form {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding: 68px 0;
  }
  .hero h1,
  .section-head h2,
  .cta-box h2,
  .testimonial-box h2 {
    line-height: 1.04;
  }
  .step {
    grid-template-columns: 1fr;
  }
}
