/* HEADER */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px;
  min-height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: white; font-family: "Unbounded", sans-serif;
  font-weight: 800; font-style: italic; font-size: 14px;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
}
.logo-badge::after {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 7px;
}
.logo-text { display: grid; gap: 2px; line-height: 1; }
.logo-text b {
  font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; color: var(--ink);
}
.logo-text small {
  font-size: 9px; font-weight: 600; letter-spacing: 0.28em;
  color: var(--ink-dim); text-transform: uppercase;
}
.main-nav { display: flex; justify-content: center; gap: clamp(14px, 2.4vw, 32px); }
.main-nav a {
  position: relative; color: var(--ink-mid);
  font-size: 13.5px; font-weight: 500;
  padding: 8px 0; transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 9px;
  color: var(--ink); font-weight: 600; font-size: 14px;
}
.header-phone svg { width: 16px; height: 16px; color: var(--red); }
.menu-btn {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line-2); border-radius: 10px;
  background: rgba(255,255,255,0.04); cursor: pointer;
}
.menu-btn span {
  display: block; width: 18px; height: 1.5px;
  margin: 4px auto; background: white;
}
.mobile-nav {
  position: fixed; z-index: 49;
  top: var(--header-h); left: 0; right: 0;
  display: none; padding: 24px;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: grid; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  font-weight: 500; font-size: 16px;
  border-bottom: 1px solid var(--line);
}

/* HERO */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0a0a0c 0%, rgba(10,10,12,0.88) 32%, rgba(10,10,12,0.4) 70%, rgba(10,10,12,0.88) 100%),
    linear-gradient(180deg, transparent 60%, #0a0a0c 100%),
    url("https://images.unsplash.com/photo-1632823469850-2f77dd9c7f93?auto=format&fit=crop&w=2000&q=85") center/cover;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 75% 35%, rgba(236, 28, 36, 0.22), transparent 60%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.7), transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.7), transparent 75%);
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.92fr);
  gap: 48px; align-items: center; min-height: 560px;
}
.hero-copy { min-width: 0; }
.hero-copy h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  margin-bottom: 24px;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.hero-copy h1 .accent { color: var(--red); }
.hero-lede {
  max-width: 480px; margin-bottom: 36px;
  color: var(--ink-mid); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-bullets {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px; max-width: 540px;
}
.hero-bullet {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 12px; align-items: center;
}
.hero-bullet .ic {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line-2); border-radius: 9px;
  background: rgba(255,255,255,0.04); color: var(--red);
}
.hero-bullet .ic svg { width: 18px; height: 18px; }
.hero-bullet span { font-size: 13.5px; color: var(--ink-mid); font-weight: 500; }
.hero-side { position: relative; display: grid; gap: 14px; }
.hero-card {
  position: relative; padding: 26px;
  border: 1px solid var(--line-2); border-radius: var(--r-card);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px); box-shadow: var(--shadow-card);
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.hero-card-top .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(236, 28, 36, 0.14); color: var(--red-soft);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-card-top .badge::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-card-top .schedule { font-size: 12px; color: var(--ink-dim); }
.hero-card h3 {
  font-family: "Unbounded", sans-serif; font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 16px; line-height: 1.15;
}
.hero-quick-form { display: grid; gap: 10px; }
.hero-quick-form input, .hero-quick-form select {
  width: 100%; min-height: 46px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,0.04); outline: none;
  font-size: 14px; transition: border-color .2s;
}
.hero-quick-form input:focus, .hero-quick-form select:focus { border-color: var(--red); }
.hero-quick-form input::placeholder { color: var(--ink-dim); }
.hero-card small {
  display: block; margin-top: 6px;
  color: var(--ink-dim); font-size: 11px; line-height: 1.4;
}
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.hero-meta div {
  padding: 16px 12px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,0.025); text-align: center;
}
.hero-meta strong {
  display: block; font-family: "Unbounded", sans-serif;
  font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px;
}
.hero-meta span {
  font-size: 10.5px; color: var(--ink-dim);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.marquee {
  margin-top: 40px; padding: 18px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  overflow: hidden; white-space: nowrap; position: relative;
}
.marquee-track {
  display: inline-flex; gap: 56px;
  animation: scroll 40s linear infinite; padding-right: 56px;
}
.marquee span {
  font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 18px;
  color: var(--ink-dim); letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after { content: "•"; color: var(--red); margin-left: 56px; }
@keyframes scroll { to { transform: translateX(-50%); } }
