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

:root {
  --navy: #162040;
  --blue: #29AEFF;
  --blue-dark: #0284C7;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 2px solid var(--navy);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; object-fit: contain; }
.nav-logo span { font-weight: 700; color: var(--navy); font-size: 15px; }
.nav-cta {
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 8px 18px; border-radius: 10px;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .85; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, var(--blue-dark) 100%);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('/logo-icon.png') no-repeat center right -60px;
  background-size: 380px;
  opacity: .04;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -.02em;
  max-width: 780px; margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 560px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #fff; color: var(--navy);
  font-weight: 800; font-size: 14px;
  padding: 13px 28px; border-radius: 12px;
  transition: opacity .15s; display: inline-block;
}
.btn-primary:hover { opacity: .9; }
.btn-secondary {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 12px;
  transition: background .15s; display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); }
.hero-sub {
  margin-top: 16px;
  font-size: 12px; color: rgba(255,255,255,.45);
}

/* STATS */
.stats {
  background: var(--navy);
  padding: 28px 24px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-n { font-size: 26px; font-weight: 800; color: var(--blue); }
.stat-l { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* SECTIONS */
.section { padding: 72px 24px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-dark); margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; letter-spacing: -.01em;
  max-width: 600px; margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: var(--slate-500);
  max-width: 540px; line-height: 1.7;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 24px;
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(22,32,64,.08); }
.feature-icon {
  width: 40px; height: 40px;
  background: #e0f2fe; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--slate-500); line-height: 1.6; }

/* HOW IT WORKS */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--slate-100);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy); color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 14px;
}
.step-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }

/* SCORE PREVIEW */
.score-preview {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, var(--blue-dark) 100%);
  border-radius: 20px; padding: 40px; margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 640px) { .score-preview { grid-template-columns: 1fr; } }
.score-preview-text h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.score-preview-text p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }
.score-card {
  background: #fff; border-radius: 14px; padding: 20px;
}
.score-card-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.score-card-role { font-size: 12px; color: var(--slate-400); margin-bottom: 14px; }
.score-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.score-num { font-size: 32px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.score-bar-wrap { flex: 1; height: 8px; background: var(--slate-100); border-radius: 4px; overflow: hidden; }
.score-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--navy)); }
.score-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px;
}
.chip-orange { background: #fff7ed; color: #c2410c; }
.chip-blue { background: #eff6ff; color: var(--blue-dark); }
.chip-green { background: #f0fdf4; color: #15803d; }

/* PRICING STRIP */
.pricing-strip {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 48px 24px;
}
.pricing-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; max-width: 820px; margin: 32px auto 0;
}
.pricing-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 16px; padding: 24px; text-align: center;
}
.pricing-card.featured {
  background: var(--navy); border-color: var(--navy);
  transform: scale(1.03);
}
.pricing-card .plan-name { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-card.featured .plan-name { color: var(--blue); }
.pricing-card:not(.featured) .plan-name { color: var(--slate-400); }
.pricing-card .plan-price { font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.pricing-card.featured .plan-price { color: #fff; }
.pricing-card:not(.featured) .plan-price { color: var(--navy); }
.pricing-card .plan-credits { font-size: 12px; margin-bottom: 16px; }
.pricing-card.featured .plan-credits { color: rgba(255,255,255,.55); }
.pricing-card:not(.featured) .plan-credits { color: var(--slate-400); }
.pricing-card .plan-cta {
  display: block; width: 100%;
  font-weight: 700; font-size: 13px;
  padding: 9px 0; border-radius: 10px;
}
.pricing-card.featured .plan-cta { background: var(--blue); color: #fff; }
.pricing-card:not(.featured) .plan-cta {
  background: var(--slate-100); color: var(--navy);
}
.pricing-card .plan-cta:hover { opacity: .85; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 40px; }
.faq-item { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 14px; padding: 20px; }
.faq-item h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.faq-item p { font-size: 13px; color: var(--slate-500); line-height: 1.65; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 60%, var(--blue-dark) 100%);
  padding: 72px 24px; text-align: center;
}
.cta-banner h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 32px; }

/* FOOTER */
footer {
  background: var(--navy); padding: 32px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer img { height: 28px; object-fit: contain; filter: brightness(0) invert(1); }
footer p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 600px) {
  .stats { gap: 28px; }
  .score-preview { padding: 24px; }
  footer { flex-direction: column; align-items: flex-start; }
}
