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

:root {
  --navy: #232f3e;
  --navy-light: #b0bec5;
  --amber: #febd69;
  --amber-hover: #f0a845;
  --bg: #f4f7f9;
  --text: #232f3e;
  --text-muted: #555;
  --border: #e7e9ec;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: #0066c0; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Top nav ── */
.navbar {
  background: var(--navy);
  color: white;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.brand .logo { font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--navy-light); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: white; text-decoration: none; }
.btn-nav-cta {
  background: var(--amber); color: #111 !important;
  padding: 8px 16px; border-radius: 6px; font-weight: 700;
}
.btn-nav-cta:hover { background: var(--amber-hover); text-decoration: none; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--amber); color: #111; }
.btn-primary:hover { background: var(--amber-hover); text-decoration: none; }
.btn-secondary { background: white; color: var(--navy); border: 1px solid var(--border); }
.btn-secondary:hover { background: #fafafa; text-decoration: none; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 80px 24px 64px;
}
.hero h1 { font-size: 40px; font-weight: 800; max-width: 760px; margin: 0 auto 18px; }
.hero p.subhead { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .cta-note { font-size: 13px; color: #999; margin-top: 14px; }

/* ── Sections ── */
section { padding: 56px 24px; }
.section-title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.feature-card .icon { font-size: 28px; margin-bottom: 10px; }
.feature-card h3 { font-size: 16px; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-grid.two-plans {
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
}
.plan-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.plan-card.highlight { border-color: var(--amber); position: relative; }
.plan-card.highlight::before {
  content: 'Best Value';
  position: absolute; top: -12px; right: 20px;
  background: var(--amber); color: #111;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.plan-price { font-size: 34px; font-weight: 800; margin: 10px 0 4px; }
.plan-price span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.plan-interval { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-features { list-style: none; flex: 1; margin-bottom: 20px; }
.plan-features li { font-size: 14px; padding: 6px 0; color: var(--text); }
.plan-features li.disabled { color: #bbb; }
.plan-features li::before { content: '✓ '; color: #2e7d32; font-weight: 700; }
.plan-features li.disabled::before { content: '— '; color: #ccc; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { background: white; border-radius: 10px; padding: 18px 22px; margin-bottom: 12px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.faq-item h3 { font-size: 15px; margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: var(--text-muted); }

/* ── Privacy callout ── */
.privacy-callout {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 40px 24px;
}
.privacy-callout p {
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--navy-light);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
}
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--navy-light); }
.footer-links a:hover { color: white; }
.footer-version { font-size: 11px; opacity: 0.6; }

/* ── Legal page (Privacy / Terms placeholders) ── */
.legal-page { max-width: 680px; margin: 0 auto; padding: 64px 24px; }
.legal-page h1 { font-size: 28px; margin-bottom: 16px; }
.legal-page .placeholder-note {
  background: #fff8e8; border: 1px solid #febd69;
  border-radius: 8px; padding: 16px 20px;
  font-size: 13px; color: #7a4900; margin-bottom: 24px;
}
.legal-page p { color: var(--text-muted); margin-bottom: 12px; font-size: 14px; }

@media (max-width: 760px) {
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .nav-links { display: none; }
}
