/* ============ Fonts ============ */
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-400-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-400.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-500-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-500.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-600-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-600.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-700-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-700.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/manrope-800-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/manrope-800.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

/* ============ Root ============ */
:root {
  --accent: #E30613;
  --accent-dark: #B30510;
  --accent-light: #FF1A2C;
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #161616;
  --surface: #1A1A1A;
  --surface-2: #222222;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #FFFFFF;
  --text-muted: #A3A3A3;
  --text-dim: #737373;
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1280px;
  --transition: 0.25s ease;
}

* , *::before, *::after { box-sizing: border-box; touch-action: manipulation; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--text); }

/* ============ Container ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }
@media (max-width: 480px) { .container { padding: 0 20px; } }

.accent { color: var(--accent); }

/* ============ Section base ============ */
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.section + .section { border-top: 1px solid var(--border); }
.hero + .section { border-top: 1px solid var(--border); }
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }

@media (max-width: 768px) { .section { padding: 80px 0; } }

/* Section heading */
.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: left;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding: 8px 16px 8px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  background: var(--accent);
  color: var(--text);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.section__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-muted);
  margin: 0;
  max-width: 600px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1;
}
.btn--lg { padding: 16px 28px; font-size: 14px; }
.btn--primary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(227, 6, 19, 0.35);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(227, 6, 19, 0.45);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--text); color: var(--text); }

/* ============ Header ============ */
.header {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.header__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 8px 8px 18px;
  border-radius: 100px;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  max-width: calc(100% - 16px);
}
.header.is-scrolled .header__pill {
  background: rgba(10, 10, 10, 0.85);
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.header__logo em { color: var(--accent); font-style: normal; }
.header__logo:hover { color: var(--text); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 4px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
  padding-left: 14px;
}
.header__nav a {
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 100px;
  transition: all var(--transition);
}
.header__nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.header__phone:hover { color: var(--accent); border-color: var(--accent); }
.header__phone svg { color: var(--accent); }

.header__cta {
  padding: 10px 18px !important;
  font-size: 12px !important;
}

/* burger */
.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 100px;
  background: var(--accent);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .header__nav { display: none; }
  .header__phone span { display: none; }
  .header__phone { padding: 8px; width: 36px; height: 36px; justify-content: center; }
}
@media (max-width: 768px) {
  .header__cta { display: none; }
  .burger { display: flex; }
  .header__pill { padding: 6px 6px 6px 14px; gap: 8px; }
  .header__phone { padding: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); border-color: var(--accent); color: #fff; }
  .header__phone:hover { background: var(--accent-hover, #c2050f); border-color: var(--accent-hover, #c2050f); color: #fff; }
  .header__phone svg { color: #fff; }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 50;
  padding: 100px 28px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a:hover { color: var(--accent); }
.mobile-menu__phone { color: var(--accent) !important; }
.mobile-menu a.mobile-menu__cta {
  margin-top: 20px;
  padding: 16px 28px;
  background: var(--accent);
  border: 0;
  color: var(--text);
  align-self: flex-start;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.mobile-menu a.mobile-menu__cta:hover { background: var(--accent-light); color: var(--text); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.32) saturate(1.1) contrast(1.05);
  animation: heroBgZoom 22s ease-out forwards;
}
@keyframes heroBgZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 90% 10%, rgba(227, 6, 19, 0.28), transparent 60%),
    radial-gradient(50% 50% at 0% 90%, rgba(227, 6, 19, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.95) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  z-index: -1;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.5) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes heroGlowPulse {
  from { opacity: 0.55; transform: scale(1); }
  to   { opacity: 0.85; transform: scale(1.12); }
}

.hero__inner {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.hero__content { max-width: 1100px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: heroDotPulse 2s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero__title {
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero__title-line { display: block; }
.hero__title-line--muted {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  margin-top: 0.15em;
}
.hero__title-rotate {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 1.05em;
  overflow: hidden;
  color: var(--accent);
  text-shadow: 0 0.1vw 1vw rgba(227, 6, 19, 0.5);
}
.hero__rotate-word {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.hero__rotate-word.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.hero__rotate-word.is-leaving { opacity: 0; transform: translateY(-40%); }

.hero__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  background: rgba(227, 6, 19, 0.08);
  border: 1px solid rgba(227, 6, 19, 0.25);
  border-radius: 100px;
}
.hero__schedule::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center/contain no-repeat;
}

.hero__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 900px;
}
.hero__stat {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  width: 1px; height: 60%;
  background: var(--border);
}
.hero__stat strong {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat strong em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
}
.hero__stat span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stat::before { display: none; }
  .hero__stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .hero__stat:nth-child(even) { border-left: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .hero__inner { padding-top: 110px; padding-bottom: 80px; }
  .hero__badge { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { white-space: normal; }
  .hero__stats { margin-top: 36px; }
  .hero__stat { padding: 16px 18px; }
}

/* ============ Marquee inside hero ============ */
.marquee {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  color: var(--text);
  overflow: hidden;
  padding: 14px 0;
  z-index: 2;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.marquee__item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee__phone { color: var(--accent); }
.marquee__sep { color: var(--accent); font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============ Why us ============ */
.why { background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(227, 6, 19, 0.04);
}
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.feature p { color: var(--text-muted); font-size: 14px; margin: 0; }

@media (max-width: 1024px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 18px;
  }
  .feature__icon { width: 44px; height: 44px; margin-bottom: 0; grid-row: 1 / span 2; }
  .feature__icon svg { width: 22px; height: 22px; }
  .feature h3 { margin: 2px 0 6px; font-size: 15px; }
  .feature p { font-size: 13px; }
}

/* ============ Services ============ */
.services { background: var(--bg-2); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.service:hover { transform: translateY(-4px); border-color: var(--accent); }
.service__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.service:hover .service__media img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.service__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85));
  pointer-events: none;
}
.service__media--ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #161616 0%, #1c1c1c 100%);
  border-bottom: 1px solid var(--border);
}
.service__media--ph svg {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.15);
}
.service__media--ph span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.service__media--ph::after { display: none; }
.service__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service__title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
}
.service__body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  line-height: 1.55;
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  align-self: flex-start;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.service__more svg { transition: transform var(--transition); }
.service__more:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ============ Prices ============ */
.prices { background: var(--bg); }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.price-card:hover { border-color: var(--accent); transform: translateY(-3px); background: rgba(227,6,19,0.03); }
.price-card h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
}
.price-card h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 32px; height: 2px;
  background: var(--accent);
}
.price-list { display: flex; flex-direction: column; gap: 10px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.price-list b {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  font-size: 13px;
}
.price-card--cta {
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.15) 0%, rgba(227, 6, 19, 0.04) 100%);
  border-color: rgba(227, 6, 19, 0.3);
  justify-content: center;
  align-items: flex-start;
}
.price-card--cta h3 { color: var(--text); border-color: rgba(227,6,19,0.4); }
.price-card--cta p { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.prices__note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1024px) { .prices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prices__grid { grid-template-columns: 1fr; } }

/* ============ Brands ============ */
.brands { background: var(--bg-2); padding: 90px 0; }
.brands__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brands__item {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
}
.brands__item:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(227, 6, 19, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .brands__item { font-size: 14px; padding: 10px 16px; }
}

/* ============ About ============ */
.about { background: var(--bg); }
.about__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  position: relative;
}
.about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.4));
  pointer-events: none;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }
.about__content > p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.about__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text);
}
.about__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.about__cta { display: flex; gap: 14px; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__media { aspect-ratio: 16 / 10; max-height: 400px; }
}
@media (max-width: 600px) { .about__list { grid-template-columns: 1fr; } }

/* ============ Reviews ============ */
.reviews { background: var(--bg-2); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin: 0;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.review:hover { border-color: var(--accent); transform: translateY(-3px); background: rgba(227,6,19,0.03); }
.review__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(227,6,19,0.3);
}
.review figcaption {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text);
}
.review__stars { color: var(--accent); font-size: 14px; letter-spacing: 0.05em; }
.review blockquote {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.reviews__more { text-align: center; margin-top: 40px; }

@media (max-width: 768px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ============ Contacts ============ */
.contacts { background: var(--bg); }
.contacts__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.contacts__row { display: flex; flex-direction: column; gap: 6px; }
.contacts__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}
.contacts__row strong, .contacts__row a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
.contacts__phone { font-size: 22px !important; font-weight: 800 !important; color: var(--accent) !important; letter-spacing: -0.01em; }
.contacts__phone:hover { color: var(--accent-light) !important; }

.contacts__messengers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.messenger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: all var(--transition);
}
.messenger:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(227,6,19,0.08);
  transform: translateY(-2px);
}
.messenger svg,
.messenger img { flex-shrink: 0; width: 22px; height: 22px; object-fit: contain; }
.messenger--call svg { color: var(--accent); }

.contacts__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.contacts__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg); }
.contacts__route { position: absolute; left: 16px; bottom: 16px; z-index: 2; }

@media (max-width: 900px) {
  .contacts__grid { grid-template-columns: 1fr; }
  .contacts__map { min-height: 320px; }
}
@media (max-width: 600px) {
  .contacts__messengers { grid-template-columns: 1fr; }
  .contacts__info { padding: 24px 20px; }
}

/* ============ Platforms ============ */
.platforms { background: var(--bg); padding: 60px 0; }
.platforms__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(227,6,19,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.platforms__text h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
}
.platforms__text p { margin: 0; color: var(--text-muted); font-size: 14px; max-width: 360px; }
.platforms__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 12px);
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.platform-card:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(227,6,19,0.06); }
.platform-card__logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.platform-card__logo--ya { background: #fc3f1d; color: #fff; font-size: 22px; }
.platform-card__shield { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
.platform-card__info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.platform-card__info strong { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.platform-card__info span { font-size: 13px; color: var(--text-muted); }
.platform-card__info b { color: var(--accent); font-weight: 700; }
.platform-card__arrow { color: var(--text-muted); flex-shrink: 0; transition: color var(--transition), transform var(--transition); }
.platform-card:hover .platform-card__arrow { color: var(--accent); transform: translate(2px, -2px); }
@media (max-width: 900px) {
  .platforms__inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .platforms__cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .platforms { padding: 40px 0; }
  .platforms__inner { padding: 22px 18px; }
}

/* ============ Footer ============ */
.footer {
  background: var(--bg-2);
  color: var(--text-muted);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 10px;
}
.footer__col a { color: var(--text-muted); font-size: 14px; }
.footer__col a:hover { color: var(--accent); }
.footer__col span { font-size: 14px; color: var(--text-muted); }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.footer__logo em { color: var(--accent); font-style: normal; }
.footer__col--brand p { color: var(--text-muted); font-size: 14px; margin: 0; max-width: 320px; }
.footer__bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal small { color: var(--text-dim); font-size: 12px; }

@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .footer { padding-top: 56px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
}

/* ============ Modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  transform: translateY(16px);
  transition: transform var(--transition);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.modal__close:hover { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--border-strong); }
.modal__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  padding-right: 28px;
}
.modal__lead { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }
.modal__actions { display: flex; flex-direction: column; gap: 8px; }
.modal__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  transition: all var(--transition);
}
.modal__btn:hover { background: rgba(255,255,255,0.06); border-color: var(--border-strong); color: var(--text); transform: translateY(-2px); }
.modal__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.modal__btn--call .modal__icon { background: var(--accent); color: var(--text); }
.modal__btn--max .modal__icon,
.modal__btn--tg .modal__icon,
.modal__btn--vk .modal__icon { background: transparent; padding: 0; }
.modal__icon img { width: 30px; height: 30px; object-fit: contain; }
.modal__btn span { display: flex; flex-direction: column; gap: 2px; }
.modal__btn strong { font-size: 15px; font-weight: 700; }
.modal__btn em { font-style: normal; font-size: 12px; color: var(--text-muted); }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

body.is-locked { overflow: hidden; }
