:root {
  --bg: #0b1020;
  --panel: #131a2d;
  --panel-2: #172039;
  --text: #ebeff8;
  --muted: #a9b4c8;
  --line: #27304a;
  --accent: #7dd3fc;
  --accent-2: #38bdf8;
  --white: #ffffff;
  --max: 1120px;
}

* {
  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, #0a0f1d 0%, #0f1528 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(10, 15, 29, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 20;
}

.nav, .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-cta, .site-footer a {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: 84px 0 56px;
}

.hero-grid, .two-col, .cta-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.eyebrow, .section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #07101c;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-points, .checklist, .hero-card ul, .panel ul {
  padding-left: 18px;
  margin: 0;
}

.hero-card, .panel, .pricing-card, .faq-item, .audit-form {
  background: rgba(19, 26, 45, 0.88);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.card-note, .form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 0;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 72px 0;
}

.section.muted {
  background: rgba(255,255,255,0.02);
}

.steps, .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.step {
  background: rgba(19, 26, 45, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 22px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.14);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 6px 0;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.audit-form {
  display: grid;
  gap: 14px;
}

.audit-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0 24px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .cta-wrap, .steps, .faq-grid, .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .nav, .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
