
:root {
  --primary: #1e40af;
  --secondary: #0891b2;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #1f2937;
  --light: #f9fafb;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: white;

  color: #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

button,
a {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  background: rgb(255 255 255 / 95%);
  box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
  backdrop-filter: blur(10px);
}

.navbar-bar {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;

  padding: 15px 40px;
}

.logo-link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;

  text-decoration: none;
}

.site-logo {
  display: block;
  width: auto;
  height: 44px;

  object-fit: contain;
}

.desktop-navigation {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 30px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-links a {
  color: #333;
  font-weight: 500;
  text-decoration: none;

  transition: color 0.3s;
}

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

.nav-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  padding: 10px 25px;

  border-radius: 50px;

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgb(30 64 175 / 30%);
}

.nav-toggle {
  display: none;

  width: 40px;
  height: 40px;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;

  margin-left: auto;
  padding: 0;

  border: 0;
  border-radius: 8px;

  background: transparent;

  cursor: pointer;
}

.nav-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  border-radius: 999px;

  background: var(--dark);

  transition:
    transform 0.2s,
    opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-navigation {
  display: none;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;

  overflow: hidden;

  margin-top: 74px;
  padding: 120px 40px 80px;

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  text-align: center;
}

.hero::before {
  position: absolute;
  top: -50%;
  right: -10%;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgb(255 255 255 / 10%);

  content: "";
}

.hero::after {
  position: absolute;
  bottom: -20%;
  left: -5%;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background: rgb(255 255 255 / 5%);

  content: "";
}

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

  max-width: 800px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-block;

  margin: 0 0 20px;
  padding: 8px 16px;

  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50px;

  background: rgb(255 255 255 / 10%);

  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;

  backdrop-filter: blur(8px);
}

.hero h1 {
  margin: 0 0 20px;

  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-description {
  margin: 0 0 30px;

  font-size: 20px;

  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 35px;

  border: none;
  border-radius: 50px;

  cursor: pointer;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background-color 0.3s;
}

.btn-primary {
  background: white;

  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgb(0 0 0 / 20%);
}

.btn-secondary {
  border: 2px solid white;

  background: rgb(255 255 255 / 20%);

  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);

  background: rgb(255 255 255 / 30%);
}

/* ========================================
   SHARED SECTIONS
   ======================================== */

section {
  padding: 80px 40px;
}

section[id] {
  scroll-margin-top: 90px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  margin: 0 0 15px;

  color: var(--dark);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  margin: 0 0 50px;

  color: #666;
  font-size: 18px;
}

/* ========================================
   FEATURES
   ======================================== */

.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;

  border-top: 4px solid var(--primary);
  border-radius: 12px;

  background: white;
  box-shadow: 0 5px 20px rgb(0 0 0 / 8%);

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 40px rgb(0 0 0 / 15%);
}

.feature-icon {
  margin-bottom: 20px;

  font-size: 48px;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 15px;

  color: var(--dark);
  font-size: 22px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;

  color: #666;
  line-height: 1.8;
}

/* ========================================
   BENEFITS
   ======================================== */

.benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

.benefits-content h2 {
  margin-bottom: 30px;

  color: var(--primary);
  font-size: 32px;
}

.benefits-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.benefit-item {
  display: flex;
  gap: 20px;

  margin-bottom: 25px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  flex-shrink: 0;

  color: var(--success);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.benefit-item h3 {
  margin: 0 0 8px;

  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
}

.benefit-item p {
  margin: 0;

  color: #666;
  font-size: 14px;
}

.benefits-image {
  position: relative;

  overflow: hidden;

  width: 100%;
  aspect-ratio: 16 / 9;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: white;
  box-shadow: 0 10px 35px rgb(0 0 0 / 10%);
}

.benefits-image-content {
  object-fit: contain;
  object-position: center;
}

/* ========================================
   DATA OVERVIEW
   ======================================== */

.data-section {
  background: var(--light);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;

  margin-top: 40px;
}

.data-card {
  padding: 30px;

  border-left: 4px solid var(--accent);
  border-radius: 12px;

  background: white;
  box-shadow: 0 5px 20px rgb(0 0 0 / 8%);

  text-align: center;
}

.data-value {
  margin: 0 0 10px;

  color: var(--primary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.data-label {
  margin: 0;

  color: #666;
  font-size: 14px;
}

.data-candidates-title {
  margin: 50px 0 0;

  color: var(--dark);
  font-size: 20px;
  font-weight: 600;
}

.data-candidates-grid {
  margin-top: 20px;
}

/* ========================================
   COMPARISON
   ======================================== */

.comparison {
  background: white;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;

  margin-top: 40px;

  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 700px;

  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;

  text-align: left;
}

.comparison-table thead th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  font-weight: 600;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 12px;
}

.comparison-table tbody th,
.comparison-table tbody td {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody th {
  color: var(--dark);
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--light);
}

.comparison-table td {
  color: #555;
}

.comparison-status {
  display: inline-block;

  margin-right: 8px;

  font-size: 20px;
  font-weight: 700;
}

.comparison-status-positive {
  color: var(--success);
}

.comparison-status-negative {
  color: var(--danger);
}

/* ========================================
   PRICING
   ======================================== */

.pricing {
  background: var(--light);
}

.pricing-header {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;

  margin-top: 40px;
}

.pricing-card {
  position: relative;

  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;

  padding: 32px;

  border: 2px solid var(--border);
  border-radius: 16px;

  background: white;
  box-shadow: 0 6px 24px rgb(0 0 0 / 7%);

  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 36px rgb(0 0 0 / 11%);
}

.pricing-card-featured {
  border-color: var(--primary);

  background: white;

  box-shadow: 0 12px 36px rgb(30 64 175 / 16%);
}

.pricing-card-header {
  min-height: 205px;
}

.pricing-badge,
.pricing-badge-placeholder {
  display: inline-flex;
  min-height: 28px;
  align-items: center;

  margin-bottom: 14px;
}

.pricing-badge {
  align-self: flex-start;

  padding: 5px 12px;

  border-radius: 999px;

  background: rgb(30 64 175 / 10%);

  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-badge-placeholder {
  visibility: hidden;
}

.pricing-card h3 {
  margin: 0 0 14px;

  color: var(--dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.pricing-price {
  margin: 0 0 14px;

  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-description {
  margin: 0;

  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-features {
  flex: 1;

  margin: 10px 0 30px;
  padding: 0;

  list-style: none;
}

.pricing-features li {
  position: relative;

  padding: 11px 0 11px 24px;

  border-bottom: 1px solid var(--border);

  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.pricing-features li::before {
  position: absolute;
  top: 11px;
  left: 0;

  color: var(--success);
  font-weight: 700;

  content: "✓";
}

.pricing-card-footer {
  display: flex;
  flex-direction: column;

  margin-top: auto;
}

.pricing-ideal-for {
  min-height: 96px;
  margin: 0 0 22px;
  padding: 16px;

  border-radius: 10px;

  background: var(--light);

  color: #555;
  font-size: 12px;
  line-height: 1.55;
}

.pricing-ideal-for strong {
  color: var(--dark);
}

.pricing-button {
  width: 100%;
  min-height: 48px;

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  text-align: center;
}

.pricing-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgb(30 64 175 / 25%);
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
  position: relative;

  overflow: hidden;

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  color: white;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: -180px;
  right: -120px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgb(255 255 255 / 8%);

  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 1;

  max-width: 850px;
}

.final-cta-kicker {
  margin: 0 0 16px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  opacity: 0.85;
}

.final-cta h2 {
  margin: 0 0 20px;

  color: white;
  font-size: 46px;
}

.final-cta-description {
  max-width: 700px;
  margin: 0 auto 35px;

  font-size: 19px;
  line-height: 1.7;

  opacity: 0.92;
}

.final-cta-button {
  background: white;

  color: var(--primary);
}

.final-cta-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgb(0 0 0 / 20%);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  padding: 64px 40px 28px;

  background: #111827;

  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns:
    minmax(0, 2fr)
    minmax(160px, 1fr)
    minmax(180px, 1fr);
  gap: 64px;
  align-items: start;
}

.footer-brand {
  grid-column: 1;

  max-width: 440px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;

  margin-bottom: 24px;

  text-decoration: none;
}

.footer-logo {
  display: block;
  width: auto;
  height: 52px;

  object-fit: contain;
}

.footer-description {
  max-width: 420px;
  margin: 0;

  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
}

.footer-navigation {
  grid-column: 2;

  min-width: 0;
}

.footer-title {
  margin: 0 0 20px;

  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-navigation ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-navigation li {
  margin-bottom: 12px;
}

.footer-navigation li:last-child {
  margin-bottom: 0;
}

.footer-navigation a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;

  transition: color 0.2s;
}

.footer-navigation a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-contact {
  grid-column: 3;

  min-width: 0;
}

.footer-location {
  margin: 14px 0 0;

  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: center;

  margin-top: 56px;
  padding-top: 26px;

  border-top: 1px solid rgb(255 255 255 / 10%);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: #94a3b8;
  font-size: 13px;
}

/* ========================================
   TABLET / SMALL DESKTOP
   ======================================== */

@media (max-width: 1000px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    max-width: 760px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .pricing-card-header {
    min-height: 0;
  }

  .pricing-badge-placeholder {
    display: none;
  }

  .pricing-ideal-for {
    min-height: 0;
  }

  .footer-content {
    grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
    gap: 40px;
  }
}

/* ========================================
   COMPACT DESKTOP / TABLET NAVIGATION
   ======================================== */

@media (max-width: 900px) and (min-width: 769px) {
  .navbar-bar {
    min-height: 68px;

    padding: 12px 22px;
  }

  .site-logo {
    height: 36px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .desktop-nav-cta {
    padding: 8px 16px;

    font-size: 13px;
  }

  .hero {
    margin-top: 68px;
  }
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 768px) {
  /* HEADER */

  .navbar-bar {
    min-height: 64px;

    padding: 10px 16px;
  }

  .site-logo {
    height: 32px;
  }

  .desktop-navigation,
  .desktop-nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-navigation {
    display: block;

    max-height: 0;
    overflow: hidden;

    padding: 0 16px;

    border-top: 1px solid transparent;

    background: rgb(255 255 255 / 98%);

    opacity: 0;
    visibility: hidden;

    transition:
      max-height 0.25s ease,
      padding 0.25s ease,
      opacity 0.2s ease,
      visibility 0.2s ease;
  }

  .mobile-navigation-open {
    max-height: 320px;

    padding: 6px 16px 16px;

    border-top-color: var(--border);

    box-shadow: 0 12px 24px rgb(0 0 0 / 10%);

    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-links {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .mobile-nav-links li {
    width: 100%;
  }

  .mobile-nav-links a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;

    padding: 7px 4px;

    border-bottom: 1px solid var(--border);

    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-nav-cta {
    width: 100%;
    min-height: 44px;

    margin-top: 10px;

    padding: 9px 18px;

    font-size: 15px;
  }

  /* HERO */

  .hero {
    margin-top: 64px;
    padding: 54px 20px 48px;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    padding: 6px 12px;

    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;

    font-size: 34px;
    line-height: 1.12;
  }

  .hero-description {
    margin-bottom: 26px;

    font-size: 16px;
    line-height: 1.55;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    padding: 12px 24px;

    font-size: 15px;
  }

  /* SHARED */

  section {
    padding: 48px 20px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-subtitle {
    margin-bottom: 32px;

    font-size: 16px;
  }

  /* FEATURES */

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 26px 22px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  /* BENEFITS */

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits-content h2 {
    font-size: 30px;
  }

  .benefit-item {
    gap: 14px;

    margin-bottom: 20px;
  }

  .benefit-icon {
    font-size: 24px;
  }

  .benefits-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* DATA */

  .data-grid {
    grid-template-columns: 1fr;
    gap: 18px;

    margin-top: 28px;
  }

  .data-card {
    padding: 22px;
  }

  .data-value {
    font-size: 30px;
  }

  /* COMPARISON */

  .comparison-table-wrapper {
    margin-top: 28px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }

  /* PRICING */

  .pricing-grid {
    margin-top: 28px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-card h3 {
    font-size: 21px;
  }

  .pricing-price {
    font-size: 19px;
  }

  .pricing-description {
    font-size: 14px;
  }

  .pricing-features li {
    padding-top: 10px;
    padding-bottom: 10px;

    font-size: 13px;
  }

  .pricing-ideal-for {
    min-height: 0;

    font-size: 12px;
  }

  /* FINAL CTA */

  .final-cta h2 {
    font-size: 31px;
  }

  .final-cta-description {
    font-size: 16px;
  }

  /* FOOTER */

  .site-footer {
    padding: 44px 20px 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand,
  .footer-navigation,
  .footer-contact {
    grid-column: 1;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
  }
}

/* ========================================
   SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
  .navbar-bar {
    min-height: 60px;

    padding: 9px 14px;
  }

  .site-logo {
    height: 29px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-toggle span {
    width: 21px;
  }

  .mobile-navigation {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-navigation-open {
    max-height: 300px;

    padding: 5px 14px 12px;
  }

  .mobile-nav-links a {
    min-height: 38px;

    padding: 6px 2px;

    font-size: 14px;
  }

  .mobile-nav-cta {
    min-height: 40px;

    margin-top: 8px;
    padding: 7px 16px;

    font-size: 14px;
  }

  .hero {
    margin-top: 60px;
    padding: 44px 16px 40px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 46px;

    padding: 10px 18px;

    font-size: 14px;
  }

  section {
    padding: 42px 16px;
  }

  section[id] {
    scroll-margin-top: 70px;
  }

  h2 {
    font-size: 27px;
  }

  .benefits-content h2 {
    font-size: 27px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .final-cta h2 {
    font-size: 28px;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
