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

:root {
  --bg:           #0a0a0a;
  --bg-2:         #101010;
  --bg-3:         #191919;
  --bg-card:      #111111;
  --accent:       #e31e24;
  --accent-dark:  #b8181d;
  --accent-glow:  rgba(227, 30, 36, 0.25);
  --text:         #f0f0f0;
  --text-muted:   #777;
  --text-dim:     #3a3a3a;
  --border:       #1e1e1e;
  --border-2:     #252525;
  --white:        #fff;
  --radius:       12px;
  --radius-sm:    8px;
  --ease:         0.25s ease;
}

html { scroll-behavior: smooth; }

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

body.no-scroll { overflow: hidden; }

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

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

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.4);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--full { width: 100%; }

/* ===========================
   LOGO
=========================== */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--ease);
}
.header__phone:hover { color: var(--accent); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% 50%, rgba(227, 30, 36, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 10% 85%, rgba(227, 30, 36, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, rgba(14,14,16,0.45) 0%, rgba(10,10,10,0.3) 50%, rgba(13,10,10,0.45) 100%),
    url('hero2.png') center / cover no-repeat;
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  height: 1px;
  opacity: 0.12;
  pointer-events: none;
}
.hero__line--1 { width: 60%; left: 20%; top: 28%; }
.hero__line--2 { width: 40%; left: 10%; bottom: 30%; opacity: 0.07; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0 40px;
  max-width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.6));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 30, 36, 0.08);
  border: 1px solid rgba(227, 30, 36, 0.28);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title--accent {
  color: var(--accent);
}
.hero__title--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
}

.hero__desc {
  font-size: 16px;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero__chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 5px 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px; height: 36px;
  background: var(--border-2);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  user-select: none;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ===========================
   DIRECTIONS
=========================== */
.directions {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.direction-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.direction-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.5);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.direction-card--featured {
  border-color: rgba(227, 30, 36, 0.3);
  background: linear-gradient(145deg, rgba(227,30,36,0.04) 0%, var(--bg-card) 60%);
}

.direction-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.direction-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.direction-card__flag { font-size: 32px; line-height: 1; }
.direction-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.direction-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.direction-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.direction-card__list li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.direction-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.direction-card__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.4s ease;
}
.direction-card:hover .direction-card__bar,
.direction-card--featured .direction-card__bar { width: 100%; }

/* ===========================
   HOW IT WORKS
=========================== */
.how { padding: 100px 0; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(227, 30, 36, 0.06);
  flex-shrink: 0;
  transition: background var(--ease), box-shadow var(--ease);
}
.step:hover .step__num {
  background: rgba(227, 30, 36, 0.15);
  box-shadow: 0 0 24px rgba(227, 30, 36, 0.2);
}

.step__connector {
  flex: 0 0 40px;
  height: 2px;
  align-self: flex-start;
  margin-top: 31px;
  overflow: visible;
}
.step__connector svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.step__content { padding: 0 6px; }
.step__title {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 8px;
}
.step__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   ADVANTAGES
=========================== */
.advantages {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.adv-card {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background var(--ease);
}
.adv-card:hover { background: var(--bg-3); }

.adv-card__icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(227, 30, 36, 0.07);
  border: 1px solid rgba(227, 30, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--ease), border-color var(--ease);
}
.adv-card:hover .adv-card__icon {
  background: rgba(227, 30, 36, 0.14);
  border-color: rgba(227, 30, 36, 0.3);
}

.adv-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}
.adv-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   REVIEWS
=========================== */
.reviews { padding: 100px 0; }

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--ease), transform var(--ease);
}
.review-card:hover {
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-3px);
}

.review-card__stars {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 3px;
}
.review-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.review-card__meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================
   ORDERS
=========================== */
.orders {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.orders__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.order-card {
  grid-column: span 2;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: var(--bg-card);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  cursor: pointer;
}

.order-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* Нижние 2 карточки — по центру */
.order-card:nth-child(4) { grid-column: 2 / 4; }
.order-card:nth-child(5) { grid-column: 4 / 6; }

.order-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #131313;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.013) 10px,
    rgba(255, 255, 255, 0.013) 11px
  );
  pointer-events: none;
}

.order-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.order-card__placeholder-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Скрываем иконку-заглушку когда есть img */
.order-card__img img ~ .order-card__placeholder-icon { display: none; }

/* Shared caption base */
.order-card__caption {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-card__name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.order-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.order-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

.order-tag--available {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  white-space: nowrap;
}

.order-card__price {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.3px;
}

/* --- S1: Toyota Raize — градиент снизу, текст слева внизу --- */
.order-card--s1 .order-card__caption {
  bottom: 0; left: 0; right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
}

/* --- S2: AUDI Q2 — стеклянная карточка по центру справа --- */
.order-card--s2 .order-card__caption {
  top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 50%;
  padding: 16px 18px;
  background: rgba(8,8,8,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 2px solid var(--accent);
  border-radius: 10px;
}

/* --- S3: BMW X1 — правая панель с градиентом, текст снизу справа --- */
.order-card--s3 .order-card__caption {
  top: 0; right: 0; bottom: 0;
  width: 50%;
  padding: 20px 18px;
  background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 100%);
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
.order-card--s3 .order-card__tags { justify-content: flex-end; }
.order-card--s3 .order-card__name { font-size: 15px; }

/* --- S4: Mercedes — тёмная полоса снизу на всю ширину, строчный layout --- */
.order-card--s4 .order-card__caption {
  bottom: 0; left: 0; right: 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(5,5,5,0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.order-card--s4 .order-card__name { font-size: 14px; }
.order-card--s4 .order-card__price { font-size: 16px; }

/* --- S5: Nissan — уголок снизу справа с красным бордером --- */
.order-card--s5 .order-card__caption {
  bottom: 14px; right: 14px;
  width: 56%;
  padding: 14px 16px;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid var(--accent);
  border-radius: 8px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__left { padding-top: 4px; }

.contact__map { display: flex; flex-direction: column; gap: 12px; }
.contact__map-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 20px 0 32px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
a.contact__info-item:hover { color: var(--accent); }

.contact__info-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact__messengers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--ease);
  border: 1px solid transparent;
}
.messenger-btn--wa {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.2);
}
.messenger-btn--wa:hover { background: rgba(37, 211, 102, 0.16); border-color: rgba(37, 211, 102, 0.4); }
.messenger-btn--tg {
  background: rgba(0, 136, 204, 0.08);
  color: #0088cc;
  border-color: rgba(0, 136, 204, 0.2);
}
.messenger-btn--tg:hover { background: rgba(0, 136, 204, 0.16); border-color: rgba(0, 136, 204, 0.4); }

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group { display: flex; flex-direction: column; gap: 7px; }

.form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.form__input::placeholder { color: #3d3d3d; }
.form__input:focus {
  border-color: var(--accent);
  background: rgba(227, 30, 36, 0.03);
}
.form__select { cursor: pointer; }
.form__select option { background: #1a1a1a; color: var(--text); }

.form__note {
  font-size: 11px;
  color: #3a3a3a;
  text-align: center;
  line-height: 1.6;
}
.form__note a { color: #555; text-decoration: underline; }
.form__note a:hover { color: var(--text-muted); }

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 64px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
}

.footer__brand .logo__img {
  height: 120px;
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin: 12px 0 24px;
  line-height: 1.5;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--ease);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer__col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer__nav-link:hover { color: var(--accent); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-item {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--ease);
  display: block;
}
a.footer__contact-item:hover { color: var(--accent); }

.footer__work-hours {
  font-size: 11px;
  color: #3a3a3a;
  margin-top: 6px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 12px; color: #333; }
.footer__policy { font-size: 12px; color: #333; text-decoration: underline; transition: color var(--ease); }
.footer__policy:hover { color: var(--text-muted); }

/* ===========================
   RESPONSIVE — 1024px
=========================== */
@media (max-width: 1024px) {
  .directions__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid    { grid-template-columns: repeat(2, 1fr); }

  .orders__grid { grid-template-columns: repeat(4, 1fr); }
  .order-card { grid-column: span 2; }
  .order-card:nth-child(4) { grid-column: span 2; }
  .order-card:nth-child(5) { grid-column: span 2; }

  .contact__inner { grid-template-columns: 1fr; gap: 52px; }
  .contact__left { padding-top: 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }

  /* Steps go vertical */
  .steps {
    flex-direction: column;
    gap: 0;
  }
  .step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px; top: 64px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--accent), rgba(227,30,36,0.08));
  }
  .step__num { flex-shrink: 0; }
  .step__content { padding-top: 16px; }
  .step__connector { display: none; }
}

/* ===========================
   RESPONSIVE — 768px
=========================== */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__image { display: none; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
  }
  .nav__link::after { display: none; }

  .burger { display: flex; z-index: 1001; position: relative; }
  .header__phone { display: none; }

  .directions__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }
  .reviews__grid    { grid-template-columns: 1fr; }

  .orders__grid { grid-template-columns: 1fr; }
  .order-card,
  .order-card:nth-child(4),
  .order-card:nth-child(5) { grid-column: span 1; }

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

  .hero__stat-divider { display: none; }
  .hero__stats { gap: 24px; }

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

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

  /* Уменьшаем отступы всех секций */
  .directions,
  .how,
  .advantages,
  .reviews,
  .orders,
  .contact,
  .faq { padding: 64px 0; }

  /* Hero — чуть компактнее */
  .hero { min-height: auto; padding: 120px 0 64px; }

  /* Карточки заказов — фиксированная высота для равномерности */
  .order-card__img { height: 220px; }

  /* Карта — меньше высота */
  .contact__map iframe { height: 240px; }

  /* FAQ */
  .faq__question { font-size: 15px; padding: 16px 20px; }
  .faq__answer { padding: 0 20px 16px; font-size: 14px; }
}

/* ===========================
   RESPONSIVE — 480px
=========================== */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }

  .contact__messengers { flex-direction: column; }
  .messenger-btn { justify-content: center; }

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

  /* Ещё меньше отступы на маленьких экранах */
  .directions,
  .how,
  .advantages,
  .reviews,
  .orders,
  .contact,
  .faq { padding: 48px 0; }

  .hero { padding: 100px 0 48px; }

  /* Кнопки мессенджеров — на всю ширину */
  .messenger-btn { width: 100%; }

  /* Чипы hero — меньше шрифт */
  .hero__chip { font-size: 11px; padding: 5px 10px; }

  /* Заголовок секции */
  .section-header { margin-bottom: 32px; }

  /* Карточки отзывов — компактнее */
  .review-card { padding: 20px; }

  /* Карточки преимуществ */
  .adv-card { padding: 24px 20px; }

  /* FAQ — совсем маленький экран */
  .faq__question { font-size: 14px; padding: 14px 16px; }
  .faq__answer { padding: 0 16px 14px; }

  /* Контакты — адрес */
  .contact__map iframe { height: 200px; }

  /* Footer */
  .footer__col-title { margin-top: 0; }
}

/* ===========================
   FAQ
=========================== */
.faq {
  padding: 100px 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--card-bg, rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item[open] {
  border-color: rgba(227, 30, 36, 0.4);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: #e31e24;
  transition: transform 0.2s;
  line-height: 1;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
