:root {
  --black: #050505;
  --ink: #0d0d0d;
  --panel: #111111;
  --panel-soft: #171717;
  --yellow: #ffcc00;
  --yellow-deep: #d7a900;
  --white: #f7f7f2;
  --muted: #a9a9a2;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 204, 0, 0.28);
  --glow-yellow: rgba(255, 204, 0, 0.26);
  --glow-soft: rgba(255, 204, 0, 0.1);
  --glow-white: rgba(255, 255, 242, 0.12);
  --green: #32d47a;
  --red: #ff4d4d;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  background: var(--black);
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 204, 0, 0.055), transparent 28%),
    radial-gradient(circle at 86% 34%, rgba(255, 255, 242, 0.035), transparent 26%),
    radial-gradient(circle at 58% 82%, rgba(255, 204, 0, 0.035), transparent 30%),
    var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

body.consent-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

main,
section,
header,
footer {
  max-width: 100%;
  overflow-x: clip;
}

.section,
.page-hero {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.hero,
.site-header {
  content-visibility: visible;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 204, 0, 0.08), transparent 32%),
    rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -80% -24%;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 34%, rgba(255, 204, 0, 0.12), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 204, 0, 0.07), transparent 20%);
  opacity: 0.72;
  animation: ambientGlowFloat 10s ease-in-out infinite alternate;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.mobile-call-first {
  display: none;
}

.top-ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 204, 0, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 204, 0, 0.22), transparent 18%, transparent 82%, rgba(255, 204, 0, 0.2)),
    #080808;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 18px;
  padding: 8px 0;
  color: #d9d9cf;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 13px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.78);
  animation: softGlowPulse 4.8s ease-in-out infinite;
}

.ticker-track b {
  color: var(--white);
}

.ticker-track a,
.ticker-yellow {
  color: var(--yellow);
  text-shadow: 0 0 18px rgba(255, 204, 0, 0.38);
  animation: softGlowPulse 7s ease-in-out infinite;
}

.ticker-white {
  color: var(--white);
}

.ticker-status {
  font-weight: 900;
  text-shadow: 0 0 18px currentColor;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(230px, 26vw, 300px);
  max-height: 78px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-link,
.header-call,
.status-link,
.button {
  min-width: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.nav-link {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-call {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 14px;
  color: #070707;
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2), 0 0 22px rgba(255, 204, 0, 0.12);
  white-space: nowrap;
  animation: callRingPulse 3.2s ease-in-out infinite;
}

.header-call::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -85%;
  width: 64%;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 204, 0, 0.26) 58%, transparent 82%);
  filter: blur(1px);
  opacity: 0.38;
  transform: translateX(0) skewX(-18deg);
  animation: buttonGleam 2.9s cubic-bezier(0.55, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 204, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #070707, var(--black));
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 204, 0, 0.18), transparent 25%),
    radial-gradient(circle at 22% 76%, rgba(255, 204, 0, 0.075), transparent 22%);
  z-index: 0;
  opacity: 0.76;
  animation: ambientGlowFloat 10s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -26% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 204, 0, 0.16), transparent 18%),
    radial-gradient(circle at 64% 18%, rgba(255, 204, 0, 0.09), transparent 18%);
  opacity: 0.72;
  animation: glowTravel 8.5s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 52px;
  padding-block: 76px;
}

.hero-copy,
.section-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 4rem;
  font-weight: 800;
}

.hero-word-mask {
  display: block;
  overflow: hidden;
  color: var(--yellow);
}

.hero-word-mask span {
  display: inline-block;
  transform: translateY(105%);
  animation: heroMaskedWordReveal 4.2s ease-in-out infinite;
  text-shadow: 0 0 28px rgba(255, 204, 0, 0.22);
}

h2 {
  max-width: 24ch;
  font-size: 2.65rem;
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

p {
  margin: 0;
}

.lead {
  max-width: 58ch;
  margin-top: 18px;
  color: #e7e7df;
  font-size: 1.1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-note {
  max-width: 44ch;
  margin-top: 12px;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 800;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) - 1px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
  opacity: 0.18;
}

.button::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -85%;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(105deg, transparent 8%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.56) 48%, rgba(255, 204, 0, 0.26) 58%, transparent 82%);
  filter: blur(1px);
  opacity: 0.38;
  transform: translateX(0) skewX(-18deg);
  animation: buttonGleam 2.8s cubic-bezier(0.55, 0, 0.2, 1) infinite;
  animation-delay: var(--gleam-delay, 0s);
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-1px) scale(1.01);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 0.58;
  animation-duration: 2.1s;
}

.button:focus-visible {
  outline: 2px solid rgba(255, 204, 0, 0.7);
  outline-offset: 3px;
}

.button-primary {
  --gleam-delay: 0s;
  color: #050505;
  background: var(--yellow);
  box-shadow: 0 18px 45px rgba(255, 204, 0, 0.2), 0 0 28px rgba(255, 204, 0, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 55px rgba(255, 204, 0, 0.28), 0 0 38px rgba(255, 204, 0, 0.22);
}

.button[data-track="call"] {
  animation: callRingPulse 3.2s ease-in-out infinite;
}

.button[data-track="call"]:hover,
.button[data-track="call"]:focus-visible {
  animation-duration: 2.35s;
}

.button-secondary {
  --gleam-delay: 0.9s;
  color: #050505;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(255, 255, 242, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 18px 44px rgba(255, 255, 242, 0.16), 0 0 26px rgba(255, 204, 0, 0.1);
}

.button-ghost {
  --gleam-delay: 1.6s;
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 16px 38px rgba(255, 204, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 28px;
}

.trust-row span {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.68);
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.hero-side {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 204, 0, 0.18), transparent 24%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.18));
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: ambientGlowFloat 16s ease-in-out infinite alternate;
}

.hero-photo img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
}

.status-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(255, 204, 0, 0.08), transparent 40%),
    rgba(15, 15, 15, 0.82);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 242, 0.05);
  backdrop-filter: blur(16px);
}

.status-card::before {
  content: "";
  position: absolute;
  inset: auto auto -92px -62px;
  width: 210px;
  height: 210px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.16), transparent 68%);
  opacity: 0.72;
  animation: ambientGlowFloat 11s ease-in-out infinite alternate;
}

.status-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.54), transparent);
  opacity: 0.72;
}

.status-card > * {
  position: relative;
  z-index: 1;
}

.status-card > div {
  min-width: 0;
}

.status-label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-state {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  transform-origin: left center;
  animation: statusTextBreathe 4.8s ease-in-out infinite;
}

.availability-state::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04), 0 0 24px currentColor;
  animation: statusDotPulse 2.8s ease-in-out infinite;
}

.available {
  color: var(--green);
}

.unavailable {
  color: var(--red);
}

.availability-state.available {
  text-shadow: 0 0 22px rgba(50, 212, 122, 0.3);
}

.availability-state.unavailable {
  text-shadow: 0 0 20px rgba(255, 77, 77, 0.24);
}

.status-note {
  display: block;
  max-width: 34ch;
  margin-top: 11px;
  color: #d5d5ca;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-link {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.section,
.page-hero {
  position: relative;
  overflow: hidden;
}

.section {
  padding-block: 74px;
}

.page-hero::before,
.section:nth-of-type(2n)::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 204, 0, 0.075), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 204, 0, 0.04), transparent 22%),
    radial-gradient(circle at 56% 46%, rgba(255, 255, 242, 0.026), transparent 20%);
  z-index: 0;
  opacity: 0.42;
  animation: sectionMeshDrift 15s ease-in-out infinite alternate;
}

.page-hero::after,
.section:nth-of-type(2n)::after {
  content: "";
  position: absolute;
  inset: -28% -22%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 46%, rgba(255, 204, 0, 0.085), transparent 17%),
    radial-gradient(circle at 76% 24%, rgba(255, 204, 0, 0.045), transparent 18%);
  opacity: 0.3;
  animation: sectionMeshDrift 18s ease-in-out infinite alternate-reverse;
}

.section:nth-of-type(even)::before {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 204, 0, 0.07), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(255, 204, 0, 0.038), transparent 22%),
    radial-gradient(circle at 48% 38%, rgba(255, 255, 242, 0.024), transparent 20%);
}

.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 2;
}

.section-soft {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 204, 0, 0.05), transparent 32%),
    #090909;
}

.split-section,
.reviews-layout,
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.feature-grid,
.quick-grid,
.contact-grid,
.steps {
  display: grid;
  gap: 12px;
}

.feature-grid {
  grid-template-columns: 1fr;
}

.feature-grid .card,
.steps .step {
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.feature-grid .card:first-child,
.steps .step:first-child {
  border-top: 1px solid var(--line);
}

.feature-grid .card::before,
.steps .step::before {
  display: none;
}

.card,
.step,
.quick-card,
.contact-card,
.rating-card,
.tariff-card,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.card::before,
.step::before,
.quick-card::before,
.contact-card::before,
.rating-card::before,
.tariff-card::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 204, 0, 0.16), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(255, 204, 0, 0.085), transparent 22%),
    linear-gradient(135deg, rgba(255, 204, 0, 0.1), transparent 36%, rgba(255, 255, 242, 0.04));
  opacity: 0.56;
  animation: ambientGlowFloat 10.5s ease-in-out infinite alternate;
  transition: opacity 0.2s ease;
}

.card > *,
.step > *,
.quick-card > *,
.contact-card > *,
.rating-card > *,
.tariff-card > *,
.cta-band > * {
  position: relative;
  z-index: 1;
}

.card,
.step,
.quick-card,
.contact-card,
.rating-card,
.route-card,
.info-item,
.gallery-item,
.image-tile,
.hero-photo {
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.card:hover,
.step:hover,
.quick-card:hover,
.contact-card:hover,
.rating-card:hover,
.tariff-card:hover,
.route-card:hover,
.info-item:hover,
.gallery-item:hover,
.image-tile:hover,
.hero-photo:hover {
  border-color: var(--line-strong);
}

.card:hover::before,
.step:hover::before,
.quick-card:hover::before,
.contact-card:hover::before,
.rating-card:hover::before,
.tariff-card:hover::before,
.cta-band:hover::before {
  opacity: 0.82;
}

.card,
.step,
.quick-card,
.contact-card {
  padding: 22px;
}

.card p,
.step p,
.quick-card span,
.contact-card span,
.rating-card span,
.section-heading p,
.cta-band p,
.faq p {
  color: var(--muted);
}

.card h3,
.step h3,
.quick-card strong,
.contact-card strong {
  color: var(--white);
}

.step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 800;
}

.image-tile {
  display: block;
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.image-tile img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-tile:hover img {
  transform: scale(1.03);
}

.service-list {
  display: grid;
  margin-top: 24px;
  border-block: 1px solid var(--line);
}

.service-list span {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding-block: 14px;
  color: var(--muted);
}

.service-list span + span {
  border-top: 1px solid var(--line);
}

.service-list strong {
  color: var(--white);
}

.info-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.info-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 34%),
    var(--panel);
}

.info-item > span {
  color: var(--yellow);
  font-weight: 800;
}

.info-item p,
.route-card span {
  color: var(--muted);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
}

.route-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.route-card:first-child {
  border-left: 0;
}

.route-card strong {
  color: var(--white);
  font-size: 1.05rem;
}

.reviews-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.rating-card {
  display: grid;
  gap: 12px;
  padding: 8px 0 8px 36px;
  border: 0;
  border-left: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.rating-card::after,
.tariff-card::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 30%;
  z-index: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.18), transparent 66%);
  opacity: 0.76;
  animation: glowTravel 8.5s ease-in-out infinite alternate-reverse;
}

.rating-card::before,
.rating-card::after,
.tariff-card::before,
.tariff-card::after {
  display: none;
}

.rating-card strong {
  color: var(--yellow);
  font-size: 4rem;
  line-height: 0.95;
}

.rating-card small {
  color: var(--muted);
}

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.34);
  animation: softGlowPulse 5.8s ease-in-out infinite;
}

.review-points {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.review-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.review-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.62);
  animation: softGlowPulse 5.2s ease-in-out infinite;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
}

.tariff-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 30px 36px 30px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tariff-card h2 {
  max-width: 20ch;
}

.tariff-card p:not(.eyebrow) {
  color: var(--muted);
}

.tariff-card .button {
  width: fit-content;
  margin-top: 4px;
}

.tariff-card-bright {
  padding-inline: 36px 0;
  border-left: 1px solid var(--line);
  box-shadow: none;
}

.route-section {
  border-block: 1px solid var(--line);
  background: #090909;
}

.route-planner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 54px;
  align-items: stretch;
}

.route-planner-copy {
  align-self: center;
  min-width: 0;
}

.route-form {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
  margin-top: 28px;
}

.route-form label {
  color: var(--white);
  font-weight: 800;
}

.route-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background: #111;
  outline: none;
}

.route-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
}

.route-form .button {
  grid-column: 2;
  justify-self: start;
}

.route-note {
  max-width: 52ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.route-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.route-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.route-map > a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  color: #080808;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.zone-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 204, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 242, 0.06), 0 0 18px rgba(255, 204, 0, 0.055);
  font-size: 0.9rem;
  font-weight: 800;
  animation: softGlowPulse 6.6s ease-in-out infinite;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--panel);
  cursor: pointer;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  opacity: 0.9;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--yellow);
  font-weight: 800;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.page-hero {
  padding-block: 104px 66px;
  border-bottom: 1px solid var(--line);
}

.page-hero-mobile-photo {
  display: none;
}

.page-hero-side {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card,
.quick-card {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.faq p {
  margin-top: 12px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 204, 0, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 204, 0, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow), 0 0 36px rgba(255, 204, 0, 0.08);
}

.cta-band .actions {
  min-width: min(360px, 100%);
}

.cta-band h2 {
  max-width: 18ch;
}

.site-footer {
  padding-block: 28px 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-card {
  width: min(560px, 100%);
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-card h1 {
  max-width: 100%;
  font-size: 2.2rem;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.switch-btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.switch-on {
  color: #062812;
  background: var(--green);
}

.switch-off {
  color: #310707;
  background: var(--red);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cta-outline {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner strong {
  color: var(--white);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-link {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 204, 0, 0.5);
  text-underline-offset: 4px;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--yellow);
}

.consent-banner {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(900px, 100%);
  max-height: calc(100svh - 40px);
  overflow-y: auto;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(255, 204, 0, 0.09), transparent 42%),
    #0c0c0c;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 32px rgba(255, 204, 0, 0.08);
}

.consent-copy {
  min-width: 0;
}

.consent-copy h2 {
  max-width: none;
  margin: 3px 0 8px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.consent-copy p {
  max-width: 64ch;
  margin: 0;
  color: #d3d3cc;
  font-size: 0.98rem;
}

.consent-copy .consent-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px;
  min-width: 340px;
}

.consent-actions .button {
  min-height: 48px;
  padding-inline: 16px;
  white-space: nowrap;
}

.consent-actions .button[aria-pressed="true"] {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.consent-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.consent-close:hover,
.consent-close:focus-visible {
  color: var(--yellow);
}

.sticky-convert {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  gap: 8px;
  overflow: hidden;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -18px 46px rgba(0, 0, 0, 0.46), 0 -1px 28px rgba(255, 204, 0, 0.08);
}

.sticky-convert::before {
  content: "";
  position: absolute;
  inset: -90% -16%;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 204, 0, 0.22), transparent 22%),
    radial-gradient(circle at 78% 46%, rgba(255, 204, 0, 0.12), transparent 20%);
  opacity: 0.8;
  animation: glowTravel 7.5s ease-in-out infinite alternate;
}

.sticky-convert > * {
  position: relative;
  z-index: 1;
}

.sticky-convert .button {
  flex: 1 1 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  display: grid;
  gap: 12px;
  width: min(1120px, 94vw);
}

.lightbox img {
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-weight: 800;
}

.lightbox-counter {
  color: var(--yellow);
  white-space: nowrap;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(17, 17, 17, 0.9);
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  padding: 11px 14px;
  font-weight: 800;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  color: var(--yellow);
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.conversion-popup {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.conversion-popup.is-open {
  display: grid;
}

.conversion-card {
  position: relative;
  width: min(460px, 100%);
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.18), transparent 42%),
    var(--panel);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.62), 0 0 50px rgba(255, 204, 0, 0.12);
}

.conversion-card h2 {
  max-width: 11ch;
  font-size: 2.25rem;
}

.conversion-lead {
  margin-top: 14px;
  color: #e7e7df;
}

.conversion-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.56);
}

.conversion-status span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: softReveal 0.45s ease both;
}

@keyframes softReveal {
  from {
    opacity: 0.75;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes buttonGleam {
  0% {
    transform: translateX(0) skewX(-18deg);
  }
  52% {
    transform: translateX(340%) skewX(-18deg);
  }
  100% {
    transform: translateX(340%) skewX(-18deg);
  }
}

@keyframes heroMaskedWordReveal {
  0%,
  100% {
    transform: translateY(105%);
  }
  18%,
  76% {
    transform: translateY(0);
  }
}

@keyframes callRingPulse {
  0%,
  100% {
    box-shadow: 0 18px 45px rgba(255, 204, 0, 0.2), 0 0 0 0 rgba(255, 204, 0, 0.24);
  }
  50% {
    box-shadow: 0 20px 52px rgba(255, 204, 0, 0.26), 0 0 0 9px rgba(255, 204, 0, 0);
  }
}

@keyframes statusTextBreathe {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.94;
  }
  50% {
    transform: translateY(-1px);
    opacity: 1;
  }
}

@keyframes statusDotPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes ambientGlowFloat {
  from {
    opacity: 0.48;
    transform: translate3d(-28px, 18px, 0) scale(1);
  }
  to {
    opacity: 0.82;
    transform: translate3d(34px, -24px, 0) scale(1.12);
  }
}

@keyframes glowTravel {
  from {
    opacity: 0.46;
    transform: translate3d(-44px, 18px, 0) scale(1);
  }
  to {
    opacity: 0.82;
    transform: translate3d(52px, -24px, 0) scale(1.16);
  }
}

@keyframes sectionMeshDrift {
  from {
    transform: translate3d(-18px, 10px, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -12px, 0) scale(1.045);
  }
}

@keyframes softGlowPulse {
  0%,
  100% {
    opacity: 0.82;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.18);
  }
}

@media (max-width: 980px) {
  .header-call {
    display: none;
  }

  .mobile-call-first {
    position: relative;
    z-index: 90;
    display: block;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    background: #0a0a0a;
  }

  .mobile-call-first .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-inner,
  .split-section,
  .reviews-layout,
  .page-hero-inner,
  .route-planner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-block: 86px 40px;
  }

  .hero-side {
    order: -1;
  }

  .status-card {
    max-width: 420px;
  }

  .feature-grid,
  .gallery,
  .quick-grid,
  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .button::after {
    display: none;
  }

  .ticker-track {
    gap: 14px;
    padding-block: 9px;
    font-size: 0.78rem;
    animation-duration: 22s;
  }

  .container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    overflow-x: hidden;
  }

  .header-inner {
    min-height: 82px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding-block: 12px;
  }

  .brand {
    justify-content: center;
  }

  .brand img {
    width: min(270px, 80vw);
    max-height: 72px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .nav-link {
    padding: 9px 6px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-inner {
    padding-block: 18px 34px;
    gap: 20px;
  }

  .page-hero.page-hero-services,
  .page-hero.page-hero-contact {
    padding-block: 0 52px;
  }

  .page-hero-services .page-hero-inner,
  .page-hero-contact .page-hero-inner {
    margin-top: 28px;
  }

  .page-hero-mobile-photo {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 2.05 / 1;
    overflow: hidden;
    border-bottom: 1px solid var(--line-strong);
    background: #0b0b0b;
  }

  .page-hero-mobile-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(5, 5, 5, 0.72));
  }

  .page-hero-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
  }

  .page-hero-desktop-photo {
    display: none;
  }

  .hero-side {
    gap: 0;
  }

  .hero-side .status-card {
    order: 0;
    margin-top: 10px;
  }

  .hero .hero-inner {
    padding-top: 0;
    overflow: visible;
  }

  .hero-side .hero-photo {
    width: calc(100% + 24px);
    max-width: none;
    margin-inline: -12px;
    border-inline: 0;
    border-radius: 0;
  }

  .hero-photo img {
    aspect-ratio: 16 / 9;
    object-position: center 58%;
  }

  h1 {
    max-width: 11ch;
    font-size: 2.55rem;
  }

  h2 {
    max-width: 16ch;
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .service-list span {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .actions .button,
  .status-card,
  .card,
  .step,
  .quick-card,
  .contact-card,
  .rating-card,
  .cta-band,
  .image-tile,
  .hero-photo,
  .gallery-item {
    width: 100%;
    max-width: 100%;
  }

  .trust-row,
  .feature-grid,
  .conversion-grid,
  .gallery,
  .quick-grid,
  .contact-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .route-card:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .route-card:first-child {
    border-top: 0;
  }

  .tariff-card,
  .tariff-card-bright {
    padding: 24px 0;
    border-left: 0;
  }

  .tariff-card-bright {
    border-top: 1px solid var(--line);
  }

  .rating-card {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

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

  .route-form .button {
    grid-column: 1;
    width: 100%;
  }

  .status-card {
    gap: 10px;
    padding: 14px 16px;
  }

  .availability-state {
    font-size: 1.5rem;
  }

  .section,
  .page-hero {
    padding-block: 58px;
  }

  .split-section,
  .page-hero-inner,
  .reviews-layout {
    gap: 24px;
  }

  .card,
  .step,
  .quick-card,
  .contact-card,
  .route-card,
  .info-item,
  .tariff-card,
  .rating-card,
  .cta-band {
    padding: 18px;
  }

  .rating-card strong {
    font-size: 3.25rem;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .consent-banner {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }

  .consent-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: calc(100svh - 16px - env(safe-area-inset-bottom));
    padding: 22px 18px 18px;
  }

  .consent-copy h2 {
    padding-right: 28px;
    font-size: 1.45rem;
  }

  .consent-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  body.consent-open .sticky-convert {
    display: none;
  }

  .sticky-convert {
    display: flex;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .sticky-convert .button {
    min-height: 48px;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .rating-card {
    text-align: left;
  }

  .rating-card strong {
    font-size: 3rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 52px;
    height: 46px;
    transform: none;
  }

  .conversion-card {
    padding: 22px;
  }

  .conversion-card h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
    transform: none;
  }

  .site-header::before,
  .header-call::after,
  .header-call,
  .hero::before,
  .hero::after,
  .hero-word-mask span,
  .hero-photo::after,
  .button::before,
  .button::after,
  .button[data-track="call"],
  .ticker-track span::after,
  .ticker-track a,
  .ticker-yellow,
  .availability-state,
  .availability-state::before,
  .status-card::before,
  .section::before,
  .section::after,
  .page-hero::before,
  .page-hero::after,
  .card::before,
  .step::before,
  .quick-card::before,
  .contact-card::before,
  .rating-card::before,
  .rating-card::after,
  .tariff-card::before,
  .tariff-card::after,
  .cta-band::before,
  .cta-band::after,
  .stars,
  .review-points span::before,
  .zone-tags span,
  .sticky-convert::before {
    animation: none;
  }
}
