/* =========================================
   HERO CAROUSEL - Full Swiper.js Implementation
   SlimKozijn 2026 Premium Hero
   ========================================= */

/* ── CSS Custom Properties for Hero ── */
:root {
  --hero-primary: var(--cta-bg);
  --hero-primary-dark: var(--cta-bg-active);
  --hero-accent: var(--cta-bg);
  --hero-overlay-start: rgba(47, 95, 143, 0.45);
  --hero-overlay-mid: rgba(36, 75, 108, 0.50);
  --hero-overlay-end: rgba(28, 58, 84, 0.45);
  --hero-glass: rgba(255, 255, 255, 0.15);
  --hero-glass-border: rgba(255, 255, 255, 0.20);
  --hero-transition: 800ms;
  --hero-autoplay: 6000ms;
}

/* ── Base Hero Section ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: transparent;
}

/* ── Swiper Container ── */
.hero .swiper {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
}

.hero .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
}

/* ── Slide Background Images (now <picture>/<img>) ── */
.hero__slide-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  transform: scale(1.15);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero__slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-slide-active .hero__slide-bg {
  transform: scale(1.03);
}

/* First paint: skip zoom on initial slide so image appears instantly */
.hero__slide-bg.is-initial {
  transform: scale(1.03);
  transition: none;
}

/* ── Dark Gradient Overlay ── */
.hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47, 95, 143, 0.45) 0%,
    rgba(36, 75, 108, 0.50) 40%,
    rgba(28, 58, 84, 0.45) 100%
  );
  z-index: var(--z-base);
}

/* Extra left-side gradient for text readability */
.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(36, 75, 108, 0.35) 0%,
    transparent 100%
  );
}

/* Bottom fade gradient */
.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(36, 75, 108, 0.5) 0%,
    transparent 100%
  );
}

/* ── Floating Particles ── */
.hero__particles {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-particle linear infinite;
  will-change: transform;
}

.hero__particle:nth-child(1) {
  width: 6px; height: 6px;
  left: 10%; top: 20%;
  animation-duration: 18s;
  animation-delay: 0s;
}
.hero__particle:nth-child(2) {
  width: 10px; height: 10px;
  left: 30%; top: 60%;
  animation-duration: 22s;
  animation-delay: -4s;
}
.hero__particle:nth-child(3) {
  width: 8px; height: 8px;
  left: 55%; top: 30%;
  animation-duration: 20s;
  animation-delay: -8s;
}
.hero__particle:nth-child(4) {
  width: 12px; height: 12px;
  left: 75%; top: 70%;
  animation-duration: 25s;
  animation-delay: -2s;
}
.hero__particle:nth-child(5) {
  width: 5px; height: 5px;
  left: 90%; top: 15%;
  animation-duration: 16s;
  animation-delay: -6s;
}

@keyframes float-particle {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; }
  90% { opacity: 0.6; }
  100% {
    transform: translate(-120px, -200px) rotate(360deg);
    opacity: 0;
  }
}

/* ── Slide Content ── */
.hero__slide-content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 5%;
  padding-top: calc(var(--header-height, 152px) + 20px);
  padding-bottom: 100px;
  box-sizing: border-box;
}

.hero__slide-inner {
  max-width: 800px;
  text-align: left;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--hero-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hero-glass-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.hero__badge-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.9);
}

/* Title */
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* Description */
.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 600px;
}

/* ── CTA Buttons ── */
.hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.hero__btn--primary {
  background: linear-gradient(135deg, var(--cta-bg), var(--cta-bg-active));
  color: #fff;
  box-shadow: 0 4px 20px rgba(47, 95, 143, 0.3);
}

.hero__btn--primary:hover {
  background: linear-gradient(135deg, #3a7ab5, var(--cta-bg));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47, 95, 143, 0.45);
}

.hero__btn--secondary {
  background: #FFFFFF;
  color: var(--cta-bg);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.hero__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Feature Pills ── */
.hero__features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero__feature-pill svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

/* ── Google Reviews Trust Badge ── */
.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--hero-glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--hero-glass-border);
  border-radius: 16px;
  cursor: default;
  max-width: fit-content;
}

.hero__trust-google {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
}

.hero__trust-stars {
  display: flex;
  gap: 2px;
}

.hero__trust-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBC04;
}

.hero__trust-score {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.hero__trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 0;
  opacity: 1;
}

.hero__trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/* ── Navigation Arrows ── */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-dropdown);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--hero-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hero-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  outline: none;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.hero__arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* ── Bottom Navigation Bar ── */
.hero__bottom-nav {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-dropdown);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

/* Slide Counter */
.hero__counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  min-width: 70px;
}

.hero__counter-current {
  display: inline-block;
  min-width: 24px;
  text-align: right;
  position: relative;
  overflow: hidden;
  height: 1.5rem;
  line-height: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__counter-current span {
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.hero__counter-sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 2px;
}

.hero__counter-total {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
}

/* Progress Bar */
.hero__progress {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.hero__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #60a5fa, var(--cta-bg));
  border-radius: 999px;
  transition: none;
}

.hero__progress-bar.is-running {
  animation: heroProgress var(--hero-autoplay) linear forwards;
}

.hero__progress-bar.is-paused {
  animation-play-state: paused;
}

@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Pagination Bullets */
.hero__pagination {
  display: flex;
  gap: 10px;
}

.hero__pagination-bullet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.hero__pagination-bullet:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero__pagination-bullet.is-active {
  background: var(--cta-bg);
  border-color: var(--cta-bg);
  color: #fff;
  box-shadow: 0 0 20px rgba(47, 95, 143, 0.4);
}

/* ── SVG Wave Transition — hidden for straight edge ── */
.hero__wave {
  display: none;
}

/* ── Desktop Staggered Entrance Animations ── */
@media (min-width: 769px) {
  /* All content elements start hidden */
  .hero .hero__badge,
  .hero .hero__title,
  .hero .hero__subtitle,
  .hero .hero__description,
  .hero .hero__buttons,
  .hero .hero__features,
  .hero .hero__trust-badge {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Active slide elements become visible with staggered delays */
  .swiper-slide-active .hero__badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
  .swiper-slide-active .hero__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .swiper-slide-active .hero__subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .swiper-slide-active .hero__description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .swiper-slide-active .hero__buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .swiper-slide-active .hero__features {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
  }
  .swiper-slide-active .hero__trust-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
  }
}

/* ── Parallax on Scroll ── */
.hero__slide-content.is-parallax {
  transition: transform 0.1s linear, opacity 0.1s linear;
  will-change: transform, opacity;
}

/* Badge Floating Animation */
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.hero__badge.is-floating {
  animation: heroBadgeFloat 3s ease-in-out infinite;
}


/* ==========================================================
   DESKTOP STYLES (≥769px)
   ========================================================== */
@media (min-width: 769px) {
  .hero__slide-content {
    padding-left: max(5%, calc((100vw - 1280px) / 2 + 5%));
    justify-content: center;
  }
}


/* ==========================================================
   MOBILE STYLES (≤768px)
   ========================================================== */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: unset;
    overflow: hidden;
    padding: 0;
    display: block;
  }

  .hero .swiper,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 0 !important;
  }

  /* Hide decorative particles on mobile */
  .hero__particles {
    display: none;
  }

  /* Background image: fill entire area, no zoom on mobile */
  .hero__slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
    transition: none !important;
    overflow: hidden;
  }

  .hero__slide-bg img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Overlay matches parent exactly */
  .hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
      180deg,
      rgba(47, 95, 143, 0.35) 0%,
      rgba(36, 75, 108, 0.45) 50%,
      rgba(28, 58, 84, 0.65) 100%
    );
  }

  /* Stronger bottom gradient on mobile */
  .hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
      to top,
      rgba(36, 75, 108, 0.5) 0%,
      transparent 100%
    );
  }

  .hero__overlay::before {
    display: none;
  }

  /* Content on mobile — pushed toward bottom, closer to pagination */
  .hero__slide-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    padding-top: 0;
    padding-bottom: 120px;
    justify-content: flex-end;
    align-items: center;
    min-height: unset;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero__slide-inner {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Sizing reductions */
  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .hero__description {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  /* Buttons on mobile - side by side, centered */
  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    gap: 10px;
  }

  .hero__btn {
    width: auto;
    flex: 0 0 auto;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Feature pills mobile - centered */
  .hero__features {
    justify-content: center;
    margin-bottom: 10px;
    gap: 8px;
  }

  .hero__feature-pill {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  /* Arrows smaller */
  .hero__arrow {
    width: 40px;
    height: 40px;
  }

  .hero__arrow svg {
    width: 20px;
    height: 20px;
  }

  .hero__arrow--prev { left: 12px; }
  .hero__arrow--next { right: 12px; }

  /* Mobile bottom nav - smaller, closer to bottom */
  .hero__bottom-nav {
    bottom: 16px;
    padding: 8px 16px;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
  }

  /* Hide progress bar on mobile */
  .hero__progress {
    display: none;
  }

  /* Smaller counter */
  .hero__counter {
    font-size: 1.3rem;
  }

  /* Smaller pagination */
  .hero__pagination-bullet {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  /* Trust badge - centered, compact */
  .hero__trust-badge {
    padding: 8px 12px;
    gap: 6px;
    border-radius: 10px;
    margin-bottom: 0;
  }

  .hero__trust-google {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
  }

  .hero__trust-stars svg {
    width: 12px;
    height: 12px;
  }

  .hero__trust-score {
    font-size: 0.85rem;
  }

  .hero__trust-text {
    font-size: 0.7rem;
  }

  .hero__trust-divider {
    display: none;
  }

  /* Wave hidden on mobile for straight edge */
  .hero__wave {
    display: none;
  }

  /* ── Mobile Animation System ── */
  /* Reset AOS on mobile */
  .hero [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Start hidden — JS will reveal with staggered transitions */
  .hero .hero__badge,
  .hero .hero__title,
  .hero .hero__subtitle,
  .hero .hero__description,
  .hero .hero__buttons,
  .hero .hero__features,
  .hero .hero__trust-badge {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes m-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes m-fadeScale {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes m-revealUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}


/* ==========================================================
   SMALL MOBILE (≤480px)
   ========================================================== */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.65rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .hero__feature-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .hero__buttons {
    max-width: 280px;
  }

  .hero__btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  /* Hide arrows on small mobile */
  .hero__arrow {
    display: none;
  }

  /* Smaller pagination */
  .hero__pagination-bullet {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .hero__counter {
    font-size: 1.1rem;
  }

  .hero__bottom-nav {
    bottom: 16px;
    padding: 8px 16px;
    gap: 12px;
  }

  /* Wave hidden on mobile */
  .hero__wave {
    display: none;
  }

  /* Trust badge */
  .hero__trust-divider {
    display: none;
  }

  .hero__trust-badge {
    padding: 8px 12px;
    gap: 6px;
  }

  .hero__trust-google {
    width: 18px;
    height: 18px;
  }

  .hero__trust-stars svg {
    width: 12px;
    height: 12px;
  }

  .hero__trust-score {
    font-size: 0.85rem;
  }

  .hero__trust-text {
    font-size: 0.7rem;
  }
}


/* ==========================================================
   TABLET (≤1024px) — Trust Badge
   ========================================================== */
@media (max-width: 1024px) {
  .hero__trust-text {
    display: none;
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__trust-badge {
    padding: 10px 14px;
  }
}


/* ==========================================================
   GPU Optimizations & Performance
   ========================================================== */
.hero__slide-bg,
.hero__particle,
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__description,
.hero__buttons,
.hero__features,
.hero__trust-badge {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/* ==========================================================
   Reduced Motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero__slide-bg {
    transform: scale(1.03) !important;
    transition: none !important;
  }

  .hero__particle {
    animation: none !important;
  }

  .hero__badge.is-floating {
    animation: none !important;
  }

  .hero__progress-bar.is-running {
    animation-duration: 0.01ms !important;
  }

  .hero [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
  }

  .hero__slide-inner {
    animation-duration: 0.01ms !important;
  }

  .swiper-slide-active .hero__badge,
  .swiper-slide-active .hero__title,
  .swiper-slide-active .hero__subtitle,
  .swiper-slide-active .hero__description,
  .swiper-slide-active .hero__buttons,
  .swiper-slide-active .hero__features,
  .swiper-slide-active .hero__trust-badge {
    opacity: 1 !important;
    transform: none !important;
    animation-duration: 0.01ms !important;
  }

  .hero__trust-badge::after {
    animation: none !important;
  }

  .hero__arrow:hover {
    transform: translateY(-50%) !important;
  }

  .hero__btn:hover {
    transform: none !important;
  }
}
