:root {
  --bg-dark: #0d0e10;
  --bg-darker: #08090a;
  --bg-light: #f2f3f5;
  --accent: #c4f538;
  --accent-hover: #d2ff4d;
  --text: #ffffff;
  --text-dim: #a3a3a8;
  --text-dark: #0d0e10;
  --text-dark-dim: #5a5a5a;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --card-dark: #11141100;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .12s ease, background .15s ease, color .15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-primary {
  background: var(--accent);
  color: #0d0e10;
  position: relative;
  box-shadow: 0 0 0 0 rgba(196, 245, 56, 0);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(196, 245, 56, 0.5), 0 0 0 4px rgba(196, 245, 56, 0.12);
}
.btn-primary svg { transition: transform .2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  padding: 12.5px 22px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); }
.btn-dark {
  background: #0d0e10;
  color: #fff;
}
.btn-dark:hover { background: #1a1b1d; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 14, 16, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 14, 16, 0.9);
  border-bottom-color: var(--border-dark);
}
.site-header.is-scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }
.header-inner { transition: padding .25s ease; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0d0e10;
  border-radius: 8px;
  font-weight: 800;
  font-size: 20px;
}
.logo-mark .dot { color: #0d0e10; }
.logo-text { letter-spacing: -0.01em; }

.primary-nav {
  display: flex;
  gap: 38px;
  font-size: 15px;
  font-weight: 500;
  color: #d8d8d8;
}
.primary-nav a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 60px 0 70px;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* Bold angled accent stripes anchored to the bottom-right of the hero */
.geo-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 560px;
  height: 560px;
  display: block;
  opacity: 0.28;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.accent { color: var(--accent); }
.glow {
  text-shadow: 0 0 32px rgba(196, 245, 56, 0.45);
  animation: glow-pulse 3.6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 24px rgba(196, 245, 56, 0.35); }
  50%      { text-shadow: 0 0 44px rgba(196, 245, 56, 0.7); }
}
.lede {
  font-size: 17px;
  color: #c8c8cc;
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars { display: inline-flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: inline-block;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 14px;
  animation: twinkle 2.8s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(196,245,56,0)); }
  50%      { filter: drop-shadow(0 0 6px rgba(196,245,56,0.6)); }
}
.trust-text {
  font-size: 13px;
  color: #b0b0b4;
}

/* ---------- Browser mockup ---------- */
.browser-mock {
  background: #1a1f1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  animation: float 7s ease-in-out infinite;
  transition: transform .3s ease, box-shadow .3s ease;
}
.browser-mock:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 60px 120px -28px rgba(0,0,0,0.75), 0 0 0 1px rgba(196,245,56,0.18), 0 0 80px -10px rgba(196,245,56,0.25);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: #f0eee8;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.browser-bar .dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.browser-bar .red { background: #ff5f57; }
.browser-bar .yellow { background: #febc2e; }
.browser-bar .green { background: #28c840; }
.browser-body {
  background:
    linear-gradient(135deg, rgba(20, 30, 20, 0.9), rgba(10, 15, 10, 0.95)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect width="400" height="400" fill="%23223322"/></svg>') center/cover;
  padding: 22px 26px;
  min-height: 380px;
  color: #fff;
  position: relative;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.mock-logo strong { font-size: 14px; letter-spacing: 0.05em; display: block; }
.mock-logo small { font-size: 10px; letter-spacing: 0.15em; color: #b8c8b8; }
.mock-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #d8d8d8;
}
.mock-cta {
  background: #4ea84a;
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}
.mock-hero h3 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mock-hero p {
  font-size: 12px;
  color: #c8d8c8;
  max-width: 230px;
  margin: 0 0 16px;
}
.mock-btn {
  background: #4ea84a;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
}
.mock-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mock-features strong { display: block; font-size: 10px; margin-bottom: 2px; }
.mock-features small { font-size: 9px; color: #a8b8a8; }

/* ---------- Tri-bar ---------- */
.tri-bar {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.tri-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.tri-icon {
  flex: none;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(196, 245, 56, 0.08);
  border-radius: 50%;
}
.tri-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.tri-item p { margin: 0; font-size: 13px; color: var(--text-dim); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-dark { background: var(--bg-dark); color: var(--text); }
.eyebrow {
  text-align: center;
  color: #8fae23;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin: 0 0 14px;
}
.section-dark .eyebrow { color: var(--accent); }
.section-title {
  text-align: center;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 56px;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.18);
  border-color: rgba(143, 174, 35, 0.4);
}
.feature-card .feature-icon { transition: transform .35s ease; }
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }
.feature-icon {
  display: inline-flex;
  color: #8fae23;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-dark-dim);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Steps ---------- */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  background: rgba(196, 245, 56, 0.05);
  border-color: rgba(196, 245, 56, 0.25);
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,245,56,0.08);
  color: var(--accent);
  margin-bottom: 18px;
}
.step-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}
.step-connector {
  align-self: center;
  flex: 0 0 56px;
  height: 2px;
  background-image: linear-gradient(to right, var(--accent) 50%, transparent 50%);
  background-size: 8px 2px;
  margin: 0 -1px;
  opacity: 0.6;
  animation: dash-flow 1.2s linear infinite;
}
@keyframes dash-flow {
  to { background-position: 16px 0; }
}

/* ---------- Pricing ---------- */
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  align-items: center;
}
.price { display: flex; align-items: baseline; gap: 8px; }
.price-amount {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period { font-size: 18px; color: var(--text-dark-dim); }
.price-note {
  font-size: 13px;
  color: var(--text-dark-dim);
  margin: 14px 0 22px;
  max-width: 280px;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #0d0e10;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-list li:hover .check {
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(196, 245, 56, 0.18);
}
.pricing-list li { transition: transform .2s ease; }
.pricing-list li:hover { transform: translateX(3px); }

/* ---------- CTA Bar ---------- */
.cta-bar {
  background: var(--accent);
  color: #0d0e10;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 24px;
}
.cta-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #0d0e10;
  color: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 26px;
  flex: none;
}
.cta-copy { flex: 1; }
.cta-copy h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.cta-copy p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(13, 14, 16, 0.75);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-darker);
  padding: 60px 0 30px;
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 13.5px;
  max-width: 260px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: color .15s ease;
}
.socials a:hover { color: var(--accent); }

.footer-col h4,
.footer-newsletter h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
}
.footer-col a:hover { color: var(--accent); }

.footer-newsletter p {
  font-size: 13px;
  margin: 0 0 16px;
  max-width: 240px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 4px 4px 4px 14px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  padding: 8px 6px;
}
.newsletter-form input::placeholder { color: #707070; }
.newsletter-form button {
  border: none;
  background: var(--accent);
  color: #0d0e10;
  width: 34px; height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--accent-hover); }

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: #6a6e6a;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Price currency / counter alignment */
.price-currency { font-size: 0.6em; vertical-align: top; margin-right: 2px; line-height: 1.4; opacity: 0.85; }
.price-num { display: inline-block; min-width: 1.4em; }

/* ---------- Lead modal ---------- */
.lead-dialog {
  width: min(560px, 92vw);
  max-height: 92vh;
  padding: 0;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: #0f120f;
  color: #fff;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(196,245,56,0.08);
  overflow: hidden;
}
.lead-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lead-dialog[open] {
  animation: dialog-in .25s cubic-bezier(.2,.7,.2,1);
}
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-form {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.lead-header {
  padding: 28px 32px 8px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.lead-eyebrow {
  text-align: left;
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.lead-header h2 {
  font-size: 24px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.lead-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.lead-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lead-close:hover { background: rgba(196,245,56,0.12); color: var(--accent); }

.lead-body {
  padding: 22px 32px 8px;
  overflow-y: auto;
  display: grid;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e8ece8;
}
.field-hint {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 12px;
  margin-left: 4px;
}
.field input[type="text"],
.field input[type="date"],
.field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: #6f756f; }
.field input:focus,
.field textarea:focus {
  border-color: rgba(196,245,56,0.5);
  background: rgba(196,245,56,0.04);
  box-shadow: 0 0 0 3px rgba(196,245,56,0.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input[type="date"] { color-scheme: dark; }
.field-half input { max-width: 240px; }
.field-chips { border: none; padding: 0; margin: 0; }
.field-chips legend { padding: 0; margin-bottom: 8px; }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  font-size: 13px;
  color: #d8d8d8;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}
.chip:hover span { border-color: rgba(196,245,56,0.35); color: #fff; }
.chip input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0e10;
  font-weight: 600;
}
.chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(196,245,56,0.25);
}
.chip:active span { transform: scale(0.97); }

.lead-footer {
  padding: 18px 32px 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: rgba(0,0,0,0.2);
}
.btn-ghost-dark {
  background: transparent;
  color: #d8d8d8;
  border: 1px solid var(--border-dark);
  padding: 12.5px 18px;
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* Hidden honeypot for spam bots */
.lead-gotcha {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Inline error message */
.lead-error {
  margin: 0 32px 0;
  padding: 12px 14px;
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.3);
  border-radius: 8px;
  color: #ff9b9b;
  font-size: 13.5px;
}

/* Submit button loading state */
.lead-submit-spinner { display: none; animation: spin 0.8s linear infinite; }
#leadSubmit.is-loading { pointer-events: none; opacity: 0.85; }
#leadSubmit.is-loading .lead-submit-arrow { display: none; }
#leadSubmit.is-loading .lead-submit-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.lead-success {
  padding: 48px 32px 40px;
  text-align: center;
}
.lead-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(196,245,56,0.12);
  color: var(--accent);
  margin-bottom: 18px;
}
.lead-success h3 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.lead-success p {
  margin: 0 0 22px;
  color: var(--text-dim);
  font-size: 14px;
}

@media (max-width: 560px) {
  .lead-header, .lead-body, .lead-footer { padding-left: 22px; padding-right: 22px; }
  .lead-footer { flex-direction: column-reverse; }
  .lead-footer .btn { width: 100%; justify-content: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .hero { padding: 40px 0 50px; }
  .geo-lines { width: 340px; height: 340px; opacity: 0.2; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .tri-bar { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: stretch; gap: 18px; }
  .step-connector { display: none; }
  .pricing-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-copy h1 { font-size: 38px; }
  .price-amount { font-size: 56px; }
}
