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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,.05), 0 10px 40px rgba(0,0,0,.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: var(--slate-800);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Space Grotesk', system-ui, sans-serif; }

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

a { text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-slate { background: var(--slate-50); }
.bg-dark { background: var(--slate-900); }

/* EYEBROW */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.eyebrow-light { color: #60a5fa; }

.section-sub {
  color: var(--slate-600);
  font-size: 16px;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

.btn-outline {
  background: transparent;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-200);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-dark {
  background: var(--slate-900);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}
.btn-dark:hover { background: var(--slate-800); }

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; padding: 14px; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-scrolled {
  border-color: var(--slate-200);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
}
.logo svg { color: var(--primary); }
.logo span { color: var(--primary); }

.logo-light { color: #fff; }
.logo-light svg { color: #60a5fa; }
.logo-light span { color: #60a5fa; }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--primary); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  background: #fff;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(37,99,235,.07);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,.05);
  bottom: -50px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--slate-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  color: var(--slate-600);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  gap: 0;
}

.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  color: var(--slate-400);
  margin-top: 3px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--slate-200);
  flex-shrink: 0;
}

/* CARDS */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-red {
  background: var(--red-100);
  color: var(--red-500);
}

.card p { color: var(--slate-600); font-size: 15px; line-height: 1.65; }

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--slate-200), var(--slate-200));
  background-image: repeating-linear-gradient(90deg, var(--slate-300) 0, var(--slate-300) 6px, transparent 6px, transparent 14px);
}

.step-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { color: var(--slate-600); font-size: 15px; line-height: 1.65; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,.06), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.plan-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: 0;
}

.plan-limit {
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-100);
}

.features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li.on { color: var(--slate-700); }
.features li.on::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316a34a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.features li.off { color: var(--slate-400); }
.features li.off::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--slate-100);
  flex-shrink: 0;
}

/* TARGET */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.target-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.target-card:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: var(--shadow);
}

.target-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.target-card h3 { font-size: 15px; margin-bottom: 8px; }
.target-card p { color: var(--slate-600); font-size: 14px; line-height: 1.6; }

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-left { padding-top: 8px; }
.contact-left h2 { margin-bottom: 16px; }
.text-white { color: #fff !important; }
.text-slate-400 { color: #94a3b8; line-height: 1.7; margin-bottom: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 15px;
}

.contact-row svg { color: #64748b; flex-shrink: 0; }
.contact-row:hover { color: #fff; text-decoration: none; }

#contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
}

.req { color: var(--primary); }

input, select, textarea {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 15px;
  color: var(--slate-800);
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: var(--slate-400); }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

textarea { resize: vertical; min-height: 110px; }

.form-status {
  font-size: 14px;
  border-radius: var(--radius);
  margin-bottom: 0;
}

.form-status.success {
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.form-status.error {
  color: #dc2626;
  background: #fee2e2;
  border: 1px solid #fecaca;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background: var(--slate-900);
  border-top: 1px solid var(--slate-800);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand .logo-light { justify-content: center; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; color: var(--slate-400); }

.footer-meta p { font-size: 13px; color: var(--slate-400); line-height: 1.8; }
.footer-meta a { color: var(--slate-400); }
.footer-meta a:hover { color: #fff; }

.footer-copy { font-size: 12px; color: var(--slate-600); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-3, .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 56px 24px 64px; }
  .hero-cta { gap: 12px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .target-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #contact-form { padding: 24px 20px; }
  .nav-inner .btn-dark { display: none; }
}
