/* =========================================================
   ЛинкорГрупп — стили сайта
   ========================================================= */

:root {
  --bg: #0e0e10;
  --surface: #17181b;
  --surface-2: #1f2023;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f2f1ec;
  --text-muted: #a8a9ad;
  --text-dim: #6f7075;
  --gold: #c9a24b;
  --gold-hover: #dab568;
  --gold-dim: rgba(201, 162, 75, 0.15);
  --danger: #e5484d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --container: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Golos Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.section-head p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16px;
}

section {
  padding: 88px 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold);
  color: #171308;
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 19px 36px;
  font-size: 16px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 14, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}

.header-phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
}

.header-hours {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
}

.icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.icon-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger span::before {
  position: absolute;
  top: -6px;
}

.burger span::after {
  position: absolute;
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .header-phone {
  display: block;
  margin-top: 20px;
  font-size: 20px;
}

.mobile-nav .header-hours {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-nav .icon-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(201, 162, 75, 0.16), transparent 55%),
    radial-gradient(circle at 10% 100%, rgba(201, 162, 75, 0.08), transparent 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-top: 18px;
}

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

.hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-photo-main {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-top: 26px;
  border-radius: 28px;
  filter: brightness(0.94) saturate(0.92);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Мягкое появление текстовой части hero при загрузке.
   Реальные классы в разметке — .kicker, .lead, .hero-ctas
   (вместо условных .hero-kicker/.hero-cta), скопированы под .hero,
   чтобы не задеть одноимённые .kicker/.lead в других секциях. */
.hero .kicker, .hero h1, .hero .lead, .hero .hero-photo-main, .hero .hero-ctas {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.6s ease forwards;
}
.hero .kicker { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero .lead { animation-delay: 0.25s; }
.hero .hero-photo-main { animation-delay: 0.25s; }
.hero .hero-ctas { animation-delay: 0.35s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.hero-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.hero-stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.15;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Hero visual (крупная цифра "40%") ---------- */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bignum-ring {
  position: absolute;
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  animation: ringIn 0.7s ease forwards;
}
.bignum-ring.r1 { width: 460px; height: 460px; animation-delay: 0.1s; }
.bignum-ring.r2 { width: 360px; height: 360px; animation-delay: 0.25s; }
@keyframes ringIn { to { opacity: 1; transform: scale(1); } }
.bignum {
  font-size: 190px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(160deg, #f0d9a0, #c9a24b 55%, #8a6e2f);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  position: relative;
}
.bignum-sub, .mini-stats {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}
.bignum-sub { color: #f2f1ec; font-size: 16px; font-weight: 700; margin-top: 6px; animation-delay: 0.9s; }
.mini-stats { display: flex; gap: 28px; margin-top: 26px; animation-delay: 1.1s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.mini-stat { text-align: center; }
.mini-stat b { display: block; color: #f2f1ec; font-size: 18px; }
.mini-stat span { color: #a8a9ad; font-size: 11.5px; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-title {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  margin-top: 14px;
}

.about-lead {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 20px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text-rest {
  margin-top: 16px;
}

/* Фото основателя (пока файла нет — показывается заглушка) */

.founder {
  margin: 0;
  flex-shrink: 0;
  width: 170px;
}

.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder figcaption b {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
}

.founder figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Путь от заявки до автомобиля ---------- */

.path {
  margin-top: 64px;
}

.path-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
}

.timeline-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.timeline-line::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(201,162,75,0.55);
  z-index: 0;
}
.timeline-line .step {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
}
.timeline-line .step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #c9a24b;
  border-right: 2px solid #c9a24b;
  transform: rotate(45deg);
  background: #0e0e10;
}
.icon-timeline {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,75,0.28), rgba(201,162,75,0.04) 70%);
}
.icon-timeline svg {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  stroke: #f5efe0;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(8,8,10,0.45);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -6px 10px rgba(0,0,0,0.3);
}
.timeline-line .step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.timeline-line .step p {
  font-size: 13.5px;
  color: var(--text-muted);
}
/* Анимируется только .step-content (иконка+текст) — сама .step и её
   декоративная стрелка-шеврон (::before) остаются статичными, чтобы
   стрелки не пропадали и не дёргались вместе с fade-in контента. */
.timeline-line .step-content {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-line.in .step-content {
  opacity: 1;
  transform: translateY(0);
}
.timeline-line.in .step:nth-child(1) .step-content { transition-delay: 0s; }
.timeline-line.in .step:nth-child(2) .step-content { transition-delay: 0.12s; }
.timeline-line.in .step:nth-child(3) .step-content { transition-delay: 0.24s; }
.timeline-line.in .step:nth-child(4) .step-content { transition-delay: 0.36s; }
.timeline-line.in .step:nth-child(5) .step-content { transition-delay: 0.48s; }
@media (max-width: 768px) {
  .timeline-line { display: block; }
  .timeline-line::before { display: none; }
  .timeline-line .step { margin-bottom: 28px; }
  .timeline-line .step:not(:first-child)::before { display: none; }
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Дополнительные услуги ---------- */

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

/* ---------- Кредит и Trade-In ---------- */

.finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.finance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.finance-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.finance-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.finance-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.finance-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.finance-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.finance-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.finance-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.finance-actions .btn {
  padding: 13px 22px;
  font-size: 14px;
}

/* ---------- Reviews / Успешные сделки ---------- */

.reviews-carousel {
  position: relative;
}

.reviews-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 60px) / 4);
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.reviews-nav svg {
  width: 20px;
  height: 20px;
}

.reviews-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.reviews-nav[disabled] {
  opacity: 0;
  pointer-events: none;
}

.reviews-nav.prev {
  left: -6px;
}

.reviews-nav.next {
  right: -6px;
}

.review-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid var(--border);
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-card:hover img {
  transform: scale(1.05);
}

.review-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
}

.review-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.16);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.review-card .model {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
}

.review-card .note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

.reviews-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- Видеоотзывы (карточки .review-card + видео-модалка) ---------- */

.video-review-card {
  cursor: pointer;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(14, 14, 16, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  pointer-events: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: currentColor;
}

.video-review-card:hover .video-play-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(6, 6, 7, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.video-modal-stage {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 82vh;
}

.video-modal-stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

@media (max-width: 520px) {
  .video-modal-close {
    top: -44px;
  }
}

/* ---------- Отзывы блогеров ---------- */

.bloggers {
  margin-top: 64px;
}

.bloggers-title {
  font-size: 22px;
  font-weight: 800;
}

.bloggers-sub {
  margin-top: 8px;
  margin-bottom: 26px;
  font-size: 15px;
  color: var(--text-muted);
}

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

.blogger-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blogger-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogger-fallback {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: center;
}

.blogger-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogger-body {
  padding: 16px 18px 18px;
}

.blogger-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.16);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.blogger-card .model {
  font-weight: 800;
  font-size: 15px;
}

.blogger-card .note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ---------- Популярные модели (мини-карусель из каталога, index.html) ---------- */

.featured-cars {
  margin-top: 64px;
}

.featured-cars-carousel {
  position: relative;
}

.featured-cars-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-cars-grid::-webkit-scrollbar {
  display: none;
}

.featured-cars-grid .car-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 240px;
  max-width: calc((100% - 40px) / 3);
  text-decoration: none;
  color: inherit;
}

.featured-cars-status {
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.featured-cars-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.featured-cars-nav svg {
  width: 20px;
  height: 20px;
}

.featured-cars-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.featured-cars-nav[disabled] {
  opacity: 0;
  pointer-events: none;
}

.featured-cars-nav.prev {
  left: -6px;
}

.featured-cars-nav.next {
  right: -6px;
}

.featured-cars-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(24px, 3.4vw, 30px);
  font-weight: 800;
  max-width: 440px;
}

.cta-band p {
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 440px;
}

/* ---------- Контакты ---------- */

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

.office-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.office-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.office-address {
  font-size: 15px;
  color: var(--text-muted);
}

.office-phone {
  display: block;
  margin-top: 8px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-dim);
}

.contacts-bar {
  margin-top: 24px;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contacts-hours .label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contacts-hours b {
  font-size: 18px;
  font-weight: 800;
}

.contacts-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contacts-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  padding: 6px 4px;
  margin-right: 4px;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 120px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-cols {
  display: flex;
  gap: 64px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

/* ---------- Mobile sticky bar ---------- */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(14, 14, 16, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}

.mobile-cta-bar .icon-link {
  background: var(--surface-2);
}

.mobile-cta-bar .btn {
  flex: 1;
}

/* ---------- Page header (inner pages) ---------- */

.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero .kicker {
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-hero p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 560px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

/* ---------- Calculate form page ---------- */

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  padding: 64px 0 100px;
  align-items: start;
}

.calc-side h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.calc-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-step {
  display: flex;
  gap: 16px;
}

.calc-step .num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
}

.calc-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.calc-step p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.calc-side .side-note {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-muted);
}

.calc-side .side-note b {
  color: var(--text);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.branch-picker {
  margin-bottom: 24px;
}

.branch-picker label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 700;
}

.branch-picker select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
}

.branch-picker select:focus {
  outline: none;
  border-color: var(--gold);
}

.branch-picker p,
.bitrix-form-placeholder {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.bitrix-form-placeholder {
  padding: 24px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  text-align: center;
}

.bitrix-form-host[hidden] {
  display: none;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-row .required {
  color: var(--gold);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-dim);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row input.invalid,
.form-row textarea.invalid {
  border-color: var(--danger);
}

.form-row .error-msg {
  display: none;
  font-size: 12.5px;
  color: var(--danger);
  margin-top: 6px;
}

.form-row.has-error .error-msg {
  display: block;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-consent {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 18px;
  line-height: 1.5;
}

.form-consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted, #9a9a9a);
  cursor: pointer;
}
.form-consent-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.form-consent-checkbox a {
  color: var(--gold);
  text-decoration: underline;
}

.form-consent-checkbox.has-error {
  color: var(--danger);
}

.form-submit-error {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(229, 72, 77, 0.12);
  border: 1px solid rgba(229, 72, 77, 0.35);
  color: var(--danger);
  font-size: 13.5px;
  line-height: 1.5;
}

.form-thanks {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.form-thanks.show {
  display: block;
}

.form-thanks .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-thanks .check svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.form-thanks h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-thanks p {
  color: var(--text-muted);
  font-size: 15px;
}

.calc-form.submitted .form-fields {
  display: none;
}

/* ---------- Prices page ---------- */

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 56px 0 40px;
}

.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.car-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.car-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card .thumb.no-photo::after {
  content: "Фото скоро";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
}

.car-card .thumb:hover img {
  transform: scale(1.06);
}

/* ---------- Скелетон каталога (пока грузятся данные из Supabase) ---------- */

.car-card-skeleton .thumb,
.car-card-skeleton .skeleton-line {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 37%, var(--surface) 63%);
  background-size: 400% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
}

.car-card-skeleton .skeleton-line {
  height: 14px;
  border-radius: 4px;
}

.car-card-skeleton .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

@keyframes skeletonShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .car-card-skeleton .thumb,
  .car-card-skeleton .skeleton-line {
    animation: none;
  }
}

.car-card .thumb .count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.car-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-card h3 {
  font-size: 19px;
  font-weight: 800;
}

.car-card .specs {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13.5px;
}

.car-card .price {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}

.car-card .price b {
  display: block;
  font-size: 24px;
  color: var(--gold);
  font-weight: 800;
  margin-top: 2px;
}

.car-card .actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.car-card .actions .btn {
  padding: 12px 18px;
  font-size: 13.5px;
  flex: 1;
}

.prices-cta {
  padding: 20px 0 100px;
}

/* ---------- Фильтр по цене и марке (каталог авто) ---------- */

.price-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: 40px;
}

.price-filter-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
}

.price-filter-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.price-filter-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.price-filter-field input {
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.price-filter-field input::placeholder {
  color: var(--text-dim);
}

.price-filter-field input:focus {
  outline: none;
  border-color: var(--gold);
}

/* Марка — тот же ряд, что и остальные поля фильтра, но визуально
   отодвинута в конец (после кнопки "Сбросить") на широких экранах через
   flex order — так не пришлось дублировать разметку под разные экраны. */
.price-filter .brand-field {
  order: 5;
}

.price-filter select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--surface-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a24b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 10px 36px 10px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  width: 170px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.price-filter select:focus {
  outline: none;
  border-color: var(--gold);
}

.price-filter select option {
  background: var(--surface-2);
  color: var(--text);
}

.price-filter-reset {
  padding: 12px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.price-filter-count {
  font-size: 13.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

.price-filter-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.price-filter-empty a {
  color: var(--gold);
  font-weight: 700;
}

.price-filter-empty a:hover {
  text-decoration: underline;
}

.cars-status {
  text-align: center;
  padding: 20px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  min-height: 1px;
}

.cars-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 6, 7, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  width: 100%;
  max-width: 880px;
}

.lightbox-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}

.lightbox-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}

.lightbox-stage {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.lightbox-thumbs img {
  width: 74px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.lightbox-thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hover-приподнятие карточек ---------- */

.review-card, .car-card, .feature-card, .blogger-card, .finance-card, .office-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover, .car-card:hover, .feature-card:hover, .blogger-card:hover, .finance-card:hover, .office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  /* Часы работы скрываем — а сам номер оставляем виден и кликабелен
     прямо в шапке (можно позвонить в один тап, не открывая меню).
     Полностью контакты по-прежнему остаются в мобильном меню и в
     нижней плашке. */
  .site-header .header-contact {
    align-items: flex-end;
  }

  .site-header .header-hours {
    display: none;
  }

  .site-header .header-phone {
    font-size: 13px;
    padding: 10px 0;
  }

  /* На узких экранах в шапке остаются только логотип, номер и бургер —
     соцсети доступны в мобильном меню и в нижней плашке. */
  .site-header .icon-link {
    display: none;
  }

  .burger {
    display: flex;
  }

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

  /* Hero-визуал уходит под текст, чтобы кольца не давили на текстовую колонку */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    max-width: none;
  }

  .hero-visual {
    margin-top: 8px;
  }

  /* На мобильном фото выходит на всю ширину экрана (вразрез с паддингами
     контейнера) и растворяется вверху/внизу в фон секции — читается как
     часть дизайна, а не как отдельная вставленная картинка с рамкой. */
  .hero-photo-main {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      black 14%,
      black 86%,
      transparent 100%
    );
  }

  .reviews-grid {
    gap: 16px;
  }

  .review-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .reviews-nav {
    display: none;
  }

  .featured-cars-grid .car-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

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

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

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

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

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

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

  .calc-layout {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }

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

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .price-filter {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .price-filter-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .price-filter-field {
    min-width: 0;
  }

  /* order:5 из базовых стилей (десктоп) продолжает действовать и здесь,
     если его не перебить явно — order:-1 возвращает марку в начало ряда,
     на прежнее видимое место сверху всех остальных полей. */
  .price-filter .brand-field {
    order: -1;
    width: 100%;
  }

  .price-filter select {
    width: 100%;
  }

  .price-filter-reset {
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .bignum-ring.r1 { width: 280px; height: 280px; }
  .bignum-ring.r2 { width: 210px; height: 210px; }

  .bignum {
    font-size: 96px;
  }

  .mini-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 40px;
    gap: 12px;
  }

  .hero-stat {
    padding: 18px;
  }

  .hero-stat b {
    font-size: 22px;
  }

  .reviews-grid {
    gap: 12px;
  }

  .review-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .featured-cars-grid .car-card {
    flex: 0 0 82%;
  }

  .featured-cars-nav {
    display: none;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

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

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

  .contacts-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .finance-card {
    padding: 24px;
  }

  .finance-actions .btn {
    width: 100%;
  }

  .about-lead {
    flex-direction: column;
    gap: 18px;
  }

  .founder {
    width: 140px;
  }

  .cta-band {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-cols {
    gap: 32px;
    flex-wrap: wrap;
  }

  .form-card {
    padding: 24px;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
}
