
:root {
  --bg: #0e1014;
  --bg-soft: #151922;
  --panel: rgba(22, 27, 36, 0.92);
  --text: #ffffff;
  --muted: #b7bec9;
  --line: rgba(255,255,255,0.10);
  --primary: #d62828;
  --primary-dark: #b81f1f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0,0,0,0.25);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 17, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand { display:flex; align-items:center; gap:12px; font-weight:700; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ff5b5b);
  display:grid; place-items:center; font-size: 0.85rem; letter-spacing: 0.08em;
}
.brand-text { font-size: 1rem; }
.site-nav { display:flex; gap:24px; color: var(--muted); }
.site-nav a:hover, .phone-link:hover { color: var(--white); }
.nav-actions { display:flex; align-items:center; gap:16px; }
.phone-link { color: var(--muted); }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 48px; padding: 0 18px; border-radius: 14px;
  font-weight: 700; border: 1px solid transparent; transition: 0.2s ease;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,0.02); }
.btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,40,40,0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.06), transparent 25%),
    linear-gradient(180deg, #0b0d12 0%, #121722 100%);
}
.hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,12,16,0.88) 0%, rgba(10,12,16,0.72) 45%, rgba(10,12,16,0.45) 100%);
}
.hero-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 84px 0 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: #ff8d8d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 14px; }
h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.15rem; }
.hero-text { max-width: 58ch; color: var(--muted); font-size: 1.06rem; }
.hero-actions { display:flex; gap:14px; flex-wrap: wrap; margin: 24px 0; }
.hero-points { display:flex; flex-wrap:wrap; gap:10px; }
.hero-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.lead-card, .card, .feature-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-card { padding: 24px; }
.lead-card p { color: var(--muted); }
label {
  display:block;
  font-size: 0.92rem;
  margin: 0 0 14px;
  color: var(--muted);
}
input, select {
  width: 100%;
  margin-top: 8px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 0 14px;
}
.form-note, .form-message { font-size: 0.86rem; color: var(--muted); margin-top: 12px; }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0d12;
}
.trust-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 0;
}
.trust-item {
  padding: 14px 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  font-weight: 600;
}

.section { padding: 84px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { max-width: 780px; margin-bottom: 30px; }
.section-head p { color: var(--muted); }

.card-grid {
  display:grid;
  gap: 22px;
}
.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  padding: 24px;
}
.card p, .split p, .check-list { color: var(--muted); }
.icon-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.28);
  color: #ff8d8d;
  font-weight: 800;
  margin-bottom: 16px;
}

.split {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.feature-panel { padding: 26px; }
.feature-panel ul, .check-list { padding-left: 18px; }
.feature-panel li, .check-list li { margin-bottom: 10px; }

.steps {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.step p { color: var(--muted); }
.step-num {
  width: 42px; height: 42px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.28);
  color: #ff8d8d;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-band {
  padding: 34px 0 80px;
}
.cta-band-inner {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(214,40,40,0.2), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 32px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0d12;
  padding: 36px 0 90px;
}
.footer-grid {
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer-copy { color: var(--muted); max-width: 42ch; }
.site-footer h3 { font-size: 1rem; margin-bottom: 12px; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin-bottom: 10px; color: var(--muted); }

.sticky-mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display:none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,12,17,0.94);
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .hero-grid, .split, .footer-grid, .cta-band-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display:none; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .nav-actions .phone-link { display:none; }
  .hero-grid { padding: 48px 0 42px; }
  .card-grid.three, .trust-grid, .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .sticky-mobile-bar { display:flex; }
  .site-footer { padding-bottom: 110px; }
}
