:root {
  color-scheme: light;
  --navy-950: #06111d;
  --navy-900: #071828;
  --navy-800: #0b2338;
  --navy-700: #12344d;
  --ink: #0b1c2a;
  --muted: #5b6874;
  --line: #dce4e8;
  --surface: #f3f6f7;
  --surface-blue: #eaf3f7;
  --white: #ffffff;
  --cyan: #29b9e7;
  --cyan-dark: #087ca6;
  --green: #95c93d;
  --green-dark: #6da820;
  --font-sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1180px;
  --shadow-strong: 0 28px 70px rgba(0, 8, 18, 0.28);
  --shadow-soft: 0 18px 50px rgba(7, 24, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--font-sans);
}

::selection {
  background: var(--cyan);
  color: var(--navy-950);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 17, 29, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 196px;
  align-items: center;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #d8e2e9;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 22px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button--primary,
.button--whatsapp {
  background: var(--green);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(149, 201, 61, 0.18);
}

.button--primary:hover,
.button--whatsapp:hover {
  background: #a7da50;
  box-shadow: 0 14px 32px rgba(149, 201, 61, 0.28);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta__mobile {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(41, 185, 231, 0.12), transparent 30%),
    linear-gradient(115deg, var(--navy-950) 0%, var(--navy-900) 58%, #0c2436 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 48%;
  height: 100%;
  border-left: 1px solid rgba(149, 201, 61, 0.18);
  background: linear-gradient(150deg, transparent 0 49%, rgba(255, 255, 255, 0.025) 49% 100%);
  content: "";
  transform: skewX(-9deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  padding-block: 78px 96px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: #8bdcf3;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  font-weight: 720;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 32px;
  color: #c8d5de;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  margin: 0;
  padding: 22px 0 54px 28px;
}

.hero-media::before {
  position: absolute;
  top: 0;
  left: 5px;
  width: 2px;
  height: 42%;
  background: var(--green);
  content: "";
  transform: rotate(-17deg);
  transform-origin: top;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #172636;
  box-shadow: var(--shadow-strong);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 21, 0.48), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: grid;
  min-width: 255px;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.hero-caption span {
  margin-bottom: 4px;
  color: var(--cyan-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 1.06rem;
  line-height: 1.2;
}

.hero-caption small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
}

.hero-price {
  position: absolute;
  top: 0;
  right: -12px;
  z-index: 2;
  display: grid;
  min-width: 142px;
  padding: 15px 18px;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  color: var(--navy-950);
}

.hero-price span {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-price strong {
  font-size: 1.75rem;
  line-height: 1;
}

.hero-price small {
  font-weight: 750;
}

.offer-section {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  padding: 48px 54px;
  border-top: 4px solid var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-lead h2 {
  max-width: 470px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.offer-lead > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.offer-lead strong {
  color: var(--ink);
}

.offer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offer-fact {
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.offer-fact--highlight {
  background: var(--navy-900);
  color: var(--white);
}

.offer-fact dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-fact--highlight dt {
  color: #a9c3d3;
}

.offer-fact dd {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.section {
  padding-block: clamp(82px, 9vw, 128px);
}

.section-heading {
  display: grid;
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading--wide {
  max-width: 850px;
}

.section-heading h2,
.faq-intro h2,
.vehicle-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 4.65rem);
  font-weight: 690;
  line-height: 1.02;
}

.section-heading > p:last-child,
.faq-intro > p:last-child,
.vehicle-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.audience {
  overflow: hidden;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-card {
  position: relative;
  min-height: 310px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.audience-card:hover {
  z-index: 1;
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-6px);
}

.audience-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--cyan-dark);
}

.audience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.audience-number {
  position: absolute;
  top: 30px;
  right: 24px;
  color: #96a1a9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audience-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.audience-card:hover p,
.audience-card:hover .audience-number {
  color: #b8c9d4;
}

.audience-card:hover .audience-icon {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--green);
}

.section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-kicker--light {
  color: #81d6ee;
}

.vehicle {
  position: relative;
  overflow: hidden;
}

.vehicle::after {
  position: absolute;
  top: -22%;
  right: -9%;
  width: 38%;
  height: 145%;
  border-left: 2px solid rgba(149, 201, 61, 0.34);
  background: rgba(255, 255, 255, 0.018);
  content: "";
  transform: rotate(14deg);
  pointer-events: none;
}

.vehicle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.vehicle-copy > p {
  color: #afc0cc;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--green);
  color: var(--white);
  font-weight: 800;
}

.text-link span {
  color: var(--green);
}

.vehicle-specs {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vehicle-specs > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: baseline;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.vehicle-specs dt {
  color: #89a1b1;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-specs dd {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.conditions {
  background: var(--surface);
}

.condition-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfd9de;
  border-left: 1px solid #cfd9de;
  list-style: none;
}

.condition-list li {
  min-height: 280px;
  padding: 26px 22px;
  border-right: 1px solid #cfd9de;
  border-bottom: 1px solid #cfd9de;
  background: var(--white);
}

.condition-list li > span {
  display: block;
  margin-bottom: 58px;
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.condition-list h3 {
  margin-bottom: 11px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.condition-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--cyan-dark);
}

.faq-list details p {
  max-width: 700px;
  margin: -6px 48px 28px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 108px);
  border-top: 5px solid var(--green);
  background: var(--navy-800);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  right: -8%;
  bottom: -180%;
  width: 42%;
  height: 350%;
  background: rgba(41, 185, 231, 0.08);
  content: "";
  transform: rotate(18deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 52px;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.45rem);
  font-weight: 690;
  line-height: 1.02;
}

.final-cta .button {
  min-width: 220px;
}

.site-footer {
  padding-block: 42px;
  background: var(--navy-950);
  color: #aebdca;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px 40px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}

.footer-domains {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: #d3dee5;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: 200px 1fr auto;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.5vw, 4.8rem);
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .condition-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card,
  .condition-list li {
    min-height: 260px;
  }
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .offer-panel,
  .vehicle-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
    padding-block: 66px 90px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 9vw, 5.4rem);
  }

  .hero-media {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .offer-panel {
    gap: 34px;
  }

  .vehicle-grid,
  .faq-grid {
    gap: 58px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    width: 132px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 8px 12px;
  }

  .nav-cta__desktop {
    display: none;
  }

  .nav-cta__mobile {
    display: inline;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 52px 72px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 9px 15px;
    font-size: 0.78rem;
  }

  .hero-media {
    padding: 12px 0 58px 0;
  }

  .hero-media::before {
    display: none;
  }

  .hero-price {
    top: 0;
    right: -6px;
    min-width: 118px;
    padding: 12px 14px;
  }

  .hero-price strong {
    font-size: 1.45rem;
  }

  .hero-caption {
    right: 10px;
    bottom: 4px;
    left: 10px;
    min-width: 0;
  }

  .offer-section {
    margin-top: -16px;
  }

  .offer-panel {
    width: calc(100% - 24px);
    padding: 34px 22px;
  }

  .offer-facts {
    grid-template-columns: 1fr;
  }

  .offer-fact {
    min-height: 96px;
    padding: 18px 20px;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .faq-intro h2,
  .vehicle-copy h2,
  .final-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .section-heading > p:last-child,
  .faq-intro > p:last-child,
  .vehicle-copy > p {
    font-size: 1rem;
  }

  .audience-grid,
  .condition-list {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 242px;
  }

  .audience-icon,
  .condition-list li > span {
    margin-bottom: 34px;
  }

  .condition-list li {
    display: grid;
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 20px;
  }

  .condition-list li > span {
    margin: 3px 0 0;
  }

  .vehicle-specs > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 20px 0;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta__inner {
    gap: 34px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-domains {
    justify-content: flex-start;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 50;
    display: flex;
    min-height: 54px;
    box-shadow: 0 12px 34px rgba(6, 17, 29, 0.3);
  }
}

@media (max-width: 390px) {
  .brand {
    width: 116px;
  }

  .nav-cta {
    padding-inline: 10px;
  }

  .nav-cta svg {
    display: none;
  }

  .hero h1 {
    font-size: 2.48rem;
  }

  .hero-trust {
    display: grid;
  }
}

@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;
  }
}
