:root {
  --primary-blue: #0052CC;
  --primary-blue-dark: #003d99;
  --primary-blue-light: #0066FF;
  --accent-orange: #FF8B00;
  --accent-orange-dark: #cc6f00;
  --accent-orange-light: #ffa033;
  --dark-gray: #1f2937;
  --text-gray: #4b5563;
  --light-gray: #F4F5F7;
  --border-gray: #dfe1e6;
  --white: #ffffff;
  --text-primary: #172B4D;
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
  --gradient-blue: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
  --gradient-orange: linear-gradient(135deg, #FF8B00 0%, #ffb84d 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Noto Sans', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

h2 {
  color: var(--primary-blue);
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--text-gray);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.5px;
}

.brand-cpa {
  color: var(--primary-blue);
}

.brand-next {
  color: var(--accent-orange);
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--primary-blue);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav a:hover::after {
  width: 100%;
}

.lang {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
}

.lang:hover {
  background: var(--light-gray);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger:hover .hamburger-line {
  background: var(--accent-orange);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 82, 204, 0.5);
  transform: translateY(-2px);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: var(--white);
  color: var(--text-gray);
  border: 2px solid var(--border-gray);
}

.btn-secondary:hover {
  background: var(--light-gray);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 139, 0, 0.2);
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(0, 82, 204, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 139, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1), rgba(255, 139, 0, 0.1));
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 82, 204, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.hero-content h1 {
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-gray);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-card {
  position: relative;
  width: 100%;
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
  border: 1px solid rgba(0, 82, 204, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 80px rgba(0, 82, 204, 0.25);
}

.hero-card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
  filter: blur(20px);
}

.hero-card:hover .hero-card-glow {
  opacity: 0.6;
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.hero-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.hero-card h3 {
  margin-bottom: 12px;
  color: var(--primary-blue);
}

.hero-card p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  padding: 8px 0;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 139, 0, 0.1), rgba(255, 139, 0, 0.2));
  color: var(--accent-orange);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 139, 0, 0.3);
}

.about h2 {
  margin-bottom: 20px;
}

.about-text {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text-gray);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #F4F5F7 0%, #ffffff 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 82, 204, 0.15);
  border-color: var(--accent-orange);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.service-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--accent-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Traffic Sources Section */
.traffic {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.traffic-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  border: 2px solid var(--border-gray);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.traffic-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 139, 0, 0.1), transparent);
  animation: rotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}

.traffic-card:hover::after {
  opacity: 1;
}

.traffic-badge {
  display: inline-block;
  background: var(--gradient-orange);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.traffic-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.traffic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 139, 0, 0.2);
  border-color: var(--accent-orange);
  background: var(--white);
}

.traffic-card:hover .traffic-icon {
  transform: scale(1.15) rotate(-5deg);
}

.traffic-card h3 {
  margin-bottom: 12px;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.traffic-card:hover h3 {
  color: var(--accent-orange);
}

.traffic-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  position: relative;
  z-index: 1;
}

/* Expectations Section */
.expectations {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.expectations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 139, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.expectations .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.expectations h2 {
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.expectations-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.expectations-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.expectations-list li {
  padding: 32px;
  font-size: 17px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  font-weight: 500;
}

.expectations-list li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.expectations-list li::before {
  display: none;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 17px;
  margin-bottom: 40px;
  color: var(--text-gray);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item:hover {
  background: white;
  border-color: var(--accent-orange);
  transform: translateX(8px);
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 82, 204, 0.1);
  border: 2px solid var(--border-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 16px 40px;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--text-primary) 100%);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--accent-orange);
  opacity: 1;
}

.footer-links .divider {
  opacity: 0.3;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .expectations-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 16px;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav a::after {
    display: none;
  }

  .lang {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
  }

  .hero {
    padding: 60px 0 48px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .services-grid,
  .traffic-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card,
  .traffic-card {
    padding: 32px;
  }

  .about,
  .services,
  .traffic,
  .expectations,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .about-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 19px;
  }

  .brand-name {
    font-size: 24px;
  }

  .btn {
    padding: 14px 24px;
  }

  .service-card,
  .traffic-card {
    padding: 24px;
  }

  .hero-card {
    padding: 32px 24px;
  }

  .service-icon,
  .traffic-icon {
    font-size: 40px;
  }

  .hero-icon {
    font-size: 48px;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer {
    position: static;
  }

  .hero-cta,
  .contact-form {
    display: none;
  }

  .hero-bg-pattern,
  .hero-card-glow {
    display: none;
  }
}

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