:root {
  --ink: #0a0f1a;
  --ink-2: #111827;
  --steel-900: #16202e;
  --steel-700: #334155;
  --steel-600: #475569;
  --steel-500: #64748b;
  --steel-200: #d7dde6;
  --steel-100: #eef2f6;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #0369a1;
  --blue-2: #0ea5e9;
  --cyan: #22d3ee;
  --copper: #b7791f;
  --copper-2: #f0b45d;
  --success: #047857;
  --danger: #b91c1c;
  --line: rgba(15, 23, 42, .12);
  --line-dark: rgba(255, 255, 255, .16);
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, .08);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, .14);
  --shadow-lg: 0 28px 90px rgba(15, 23, 42, .22);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --wide: 1360px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 42vh;
  z-index: -3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 105, 161, .08));
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 233, .72);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 18px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, .09);
  background: rgba(247, 249, 251, .88);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100%, var(--wide));
  min-height: 78px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: grid;
  grid-template-columns: 46px auto;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 12px 30px rgba(3, 105, 161, .25);
}

.brand-mark svg {
  width: 29px;
  height: 29px;
}

.brand-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--steel-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  color: var(--ink);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link,
.nav-group > .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--steel-700);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-group:focus-within > .nav-link,
.nav-group:hover > .nav-link {
  color: var(--ink);
  background: var(--white);
}

.nav-group {
  position: relative;
}

.subnav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 10;
  width: 310px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s var(--ease), visibility .2s ease;
}

.nav-group:hover .subnav,
.nav-group:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav a {
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--ink);
  border-radius: var(--radius-sm);
}

.subnav a:hover,
.subnav a[aria-current="page"] {
  background: var(--steel-100);
}

.subnav span {
  color: var(--steel-500);
  font-size: 12px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(3, 105, 161, .22);
  transition: transform .2s var(--ease), filter .2s ease, box-shadow .2s ease;
}

.nav-cta:hover,
.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(3, 105, 161, .3);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.subtle {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  min-height: clamp(560px, 74dvh, 720px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 15, 26, .92), rgba(10, 15, 26, .66) 45%, rgba(10, 15, 26, .28)),
    linear-gradient(0deg, rgba(10, 15, 26, .82), rgba(10, 15, 26, .12) 45%);
}

.home-hero {
  --hero-image: url("../images/microscope-board-repair.jpg");
}

.services-hero {
  --hero-image: url("../images/circuit-soldering-closeup.jpg");
}

.mobile-hero {
  --hero-image: url("../images/smartphone-microscope-repair.jpg");
}

.computer-hero {
  --hero-image: url("../images/computer-motherboard-repair.jpg");
}

.electronics-hero {
  --hero-image: url("../images/circuit-board-detail.jpg");
}

.process-hero {
  --hero-image: url("../images/precision-soldering-workbench.jpg");
}

.about-hero,
.contact-hero,
.faq-hero {
  --hero-image: url("../images/microscope-board-repair.jpg");
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: 28px;
}

.hero-copy {
  width: min(760px, 100%);
  padding: 58px 0 70px;
}

.page-hero .hero-copy {
  width: min(860px, 100%);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, .18);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 860;
}

.page-hero h1 {
  max-width: 13.5ch;
}

h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 830;
}

h3 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
}

h4 {
  font-size: 17px;
  line-height: 1.25;
}

p {
  color: var(--steel-600);
}

.hero p {
  color: rgba(255, 255, 255, .78);
}

.lead {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 920px);
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  min-height: 92px;
  padding: 16px;
  background: rgba(10, 15, 26, .44);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 62px 0;
}

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

.section.dark p,
.section.dark li {
  color: rgba(255, 255, 255, .72);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 830px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .section-label {
  justify-content: center;
}

.section-kicker {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.service-card,
.info-card,
.fault-card,
.contact-panel,
.faq-card,
.detail-row,
.source-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 105, 161, .26);
  box-shadow: var(--shadow-md);
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--steel-100);
}

.card-image img,
.image-frame img,
.wide-image img,
.media-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image::after,
.image-frame::after,
.wide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(10, 15, 26, .36), transparent 55%);
}

.service-card-content,
.info-card,
.fault-card,
.faq-card,
.source-card {
  padding: 24px;
}

.service-card h3 {
  font-size: 24px;
}

.service-card p,
.info-card p,
.fault-card p,
.faq-card p {
  margin-top: 12px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 820;
}

.mini-link::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: width .2s ease;
}

.mini-link:hover::after {
  width: 28px;
}

.image-frame,
.wide-image {
  position: relative;
  overflow: hidden;
  background: var(--steel-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.image-frame {
  aspect-ratio: 4 / 3;
}

.wide-image {
  aspect-ratio: 16 / 7;
  margin-top: 28px;
}

.image-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  max-width: 280px;
  padding: 14px;
  color: var(--white);
  background: rgba(10, 15, 26, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
}

.image-note strong {
  display: block;
  font-size: 14px;
}

.image-note span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-band div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat-band div:last-child {
  border-right: 0;
}

.stat-band strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stat-band span {
  display: block;
  margin-top: 10px;
  color: var(--steel-600);
  font-size: 13px;
}

.fault-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fault-card {
  min-height: 168px;
}

.fault-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.dark .fault-card,
.dark .info-card {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line-dark);
  box-shadow: none;
}

.dark .fault-card p,
.dark .info-card p {
  color: rgba(255, 255, 255, .7);
}

.method-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.method-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--steel-700);
}

.method-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--blue-2);
}

.dark .method-list li::before,
.dark .check-list li::before {
  background: var(--copper-2);
}

.process-list {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  font-weight: 850;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-radius: var(--radius-sm);
}

.process-step p {
  margin-top: 8px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
}

.detail-row h3 {
  font-size: 23px;
}

.detail-row p {
  margin-top: 0;
}

.service-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-overview .info-card {
  min-height: 218px;
}

.service-overview strong,
.source-card strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 18px;
}

.media-strip figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--steel-100);
  border-radius: var(--radius);
}

.media-strip figure:first-child {
  min-height: 440px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 15, 26, .95), rgba(3, 105, 161, .88)),
    url("../images/circuit-board-detail.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.cta-band p {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .76);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

summary {
  min-height: 56px;
  padding: 18px 22px;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 22px 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: clamp(24px, 4vw, 38px);
}

.email-line {
  display: inline-flex;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 16px;
  color: var(--blue);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 850;
  word-break: break-word;
  background: var(--steel-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.footer {
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 34px;
}

.footer a {
  color: var(--cyan);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.fine-print {
  margin-top: 8px;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s var(--ease);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    min-height: 72px;
    padding-inline: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 80px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open .nav-panel {
    display: grid;
    align-items: stretch;
  }

  .nav-link,
  .nav-group > .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 13px 12px;
  }

  .nav-cta {
    display: none;
  }

  .subnav {
    position: static;
    width: auto;
    padding: 4px 0 8px 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
  }

  .subnav a {
    padding: 10px 12px;
  }

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

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .hero-inner,
  .section-inner,
  .footer-inner {
    padding-inline: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(10, 15, 26, .9), rgba(10, 15, 26, .58)),
      linear-gradient(0deg, rgba(10, 15, 26, .92), rgba(10, 15, 26, .18));
  }

  .hero-copy {
    padding: 44px 0 58px;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(34px, 10.5vw, 44px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .home-hero .hero-proof {
    display: none;
  }

  .home-hero .hero-proof,
  .stat-band,
  .grid-3,
  .service-overview,
  .fault-grid,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof div,
  .stat-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .stat-band div {
    border-bottom-color: var(--line);
  }

  .hero-proof div:last-child,
  .stat-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .detail-row,
  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step::before {
    width: 48px;
    height: 48px;
  }

  .cta-band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .brand {
    grid-template-columns: 42px auto;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .brand-tagline {
    font-size: 10px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .image-note {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .wide-image,
  .image-frame {
    aspect-ratio: 4 / 3;
  }

  .email-line {
    display: flex;
    justify-content: center;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
