:root {
  --ink: #0d1117;
  --ink-soft: #3a424d;
  --muted: #5f6b7a;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --line: #e4e8ee;
  --brand: #6d28d9;
  --brand-2: #4f46e5;
  --brand-ink: #4c1d95;
  --accent: #10b981;
  --danger: #ef4444;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(13, 17, 23, 0.08);
  --shadow-lg: 0 24px 60px rgba(76, 29, 149, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand { font-family: 'Sora', system-ui, sans-serif; line-height: 1.15; }

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin: 0 0 .5rem; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.big { font-size: 1.15rem; }
.mb { margin-bottom: 2.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: .8rem 1.6rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: 1rem;
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 30px 70px rgba(76, 29, 149, 0.28); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-link { color: var(--brand); background: transparent; padding: 1.05rem .5rem; }

/* Announcement */
.announce {
  background: var(--brand-ink);
  color: #ede9fe;
  text-align: center;
  font-size: .9rem;
  padding: .6rem 16px;
  letter-spacing: .01em;
}

/* Hero */
.hero {
  background: radial-gradient(1200px 600px at 70% -10%, rgba(109,40,217,.55), transparent 60%),
              radial-gradient(900px 500px at 0% 10%, rgba(79,70,229,.45), transparent 55%),
              linear-gradient(160deg, #1b1140, #0d1117 70%);
  color: #fff;
  padding-bottom: 5rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 1.4rem; padding-bottom: 1.4rem; }
.brand { font-weight: 800; font-size: 1.25rem; color: #fff; }
.brand sup { font-size: .55em; opacity: .8; }
.hero-inner { padding-top: 2.5rem; max-width: 880px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 1.2rem;
}
.hero .lede { font-size: 1.25rem; color: #d7dce4; max-width: 760px; }
.hero .lede strong { color: #fff; }
.cta-row { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: 2rem 0 1.4rem; }
.trust { font-size: .9rem; color: #a4adba; margin: 0; }

/* Hero guarantee chip */
.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.35);
  border-radius: 14px;
  padding: .85rem 1.2rem;
  max-width: 440px;
  transition: background .15s ease, border-color .15s ease;
}
.guarantee-chip:hover { background: rgba(16,185,129,.16); border-color: rgba(16,185,129,.55); }
.guarantee-chip-icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(16,185,129,.4);
}
.guarantee-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  font-size: .85rem;
  color: #b9c2cf;
}
.guarantee-chip-text strong {
  color: #6ee7b7;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .92rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2.center { margin-bottom: 1rem; }

/* Ink eyebrow (on light sections) */
.eyebrow-ink { color: var(--brand); }

/* Stats bar */
.statsbar {
  background: linear-gradient(160deg, #160d33, #0d1117);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
.stat { text-align: center; padding: .4rem 1rem; }
.stat-icon { width: 28px; height: 28px; color: #6ee7b7; margin-bottom: .5rem; }
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, #c4b5fd, #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.stat-label { display: block; color: #b9c2cf; font-size: .92rem; margin-top: .4rem; }

/* Tools / integrations logo wall */
.logos {
  list-style: none;
  margin: 1.8rem 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  text-align: left;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .7rem .85rem;
  box-shadow: var(--shadow);
}
.logo-mark {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  display: grid; place-items: center;
  overflow: hidden;
}
.logo-img { width: 24px; height: 24px; object-fit: contain; display: block; }
/* Monogram fallback when a logo fails to load */
.logo-mark.mark-fallback { background: var(--c, var(--brand)); border-color: transparent; }
.logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.2;
}

/* Testimonials */
.testi-grid { margin-top: 2rem; text-align: left; }
.testi {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}
.testi p { font-size: 1.05rem; color: var(--ink-soft); }
.testi cite { font-style: normal; font-weight: 600; color: var(--muted); font-size: .9rem; }

/* Grids */
.grid { display: grid; gap: 1.4rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); margin-top: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.card-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand);
  background: #ede9fe;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card-icon {
  color: var(--brand);
  background: #ede9fe;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card p { color: var(--muted); margin: 0; }

/* Steps */
.steps { max-width: 760px; margin: 2.5rem auto 3rem; display: grid; gap: 1.6rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-dot {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 700; font-family: 'Sora', sans-serif;
  display: grid; place-items: center;
}
.step p { color: var(--muted); margin: 0; }

/* Qualification */
.qual { border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); background: #fff; }
.qual h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.qual ul { margin: 0; padding-left: 0; list-style: none; }
.qual li { margin-bottom: .7rem; color: var(--ink-soft); position: relative; padding-left: 1.7rem; }
.qual li::before { position: absolute; left: 0; top: -.02em; font-weight: 700; }
.qual-no li::before { content: '✕'; color: var(--danger); }
.qual-yes li::before { content: '✓'; color: var(--accent); }
.qual-no { border-top: 4px solid var(--danger); }
.qual-yes { border-top: 4px solid var(--accent); }

/* Before / after */
.ba-col { border-radius: var(--radius); padding: 1.8rem; }
.ba-before { background: #fff5f5; border: 1px solid #fed7d7; }
.ba-after { background: #ecfdf5; border: 1px solid #c6f6d5; }
.ba-col h3 { font-size: 1.3rem; }
.ba-col ul { margin: 0; padding-left: 0; list-style: none; }
.ba-col li { margin-bottom: .7rem; color: var(--ink-soft); position: relative; padding-left: 1.7rem; }
.ba-col li::before { position: absolute; left: 0; top: -.02em; font-weight: 700; }
.ba-before li::before { content: '✕'; color: var(--danger); }
.ba-after li::before { content: '✓'; color: var(--accent); }

/* Guarantee */
.guarantee {
  background:
    radial-gradient(800px 500px at 50% -10%, rgba(16,185,129,.22), transparent 60%),
    linear-gradient(160deg, #2e1065, #4c1d95);
  color: #fff;
}
.guarantee .badge {
  display: inline-block;
  background: rgba(16,185,129,.16);
  border: 1px solid rgba(16,185,129,.5);
  color: #a7f3d0;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}
.guarantee h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  max-width: 680px;
  margin: 2.4rem auto 1.2rem;
}
.guarantee .big { color: #e2d4f5; max-width: 640px; margin: 0 auto 2rem; }
.guarantee .btn { margin-top: .4rem; }

/* Single seal circle */
.guarantee .seal {
  width: 260px; height: 260px;
  max-width: 72vw; aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(150deg, #34d399, #059669 55%, #047857);
  display: grid; place-items: center;
  position: relative;
  box-shadow:
    0 24px 60px rgba(5,150,105,.5),
    inset 0 3px 14px rgba(255,255,255,.35),
    inset 0 -10px 24px rgba(0,0,0,.18);
}
/* outer glow ring */
.guarantee .seal::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(52,211,153,.4);
  box-shadow: 0 0 50px rgba(16,185,129,.35);
}
/* thin inner ring */
.guarantee .seal::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.45);
}
.seal-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seal-top {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.seal-mid {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .26em;
  line-height: 1;
  margin-top: .55rem;
  padding-left: .26em;
  text-transform: uppercase;
  opacity: .95;
}
.guarantee h2 { max-width: 760px; margin: 0 auto 1.2rem; }
.guarantee .btn { margin-top: 1rem; }

/* Offer / form */
.offer { background: var(--bg-alt); }
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.lead-form { margin-top: 1.8rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .8rem 1rem;
  font: inherit;
  background: #fbfcfe;
  color: var(--ink);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(109,40,217,.15); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: 1.2rem 0; }
.consent input { margin-top: .25rem; }
.form-fine { font-size: .82rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form-success {
  margin-top: 1.5rem; text-align: center; font-weight: 600;
  background: #ecfdf5; color: #065f46; border: 1px solid #c6f6d5;
  padding: 1rem; border-radius: 12px;
}
.form-error {
  margin-top: 1rem; text-align: center; font-weight: 600;
  background: #fff5f5; color: #9b1c1c; border: 1px solid #fed7d7;
  padding: .9rem 1rem; border-radius: 12px;
}
button[disabled] { opacity: .65; cursor: progress; }
/* Honeypot — hidden from humans, present for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* FAQ */
details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  margin-bottom: .8rem;
  background: #fff;
}
details summary {
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; float: right; color: var(--brand); font-weight: 700; }
details[open] summary::after { content: '–'; }
details p { margin: .8rem 0 0; color: var(--muted); }

/* Final CTA */
.final-cta { background: linear-gradient(160deg, #1b1140, #0d1117); color: #fff; }
.final-cta .big { color: #cbd2dc; }

/* Footer */
.footer { background: #0d1117; color: #8b94a3; padding: 3rem 0; }
.footer .brand { margin-bottom: 1rem; }
.disclaimer { font-size: .82rem; max-width: 760px; }
.copyright { font-size: .82rem; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 3.2rem 0; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .offer-card { padding: 1.6rem; }
  .btn-block { width: 100%; }
  .nav .btn { display: none; }
}
