:root {
  --bg: #070504;
  --bg2: #0f0c08;
  --surface: rgba(255, 245, 220, 0.045);
  --surface2: rgba(255, 240, 210, 0.085);
  --logo-badge-orange: #ff9000;
  --logo-badge-orange-dim: #e68200;
  --accent-rgb: 255, 144, 0;
  --accent-gradient: linear-gradient(180deg, #ff9f1a 0%, var(--logo-badge-orange) 55%, var(--logo-badge-orange-dim) 100%);
  --accent: #ff9000;
  --accent-dim: #e68200;
  --border: rgba(var(--accent-rgb), 0.14);
  --text: #f7f2ea;
  --muted: #a39a8c;
  --accent2: #d4c4a0;
  --accent-sage: #8f9a82;
  --danger: #ff6b6b;
  --radius: 20px;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 20px 60px rgba(var(--accent-rgb), 0.22);
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --ring: rgba(var(--accent-rgb), 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 680px at 8% -6%, rgba(var(--accent-rgb), 0.12), transparent 58%),
    radial-gradient(1000px 720px at 92% 8%, rgba(var(--accent-rgb), 0.16), transparent 52%),
    radial-gradient(800px 500px at 50% 100%, rgba(40, 32, 22, 0.9), transparent 50%),
    linear-gradient(180deg, #060402 0%, #0a0805 40%, #060402 100%);
  background-attachment: fixed;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 92vw);
}

.container-wide {
  width: min(1120px, 94vw);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.94), rgba(8, 6, 4, 0.82));
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
  transition: transform 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.site-header .header-inner.container {
  width: min(1040px, 94vw);
  padding: 0.4rem 0;
  gap: 0.65rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.logo--split {
  align-items: center;
  gap: clamp(0.4rem, 1.25vw, 0.65rem);
  min-width: 0;
}

.logo-img--mark {
  flex-shrink: 0;
  height: clamp(36px, 5vw, 50px);
  width: auto;
  max-width: min(108px, 23vw);
  filter:
    brightness(1.04)
    contrast(1.06)
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.22));
}

/* высота иконки ≈ высоте строки «Budget» + бейджа */
.site-header .logo-img--mark {
  height: clamp(36px, 4.85vw, 48px);
  max-width: min(102px, 21vw);
}

.logo-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35em;
  line-height: 1.08;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  min-width: 0;
  text-rendering: geometricPrecision;
}

.logo-wordmark__line1 {
  display: inline-block;
  font-size: clamp(0.98rem, 2.05vw, 1.28rem);
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(255, 255, 255, 0.06);
}

.logo-wordmark__line2 {
  display: inline-block;
  font-size: clamp(0.9rem, 1.85vw, 1.12rem);
  padding: 0.18em 0.5em 0.2em;
  color: #14110d;
  background: var(--accent-gradient);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.38);
  text-transform: lowercase;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.logo-wordmark__line1--single {
  font-size: clamp(1rem, 2.15vw, 1.32rem);
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(255, 255, 255, 0.06);
}

@media (max-width: 820px) {
  .site-header .logo-img--mark {
    height: clamp(32px, 8.5vw, 42px);
    max-width: min(92px, 24vw);
  }

  .logo-wordmark {
    gap: 0.28em;
  }

  .logo-wordmark__line1 {
    font-size: clamp(0.82rem, 3.6vw, 1.02rem);
  }

  .logo-wordmark__line2 {
    font-size: clamp(0.76rem, 3.2vw, 0.94rem);
    padding: 0.16em 0.42em 0.18em;
  }
}

.logo-img--footer-mark {
  height: clamp(34px, 5vw, 48px);
  max-width: min(100px, 32vw);
  filter:
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.22));
}

.logo-wordmark--footer .logo-wordmark__line1 {
  font-size: clamp(0.88rem, 1.75vw, 1.06rem);
}

.logo-wordmark--footer .logo-wordmark__line2 {
  font-size: clamp(0.8rem, 1.55vw, 0.95rem);
  padding: 0.16em 0.46em 0.18em;
}

.logo-wordmark--footer .logo-wordmark__line1--single {
  font-size: clamp(0.9rem, 1.85vw, 1.08rem);
}

.footer-logo {
  margin-bottom: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-header .nav {
  gap: 1.05rem;
  font-size: 0.84rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle::before {
  top: 16px;
  box-shadow: 0 7px 0 var(--text);
}

.nav-toggle::after {
  top: 30px;
}

body.nav-open .nav-toggle::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: 88px 4vw auto;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(12, 16, 32, 0.96);
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #1b1508;
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 50px rgba(var(--accent-rgb), 0.4);
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.06);
}

.hero .btn-ghost {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(12, 10, 8, 0.55);
  color: rgba(255, 248, 235, 0.95);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: clamp(3.25rem, 9vw, 6.5rem) 0 2.5rem;
  overflow: hidden;
}

.hero--video {
  display: flex;
  flex-direction: column;
  min-height: min(80vh, 760px);
  padding-bottom: 0;
}

.hero--video > .container.hero-grid {
  flex: 1 1 auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  /* как у .site-header .header-inner — левый край бейджа = левый край логотипа */
  width: min(1040px, 94vw);
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: auto;
}

.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* лёгкое затемнение по центру и у низа — баланс с читаемостью текста */
  background:
    radial-gradient(
      ellipse 105% 82% at 50% 38%,
      rgba(3, 3, 4, 0.48) 0%,
      rgba(5, 4, 4, 0.26) 46%,
      transparent 74%
    ),
    linear-gradient(
      180deg,
      rgba(4, 3, 2, 0.34) 0%,
      rgba(6, 5, 4, 0.12) 30%,
      rgba(3, 2, 2, 0.22) 50%,
      rgba(2, 2, 3, 0.38) 82%,
      rgba(1, 1, 2, 0.52) 100%
    );
}

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

  .hero-video-shell {
    background: radial-gradient(120% 80% at 50% 0%, #1a2238 0%, #05070f 55%);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.hero-grid-lines {
  position: absolute;
  inset: -20% -10% 30%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 10%, transparent 70%);
  opacity: 0.5;
  transform: perspective(400px) rotateX(68deg);
  transform-origin: top center;
}

.hero-aurora {
  position: absolute;
  width: 140%;
  height: 55%;
  left: -20%;
  bottom: -5%;
  background: linear-gradient(
    95deg,
    transparent 0%,
    rgba(var(--accent-rgb), 0.05) 30%,
    rgba(255, 220, 160, 0.04) 52%,
    transparent 100%
  );
  filter: none;
  opacity: 0;
  animation: aurora-shift 16s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  from {
    transform: translateX(-4%) skewX(-4deg);
  }
  to {
    transform: translateX(4%) skewX(2deg);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  top: -25%;
  right: -15%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 62%);
  filter: none;
  animation: floaty 14s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
}

@keyframes floaty {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-6%, 4%) scale(1.08);
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  position: relative;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  min-height: 0;
}

.hero-head {
  --hero-head-pad-top: clamp(0.85rem, 2.4vw, 1.65rem);
  position: relative;
  width: 100%;
  padding-top: var(--hero-head-pad-top);
}

.hero-copy {
  width: 100%;
  max-width: min(46rem, 94vw);
  margin-inline: auto;
  margin-top: clamp(0.65rem, 2.2vw, 1.35rem);
  padding: 0;
  text-align: center;
}

.hero-copy .hero-title,
.hero-copy .hero-sub,
.hero-copy .hero-regions,
.hero-copy .hero-trust {
  width: 100%;
  text-align: center;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.45rem, 5.6vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0.035em;
  margin: 0 0 0.85rem;
  text-wrap: balance;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.82))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.72))
    drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 36px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 48px rgba(var(--accent-rgb), 0.12));
}

.hero-title .line {
  display: inline-block;
  animation: title-in 1s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.58;
  font-weight: 600;
  color: rgba(252, 248, 240, 0.98);
  max-width: 42ch;
  margin: 0 auto 1rem;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.78),
    0 2px 10px rgba(0, 0, 0, 0.58),
    0 3px 22px rgba(0, 0, 0, 0.42);
}

.hero-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0 auto 1.25rem;
  font-size: 0;
}

.hero-reg-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.72rem 0.34rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 224, 186, 0.99);
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.18), rgba(0, 0, 0, 0.32));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 10px rgba(0, 0, 0, 0.32);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.62);
}

.hero-reg-sep {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 176, 100, 0.45);
  letter-spacing: 0.06em;
  user-select: none;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta--bottom {
  justify-content: center;
  width: 100%;
  padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: auto;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 3.25rem);
  border-block: 1px solid rgba(var(--accent-rgb), 0.12);
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: none;
  overflow: hidden;
}

/* полоса внизу секции, у края экрана; компактнее по высоте */
.hero--video .hero-marquee {
  margin-top: auto;
  flex-shrink: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.65rem);
  padding: 0.45rem 0;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  will-change: transform;
}

.marquee-inner .marquee-item {
  flex-shrink: 0;
  color: rgba(210, 200, 185, 0.92);
}

.marquee-inner .marquee-sep {
  flex-shrink: 0;
  color: rgba(var(--accent-rgb), 0.55);
  font-size: 0.55em;
  line-height: 1;
  padding-bottom: 0.12em;
}

@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    width: auto;
    max-width: min(100%, 52rem);
    margin-inline: auto;
    text-align: center;
    row-gap: 0.35rem;
  }

  /* одна строка контента без дубликата для зацикливания */
  .marquee-inner > :nth-child(n + 9) {
    display: none;
  }
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01) 40%, transparent);
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 0%, rgba(var(--accent-rgb), 0.06), transparent 60%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
  position: relative;
}

.section-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  opacity: 0.95;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-directions {
  position: relative;
  background: linear-gradient(180deg, #0a0907 0%, #060504 100%);
}

.section-directions::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(48vh, 380px);
  pointer-events: none;
  background: radial-gradient(ellipse 88% 100% at 50% 0%, rgba(var(--accent-rgb), 0.1), transparent 58%);
}

.section-directions > .container {
  position: relative;
  z-index: 1;
}

.section-directions .section-head {
  margin-bottom: clamp(1.65rem, 3.8vw, 2.35rem);
}

.dirs-panel {
  padding: clamp(0.65rem, 1.6vw, 1rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  background: linear-gradient(165deg, rgba(18, 15, 11, 0.95) 0%, rgba(8, 7, 5, 0.98) 100%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 248, 220, 0.04);
}

.fleet-classes {
  margin-top: 0.75rem !important;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.grid {
  display: grid;
  gap: 1rem;
}

.dirs-panel .dirs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.4vw, 0.85rem);
}

@media (min-width: 960px) {
  .dirs-panel .dirs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .dirs-panel .dirs {
    grid-template-columns: 1fr;
  }
}

.fleet {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.features {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.reviews {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.35);
  background: var(--surface2);
}

.dir-card.dir-card--photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 248, 220, 0.08);
  background: #101014;
  aspect-ratio: 16 / 10;
  min-height: 158px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dir-card--photo:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.65);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .dir-card--photo:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--accent-rgb), 0.28);
    box-shadow:
      0 16px 44px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(var(--accent-rgb), 0.12);
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dir-card--photo {
    transition: none;
  }

  .dir-card--photo:hover {
    transform: none;
  }
}

.dir-card-media {
  position: absolute;
  inset: 0;
}

.dir-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .dir-card--photo:hover .dir-card-img {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dir-card-img {
    transition: none;
  }

  .dir-card--photo:hover .dir-card-img {
    transform: none;
  }
}

.dir-card-img--fallback {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(165deg, #1a1a22 0%, #08080c 100%);
}

.dir-card-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 32%,
    rgba(0, 0, 0, 0.18) 58%,
    transparent 78%
  );
}

.dir-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(0.8rem, 2.1vw, 1.15rem) clamp(0.75rem, 1.9vw, 1.05rem);
  text-align: left;
}

.dir-card-title {
  margin: 0 0 0.28rem;
  font-family: var(--display);
  font-size: clamp(1.08rem, 2.15vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 20px rgba(0, 0, 0, 0.55);
}

.dir-card-country {
  margin: 0;
  font-size: clamp(0.62rem, 1.08vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.82);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

body.dir-modal-open {
  overflow: hidden;
}

.dir-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dir-modal[hidden] {
  display: none !important;
}

.dir-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 3, 0.72);
  backdrop-filter: blur(8px);
}

.dir-modal__sheet {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-block: auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: linear-gradient(168deg, rgba(16, 13, 10, 0.98) 0%, rgba(8, 7, 5, 0.99) 100%);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 248, 220, 0.06);
  max-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dir-modal__header {
  position: relative;
  flex-shrink: 0;
  min-height: clamp(160px, 28vw, 220px);
  max-height: 38vh;
}

.dir-modal__hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dir-modal__header-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.dir-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 248, 235, 0.95);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dir-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.dir-modal__header-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1rem, 3vw, 1.35rem) clamp(1rem, 3vw, 1.5rem);
  text-align: left;
}

.dir-modal__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 214, 160, 0.92);
}

.dir-modal__city {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}

.dir-modal__tag {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(220, 210, 195, 0.92);
  max-width: 36ch;
}

.dir-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.35rem) 0.75rem;
  border-top: 1px solid rgba(255, 248, 220, 0.08);
}

.dir-modal__h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font);
  font-size: clamp(0.78rem, 1.9vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.95);
  line-height: 1.35;
}

.dir-modal__lead {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.dir-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.65rem;
}

@media (max-width: 420px) {
  .dir-modal__grid {
    grid-template-columns: 1fr;
  }
}

.dir-modal-dest {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 220, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dir-modal-dest:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.08);
}

.dir-modal-dest:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), 0.55);
  outline-offset: 2px;
}

.dir-modal-dest__arr {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.08rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 200, 130, 0.95);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.dir-modal-dest__txt {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.dir-modal-dest__txt strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(252, 248, 240, 0.98);
}

.dir-modal-dest__txt small {
  font-size: 0.72rem;
  color: rgba(176, 168, 155, 0.95);
}

.dir-modal__footer {
  flex-shrink: 0;
  padding: 1rem clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.35rem);
  border-top: 1px solid rgba(255, 248, 220, 0.08);
  text-align: center;
}

.dir-modal__footer-note {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: rgba(200, 192, 178, 0.9);
}

.dir-modal__calc {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dir-modal__calc-ico {
  flex-shrink: 0;
  opacity: 0.9;
}

.fleet-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.fleet-visual {
  position: relative;
  height: 118px;
  --fh: calc(38 + (var(--f, 0)) * 18);
  background:
    radial-gradient(90% 120% at 18% 0%, hsla(var(--fh), 72%, 58%, 0.38), transparent 52%),
    radial-gradient(70% 90% at 92% 20%, rgba(var(--accent-rgb), 0.12), transparent 45%),
    linear-gradient(155deg, #161f3d 0%, #0a0f20 100%);
  border-bottom: 1px solid var(--border);
}

.fleet-card--hero .fleet-visual {
  height: 160px;
}

.fleet-card--hero .fleet-silhouette {
  width: 158px;
  height: 44px;
}

.fleet-card--hero .fleet-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .fleet-rich {
    grid-template-columns: repeat(12, 1fr);
  }

  .fleet-card--hero {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 280px;
  }

  .fleet-rich .fleet-card:not(.fleet-card--hero) {
    grid-column: span 3;
  }
}

.fleet-silhouette {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 38px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.45));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 14px 28px rgba(0, 0, 0, 0.35);
}

.fleet-silhouette::before,
.fleet-silhouette::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a354f, #0f141f);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.fleet-silhouette::before {
  left: 14px;
}

.fleet-silhouette::after {
  right: 14px;
}

.fleet-body {
  padding: 1.15rem 1.35rem 1.35rem;
}

.fleet-card .pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: #e8d4b0;
  margin-bottom: 0.55rem;
  background: rgba(var(--accent-rgb), 0.1);
}

.fleet-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feature-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  opacity: 0.95;
}

.feature-ico[data-icon="wallet"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9000' stroke-width='1.6'%3E%3Cpath d='M3 7a2 2 0 012-2h14a2 2 0 012 2v10a2 2 0 01-2 2H5a2 2 0 01-2-2V7z'/%3E%3Cpath d='M7 7V5a2 2 0 012-2h6a2 2 0 012 2v2'/%3E%3C/svg%3E");
}

.feature-ico[data-icon="clock"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9000' stroke-width='1.6'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v6l4 2'/%3E%3C/svg%3E");
}

.feature-ico[data-icon="headset"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9000' stroke-width='1.6'%3E%3Cpath d='M5 14a7 7 0 0114 0v2a2 2 0 01-2 2h-1v-4H7v4H6a2 2 0 01-2-2v-2z'/%3E%3C/svg%3E");
}

.feature-ico[data-icon="shield"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff9000' stroke-width='1.6'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 9-8 11-4.5-2-8-6-8-11V6l8-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.feature-ico[data-icon="star"]::before,
.feature-ico:not([data-icon])::before,
.feature-ico[data-icon=""]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff9000'%3E%3Cpath d='M12 2l2.9 6.1L22 9.3l-5 4.7 1.4 6.5L12 17.8 5.6 20.5 7 14l-5-4.7 7.1-1.2L12 2z'/%3E%3C/svg%3E");
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--display);
  color: #1a1204;
  background: var(--accent-gradient);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-gold);
}

.review-stars {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(var(--accent-rgb), 0.85);
}

.review-card::before {
  content: "“";
  position: absolute;
  bottom: 0.5rem;
  right: 0.85rem;
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(var(--accent-rgb), 0.08);
  pointer-events: none;
}

.review-card p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.02rem;
}

.review-card cite {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.calc-card,
.form-card {
  padding: 1.85rem;
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.1) inset,
    0 22px 70px rgba(0, 0, 0, 0.38);
}

.calc-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.calc-row label {
  font-size: 0.8rem;
  color: var(--muted);
}

.calc-row select,
.form-card input {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 5, 12, 0.55);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calc-row select {
  cursor: pointer;
  appearance: none;
  background-color: rgba(3, 5, 12, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a0b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.calc-row select:focus,
.form-card input:focus {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.12);
}

.calc-result {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.08);
  text-align: center;
}

.calc-result span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.calc-result strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  margin: 0.25rem 0;
  color: var(--accent);
}

.calc-result small {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-msg {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.form-msg.ok {
  color: #c9e0b8;
}

.form-msg.err {
  color: var(--danger);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.75rem;
  background: linear-gradient(180deg, #060402 0%, #030201 100%);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.45), transparent);
  opacity: 0.7;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 42ch;
}

.footer-cta-copy strong {
  font-size: 1.1rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.footer-cta-copy span {
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-block .footer-tag {
  margin-top: 0.65rem;
}

.footer-tag {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 36ch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.footer-col a {
  color: var(--text);
  opacity: 0.88;
  font-size: 0.92rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.glass-card {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: linear-gradient(145deg, rgba(52, 42, 28, 0.5), rgba(14, 11, 8, 0.65));
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 248, 220, 0.08);
}

.hero-trust {
  list-style: none;
  margin: 0 auto 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  max-width: 38rem;
  justify-content: center;
}

.hero-trust li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem 0.42rem 1.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(236, 230, 218, 0.98);
  border: 1px solid rgba(255, 248, 220, 0.12);
  background: rgba(2, 2, 3, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 12px rgba(0, 0, 0, 0.28);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.82),
    0 1px 3px rgba(0, 0, 0, 0.52);
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.22);
}

.trust-strip {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
  border-block: 1px solid rgba(var(--accent-rgb), 0.14);
  background:
    radial-gradient(ellipse 90% 120% at 50% 0%, rgba(var(--accent-rgb), 0.1), transparent 55%),
    linear-gradient(180deg, rgba(12, 9, 6, 0.98) 0%, rgba(6, 5, 4, 0.99) 100%);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.8vw, 1rem);
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: linear-gradient(155deg, rgba(22, 18, 12, 0.92) 0%, rgba(10, 8, 6, 0.78) 48%, rgba(14, 11, 8, 0.88) 100%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 248, 220, 0.07);
}

@media (max-width: 900px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}

.trust-cell {
  position: relative;
  text-align: center;
  margin: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(0.65rem, 1.5vw, 1rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 248, 220, 0.06);
  background: linear-gradient(180deg, rgba(255, 248, 220, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.trust-cell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(38%, 4.25rem);
  height: 2px;
  border-radius: 2px;
  background: var(--accent-gradient);
  opacity: 0.7;
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.25);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .trust-cell:hover {
    border-color: rgba(var(--accent-rgb), 0.28);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-cell {
    transition: none;
  }

  .trust-cell:hover {
    transform: none;
  }
}

.trust-num {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.35rem;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.5));
}

.trust-desc {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(188, 180, 168, 0.95);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  opacity: 0.92;
}

.section-features {
  position: relative;
}

.section-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 80% 20%, rgba(120, 140, 255, 0.07), transparent 55%);
  pointer-events: none;
}

.features-bento {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--spotlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.25rem 2rem;
    align-items: center;
    padding: 1.5rem 1.65rem;
    background: linear-gradient(125deg, rgba(var(--accent-rgb), 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(var(--accent-rgb), 0.28);
  }

  .feature-card--spotlight .feature-card-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .feature-card--spotlight .feature-ico {
    margin-bottom: 0;
    width: 56px;
    height: 56px;
  }

  .feature-card--spotlight h3 {
    font-size: 1.25rem;
    margin: 0;
  }

  .feature-card--spotlight p {
    font-size: 0.98rem;
  }
}

.feature-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-card-head h3 {
  margin: 0;
}

.section-calc-book {
  padding-bottom: 5.5rem;
  position: relative;
}

.section-calc-book::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 480px at 20% 0%, rgba(var(--accent-rgb), 0.08), transparent 55%);
  pointer-events: none;
}

.split-calc-book {
  display: grid;
  gap: 2.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .split-calc-book {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.panel-title {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.panel-title h3 {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.panel-title p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.panel-step {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--display);
  color: #1a1204;
  background: var(--accent-gradient);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-gold);
}

.calc-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .calc-row-split {
    grid-template-columns: 1fr;
  }
}

.calc-card--premium,
.form-card--premium {
  height: 100%;
}

.form-hint {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%,
  60% {
    transform: translateX(-100%);
  }
  85% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-shine::after {
    animation: none !important;
  }
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  html.reveal-init [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.85, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.85, 0.2, 1);
  }

  html.reveal-init [data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* После появления — блок чуть ниже центра */
  html.reveal-init [data-reveal].hero-copy.in-view {
    transform: translateY(clamp(0.35rem, 1.1vw, 0.85rem));
  }

  @media (min-width: 1241px) {
    html.reveal-init [data-reveal].hero-copy.in-view {
      transform: translateY(clamp(0.55rem, 1.35vw, 1.1rem));
    }
  }

  html.reveal-init [data-reveal][data-delay="1"] {
    transition-delay: 0.14s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy.in-view {
    transform: translateY(clamp(0.35rem, 1.1vw, 0.85rem));
  }

  @media (min-width: 1241px) {
    .hero-copy.in-view {
      transform: translateY(clamp(0.55rem, 1.35vw, 1.1rem));
    }
  }
}
