@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0f1629;
  --bg-card:   #141e35;
  --border:    #1e2d4a;
  --red:       #d42c4a;
  --red-hover: #b8223d;
  --blue:      #2563eb;
  --text:      #f0f4ff;
  --muted:     #7a8ba8;
  --green:     #22c55e;
  --yellow:    #facc15;
  --radius:    10px;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.15; }

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

img { max-width: 100%; display: block; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,22,41,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 100px; width: auto; object-fit: contain; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(212,44,74,0.12);
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(212,44,74,0.25);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--red); color: #fff; }
.nav-cta svg { width: 16px; height: 16px; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute;
  top: -8%; left: -8%;
  width: 45%; aspect-ratio: 1;
  background: rgba(212,44,74,0.18);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  bottom: -10%; right: -5%;
  width: 38%; aspect-ratio: 1;
  background: rgba(37,99,235,0.15);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(37,99,235,0.2);
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .price {
  background: linear-gradient(135deg, var(--red), #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 20px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212,44,74,0.3);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  font-family: var(--font-display);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212,44,74,0.4);
}
.btn-primary svg { width: 20px; height: 20px; }
.hero-checks { display: flex; flex-direction: column; gap: 8px; }
.hero-checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.hero-checks svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ── FORM CARD ───────────────────────────────────────── */
.form-wrap {
  position: relative;
}
.form-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(212,44,74,0.18), rgba(37,99,235,0.18));
  filter: blur(32px);
  border-radius: 24px;
}
.form-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  overflow: hidden;
}
.form-card--embed {
  padding: 0;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4px;
}
.form-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text); }
.field input,
.field select {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder { color: var(--muted); opacity: 0.6; }
.field input:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,44,74,0.12);
}
.select-wrap { position: relative; }
.select-wrap select { width: 100%; padding-right: 36px; cursor: pointer; }
.select-wrap .chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}
.select-wrap .chevron svg { width: 16px; height: 16px; display: block; }
.honeypot { display: none !important; }
.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--red);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-note svg { width: 13px; height: 13px; flex-shrink: 0; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.success-icon svg { width: 32px; height: 32px; color: var(--green); }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ── TRUST BADGES ────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(20,30,53,0.6);
  padding: 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { width: 20px; height: 20px; color: var(--red); }

/* ── SECTION WRAPPER ─────────────────────────────────── */
section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── PRICING NOTE ────────────────────────────────────── */
.pricing-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.pricing-note-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.pricing-note-badge--alt {
  background: var(--blue);
}
.pricing-note-divider {
  color: var(--border);
}

/* ── FEATURES GRID ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(212,44,74,0.4); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,44,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.ecomm-note {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: rgba(212,44,74,0.1);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(212,44,74,0.2);
}

/* ── BENEFITS SPLIT ──────────────────────────────────── */
.benefits-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefits-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.benefit-check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.benefit-check svg { width: 14px; height: 14px; }
.benefit-item p { font-size: 1.05rem; font-weight: 500; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 1.05rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-display);
  padding: 0;
}
.btn-link:hover { color: var(--red-hover); }
.btn-link svg { width: 20px; height: 20px; transition: transform 0.2s; }
.btn-link:hover svg { transform: translateX(4px); }
.benefits-img-wrap {
  position: relative;
}
.benefits-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
  object-fit: cover;
}

/* ── HOW IT WORKS ────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-line {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 20px; height: 20px; color: var(--yellow); fill: var(--yellow); }
.testimonial-card blockquote { font-size: 1rem; font-weight: 500; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-name { font-weight: 700; }
.testimonial-biz { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── FINAL CTA ───────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--red);
}
.final-cta-noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.08;
}
.final-cta-blob {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  aspect-ratio: 1;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  filter: blur(60px);
}
.final-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.final-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-display);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.btn-white svg { width: 20px; height: 20px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 48px; width: auto; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── AVAILABILITY BUTTON ─────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avail-wrap {
  position: relative;
}
.nav-avail {
  padding: 9px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-avail:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(34,197,94,0.06);
}
.avail-popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #0f1f10;
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
  animation: popIn 0.2s ease;
}
.avail-popup.open { display: flex; align-items: center; gap: 10px; }
.avail-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(-4px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── SPINNER ─────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ANIMATIONS ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 16px 60px; }
  section { padding: 64px 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary { justify-content: center; }
  .form-card { padding: 24px 18px; }
}
