/* ===== DESIGN TOKENS ===== */
:root {
  --gold: #F5B800;
  --gold-light: #FFD04A;
  --gold-dark: #C49000;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-4: #2E2E2E;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --white: #FFFFFF;
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --gold-10: rgba(245,184,0,0.1);
  --gold-20: rgba(245,184,0,0.2);
  --gold-30: rgba(245,184,0,0.3);

  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-gold: 0 0 40px rgba(245,184,0,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.6);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.accent { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--gold-30);
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,184,0,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white-10);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 7px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--white-10);
  padding: 5px 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 58px;
}
.nav__logo {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 170px;
  height: 52px;
  margin-right: auto;
  overflow: hidden;
}
.nav__logo-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 170px;
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  filter: saturate(1.8) hue-rotate(-5deg); /* Смещаем в оранжевый и добавляем сочности */
}
.logo-blend {
  transition: var(--transition);
  margin-top: -10px;
}
.nav__logo-img[src="logo.png"]:not([complete]),
.nav__logo-fallback {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35px;
  color: var(--gray-light);
  transition: color 0.2s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__cta {
  display: inline-flex;
  padding: 11px 20px;
  font-size: 12px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(245,184,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,184,0,0.06) 0%, transparent 50%),
    linear-gradient(to bottom, var(--black) 0%, #0D0D0D 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero__container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.hero__content {
  position: relative;
  z-index: 2; /* Над машиной */
  max-width: 650px;
}
.hero__3d-wrapper {
  position: absolute;
  z-index: 0;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 80%; /* Возвращаем масштабный размер для эффектного фона */
  height: auto;
  pointer-events: none;
}
.hero__image-static {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* МАГИЯ СЛИЯНИЯ С ФОНОМ */
  mix-blend-mode: screen; /* Убирает черный цвет с картинки */
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 20px;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  border-radius: 100px;
  animation: fadeInDown 0.8s ease both;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,184,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,184,0,0); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero__title-accent {
  color: var(--gold);
  position: relative;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero__stat { text-align: center; padding: 0 32px; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--white-10);
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: var(--dark);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(135deg, rgba(245,184,0,0.08) 0%, var(--dark-2) 60%);
  border-color: var(--gold-30);
}
.service-card--featured::before { opacity: 1; }
.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card__list {
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid var(--white-5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card__list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.service-card__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-card__link:hover { color: var(--gold-light); }
.service-card--cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card--cta::before { display: none; }
.service-card--cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card__cta-content { text-align: center; color: var(--black); }
.service-card__cta-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card__cta-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.8;
}
.service-card--cta .btn--gold {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.service-card--cta .btn--gold:hover {
  background: var(--dark-2);
  color: var(--gold-light);
}

/* ===== WHY ===== */
.why {
  padding: 120px 0;
  background: var(--black);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.why-card__num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--white-5);
  line-height: 1;
}
.why-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-card__icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--dark);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.process__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--gold-10);
  transition: var(--transition);
}
.process__step:hover .process__step-num {
  box-shadow: 0 0 0 12px var(--gold-20), var(--shadow-gold);
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process__step-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-30), var(--gold));
  margin-top: 32px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--gold);
}

/* ===== GALLERY & REELS ===== */
.gallery {
  padding: 120px 0;
  background: var(--black);
}
.reels-container {
  margin-top: 64px;
  overflow: hidden;
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-5);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-30);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,184,0,0.1);
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.gallery__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mt-40 { margin-top: 64px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--white-5);
  background: var(--dark-2);
  aspect-ratio: 4/3;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}


/* ===== REVIEWS ===== */
.reviews {
  padding: 120px 0;
  background: var(--black);
}
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.stars { display: flex; gap: 4px; }
.star {
  font-size: 20px;
  color: var(--gold);
}
.reviews__rating-text {
  font-size: 14px;
  color: var(--gray);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.review-card__stars { color: var(--gold); font-size: 14px; }
.review-card__text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-card__source {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.reviews__cta { text-align: center; }

/* ===== CONTACTS ===== */
.contacts {
  padding: 120px 0;
  background: var(--dark);
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}
.contacts__info { display: flex; flex-direction: column; gap: 32px; }
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.contact-item__phone {
  font-size: 24px;
  color: var(--gold);
  transition: var(--transition);
}
.contact-item__phone:hover { color: var(--gold-light); }
.contact-item__note {
  font-size: 13px;
  color: var(--gray);
}
.contact-item__link {
  font-size: 13px;
  color: var(--gold);
  transition: var(--transition);
}
.contact-item__link:hover { color: var(--gold-light); }

/* FORM */
.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--white-5);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px var(--gold-10);
}
.form-input::placeholder { color: var(--gray); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-select option {
  background: var(--dark-3);
  color: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-honeypot {
  position: absolute;
  inset-inline-start: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}
.form-consent a,
.form-privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-privacy {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}
.form-status {
  min-height: 24px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.form-status--error { color: #ff9a9a; }
.form-status--success { color: var(--gold-light); }
.btn__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* MAP */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-10);
}
.map-container iframe { display: block; }
.map-container iframe:not([src]) { display: none; }
.map-consent {
  min-height: 280px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: var(--gray-light);
  background: radial-gradient(circle at center, var(--dark-3), var(--dark));
}
.map-consent[hidden] { display: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-5);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__brand { margin-right: auto; }
.footer__logo {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer__tagline { font-size: 13px; color: var(--gray); }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  color: var(--gray);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__cookie-button {
  padding: 0;
  color: var(--gray);
  font-size: 13px;
  transition: var(--transition);
}
.footer__cookie-button:hover { color: var(--gold); }
.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--white-5);
  margin-top: 16px;
}
.footer__bottom p { font-size: 13px; color: var(--gray); }
.footer__yandex {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  transition: var(--transition);
}
.footer__yandex:hover { color: var(--gold); }
.footer__yandex svg { color: var(--gold); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
}
.floating-cta__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(245,184,0,0.5);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.floating-cta__btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(245,184,0,0.7);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  border: 0;
  background: transparent;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal[open] { display: flex; opacity: 1; pointer-events: all; }
.modal::backdrop {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--gold-30);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal[open] .modal__box { transform: scale(1); }
.modal__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
}
.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.modal__text {
  font-size: 16px;
  color: var(--gray-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  inset-inline: 20px;
  bottom: 20px;
  z-index: 180;
  max-width: 1120px;
  margin-inline: auto;
  padding: 22px;
  color: var(--white);
  background: rgba(26, 26, 26, 0.98);
  border: 1px solid var(--gold-30);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 60px rgba(0,0,0,0.65);
  backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.cookie-banner__text {
  max-width: 680px;
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner__text a,
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

/* ===== LEGAL PAGE ===== */
.legal-page { background: var(--dark); }
.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--white-10);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
}
.legal-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-header__logo {
  height: 58px;
  width: auto;
}
.legal-header__back {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.legal-main { padding: 72px 0 96px; }
.legal-content {
  max-width: 860px;
  padding: 48px;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
}
.legal-kicker {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.legal-content h1 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
}
.legal-updated { margin-bottom: 40px; color: var(--gray); }
.legal-content h2 {
  margin: 36px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
}
.legal-content p,
.legal-content li { color: var(--gray-light); }
.legal-content p + p { margin-top: 12px; }
.legal-content ul { margin: 12px 0 0 22px; list-style: disc; }
.legal-content li + li { margin-top: 8px; }
.legal-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 20px;
  margin-top: 16px;
}
.legal-details dt { color: var(--gray); }
.legal-details dd { color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__container {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .hero__content {
    margin: 0;
    max-width: 100%;
    z-index: 2;
  }
  .hero__3d-wrapper {
    position: absolute;
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 130%;
    height: auto;
    opacity: 0.3; /* Make it more transparent so text is easily readable */
    z-index: 0;
    pointer-events: none;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process__connector { display: none; }
  .process__step { flex: calc(33% - 32px); min-width: 180px; }
}

@media (max-width: 768px) {
  .header,
  .header.scrolled { padding: 6px 0; }
  .nav { min-height: 50px; gap: 12px; }
  .nav__logo { width: 142px; height: 44px; }
  .nav__logo-img { width: 142px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__links.open .nav__link {
    font-size: 28px;
    font-weight: 800;
  }

  .hero__title { letter-spacing: -1px; }
  .hero__stats { gap: 0; }
  .hero__stat { padding: 0 16px; }
  .hero__stat-num { font-size: 28px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: 1fr; gap: 40px; }

  .contacts__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }

  .process__step { flex: calc(50% - 32px); }

  .footer__inner { gap: 24px; }
  .footer__brand { margin-right: 0; width: 100%; }
  .footer__links { gap: 16px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-banner { inset-inline: 12px; bottom: 12px; padding: 18px; }
  .cookie-banner__content,
  .cookie-banner__actions { flex-direction: column; align-items: stretch; }
  .cookie-banner__content { gap: 18px; }
  .cookie-banner__actions .btn { justify-content: center; width: 100%; }

  .legal-main { padding: 40px 0 72px; }
  .legal-content { padding: 28px 22px; }
  .legal-details { grid-template-columns: 1fr; gap: 2px; }
  .legal-details dd + dt { margin-top: 12px; }

  .section-header { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 480px) {
  .hero__stat { padding: 0 12px; }
  .hero__stat-num { font-size: 24px; }
  .process__step { flex: 100%; }
  .floating-cta { bottom: 20px; right: 20px; }
}
.form-hint {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}
