* { box-sizing: border-box; }
:root { 
  --bg: #1e2022;
  --surface: #2a2e31;
  --text: #e2e8f0;
  --accent: #1e3a8a;
  --line: #3d4247;
  --dark: #16181a;
  --light-text: #f8fafc;
}
html { scroll-behavior: smooth; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; }
.container { width: min(calc(100% - 2rem), 1100px); margin: 0 auto; }
.site-header { padding: 1.5rem 0; background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.brand { text-decoration: none; color: white; font-weight: 700; }
.menu-toggle { display: block; background: none; border: 1px solid var(--line); color: var(--text); padding: 0.5rem 1rem; cursor: pointer; }
.nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg); padding: 1rem; flex-direction: column; gap: 1.5rem; border-bottom: 1px solid var(--line); align-items: center; }
.nav.active { display: flex; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; padding: 0.5rem 0; }
.button { padding: 0.8rem 1.5rem; border-radius: 4px; text-decoration: none; font-weight: 600; cursor: pointer; transition: opacity 0.2s; white-space: nowrap; }
.button:hover { opacity: 0.9; }
.button-primary { background: var(--accent); color: white; padding: 1rem 2rem; }
.site-header .button-primary { padding: 0.8rem 1.6rem; }
.button-secondary { background: #3d4247; color: white; margin-left: 1rem; }
.hero { padding: 8rem 0; background: var(--dark); }
.hero-grid { display: grid; grid-template-columns: 1fr; align-items: start; gap: 4rem; text-align: center; }
.hero-copy { text-align: center; }
.hero-panel,
.offer-card,
.process-card,
.contact-card,
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2); }
.hero-panel { padding: 3rem; text-align: left; }
.section { padding: 6rem 0; }
.section-alt { background: var(--surface); }
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h2 { font-size: 2.5rem; margin: 0 0 1rem; color: var(--light-text); }
.section-heading p:not(.eyebrow) { font-size: 1.1rem; color: #94a3b8; margin: 0 auto 2rem; max-width: 700px; }
.eyebrow,
.panel-label,
.offer-kicker { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); font-weight: 700; margin: 0 0 0.5rem; }
.hero h1 { font-size: 2.5rem; margin: 0 0 1.5rem; color: var(--light-text); line-height: 1.1; }
.lead,
.panel-note,
.about-lead,
.offer-card p,
.process-card p,
.contact-card p,
.feature-card p { font-size: 1.1rem; color: #94a3b8; }
.hero-actions { margin-top: 2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.hero-points,
.check-list,
.offer-card ul { list-style: none; padding: 0; margin: 1.5rem 0 0; text-align: left; }
.hero-points li,
.check-list li,
.offer-card li { position: relative; padding-left: 1.25rem; margin-bottom: 0.75rem; color: var(--text); }
.hero-points li::before,
.check-list li::before,
.offer-card li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--accent); }
.offer-grid,
.process-grid,
.grid { display: grid; gap: 1.5rem; }
.offer-grid { margin-top: 4rem; }
.offer-card,
.process-card,
.contact-card,
.feature-card { padding: 2rem; }
.offer-card h3,
.process-card h3,
.contact-card h3,
.feature-card h3,
.hero-panel h2 { color: var(--light-text); margin: 0 0 1rem; }
.step { display: inline-block; margin-bottom: 1rem; color: var(--accent); font-weight: 700; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; }
.feature-grid-single { max-width: 760px; margin-left: auto; margin-right: auto; }
.contact-card { max-width: 760px; margin: 0 auto; }
.site-footer { padding: 2rem 0; text-align: center; }
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav { display: flex; position: static; width: auto; background: none; padding: 0; flex-direction: row; border: none; align-items: center; gap: 2rem; flex: 1; justify-content: flex-end; }
  .nav a { padding: 0; }
  .nav a:first-child { margin-left: auto; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; text-align: left; }
  .hero-copy { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero h1 { font-size: 3.5rem; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
