:root {
  --black: #070707;
  --dark: #111111;
  --card: #181818;
  --red: #c91517;
  --red-dark: #8f0f12;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --line: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,7,7,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,21,23,0.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 74px; height: 50px; object-fit: contain; background: #fff; border-radius: 12px; padding: 6px; }
.brand strong { display: block; font-size: 20px; line-height: 1; }
.brand small { color: var(--muted); }
.menu { display: flex; align-items: center; gap: 24px; color: #ddd; font-weight: 600; }
.menu a:hover, .lang-link { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}
.btn-red { background: var(--red); color: white; box-shadow: 0 18px 40px rgba(201,21,23,0.25); }
.btn-red:hover { background: #e11b1e; transform: translateY(-2px); }
.btn-outline { border-color: rgba(201,21,23,0.65); color: white; background: rgba(255,255,255,0.04); }
.btn-outline:hover { background: rgba(201,21,23,0.18); transform: translateY(-2px); }

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(201,21,23,0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(201,21,23,0.18), transparent 32%),
    linear-gradient(135deg, #050505, #121212 55%, #260000);
  padding: 90px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.badge, .eyebrow {
  color: #ff4b4d;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}
.badge {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid rgba(201,21,23,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #f5d1d1;
}
h1 { font-size: clamp(42px, 7vw, 76px); line-height: 0.98; margin: 22px 0; letter-spacing: -0.05em; }
h1 span, h2 span { color: var(--red); }
.lead { font-size: 20px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-card, .card, .cta-box, .contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,21,23,0.35);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.hero-card { padding: 34px; backdrop-filter: blur(12px); }
.hero-card h2 { margin-top: 0; }
.hero-card ul { list-style: none; padding: 0; margin: 0; }
.hero-card li { padding: 13px 0 13px 34px; position: relative; color: #eee; border-bottom: 1px solid var(--line); }
.hero-card li:before { content: "✓"; position: absolute; left: 0; top: 12px; color: #fff; background: var(--red); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; }

.section { padding: 96px 0; }
.dark-section { background: #101010; border-top: 1px solid rgba(201,21,23,0.25); border-bottom: 1px solid rgba(201,21,23,0.25); }
.section-head { max-width: 680px; margin-bottom: 42px; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; margin: 8px 0 14px; letter-spacing: -0.03em; }
.section-head p, .about p, .cta-box p, .contact p { color: var(--muted); font-size: 18px; }
.cards { display: grid; gap: 24px; }
.three { grid-template-columns: repeat(3, 1fr); }
.card { padding: 30px; background: #151515; transition: 0.2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(201,21,23,0.18); border-color: rgba(201,21,23,0.7); }
.icon { width: 52px; height: 52px; border-radius: 16px; background: var(--red); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.card h3 { font-size: 23px; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 56px; align-items: center; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats div { background: #171717; border: 1px solid rgba(201,21,23,0.35); border-radius: 24px; padding: 26px; }
.stats div:last-child { grid-column: 1 / -1; }
.stats strong { display: block; font-size: 36px; color: var(--red); line-height: 1; }
.stats span { color: var(--muted); }

.cta { padding: 88px 0; }
.cta-box { text-align: center; padding: 54px 24px; background: linear-gradient(135deg, #280000, #121212); }
.cta-box h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.cta-box p { max-width: 690px; margin: 0 auto 28px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 42px; align-items: start; }
.contact-list { margin-top: 24px; color: #eee; }
.contact-form { padding: 28px; background: #fff; color: #111; display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(201,21,23,0.12); }
.contact-form small { color: #666; }

.footer { border-top: 1px solid rgba(201,21,23,0.35); padding: 26px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.footer a { margin-left: 18px; }
.footer a:hover { color: var(--red); }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }
  .menu { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .three { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .nav > .btn { display: none; }
  .brand img { width: 62px; height: 42px; }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .btn { width: 100%; }
  .hero-card, .card, .contact-form { border-radius: 22px; }
  .stats { grid-template-columns: 1fr; }
  .stats div:last-child { grid-column: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer a { margin: 0 8px; }
}
