/* ============================================================
   VIP TRANSFER ITALY — premium dark theme
   Mobile-first, black & gold palette
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --bg-card: #16161a;
  --gold: #c9a24b;
  --gold-light: #e8c97a;
  --gold-grad: linear-gradient(135deg, #b8903a 0%, #e8c97a 50%, #b8903a 100%);
  --text: #f2efe9;
  --text-muted: #a09a8e;
  --line: rgba(201, 162, 75, 0.22);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --header-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  text-align: center;
}

.btn--gold {
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: #141008;
  box-shadow: 0 8px 30px rgba(201, 162, 75, 0.28);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 162, 75, 0.45);
  background-position: 100% 50%;
}

.btn--ghost {
  border-color: rgba(242, 239, 233, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn--outline {
  border-color: var(--line);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 0.82rem;
}
.btn--outline:hover {
  background: var(--gold);
  color: #141008;
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201, 162, 75, 0.35);
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.header.is-scrolled {
  background: rgba(10, 10, 12, 0.92);
  border-bottom-color: var(--line);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.06);
}
.logo__text {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
.logo__text em {
  font-style: normal;
  color: var(--gold);
}

.nav {
  display: none;
  gap: 34px;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

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

.header__phone {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  transition: color 0.3s ease;
}
.header__phone:hover { color: var(--gold); }

.lang-switch {
  position: relative;
}
.lang-switch__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.lang-switch__toggle i {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.lang-switch.is-open .lang-switch__toggle i { transform: rotate(180deg); }
.lang-switch__toggle:hover {
  background: rgba(201, 162, 75, 0.1);
  border-color: var(--gold);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: #1b1b21;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  z-index: 120;
}
.lang-switch.is-open .lang-switch__menu { display: block; }
.lang-switch__menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch__menu li:last-child button { border-bottom: none; }
.lang-switch__menu button:hover {
  background: rgba(201, 162, 75, 0.1);
  color: var(--text);
}
.lang-switch__menu button.is-active {
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.07);
}

/* burger (mobile menu) */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav drawer */
@media (max-width: 899px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav.is-open { max-height: 320px; }
  .nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav a::after { display: none; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .burger { display: none; }
  .header__phone { display: block; }
}

/* ============ FLOATING BUTTONS ============ */
.fab {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.fab__btn:hover {
  transform: scale(1.12) translateY(-2px);
}
.fab__btn--wa { background: linear-gradient(135deg, #29a71a, #4fce5d); }
.fab__btn--wa:hover { box-shadow: 0 12px 34px rgba(79, 206, 93, 0.45); }
.fab__btn--tg { background: linear-gradient(135deg, #1c93e3, #2aabee); }
.fab__btn--tg:hover { box-shadow: 0 12px 34px rgba(42, 171, 238, 0.45); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('images/mercedes-v-class.jpg') center 62% / cover no-repeat,
    radial-gradient(ellipse at 50% 40%, #23232b 0%, #0a0a0c 75%);
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 10, 12, 0.68) 0%,
      rgba(10, 10, 12, 0.35) 40%,
      rgba(10, 10, 12, 0.55) 75%,
      var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '—';
  color: var(--gold);
  margin: 0 12px;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero__slogan {
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.85);
  margin-bottom: 44px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: -18px auto 40px;
  padding: 10px 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(201, 162, 75, 0.08);
  backdrop-filter: blur(4px);
}
.hero__badge span {
  color: var(--gold);
  font-size: 0.75rem;
}
.hero__badge em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(242, 239, 233, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ SECTIONS (shared) ============ */
.section {
  padding: 90px 0;
}

.section__eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
  line-height: 1.2;
}

/* ============ ABOUT ============ */
.about { background: var(--bg); }

.about__text {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.4s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.feature__icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.9;
}
.feature h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ FLEET ============ */
.fleet {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fleet__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 50px;
}
@media (min-width: 820px) { .fleet__grid { grid-template-columns: 1fr 1fr; } }

.car-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease, border-color 0.45s ease;
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  border-color: transparent;
}

/* студійні фото вже на чорному фоні — тому картинка на всю площу,
   а фон блоку робимо таким самим чорним, щоб не було видно стику */
.car-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #000;
}
/* м'яке золоте світіння зверху + затемнення до низу картки */
.car-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, rgba(201, 162, 75, 0.1) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 80%, rgba(22, 22, 26, 0.9) 100%);
}
/* contain, а не cover — авто завжди в кадрі повністю;
   чорні поля непомітні, бо фон блоку теж чорний */
.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.car-card:hover .car-card__media img {
  transform: scale(1.05);
}

.car-card__body {
  padding: 30px 28px 34px;
}

.car-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.car-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.car-card__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.car-card__specs {
  display: flex;
  gap: 28px;
  margin-bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.car-card__specs li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.spec__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ============ BOOKING ============ */
.booking { background: var(--bg); }

.booking__note {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 38px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
@media (min-width: 640px) { .form { padding: 48px 46px; } }

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 640px) {
  .form__grid { grid-template-columns: 1fr 1fr; }
  .form__field--wide { grid-column: 1 / -1; }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form__field label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form__field input,
.form__field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a24b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form__field select option {
  background: var(--bg-card);
  color: var(--text);
}

.form__field input::placeholder {
  color: rgba(160, 154, 142, 0.55);
}

.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}

.form__field input.is-invalid {
  border-color: #b8503f;
  box-shadow: 0 0 0 3px rgba(184, 80, 63, 0.15);
}

/* date picker — dark scheme */
.form__field input[type="date"] {
  color-scheme: dark;
  min-height: 50px;
}

/* час — два списки замість системного годинника
   (на Android у вбудованих браузерах він часто обрізається) */
.time-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-row select {
  flex: 1;
  min-height: 50px;
  padding-right: 34px;
  background-position: right 10px center;
  text-align: center;
}
.time-row__sep {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

/* ---- autocomplete dropdown ---- */
.autocomplete { position: relative; }

.autocomplete__list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  z-index: 50;
  background: #1b1b21;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  max-height: 264px;
  overflow-y: auto;
}
.autocomplete__list.is-open { display: block; }

.autocomplete__list li {
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}
.autocomplete__list li:last-child { border-bottom: none; }
.autocomplete__list li:hover,
.autocomplete__list li.is-hover {
  background: rgba(201, 162, 75, 0.1);
  color: var(--text);
}
.autocomplete__list li .ac-icon {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.8rem;
}

/* ---- submit / messages ---- */
.form__submit {
  width: 100%;
  margin-top: 28px;
  border: none;
}
.form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form__or {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.form__or::before,
.form__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.btn--wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #1f8f14, #40b855);
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(64, 184, 85, 0.22);
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(64, 184, 85, 0.4);
}

.form__error {
  margin-top: 18px;
  color: #e08a7a;
  font-size: 0.9rem;
  text-align: center;
}

.form__success {
  margin-top: 26px;
  text-align: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(201, 162, 75, 0.06);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.form__success-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  color: #141008;
  font-size: 1.5rem;
  font-weight: 700;
}
.form__success p {
  font-size: 1.05rem;
  color: var(--gold-light);
}

/* ============ POPULAR ROUTES ============ */
.routes {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.routes__note {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 0.95rem;
}

.routes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px)  { .routes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .routes__grid { grid-template-columns: repeat(3, 1fr); } }

.route {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.route:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: #1a1a1f;
  box-shadow: var(--shadow);
}

.route__path {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.02rem;
  color: var(--text);
}
.route__path b { font-weight: 500; }
.route__path i {
  font-style: normal;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.35s ease;
}
.route:hover .route__path i { transform: translateX(3px); }

.route__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.routes__any {
  margin-top: 34px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ FAQ ============ */
.faq { background: var(--bg); }

.faq__list {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-light); }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__item[open] summary { color: var(--gold-light); }
.faq__item p {
  padding: 0 40px 24px 0;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-muted);
  animation: fadeUp 0.4s ease;
}

/* ============ STICKY MOBILE CTA ============ */
.cta-bar {
  position: fixed;
  left: 16px;
  right: 84px;
  bottom: 18px;
  z-index: 88;
  display: none;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 9999px;
  background: var(--gold-grad);
  color: #141008;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(201, 162, 75, 0.35);
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-bar.is-shown { opacity: 1; transform: translateY(0); }

@media (max-width: 899px) {
  .cta-bar { display: flex; }
  /* піднімаємо месенджери, щоб не накривали кнопку */
  .fab { bottom: 84px; }
}

/* ============ REVIEWS ============ */
.reviews { background: var(--bg); }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (min-width: 700px)  { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease, box-shadow 0.4s ease;
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.review__stars {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.review blockquote {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  flex: 1;
}
.review figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}
.review__name {
  display: block;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.review__meta {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- review form ---- */
.review-form {
  max-width: 620px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 34px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
@media (min-width: 640px) { .review-form { padding: 42px 40px; } }

.review-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.review-form__note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-form__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 22px 0 26px;
}
.review-form__stars button {
  background: none;
  border: none;
  padding: 2px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.2s ease, transform 0.2s ease;
}
.review-form__stars button.is-on { color: var(--gold); }
.review-form__stars button:hover { transform: scale(1.15); }

.review-form .form__field { text-align: left; margin-bottom: 18px; }

.review-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  resize: vertical;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.review-form textarea::placeholder { color: rgba(160, 154, 142, 0.55); }
.review-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}
.review-form textarea.is-invalid,
.review-form input.is-invalid {
  border-color: #b8503f;
  box-shadow: 0 0 0 3px rgba(184, 80, 63, 0.15);
}

.review-form__submit {
  width: 100%;
  margin-top: 8px;
  border: none;
}
.review-form__submit:disabled { opacity: 0.6; cursor: wait; transform: none; }

/* ============ FOOTER ============ */
.footer {
  background: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 820px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__contacts,
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__contacts a,
.footer__nav a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__contacts a:hover,
.footer__nav a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(160, 154, 142, 0.6);
}

/* ============ INTRO LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #0a0a0c;
  border-radius: 0 0 22px 22px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.loader.done { transform: translateY(-101%); }

.loader__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.loader.done .loader__center { opacity: 0; transform: translateY(-12px); }

.loader__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.loader__mark {
  width: 48px; height: 48px;
  font-size: 1.7rem;
}
.loader__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}
.loader__name em { font-style: normal; color: var(--gold); }

.loader__tag {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.45);
  text-align: center;
}

.loader__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(320px, 72vw);
}
.loader__track {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.loader__fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.1s ease-out;
}
.loader__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(242, 239, 233, 0.4);
}
#loaderNum {
  font-variant-numeric: tabular-nums;
  color: rgba(242, 239, 233, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ============ STATS ============ */
.stats-section { padding-top: 0; padding-bottom: 0; }

.stats {
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 56px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 162, 75, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 640px) { .stats { padding: 64px 48px; } }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  margin-top: 44px;
  position: relative;
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
.stats__grid p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger siblings a little */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* hero: deeper cascade after the intro loader */
.hero__eyebrow.reveal { transition-delay: 0.05s; }
.hero__title.reveal   { transition-delay: 0.15s; transition-duration: 1s; }
.hero__title.reveal:not(.is-visible) { transform: translateY(46px); }
.hero__slogan.reveal  { transition-delay: 0.32s; }
.hero__badge.reveal   { transition-delay: 0.44s; }
.hero__actions.reveal { transition-delay: 0.56s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; transform: none; }
  * { animation-duration: 0.001s !important; }
}
