:root {
  --bg: #0c0c0e;
  --panel: #17171b;
  --text: #f7f7f7;
  --muted: #b9b9c0;
  --accent: #c9282d;
  --accent-dark: #941b20;
  --line: #2a2a31;
  --max: 1120px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.55; }
a { color: inherit; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px clamp(18px, 4vw, 48px); border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(12,12,14,.92); backdrop-filter: blur(12px); z-index: 20; }
.brand { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.nav-cta { color: var(--text); background: var(--accent); padding: 10px 14px; border-radius: 999px; }
.hero, .page-hero, .section { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 48px); }
.hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 48px; align-items: center; min-height: 72vh; }
.hero h1, .page-hero h1 { font-size: clamp(42px, 7vw, 86px); line-height: .95; margin: 0 0 22px; letter-spacing: -.04em; text-transform: uppercase; }
.hero p, .page-hero p, .section p { color: var(--muted); font-size: 1.1rem; }
.eyebrow { color: var(--accent) !important; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: .8rem !important; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-block; border-radius: 999px; padding: 13px 18px; text-decoration: none; font-weight: 900; border: 1px solid var(--line); }
.primary { background: var(--accent); border-color: var(--accent); color: white; }
.secondary { background: transparent; color: white; }
.hero-media { min-height: 420px; border-radius: 28px; background: linear-gradient(135deg, #2b2b31, #111), radial-gradient(circle at 30% 30%, var(--accent), transparent 38%); border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.section h2 { font-size: clamp(30px, 4vw, 56px); line-height: 1; margin-top: 0; text-transform: uppercase; letter-spacing: -.03em; }
.cards, .contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.card h3, .card h2 { margin-top: 0; }
.muted { color: var(--muted); }
.final-cta { text-align: center; background: linear-gradient(180deg, transparent, rgba(201,40,45,.08)); }
.site-footer { border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; padding: 36px clamp(18px, 4vw, 48px); color: var(--muted); }
.form-wrap { max-width: 720px; }
.lead-form { background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 26px; display: grid; gap: 18px; }
.lead-form label { display: grid; gap: 8px; font-weight: 800; }
.lead-form input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: #0f0f13; color: var(--text); font-size: 1rem; }
.form-note { font-size: .92rem !important; margin: 0; }
@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 280px; }
  .cards, .contact-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}
