:root {
  --bg: #F8F7F4;
  --bg-alt: #F0EEE9;
  --bg-dark: #111827;
  --fg: #111827;
  --fg-mid: #4B5563;
  --fg-light: #9CA3AF;
  --accent: #1E3A5F;
  --accent-mid: #2D5986;
  --accent-hover: #16304F;
  --accent-warm: #D97706;
  --accent-warm-bg: #FEF3C7;
  --border: #E5E1D8;
  --card-bg: #FFFFFF;
  --success: #059669;
  --shadow-sm: 0 1px 3px rgba(17,24,39,0.06);
  --shadow-md: 0 4px 16px rgba(17,24,39,0.08);
  --shadow-lg: 0 16px 48px rgba(17,24,39,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #1E3A5F22; color: var(--fg); }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--fg);
  text-decoration: none;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.nav-spacer { flex: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--bg-alt); color: var(--fg); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 80px 32px 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,58,95,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30,58,95,0.08);
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(30,58,95,0.12);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-accent { color: var(--accent); }
.hero-accent-warm { color: var(--accent-warm); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-mid);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,58,95,0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,95,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-light);
}
.trust-avatars {
  display: flex;
  gap: -4px;
}
.trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-right: -6px;
}
/* hero visual */
.hero-visual {
  position: relative;
}
.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-dark);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}
.overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overlay-text {
  flex: 1;
}
.overlay-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 2px;
}
.overlay-sub {
  font-size: 12px;
  color: var(--fg-light);
}
.overlay-badge {
  background: #ECFDF5;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--accent);
  padding: 32px;
}
.proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.proof-stat {
  text-align: center;
  padding: 0 24px;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -1px;
  display: block;
}
.proof-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ── FEATURES ── */
.features {
  padding: 96px 32px;
  background: var(--bg);
}
.features-header {
  max-width: 1160px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-mid);
  max-width: 560px;
  line-height: 1.6;
}
.features-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(30,58,95,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--fg-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.how-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 64px;
}
.how-header .section-sub { margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-mid);
  line-height: 1.55;
}
.step-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--accent-warm-bg);
  color: var(--accent-warm);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

/* ── PRICING ── */
.pricing {
  padding: 96px 32px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-sub { margin: 0 auto; }
.pricing-card {
  background: var(--accent);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 24px;
  font-weight: 500;
  vertical-align: super;
  margin-right: 4px;
  letter-spacing: 0;
}
.pricing-period {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto 40px;
  text-align: left;
}
.pricing-features li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: #A7F3D0;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 96px 32px;
  background: var(--bg-dark);
  text-align: center;
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.6;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-warm);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(217,119,6,0.3);
}
.final-cta-btn:hover { background: #B45309; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-light);
}
.footer-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.footer-link:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { flex-wrap: wrap; justify-content: center; }
  .proof-divider { display: none; }
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .nav-links { display: none; }
  .proof-strip { padding: 24px 16px; }
  .pricing-card { padding: 40px 24px; }
  .hero { padding: 56px 24px 48px; }
  .features, .how, .pricing, .final-cta { padding: 72px 24px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .pricing-price { font-size: 52px; }
  .nav-badge { display: none; }
}