*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07070d;
  --bg-card: #0d0d18;
  --bg-elevated: #111122;
  --neon-cyan: #00f0ff;
  --neon-blue: #4d6dff;
  --neon-purple: #b44dff;
  --neon-pink: #ff2d95;
  --neon-green: #00ff88;
  --neon-yellow: #ffe600;
  --text: #e0e0ef;
  --text-dim: #7777aa;
  --text-muted: #444466;
  --border: #1a1a33;
  --glow-cyan: 0 0 10px #00f0ff, 0 0 20px #00f0ff44, 0 0 40px #00f0ff22;
  --glow-cyan-strong: 0 0 5px #00f0ff, 0 0 15px #00f0ff, 0 0 30px #00f0ff88, 0 0 60px #00f0ff44;
  --glow-pink: 0 0 10px #ff2d95, 0 0 20px #ff2d9544, 0 0 40px #ff2d9522;
  --glow-purple: 0 0 10px #b44dff, 0 0 20px #b44dff44, 0 0 40px #b44dff22;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#nitrogenCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.015) 2px,
    rgba(0, 240, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9997;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.neon-text {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.neon-pink-text {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.neon-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--neon {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.1), var(--glow-cyan);
}

.btn--neon:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: var(--glow-cyan-strong);
  transform: translateY(-2px);
}

.btn--neon .btn__glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn--neon:hover .btn__glow {
  opacity: 0.3;
}

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn--outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.btn--outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 24px; font-size: 11px; }
.btn--lg { padding: 18px 40px; font-size: 14px; }
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7, 7, 13, 0.95);
  border-bottom-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--neon-cyan);
  color: var(--bg);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 18px;
  border-radius: 8px;
  box-shadow: var(--glow-cyan);
}

.logo__text {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 1px;
}

.logo__glow {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.header__nav {
  display: flex;
  gap: 36px;
}

.header__nav-link {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-indicator {
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-cyan);
  opacity: 0;
  transition: var(--transition);
}

.header__nav-link:hover {
  color: var(--neon-cyan);
}

.header__nav-link:hover .nav-indicator {
  opacity: 1;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__badges {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.badge--24h {
  background: rgba(0, 255, 136, 0.15);
  color: var(--neon-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge--fast {
  background: rgba(255, 45, 149, 0.15);
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 149, 0.3);
}

.badge__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.header__phone {
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.header__phone:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.header__callback-btn {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 0 4px var(--neon-cyan);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--neon-cyan);
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__link {
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__link:hover {
  color: var(--neon-cyan);
}

.mobile-menu__phone {
  color: var(--neon-cyan);
  font-size: 20px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  padding: 16px 0;
  text-shadow: var(--glow-cyan);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 8px 0 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a1a 50%, var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__right {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#carCanvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero__tag-line {
  width: 40px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.hero__tag span {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 3px;
  text-shadow: var(--glow-cyan);
}

.hero__title {
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1;
}

.glitch-text {
  position: relative;
  display: inline-block;
  animation: glitch 4s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitchTop 2s infinite;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch-text::after {
  animation: glitchBottom 3s infinite;
  color: var(--neon-pink);
  z-index: -1;
}

@keyframes glitchTop {
  0%, 100% { clip-path: inset(0 0 80% 0); transform: translate(-2px); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(2px); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(-1px); }
  60% { clip-path: inset(60% 0 20% 0); transform: translate(3px); }
  80% { clip-path: inset(80% 0 0 0); transform: translate(-2px); }
}

@keyframes glitchBottom {
  0%, 100% { clip-path: inset(80% 0 0 0); transform: translate(2px); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(-2px); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
  60% { clip-path: inset(20% 0 60% 0); transform: translate(-3px); }
  80% { clip-path: inset(0 0 80% 0); transform: translate(2px); }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  2% { transform: translate(1px, -1px); }
  4% { transform: translate(-1px, 1px); }
  6% { transform: translate(0); }
}

.hero__title-sub {
  display: block;
  font-size: clamp(24px, 3.5vw, 50px);
  color: var(--text-dim);
  margin-top: 8px;
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-dim);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.hero__stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.hero__fog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-pink);
  letter-spacing: 3px;
  text-shadow: var(--glow-pink);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  margin: 20px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.7;
}

/* ===== Products ===== */
.products {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card:hover .card-glow {
  opacity: 1;
}

.product-card--featured,
.product-card--hot {
  border-color: var(--neon-pink);
}

.product-card--featured:hover,
.product-card--hot:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.15), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card--featured .card-glow,
.product-card--hot .card-glow {
  background: radial-gradient(circle, rgba(255, 45, 149, 0.06) 0%, transparent 60%);
}

.product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.product-card__badge {
  background: var(--neon-cyan);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.product-card__badge--hot {
  background: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 45, 149, 0.4);
}

.product-card__image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
}

.product-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.2), transparent);
  filter: blur(8px);
}

.product-card__image img {
  max-height: 100%;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 240, 255, 0.15));
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 20px rgba(0, 240, 255, 0.3));
}

.product-card__volume {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 8px;
  opacity: 0.6;
}

.product-card__title {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.product-card__prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.product-card__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-card__price--exchange {
  border-color: rgba(0, 255, 136, 0.2);
}

.product-card__price--sale {
  border-color: rgba(255, 45, 149, 0.2);
}

.product-card__price .price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.product-card__price .price-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
  white-space: nowrap;
}

.product-card__price--sale .price-value {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255, 45, 149, 0.3);
}

.product-card__btn {
  margin-top: auto;
}

/* ===== Accessories ===== */
.accessories {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.accessories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.accessory-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.accessory-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accessory-card__icon {
  width: 80px;
  height: 80px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--neon-cyan);
  transition: var(--transition);
}

.accessory-card:hover .accessory-card__icon {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.accessory-card__title {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.accessory-card__price {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 24px;
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about__images {
  position: relative;
  height: 450px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: absolute;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--large {
  width: 75%;
  height: 100%;
  left: 0;
  top: 0;
}

.about__img--small {
  width: 55%;
  height: 60%;
  right: 0;
  bottom: 0;
  border: 3px solid var(--neon-cyan) !important;
  box-shadow: var(--glow-cyan);
}

.neon-border {
  border: 1px solid var(--border);
  transition: var(--transition);
}

.neon-border:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.about__features {
  display: grid;
  gap: 24px;
}

.about__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about__feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.about__feature-text h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.about__feature-text p {
  color: var(--text-dim);
  font-size: 15px;
}

.about__banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}

.about__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__banner-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 13, 0.95), rgba(7, 7, 13, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  gap: 24px;
  border: 1px solid var(--border);
}

.about__banner-text h3 {
  color: var(--text);
  font-size: clamp(22px, 3vw, 32px);
  max-width: 600px;
  letter-spacing: 1px;
}

.about__banner-text h3::before {
  content: '// ';
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

/* ===== Team ===== */
.team {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  position: relative;
  transition: var(--transition);
}

.team__card:hover {
  transform: translateY(-6px);
}

.team__card:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(30%) contrast(1.1);
}

.team__card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.1);
}

.team__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 13, 0.8), transparent 50%);
  pointer-events: none;
}

/* ===== CTA ===== */
.cta {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0515 50%, var(--bg) 100%);
}

.cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta__icon {
  color: var(--neon-pink);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(255, 45, 149, 0.5));
}

.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.cta__subtitle {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.cta__phone {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 32px;
  text-shadow: var(--glow-cyan-strong);
}

.cta__phone:hover {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.cta__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta__badge {
  background: rgba(0, 240, 255, 0.08);
  color: var(--text-dim);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  border: 1px solid var(--border);
}

/* ===== Certificates ===== */
.certificates {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.certificate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--neon-cyan);
}

.certificate-card__img {
  width: 100%;
  max-width: 362px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  padding: 60px 0 24px;
  position: relative;
  z-index: 1;
}

.footer__glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), var(--neon-cyan), transparent);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer__logo-sub {
  color: var(--text-dim);
}

.footer__logo-glow {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.footer__text {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 300px;
}

.footer__heading {
  color: var(--text);
  font-size: 14px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__phone {
  color: var(--neon-cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.footer__phone:hover {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.footer__delivery,
.footer__schedule,
.footer__region {
  color: var(--text-muted);
  font-size: 14px;
}

.footer__link {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 6px 0;
}

.footer__link:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* ===== Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
  
  .hero__right {
    height: 300px;
    order: -1;
  }

  .hero__left {
    text-align: center;
    align-items: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .certificates__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__nav {
    display: none;
  }

  .header__callback-btn {
    display: inline-flex;
  }

  .header__badges {
    gap: 8px;
  }

  .badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero__stat-num {
    font-size: 32px;
  }

  .hero__stat-suffix {
    font-size: 32px;
  }

  .hero__stat-num {
    font-size: 32px;
  }

  .hero__stat-suffix {
    font-size: 32px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__images {
    height: 350px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .header__badges {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 8px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(36px, 8vw, 60px);
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products {
    padding: 60px 0;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card {
    padding: 20px 12px;
  }

  .product-card__image {
    height: 110px;
  }

  .product-card__volume {
    font-size: 20px;
  }

  .product-card__title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .product-card__price .price-value {
    font-size: 14px;
  }

  .product-card__price .price-label {
    font-size: 10px;
  }

  .product-card__price {
    padding: 8px 8px;
  }

  .product-card__prices {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero__stat-num {
    font-size: 28px;
  }

  .hero__stat-suffix {
    font-size: 28px;
  }

  .about__images {
    height: 280px;
  }

  .about__banner {
    height: 250px;
  }

  .about__banner-text {
    padding: 24px;
  }

  .about__banner-text h3 {
    font-size: 18px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team__card {
    height: 220px;
  }

  .cta__phone {
    font-size: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .product-card__image {
    height: 140px;
  }

  .about__images {
    height: 240px;
  }

  .hero__tag {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
