#main-digital-strategy {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #1e3c72 0%,
    #2a5298 25%,
    #7b4397 70%,
    #dc2430 100%
  );
  color: white;
  overflow-x: hidden;
  margin-top: 5vw;
}

@media (max-width: 640px) {
  #main-digital-strategy{
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #1e3c72 0%,
    #2a5298 25%,
    #7b4397 70%,
    #dc2430 100%
  );
  color: white;
  overflow-x: hidden;
  margin-top: 20vw;
  }
  .feature-card{
    margin-bottom: 5vw !important;
}
  
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-delayed {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes gradient-x {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes gradient-x-reverse {
  0%,
  100% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 0% 50%;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: var(--width);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: gradient-x 3s ease infinite;
}

.animate-gradient-x-reverse {
  background-size: 200% 200%;
  animation: gradient-x-reverse 3s ease infinite;
}

.animate-progress {
  animation: progress 2s ease-out forwards;
}

.animate-progress-delayed {
  animation: progress 2s ease-out 0.5s forwards;
}

.animate-progress-slow {
  animation: progress 2s ease-out 1s forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 9999px;
  margin-bottom: 2rem;
  animation: fade-in-up 0.6s ease-out forwards;
}

.hero-heading {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.hero-heading span {
  display: block;
}

.gradient-text-white {
  background: linear-gradient(to right, #fff, #bfdbfe, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(to right, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 64rem;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .stats-container {
    flex-direction: row;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: #9ca3af;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #2563eb, #7c3aed);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  background: transparent;
  color: white;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.floating-icon {
  position: absolute;
  opacity: 0.5;
}

/* Stats Section */
.stats-section {
  padding: 5rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

.stat-card {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: scale(1.05);
}
.feature-card{
    margin-bottom: 1.2vw;
}
.feature-card active
.stat-icon-container {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  display: inline-flex;
  transition: all 0.3s;
}

.stat-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.stat-number-large {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gradient-blue {
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-green {
  background: linear-gradient(to bottom right, #10b981, #047857);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-purple {
  background: linear-gradient(to bottom right, #8b5cf6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-orange {
  background: linear-gradient(to bottom right, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-blue {
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );
}

.bg-gradient-green {
  background: linear-gradient(
    to bottom right,
    rgba(16, 185, 129, 0.2),
    rgba(4, 120, 87, 0.2)
  );
}

.bg-gradient-purple {
  background: linear-gradient(
    to bottom right,
    rgba(139, 92, 246, 0.2),
    rgba(124, 58, 237, 0.2)
  );
}

.bg-gradient-orange {
  background: linear-gradient(
    to bottom right,
    rgba(249, 115, 22, 0.2),
    rgba(239, 68, 68, 0.2)
  );
}

/* Features Section */
.features-section {
  padding: 5rem 1rem;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 48rem;
}

.features-container {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.5s;
  cursor: pointer;
}

.feature-card.active {
  background: linear-gradient(
    to right,
    rgba(59, 130, 246, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.feature-card:hover:not(.active) {
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.feature-card.active .feature-icon {
  background: #3b82f6;
  color: white;
}

.feature-card:not(.active) .feature-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.feature-detail {
  color: #93c5fd;
  font-size: 0.875rem;
  animation: fade-in 0.3s ease-out forwards;
}

.feature-visualization {
  position: relative;
}

.visualization-card {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visualization-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.visualization-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, #3b82f6, #7c3aed);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualization-title {
  font-size: 0.875rem;
  font-weight: 500;
}

.visualization-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.progress-container {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.progress-bar {
  width: 100%;
  background-color: #374151;
  border-radius: 9999px;
  height: 0.5rem;
}

.progress-fill {
  height: 0.5rem;
  border-radius: 9999px;
}

.progress-green {
  background: linear-gradient(to right, #4ade80, #3b82f6);
}

.progress-purple {
  background: linear-gradient(to right, #a78bfa, #ec4899);
}

.progress-orange {
  background: linear-gradient(to right, #f97316, #ef4444);
}

.devices-container {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.device-item {
  text-align: center;
}

.device-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.5rem;
}

.device-label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.device-value {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(30, 64, 175, 0.2),
    rgba(76, 29, 149, 0.2)
  );
}

.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 2rem;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.1),
    rgba(168, 85, 247, 0.1)
  );
}

.service-icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  color: #a78bfa;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: #bfdbfe;
}

.service-desc {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  transition: color 0.3s;
}

.service-card:hover .service-desc {
  color: #d1d5db;
}

.service-features {
  list-style: none;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover .service-feature {
  color: #d1d5db;
}

.feature-check {
  color: #4ade80;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 1rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.testimonial-rating {
  display: flex;
}

.testimonial-star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
}

.testimonial-text {
  color: #d1d5db;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.625;
  transition: color 0.3s;
}

.testimonial-card:hover .testimonial-text {
  color: white;
}

.testimonial-author {
  font-weight: 600;
  color: #93c5fd;
}

.testimonial-company {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(76, 29, 149, 0.2),
    rgba(190, 24, 93, 0.2)
  );
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}

.pricing-card.popular {
  background: linear-gradient(
    to bottom right,
    rgba(59, 130, 246, 0.2),
    rgba(168, 85, 247, 0.2)
  );
  border-color: rgba(59, 130, 246, 0.5);
  transform: scale(1.05);
}

.pricing-card:not(.popular) {
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1)
  );
}

.pricing-card:not(.popular):hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #3b82f6, #7c3aed);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
}

.price-period {
  color: #9ca3af;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.pricing-check {
  color: #4ade80;
  flex-shrink: 0;
}

.pricing-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.pricing-card.popular .pricing-button {
  background: linear-gradient(to right, #2563eb, #7c3aed);
  color: white;
}

.pricing-card.popular .pricing-button:hover {
  background: linear-gradient(to right, #1d4ed8, #6d28d9);
}

.pricing-card:not(.popular) .pricing-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:not(.popular) .pricing-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0.2),
    rgba(124, 58, 237, 0.2)
  );
}

.cta-container {
  max-width: 56rem;
  text-align: center;
}

.cta-icon {
  font-size: 4rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.cta-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons-row {
    flex-direction: row;
  }
}

.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

@media (min-width: 640px) {
  .benefits-container {
    flex-direction: row;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefit-check {
  color: #4ade80;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-heading {
    font-size: 2.25rem;
  }

  .section-heading {
    font-size: 2.25rem;
  }

  .cta-heading {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .animate-float,
  .animate-float-delayed,
  .animate-float-slow {
    animation-duration: 4s;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
