:root {
  --orange: #E89C24;
  --orange-deep: #D98E1D;
  --dark: #12171D;
  --slate: #252D38;
  --navy: #0F1D37;
  --white: #F0F4FF;
  --muted: rgba(240, 244, 255, 0.78);
  --line: rgba(232, 156, 36, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, var(--dark) 0%, #10141a 100%);
  color: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(18, 23, 29, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.96rem;
}
.nav-link:hover, .nav-link.active { color: var(--white); }

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--white);
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 180ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(232, 156, 36, 0.25);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }

.btn-secondary {
  background: var(--slate);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.btn-secondary:hover { border-color: var(--orange); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(232, 156, 36, 0.5);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--orange); background: rgba(232,156,36,0.08); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 700;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232,156,36,0.12);
}

.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: clip;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -100px auto auto -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232,156,36,0.14), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15,29,55,0.55), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-title,
.page-hero h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.hero-card,
.card,
.stat-card,
.testimonial,
.price-card,
.offer-card,
.panel,
.form-shell {
  background: linear-gradient(180deg, rgba(37,45,56,0.94), rgba(24,31,40,0.94));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.6rem;
}
.hero-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(232,156,36,0.12);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.offers-grid,
.pricing-grid,
.results-grid,
.footer-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3, .offers-grid, .results-grid, .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4, .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.1fr 0.9fr; }

.section {
  padding: 4.4rem 0;
}
.section.compact { padding: 3rem 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.section-intro p { color: var(--muted); max-width: 60ch; }

.card, .offer-card, .testimonial, .price-card, .stat-card, .panel {
  padding: 1.35rem;
}
.card h3, .offer-card h3, .price-card h3, .panel h3 { margin: 0 0 0.6rem; font-size: 1.18rem; }
.card p, .offer-card p, .price-card p, .stat-card p, .testimonial p, .panel p { color: var(--muted); margin: 0; }

ul.clean {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}
ul.clean li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  color: var(--muted);
}
ul.clean li::before {
  content: '•';
  color: var(--orange);
  font-weight: 900;
}

.stat {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.6rem 0;
}
.price small { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

.kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
}

.highlight {
  color: var(--orange);
}

.page-hero {
  padding: 4.8rem 0 2.2rem;
}
.page-hero.small { padding-bottom: 0.4rem; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.form-shell {
  padding: 1.4rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
.label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.label.full { grid-column: 1 / -1; }
.input,
.textarea,
.select {
  width: 100%;
  background: rgba(18,23,29,0.88);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 0.9rem 0.95rem;
  outline: none;
}
.textarea { min-height: 132px; resize: vertical; }
.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(232,156,36,0.8);
  box-shadow: 0 0 0 3px rgba(232,156,36,0.14);
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-band {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232,156,36,0.18);
  background: linear-gradient(135deg, rgba(15,29,55,0.78), rgba(37,45,56,0.95));
}

.quote {
  font-size: 1.1rem;
  color: var(--white);
}

.footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer p, .footer a { color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}
.small { font-size: 0.92rem; }
.center { text-align: center; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 1.2rem 0; }

.pillars .card {
  position: relative;
  overflow: hidden;
}
.pillars .card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.checkline {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
}
.checkline strong { color: var(--white); }
.check {
  color: var(--orange);
  font-weight: 800;
}

.callout {
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  color: var(--white);
}

.spacer { height: 0.6rem; }

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-grid,
  .offers-grid,
  .results-grid,
  .stats-grid,
  .steps-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    padding: 0.8rem 0;
    align-items: flex-start;
  }
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 1.1rem)); }
  .hero, .page-hero, .section { padding-left: 0; padding-right: 0; }
  .btn { width: 100%; }
  .hero-actions .btn, .inline-actions .btn { width: auto; }
  .hero-copy h1, .section-title, .page-hero h1 { letter-spacing: -0.05em; }
}
