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

:root {
  --orange: #e65208;
  --indigo: #4f46e5;
  --dark: #111827;
  --mid: #374151;
  --light: #6b7280;
  --bg: #f9fafb;
  --white: #fff;
  --radius: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; color: var(--dark); line-height: 1.6; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; background: var(--white);
  border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100;
}
.nav-logo { font-weight: 800; font-size: 1.25rem; color: var(--dark); text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--dark); text-decoration: none; }
.btn { display: inline-block; padding: 0.55rem 1.25rem; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; transition: opacity .15s; }
.btn:hover { opacity: .88; text-decoration: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a0a00 0%, #3b1300 40%, #0f0a24 100%);
  color: var(--white); text-align: center; padding: 6rem 1.5rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem; }
.hero p { font-size: 1.2rem; color: #e5e7eb; max-width: 600px; margin: 0 auto 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Sections ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.section-title p { color: var(--light); font-size: 1.05rem; }

/* ── Feature grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { background: var(--white); border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 1.75rem; }
.feature-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p, .feature-card ul { color: var(--mid); font-size: 0.95rem; }
.feature-card ul { padding-left: 1.2rem; }
.feature-card li { margin-bottom: 0.3rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.plan { border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 2rem; background: var(--white); display: flex; flex-direction: column; }
.plan.featured { border-color: var(--indigo); box-shadow: 0 0 0 2px var(--indigo); }
.plan-badge { font-size: 0.75rem; font-weight: 700; background: var(--indigo); color: var(--white); padding: 0.2rem 0.6rem; border-radius: 99px; display: inline-block; margin-bottom: 0.75rem; }
.plan h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.25rem; }
.plan-price { font-size: 2.25rem; font-weight: 900; margin: 0.75rem 0; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--light); }
.plan-desc { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.25rem; flex: 1; }
.plan ul { list-style: none; padding: 0; margin-bottom: 1.5rem; flex: 1; }
.plan li { padding: 0.35rem 0; font-size: 0.9rem; color: var(--mid); }
.plan li::before { content: '✓ '; color: var(--indigo); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; }

/* ── Alternating feature rows ── */
.feature-row { display: flex; align-items: center; gap: 3rem; margin-bottom: 4rem; }
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-row-text { flex: 1; }
.feature-row-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.feature-row-text p { color: var(--mid); margin-bottom: 1rem; }
.feature-row-text ul { padding-left: 1.25rem; color: var(--mid); }
.feature-row-text li { margin-bottom: 0.4rem; }
.feature-row-visual { flex: 1; background: var(--bg); border-radius: var(--radius); padding: 3rem; text-align: center; font-size: 4rem; border: 1px solid #e5e7eb; }

/* ── Stats band ── */
.stats-band { background: var(--dark); color: var(--white); padding: 4rem 1.5rem; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; max-width: 800px; margin: 0 auto; }
.stat { }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--orange); }
.stat-label { font-size: 0.9rem; color: #9ca3af; margin-top: 0.25rem; }

/* ── CTA band ── */
.cta-band { background: var(--indigo); color: var(--white); text-align: center; padding: 5rem 1.5rem; }
.cta-band h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; color: #c7d2fe; margin-bottom: 2rem; }
.btn-white { background: var(--white); color: var(--indigo); }

/* ── Footer ── */
footer { background: var(--dark); color: #9ca3af; padding: 3rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; color: #6b7280; max-width: 220px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: 0.875rem; }
.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-copy { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid #374151; font-size: 0.8rem; text-align: center; }

/* ── Forms ── */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
input, textarea, select { width: 100%; padding: 0.65rem 0.9rem; border: 1px solid #d1d5db; border-radius: var(--radius); font-size: 0.95rem; font-family: inherit; }
input:focus, textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }
textarea { min-height: 140px; resize: vertical; }

/* ── Prose (legal pages) ── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { color: var(--mid); font-size: 0.975rem; margin-bottom: 0.75rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { flex-wrap: wrap; gap: 0.75rem; }
  .nav-links { flex-wrap: wrap; gap: 0.75rem; }
  .feature-row, .feature-row:nth-child(even) { flex-direction: column; }
  .feature-row-visual { display: none; }
}
