/* ── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1827;
  --navy-mid:   #1a395d;
  --primary:    #0F5BA4;
  --primary-dk: #073B6D;
  --orange:     #F79320;
  --orange-lt:  #FFF3E0;
  --text:       #102033;
  --muted:      #5A6A7E;
  --border:     #D8E4F0;
  --bg:         #f8fbff;
  --white:      #FFFFFF;
  --success:    #15803d;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(15,27,43,.08);
  --shadow-lg:  0 12px 40px rgba(15,27,43,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Utilities ────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(247,147,32,.35);
}
.btn-primary:hover { background: #E07D10; box-shadow: 0 6px 20px rgba(247,147,32,.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15,91,164,.3);
}
.btn-blue:hover { background: var(--primary-dk); }

.btn-ghost {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); }

/* ── Nav ──────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,24,39,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { height: 36px; width: auto; }

.nav-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav-wordmark-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-wordmark-product {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.nav-cta:hover { background: #E07D10 !important; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 65%, #0F5BA4 100%);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(15,91,164,.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge { margin-bottom: 20px; }

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.hero-badge-item svg { opacity: .6; }

/* ── Section base ─────────────────────────────────────────────────── */
section { padding: 80px 0; }

.section-label { text-align: center; margin-bottom: 12px; }
.section-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ── Features ─────────────────────────────────────────────────────── */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(15,91,164,.12), rgba(15,91,164,.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── How it works ─────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.step { text-align: center; padding: 12px; }

.step-num {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Requirements ─────────────────────────────────────────────────── */
.requirements { background: var(--bg); }

.req-grid {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.req-item span:first-child { font-size: 18px; }

/* ── Pricing ──────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--white);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,91,164,.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-price .amount { font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--text); }
.pricing-price .currency { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--muted); }
.pricing-price .period { font-size: 15px; color: var(--muted); margin-bottom: 6px; }

.pricing-saving {
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 24px;
  min-height: 20px;
}

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.pricing-btn { width: 100%; justify-content: center; font-size: 15px; padding: 13px; }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-note a { color: var(--primary); font-weight: 600; }

/* ── Download CTA ─────────────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(150deg, var(--navy), var(--navy-mid));
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.download-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.download-cta p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 36px;
}

.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
  background: #060E1A;
  color: rgba(255,255,255,.45);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img { height: 28px; width: auto; }

.footer-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.footer-wordmark-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.footer-wordmark-product {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  section { padding: 60px 0; }
  .hero { padding: 70px 0 60px; }
  .hero-badges { gap: 16px; }
}
