:root {
  --red: #c1121f;
  --red-dark: #9b0d18;
  --black: #111111;
  --gray-900: #222222;
  --gray-700: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-size: 0.9rem;
  padding: 10px 0;
}
header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo strong { font-size: 1.25rem; color: var(--black); }
.logo span { font-size: 0.82rem; color: var(--gray-500); margin-top: 4px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: #fff5f5; }
.btn-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-light:hover { background: rgba(255,255,255,0.08); }
.hero {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.9), rgba(193,18,31,0.82)),
    url('https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0 82px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 { margin: 0 0 18px; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.04; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.94); max-width: 720px; margin-bottom: 28px; }
.hero-buttons, .cta-row, .cta-inline { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-buttons { margin-bottom: 30px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}
.stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 16px;
}
.stat strong { display: block; font-size: 1.06rem; margin-bottom: 4px; }
.hero-card, .feature-box.dark {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-top: 0; margin-bottom: 16px; font-size: 1.3rem; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.95);
}
.hero-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
}
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 860px; margin: 0 auto 40px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; margin: 0 0 14px; }
.section-header p { margin: 0; color: var(--gray-700); font-size: 1.02rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.card, .step, .panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3, .step h3, .panel h3 { margin-top: 0; margin-bottom: 12px; font-size: 1.25rem; }
.card p, .step p, .panel p { color: var(--gray-700); margin-top: 0; margin-bottom: 14px; }
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--gray-700);
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}
.band {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.feature-box {
  background: linear-gradient(135deg, #111111, #2b2b2b);
  color: var(--white);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.feature-box h2, .feature-box h3 { margin-top: 0; }
.feature-box p, .feature-box li { color: rgba(255,255,255,0.9); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  margin-bottom: 14px;
}
textarea { min-height: 140px; resize: vertical; }
.cta-final {
  background: linear-gradient(135deg, #111111, #c1121f);
  color: var(--white);
  text-align: center;
}
.cta-final h2 { margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-final p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.92);
  font-size: 1.04rem;
}
footer {
  background: var(--black);
  color: rgba(255,255,255,0.82);
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.small-note { color: var(--gray-500); font-size: 0.94rem; }
@media (max-width: 1024px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .split, .steps, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { padding: 72px 0 64px; }
  section { padding: 64px 0; }
  .card, .feature-box, .hero-card, .step, .panel { padding: 22px; }
}