/* ============================================
   Green Build SARL - Animation System
   Elementor-style entrance & motion effects
   Inspired by SteelForge Template Kit
   ============================================ */

/* --- Animation Base --- */
[data-animation] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-animation].animated {
  opacity: 1;
}

/* --- Fade Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Zoom Animations --- */
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes zoomInUp {
  from { opacity: 0; transform: scale(0.7) translateY(60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes zoomInDown {
  from { opacity: 0; transform: scale(0.7) translateY(-60px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes zoomInLeft {
  from { opacity: 0; transform: scale(0.7) translateX(-60px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

@keyframes zoomInRight {
  from { opacity: 0; transform: scale(0.7) translateX(60px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

/* --- Slide Animations --- */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-100px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Bounce Animations --- */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bounceInUp {
  0% { opacity: 0; transform: translateY(100px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-15px) scale(1.02); }
  80% { transform: translateY(5px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bounceInDown {
  0% { opacity: 0; transform: translateY(-100px) scale(0.9); }
  60% { opacity: 1; transform: translateY(15px) scale(1.02); }
  80% { transform: translateY(-5px) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bounceInLeft {
  0% { opacity: 0; transform: translateX(-100px) scale(0.9); }
  60% { opacity: 1; transform: translateX(15px) scale(1.02); }
  80% { transform: translateX(-5px) scale(0.99); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes bounceInRight {
  0% { opacity: 0; transform: translateX(100px) scale(0.9); }
  60% { opacity: 1; transform: translateX(-15px) scale(1.02); }
  80% { transform: translateX(5px) scale(0.99); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* --- Rotate Animations --- */
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-200deg); transform-origin: center; }
  to { opacity: 1; transform: rotate(0); }
}

@keyframes rotateInDownLeft {
  from { opacity: 0; transform: rotate(-45deg); transform-origin: left bottom; }
  to { opacity: 1; transform: rotate(0); }
}

@keyframes rotateInDownRight {
  from { opacity: 0; transform: rotate(45deg); transform-origin: right bottom; }
  to { opacity: 1; transform: rotate(0); }
}

@keyframes rotateInUpLeft {
  from { opacity: 0; transform: rotate(45deg); transform-origin: left bottom; }
  to { opacity: 1; transform: rotate(0); }
}

@keyframes rotateInUpRight {
  from { opacity: 0; transform: rotate(-45deg); transform-origin: right bottom; }
  to { opacity: 1; transform: rotate(0); }
}

/* --- Special Animations --- */
@keyframes flipInX {
  from { opacity: 0; transform: perspective(400px) rotateX(90deg); }
  to { opacity: 1; transform: perspective(400px) rotateX(0); }
}

@keyframes flipInY {
  from { opacity: 0; transform: perspective(400px) rotateY(90deg); }
  to { opacity: 1; transform: perspective(400px) rotateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

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

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes revealUp {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes revealLeft {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes revealRight {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes textClipReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes borderReveal {
  from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
  to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes slideReveal {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes expandHeight {
  from { height: 0; }
  to { height: 100%; }
}

/* --- Animation Classes --- */
.animated.fadeIn { animation: fadeIn var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.fadeInUp { animation: fadeInUp var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.fadeInDown { animation: fadeInDown var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.fadeInLeft { animation: fadeInLeft var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.fadeInRight { animation: fadeInRight var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

.animated.zoomIn { animation: zoomIn var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.zoomInUp { animation: zoomInUp var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.zoomInDown { animation: zoomInDown var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.zoomInLeft { animation: zoomInLeft var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.zoomInRight { animation: zoomInRight var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

.animated.slideInUp { animation: slideInUp var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.slideInDown { animation: slideInDown var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.slideInLeft { animation: slideInLeft var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.slideInRight { animation: slideInRight var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

.animated.bounceIn { animation: bounceIn var(--anim-duration, 1s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.bounceInUp { animation: bounceInUp var(--anim-duration, 1s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.bounceInDown { animation: bounceInDown var(--anim-duration, 1s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.bounceInLeft { animation: bounceInLeft var(--anim-duration, 1s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.bounceInRight { animation: bounceInRight var(--anim-duration, 1s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

.animated.rotateIn { animation: rotateIn var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.rotateInDownLeft { animation: rotateInDownLeft var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.rotateInDownRight { animation: rotateInDownRight var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.rotateInUpLeft { animation: rotateInUpLeft var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.rotateInUpRight { animation: rotateInUpRight var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

.animated.flipInX { animation: flipInX var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }
.animated.flipInY { animation: flipInY var(--anim-duration, 0.8s) var(--anim-easing, cubic-bezier(0.25, 0.46, 0.45, 0.94)) var(--anim-delay, 0s) both; }

/* --- Parallax Elements --- */
.parallax-element {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --- Floating Animation --- */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

.float-animation-delayed {
  animation: float 3s ease-in-out 1.5s infinite;
}

/* --- Slow Rotate --- */
.rotate-slow {
  animation: rotateSlow 20s linear infinite;
}

/* --- Shimmer Effect --- */
.shimmer-effect {
  background: linear-gradient(90deg, transparent 0%, rgba(46, 204, 113, 0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* --- Typing Cursor --- */
.typing-cursor::after {
  content: '|';
  animation: blink 0.7s step-end infinite;
  color: var(--color-primary);
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --- Progress Bars --- */
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--color-dark-4);
  border-radius: 3px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* progress-bar-fill width is set via JS data-progress attribute */

/* --- Tilt Effect --- */
.tilt-element {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.tilt-element .tilt-inner {
  transform: translateZ(20px);
}

/* --- Hover Animations --- */
.hover-grow {
  transition: transform 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
}

.hover-border-glow {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hover-border-glow:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.15);
}

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg) scale(1.05);
}

.hover-skew {
  transition: transform 0.3s ease;
}

.hover-skew:hover {
  transform: skewX(-3deg);
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* --- Ripple Click Effect --- */
.ripple-container {
  position: relative;
  overflow: hidden;
}

.ripple-container .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.3);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* --- Magnetic Button --- */
.magnetic-btn {
  transition: transform 0.2s ease;
}

/* --- Marquee --- */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Particle Background --- */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat var(--particle-duration, 8s) var(--particle-delay, 0s) linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) translateX(var(--particle-drift, 50px)); opacity: 0; }
}

/* --- Gradient Shift --- */
.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Line Drawing --- */
.line-draw {
  position: relative;
}

.line-draw::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  width: 0;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.line-draw.animated::after {
  width: 100%;
}

/* --- Counter Highlight --- */
.counter-highlight {
  display: inline-block;
  position: relative;
}

.counter-highlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(46, 204, 113, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.counter-highlight.animated::before {
  transform: scaleX(1);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-primary);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* --- Image Reveal --- */
.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.animated::before {
  transform: scaleX(0);
  transform-origin: left;
}

/* --- Stagger Delay Utility --- */
.stagger-1 { --anim-delay: 0.1s !important; }
.stagger-2 { --anim-delay: 0.2s !important; }
.stagger-3 { --anim-delay: 0.3s !important; }
.stagger-4 { --anim-delay: 0.4s !important; }
.stagger-5 { --anim-delay: 0.5s !important; }
.stagger-6 { --anim-delay: 0.6s !important; }
.stagger-7 { --anim-delay: 0.7s !important; }
.stagger-8 { --anim-delay: 0.8s !important; }
.stagger-9 { --anim-delay: 0.9s !important; }
.stagger-10 { --anim-delay: 1.0s !important; }

/* --- Duration Utility --- */
.duration-slow { --anim-duration: 1.2s !important; }
.duration-fast { --anim-duration: 0.5s !important; }
.duration-instant { --anim-duration: 0.3s !important; }

/* --- Easing Utility --- */
.easing-bounce { --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55) !important; }
.easing-elastic { --anim-easing: cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; }
.easing-smooth { --anim-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; }
.easing-snap { --anim-easing: cubic-bezier(0.770, 0.000, 0.175, 1.000) !important; }

/* --- Page Transition --- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  z-index: 99998;
  pointer-events: none;
}

.page-transition .transition-layer {
  position: absolute;
  width: 100%;
  height: 33.33%;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
}

.page-transition .transition-layer:nth-child(1) { top: 0; }
.page-transition .transition-layer:nth-child(2) { top: 33.33%; }
.page-transition .transition-layer:nth-child(3) { top: 66.66%; }

.page-transition.entering .transition-layer {
  animation: transitionEnter 0.6s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.page-transition.entering .transition-layer:nth-child(2) {
  animation-delay: 0.1s;
}

.page-transition.entering .transition-layer:nth-child(3) {
  animation-delay: 0.2s;
}

.page-transition.leaving .transition-layer {
  animation: transitionLeave 0.6s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.page-transition.leaving .transition-layer:nth-child(2) {
  animation-delay: 0.1s;
}

.page-transition.leaving .transition-layer:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes transitionEnter {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@keyframes transitionLeave {
  from { transform: scaleX(1); transform-origin: right; }
  to { transform: scaleX(0); transform-origin: right; }
}

/* --- Smooth Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 2s both;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Number Counter Animation --- */
[data-count] {
  display: inline-block;
}

/* --- Hero Text Reveal --- */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.animated .text-reveal-inner {
  transform: translateY(0);
}

/* --- Underline Grow --- */
.underline-grow {
  position: relative;
  display: inline-block;
}

.underline-grow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.4s ease;
}

.underline-grow:hover::after {
  width: 100%;
}

/* --- Icon Spin on Hover --- */
.icon-spin-hover svg,
.icon-spin-hover .service-icon svg {
  transition: transform 0.5s ease;
}

.icon-spin-hover:hover svg,
.icon-spin-hover:hover .service-icon svg {
  transform: rotate(360deg);
}

/* --- Background Parallax Sections --- */
[data-parallax-bg] {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  [data-parallax-bg] {
    background-attachment: scroll;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animation] {
    opacity: 1 !important;
  }
}
