:root {
  --bg: #eef3ff;
  --text: #0f1c2d;
  --muted: #4b5f7b;
  --primary: #0d4fd3;
  --primary-strong: #093b9f;
  --primary-soft: #3d7df7;
  --accent: #0fb37d;
  --white: #ffffff;
  --border: #d4e0f3;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 12px 30px rgba(15, 28, 45, 0.09);
  --shadow-strong: 0 18px 42px rgba(8, 32, 84, 0.16);
  --parallax-x: 0;
  --parallax-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 15%, #f6f9ff 0%, var(--bg) 35%),
    radial-gradient(circle at 85% 0%, #e4ecff 0%, rgba(228, 236, 255, 0) 50%),
    #eef3ff;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -12rem;
  background: radial-gradient(circle, rgba(13, 79, 211, 0.08) 0%, rgba(13, 79, 211, 0) 58%),
    radial-gradient(circle, rgba(15, 179, 125, 0.08) 0%, rgba(15, 179, 125, 0) 62%);
  background-position: 12% 24%, 88% 76%;
  background-size: 32rem 32rem, 28rem 28rem;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  animation: ambientShift 18s ease-in-out infinite alternate;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  background: radial-gradient(circle at 20% 20%, #f5f8ff 0%, #dbe7ff 48%, #d2e0ff 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__diamond {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(145deg, #9ec0ff, #1d63e6);
  border-radius: 0.3rem;
  transform: rotate(45deg);
  box-shadow: 0 12px 30px rgba(13, 79, 211, 0.35);
  animation: preloaderPulse 1.25s ease-in-out infinite;
}

.preloader__label {
  margin: 0;
  font-size: 0.88rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
}

.preloader__label span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.preloader__label span:first-child {
  color: #0f2a55;
}

.preloader__label span:last-child {
  color: #ff1f2a;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(15, 28, 45, 0.06);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--text);
}

.logo img {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.86;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-weight: 800;
  font-size: 1.08rem;
}

.logo-text span:first-child {
  color: #121b2b;
}

.logo-text span:last-child {
  color: #ff1f2a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.96rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
  transition: transform 0.28s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lang-switch a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lang-switch a.active {
  color: var(--white);
  border-color: var(--primary);
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-soft) 100%);
  box-shadow: 0 8px 20px rgba(13, 79, 211, 0.26);
}

.lang-switch a:hover {
  transform: translateY(-1px);
  border-color: #b9cced;
}

.lang-picker {
  position: relative;
  min-width: 210px;
}

.lang-picker__toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 0.72rem;
  padding: 0.52rem 0.72rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #2d4567;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(17, 39, 76, 0.08);
  font-family: inherit;
  line-height: 1.1;
}

.lang-picker__toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #4c6385;
  border-bottom: 2px solid #4c6385;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.lang-picker.is-open .lang-picker__toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-picker__toggle:focus {
  outline: 2px solid rgba(13, 79, 211, 0.24);
  border-color: #9cb9eb;
}

.lang-picker__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  display: none;
  z-index: 30;
  border: 1px solid var(--border);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(17, 39, 76, 0.14);
  overflow: hidden;
}

.lang-picker.is-open .lang-picker__menu {
  display: block;
}

.lang-picker__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.72rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d4567;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-picker__item:hover {
  background: #eef4ff;
}

.lang-picker__item.is-active {
  color: #fff;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-soft) 100%);
}

.flag {
  width: 1.15rem;
  height: 0.78rem;
  display: inline-block;
  border-radius: 0.12rem;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 58, 0.18);
  flex: 0 0 1.15rem;
}

.flag--de {
  background: linear-gradient(to bottom, #121212 33.33%, #cc2424 33.33%, #cc2424 66.66%, #f1cc3a 66.66%);
}

.flag--it {
  background: linear-gradient(to right, #1d8f42 33.33%, #ffffff 33.33%, #ffffff 66.66%, #d93c3c 66.66%);
}

.flag--fr {
  background: linear-gradient(to right, #2752ba 33.33%, #ffffff 33.33%, #ffffff 66.66%, #d93c3c 66.66%);
}

.flag--ua {
  background: linear-gradient(to bottom, #2f73e0 50%, #f3cc2d 50%);
}

.flag--gb {
  background:
    linear-gradient(90deg, transparent 42%, #ffffff 42%, #ffffff 58%, transparent 58%),
    linear-gradient(0deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%),
    linear-gradient(90deg, transparent 45%, #cf3434 45%, #cf3434 55%, transparent 55%),
    linear-gradient(0deg, transparent 43%, #cf3434 43%, #cf3434 57%, transparent 57%),
    #20489f;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 20%, #dbe8ff 0, #f4f6fb 42%),
    linear-gradient(175deg, #f8faff 0%, #e9f0ff 100%);
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid rgba(174, 194, 227, 0.45);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
}

.hero::before {
  width: 17rem;
  height: 17rem;
  right: -4rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(61, 125, 247, 0.34) 0%, rgba(61, 125, 247, 0) 70%);
  animation: floatBlob 9s ease-in-out infinite;
}

.hero::after {
  width: 14rem;
  height: 14rem;
  left: -3.4rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(15, 179, 125, 0.27) 0%, rgba(15, 179, 125, 0) 68%);
  animation: floatBlob 10s ease-in-out infinite reverse;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.hero__layout > :first-child {
  transform: translate3d(calc(var(--parallax-x) * -8px), calc(var(--parallax-y) * -6px), 0);
  transition: transform 0.2s ease-out;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.8rem;
  background: #e6f4ef;
  color: #0c805b;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
}

h1 {
  margin: 1rem 0 0.8rem;
  line-height: 1.2;
  font-size: clamp(1.85rem, 4vw, 3rem);
  color: transparent;
  background: linear-gradient(105deg, #0b2342 0%, #163f7a 56%, #1a5fcc 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.1rem;
  border-radius: 0.7rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease,
    background 0.24s ease;
}

.btn--primary {
  background: linear-gradient(115deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(13, 79, 211, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13, 79, 211, 0.34);
  background: linear-gradient(115deg, var(--primary-strong) 0%, var(--primary) 100%);
}

.btn--outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.88);
}

.btn--outline:hover {
  transform: translateY(-2px);
  border-color: #b7caea;
  box-shadow: 0 10px 24px rgba(15, 28, 45, 0.1);
}

.hero-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
  transform: translate3d(calc(var(--parallax-x) * 10px), calc(var(--parallax-y) * 8px), 0);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.05rem;
}

.hero-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

section {
  padding: 4rem 0;
}

.section-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.section-lead {
  margin: 0 0 1.8rem;
  color: var(--muted);
  max-width: 70ch;
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #bfcef0;
  box-shadow: var(--shadow-strong);
}

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

.card p {
  margin: 0;
  color: var(--muted);
}

.benefit-icon {
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.7rem;
  border-radius: 0.72rem;
  background: linear-gradient(130deg, rgba(13, 79, 211, 0.18), rgba(15, 179, 125, 0.2));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.benefit-icon::before {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0d4fd3;
  z-index: 2;
}

.benefits .card:nth-child(1) .benefit-icon::before {
  content: "◆";
}

.benefits .card:nth-child(2) .benefit-icon::before {
  content: "✦";
}

.benefits .card:nth-child(3) .benefit-icon::before {
  content: "◉";
}

.benefit-icon::after {
  content: "";
  position: absolute;
  inset: -35%;
  border: 2px solid rgba(13, 79, 211, 0.2);
  border-radius: 50%;
  animation: orbitPulse 2.4s linear infinite;
}

.fleet-card .price {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(13, 79, 211, 0.16);
}

.car-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.8rem;
  border: 1px solid #d0ddf3;
}

.car-meta {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  color: #33557f;
}

.fleet-head {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.fleet-head h3 {
  margin: 0;
}

.rating-badge {
  font-size: 0.77rem;
  font-weight: 700;
  color: #6f7f99;
  background: #f5f8ff;
  border: 1px solid #dce6f7;
  border-radius: 999px;
  padding: 0.14rem 0.46rem;
  white-space: nowrap;
}

.fleet-meta {
  margin-top: 0.46rem !important;
  font-size: 0.88rem;
}

.fleet-specs {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}

.fleet-specs li {
  color: #3e5e87;
  font-size: 0.85rem;
}

.fleet-specs li span {
  color: #1d3a61;
  font-weight: 700;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.3;
}

.service-label {
  margin: 0 0 0.38rem !important;
  color: #5c7291 !important;
  font-size: 0.78rem !important;
  font-weight: 700;
}

.service-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.28rem;
  color: #46648c;
  font-size: 0.85rem;
  flex: 1;
}

.service-foot {
  margin-top: 0.85rem;
  padding-top: 0.72rem;
  border-top: 1px solid #dce6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.service-price {
  font-weight: 800;
  color: #132746;
  font-size: 1.13rem;
}

.service-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.46rem;
  border: 1px solid #0f1217;
  background: #0f1217;
  color: #fff;
  padding: 0.5rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-order:hover {
  background: #1a1f28;
}

.buy-grid {
  align-items: stretch;
}

.buy-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.buy-badge {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  z-index: 3;
  border-radius: 999px;
  background: rgba(14, 20, 32, 0.84);
  color: #f2f6ff;
  border: 1px solid rgba(203, 218, 245, 0.38);
  padding: 0.18rem 0.52rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.buy-price {
  font-weight: 800;
  color: #122d55;
  font-size: 1.08rem;
}

.buy-foot {
  margin-top: 0.85rem;
  padding-top: 0.72rem;
  border-top: 1px solid #dce6f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.channel-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.booking-widget h3 {
  margin-bottom: 0.3rem;
}

.booking-widget > p {
  margin-bottom: 0.9rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.booking-form label {
  display: block;
}

.booking-form span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.77rem;
  font-weight: 700;
  color: #27466d;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: 0.56rem;
  border: 1px solid #c9d9f2;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.55rem 0.62rem;
  color: var(--text);
  font-size: 0.86rem;
  font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(13, 79, 211, 0.2);
  border-color: #8cafeb;
}

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

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

.booking-status {
  margin: 0;
  color: #1d4d87 !important;
  font-size: 0.83rem;
  font-weight: 600;
}

.mini-booking-form {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mini-booking-form label {
  display: block;
}

.mini-booking-form span {
  display: block;
  margin-bottom: 0.22rem;
  color: #27466d;
  font-size: 0.75rem;
  font-weight: 700;
}

.mini-booking-form input {
  width: 100%;
  border-radius: 0.56rem;
  border: 1px solid #c9d9f2;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.55rem 0.62rem;
  color: var(--text);
  font-size: 0.86rem;
  font-family: inherit;
}

.mini-booking-form input:focus {
  outline: 2px solid rgba(13, 79, 211, 0.2);
  border-color: #8cafeb;
}

.mini-booking-form .btn {
  grid-column: 1 / -1;
}

.btn--small {
  padding: 0.62rem 0.92rem;
  font-size: 0.88rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 2.6rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #e7efff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.reviews-grid {
  gap: 1rem;
}

.review-card {
  padding: 1rem 1rem 0.9rem;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.review-user {
  display: flex;
  gap: 0.58rem;
  align-items: center;
}

.review-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #1d355c;
  background: linear-gradient(145deg, #dbe8ff, #f8fbff);
  border: 1px solid #c8daf7;
}

.review-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: #15325a;
  line-height: 1.1;
}

.review-meta {
  margin-top: 0.14rem;
  font-size: 0.74rem;
  color: #6a7f9f;
}

.review-stars {
  color: #f9b907;
  font-size: 0.92rem;
  letter-spacing: 1px;
  font-weight: 800;
}

.review-text {
  margin-top: 0.78rem !important;
  font-style: normal !important;
  color: #2d4f79 !important;
}

.review-badge {
  margin-top: 0.74rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dce7f8;
  background: #f6faff;
  color: #3e648f;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.58rem;
}

.faq-item + .faq-item {
  margin-top: 0.8rem;
}

.faq-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.03rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.62);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.988);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes floatBlob {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-10px, 14px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(6px, -12px, 0) scale(0.98);
  }
}

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-10px, 12px, 0);
  }
}

@keyframes orbitPulse {
  0% {
    transform: rotate(0deg) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg) scale(1.05);
    opacity: 0;
  }
}

@keyframes preloaderPulse {
  0% {
    transform: rotate(45deg) scale(0.86);
  }
  50% {
    transform: rotate(45deg) scale(1.02);
  }
  100% {
    transform: rotate(45deg) scale(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero__layout > :first-child,
  .hero-card {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .hero__layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .header__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.2rem;
  }

  section {
    padding: 3.2rem 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.25rem;
  }

  .lang-picker {
    width: 100%;
  }

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

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .mini-booking-form {
    grid-template-columns: 1fr;
  }

  .channel-row {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .booking-actions {
    grid-template-columns: 1fr;
  }

  .service-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-order {
    width: 100%;
  }

  .buy-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
