:root {
  --bg: #09090b;
  --panel: #18181b;
  --panel2: #27272a;
  --text: #ffffff;
  --muted: #c7c7cc;
  --red: #991b1b;
  --red2: #7f1d1d;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 5%;
  background: rgba(9,9,11,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 42px; object-fit: contain; border-radius: 8px; background: #d6d7db; }
.brand strong { display: block; letter-spacing: 2px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
nav { display: flex; gap: 24px; color: var(--muted); font-weight: 700; }
nav a:hover { color: #fff; }
.call-btn, .primary {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 900;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 44px;
  padding: 70px 5%;
  background:
    radial-gradient(circle at top, rgba(153,27,27,.38), transparent 42%),
    linear-gradient(180deg, #09090b, #18181b);
}
.eyebrow {
  color: #fecaca;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 7vw, 82px); line-height: .98; letter-spacing: -3px; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px; }
h3 { font-size: 23px; margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.7; }
.hero-text { font-size: 20px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.secondary {
  display: inline-block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 900;
}
.logo-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.logo-card img { width: 100%; display: block; border-radius: 24px; background: #d6d7db; }
.section, .split-section, .contact-section { padding: 90px 5%; max-width: 1280px; margin: 0 auto; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.card, .contact-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: rgba(153,27,27,.7); font-size: 26px; margin-bottom: 20px; }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: #111113;
  max-width: none;
}
.split-section > div, .split-section ul { max-width: 610px; }
.split-section > div { margin-left: auto; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px;
  font-weight: 800;
}
.check-list li::before { content: "✓"; color: #fecaca; margin-right: 10px; font-weight: 900; }
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}
.contact-section {
  margin-top: 70px;
  margin-bottom: 70px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(135deg, #450a0a, #18181b);
}
.contact-card { background: #fff; color: #111; }
.contact-card p { color: #555; }
.contact-card a { display: block; margin-top: 18px; background: #111; color: #fff; padding: 18px; border-radius: 18px; font-size: 24px; font-weight: 900; text-align: center; }
footer { border-top: 1px solid var(--line); padding: 28px 5%; text-align: center; }
footer p { margin: 0; font-size: 14px; }
@media (max-width: 900px) {
  nav { display: none; }
  .hero, .split-section, .contact-section { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .split-section > div { margin-left: 0; }
}
@media (max-width: 560px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .call-btn { width: 100%; text-align: center; }
  .cards { grid-template-columns: 1fr; }
  h1 { letter-spacing: -2px; }
}
