*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0e12;
  --bg-soft: #141820;
  --surface: #1c222d;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef1f6;
  --muted: #9aa3b2;
  --accent: #e10600;
  --accent-hover: #ff1a14;
  --silver: #c8d0dc;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .logo strong, .contact-phone, .footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--silver);
  font-weight: 600;
}

.topbar a:hover { color: var(--accent); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 14, 18, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #8b0000);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo strong {
  font-size: 1.35rem;
  color: var(--text);
}

.logo small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
}

.header nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--silver);
}

.header nav a:hover { color: var(--accent); }

.cta-header {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.cta-header:hover { background: var(--accent-hover); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(225, 6, 0, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--silver);
}

.hero-lead {
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  border-color: var(--line);
  color: var(--silver);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-stats div {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-intro {
  margin-bottom: 2rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--silver);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.strip {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(225, 6, 0, 0.08), transparent);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.strip h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--silver);
}

.strip p {
  color: var(--muted);
  font-size: 0.92rem;
}

.strip a:hover { color: var(--accent); }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about > div > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1rem;
}

.data-panel {
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.data-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--silver);
}

.data-panel dl div {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.data-panel dl div:last-child { border-bottom: none; }

.data-panel dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.data-panel dd {
  font-size: 0.92rem;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-phone {
  display: block;
  font-size: 2.25rem;
  margin: 0.75rem 0;
  color: var(--accent);
}

.contact-mail {
  display: block;
  color: var(--silver);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-mail:hover { color: var(--accent); }

.contact-addr {
  color: var(--muted);
  line-height: 1.7;
}

.contact-box {
  padding: 1.75rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--silver);
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .header nav,
  .cta-header { display: none; }

  .hero-layout,
  .about,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
