/* ==========================================================================
   Автобимер — dark premium theme
   ========================================================================== */

:root {
  --bg: #090909;
  --bg-2: #0f172a;
  --bg-card: #12141c;
  --bg-card-2: #151a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f5f7;
  --text-dim: #9aa1ae;
  --text-dimmer: #6b7280;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.45);
  --red: #dc2626;
  --red-light: #ef4444;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1220px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.contact-card p, .contact-card a,
.map-info-row span, .map-info-row a,
.footer-col span, .footer-col a,
.form-row input, .form-row textarea,
.review-text {
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

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

section { position: relative; padding: 110px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
}

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-sub { margin-top: 14px; color: var(--text-dim); font-size: 17px; line-height: 1.6; }

/* ---------- background texture ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue) 70%);
  color: #fff;
  box-shadow: 0 8px 30px -6px var(--blue-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -6px var(--blue-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(135deg, var(--red-light), var(--red) 70%);
  color: #fff;
  box-shadow: 0 8px 30px -6px rgba(220,38,38,0.45);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -6px rgba(220,38,38,0.5); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(9,9,9,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(220,38,38,0.2));
  border: 1px solid var(--border-strong);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text b { color: var(--blue-light); }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a { font-size: 14.5px; font-weight: 600; color: var(--text-dim); transition: color 0.25s; position: relative; }
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; font-size: 14px; }
.header-phone a { font-weight: 700; }
.header-phone span { font-size: 11.5px; color: var(--text-dimmer); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 400;
  background: rgba(9,9,9,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 32px 24px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { font-size: 22px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 24px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 120% 80% at 30% -10%, #0f1c3d 0%, var(--bg) 55%); }
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 30%, rgba(37,99,235,0.35), transparent 45%),
              radial-gradient(circle at 95% 75%, rgba(220,38,38,0.16), transparent 40%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroGlow { from { opacity: 0.7; transform: scale(1); } to { opacity: 1; transform: scale(1.05); } }
.hero-car {
  position: absolute; right: 2%; top: 50%; transform: translateY(-48%);
  width: 30%; max-width: 420px; opacity: 0.95;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 90px -20px rgba(37,99,235,0.35), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-car::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(200deg, transparent 45%, rgba(9,9,9,0.75) 100%),
              linear-gradient(0deg, rgba(9,9,9,0.35), transparent 30%);
  pointer-events: none;
}
.hero-car img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.55) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.035;
  pointer-events: none;
}

.hero-content { max-width: 640px; }
.hero-title {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--blue-light), #60a5fa 60%, var(--blue-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; font-size: 18px; color: var(--text-dim); max-width: 520px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero-perks {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 560px;
}
.hero-perk { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-dim); }
.hero-perk .check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.4);
  display: flex; align-items: center; justify-content: center;
}
.hero-perk .check svg { width: 12px; height: 12px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dimmer); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--text-dimmer), transparent); }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- glass card base ---------- */
.glass {
  background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 30px 24px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,0%), rgba(37,99,235,0.16), transparent 70%);
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px) scale(1.015); border-color: rgba(59,130,246,0.35); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(37,99,235,0.18), rgba(37,99,235,0.04));
  border: 1px solid rgba(59,130,246,0.25);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--blue-light); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

/* ---------- why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
@media (max-width: 1080px) { .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 28px 24px; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.why-num { font-size: 13px; font-weight: 800; color: var(--red-light); letter-spacing: 0.08em; margin-bottom: 14px; }
.why-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.why-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

/* ---------- gallery ---------- */
.gallery-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-tab {
  padding: 10px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.03); color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.gallery-tab.active, .gallery-tab:hover { color: #fff; border-color: var(--blue-light); background: rgba(37,99,235,0.15); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  display: flex; align-items: flex-end; padding: 18px;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .g-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.gallery-item:hover .g-bg { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.gallery-item span { position: relative; z-index: 1; font-weight: 700; font-size: 14.5px; }
.gallery-item small { position: relative; z-index: 1; display: block; font-size: 11.5px; color: var(--text-dim); font-weight: 500; }
.gallery-item .zoom-ic { position: absolute; top: 14px; right: 14px; z-index: 1; width: 34px; height: 34px; border-radius: 50%; background: rgba(9,9,9,0.55); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.gallery-item:hover .zoom-ic { opacity: 1; transform: scale(1); }
.gallery-item .zoom-ic svg { width: 15px; height: 15px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 170px; } .gallery-item.wide { grid-column: span 2; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; } }

.gallery-note { margin-top: 20px; font-size: 13px; color: var(--text-dimmer); }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(5,5,8,0.92); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-box { width: min(760px, 90vw); aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--border-strong); }
.lightbox-box .g-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.lightbox-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85)); }
.lightbox-caption b { font-size: 16px; }
.lightbox-close {
  position: absolute; top: 28px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; position: relative; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { padding: 30px 24px; position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 8px 22px -6px var(--blue-glow);
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }
.step-arrow { display: none; position: absolute; top: 44px; right: -20px; color: var(--text-dimmer); z-index: 2; }
@media (min-width: 901px) { .step-card:not(:last-child) .step-arrow { display: block; } }

/* ---------- testimonials ---------- */
.reviews-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.rating-badge { display: flex; align-items: center; gap: 16px; padding: 16px 22px; }
.rating-num { font-size: 34px; font-weight: 800; line-height: 1; }
.rating-stars { display: flex; gap: 3px; margin: 6px 0; }
.rating-stars svg { width: 15px; height: 15px; fill: #fbbf24; }
.rating-count { font-size: 12.5px; color: var(--text-dim); }

.reviews-track-wrap { position: relative; overflow: hidden; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.5s var(--ease); }
.review-card { min-width: calc(33.333% - 14px); padding: 28px; display: flex; flex-direction: column; }
@media (max-width: 980px) { .review-card { min-width: calc(50% - 10px); } }
@media (max-width: 640px) { .review-card { min-width: 100%; } }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 14px; height: 14px; fill: #fbbf24; }
.review-text { font-size: 14.5px; color: var(--text-dim); line-height: 1.65; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  background: linear-gradient(135deg, rgba(37,99,235,0.35), rgba(220,38,38,0.25));
  border: 1px solid var(--border-strong);
}
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-dimmer); }

.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.rc-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; transition: all 0.25s;
}
.rc-btn:hover { background: rgba(37,99,235,0.18); border-color: var(--blue-light); }
.rc-btn svg { width: 18px; height: 18px; }
.rc-dots { display: flex; gap: 8px; }
.rc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: all 0.3s; }
.rc-dot.active { width: 22px; border-radius: 4px; background: var(--blue-light); }

.reviews-cta { text-align: center; margin-top: 40px; }

/* ---------- map ---------- */
.map-section { padding-bottom: 110px; }
.map-block { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
@media (max-width: 860px) { .map-block { grid-template-columns: 1fr; } }
.map-frame { position: relative; min-height: 440px; background: #10131a; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) invert(0.92) contrast(0.9) brightness(0.95) hue-rotate(180deg); }
.map-info { padding: 40px; background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.map-info-row { display: flex; gap: 14px; align-items: flex-start; }
.map-info-row .ic { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.3); }
.map-info-row .ic svg { width: 20px; height: 20px; stroke: var(--blue-light); }
.map-info-row b { display: block; font-size: 15px; margin-bottom: 3px; }
.map-info-row span, .map-info-row a { font-size: 14px; color: var(--text-dim); }
.map-info-row a:hover { color: var(--text); }
.map-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }

/* ---------- contacts ---------- */
.contacts-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-bottom: 20px; }
@media (max-width: 780px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 32px 26px; }
.contact-card .ic { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: linear-gradient(145deg, rgba(220,38,38,0.18), rgba(220,38,38,0.03)); border: 1px solid rgba(239,68,68,0.25); }
.contact-card .ic svg { width: 24px; height: 24px; stroke: var(--red-light); }
.contact-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-dim); }
.contact-card p, .contact-card a { font-size: 18px; font-weight: 700; line-height: 1.4; }
.contact-card a:hover { color: var(--blue-light); }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- booking form ---------- */
.booking-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .booking-wrap { grid-template-columns: 1fr; } }
.booking-side .section-head { margin-bottom: 30px; }
.booking-perks { display: flex; flex-direction: column; gap: 16px; }
.booking-perk { display: flex; gap: 14px; align-items: flex-start; }
.booking-perk .num { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; background: rgba(37,99,235,0.15); border: 1px solid rgba(59,130,246,0.3); color: var(--blue-light); }
.booking-perk p { font-size: 14.5px; color: var(--text-dim); line-height: 1.5; padding-top: 4px; }

.booking-form { padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--text-dim); margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.25s, background 0.25s;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--blue-light); background: rgba(37,99,235,0.06); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-consent { font-size: 12px; color: var(--text-dimmer); margin-top: 14px; line-height: 1.5; }
.form-consent a { text-decoration: underline; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(37,99,235,0.12); border: 1px solid rgba(59,130,246,0.35); }
.form-status.err { background: rgba(220,38,38,0.12); border: 1px solid rgba(239,68,68,0.35); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; font-weight: 700; font-size: 15.5px; }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border-strong); flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.35s var(--ease), background 0.35s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--text-dim); transition: transform 0.3s; }
.faq-q .plus::before { width: 11px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 11px; }
.faq-item.open .faq-q .plus { background: var(--blue-light); border-color: var(--blue-light); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-in { padding: 0 26px 24px; font-size: 14.5px; color: var(--text-dim); line-height: 1.65; }

/* ---------- final CTA ---------- */
.cta-band {
  padding: 70px 50px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,0.16), rgba(220,38,38,0.08));
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; margin-bottom: 16px; }
.cta-band p { color: var(--text-dim); font-size: 16px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { padding: 60px 0 30px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-about p { margin-top: 16px; font-size: 14px; color: var(--text-dim); line-height: 1.6; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.footer-social a:hover { background: rgba(37,99,235,0.18); border-color: var(--blue-light); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--text-dim); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dimmer); }
.footer-bottom a { text-decoration: underline; }

/* ---------- floating utility buttons ---------- */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 300; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6); transition: transform 0.3s var(--ease); }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 22px; height: 22px; }
.fab-call { background: linear-gradient(135deg, var(--red-light), var(--red)); }
.fab-top { background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong); opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s var(--ease); }
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.sticky-book { position: fixed; left: 0; right: 0; bottom: 0; z-index: 290; padding: 14px 16px; background: rgba(9,9,9,0.85); backdrop-filter: blur(14px); border-top: 1px solid var(--border); display: none; }
@media (max-width: 720px) { .sticky-book { display: block; } body { padding-bottom: 74px; } }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (max-width: 900px) {
  .nav-desktop, .header-phone { display: none; }
  .burger { display: flex; }
  .hero-car { opacity: 0.3; width: 60%; right: -8%; }
  .hero-perks { grid-template-columns: 1fr; }
}

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