:root {
  --bg: #f8fbfe;
  --bg-soft: #eef5fb;
  --surface: #ffffff;
  --surface-alt: #f4f8fc;
  --line: #dce7f0;
  --line-strong: #c8d7e3;
  --text: #13202c;
  --muted: #5d6b78;
  --brand: #27c1e4;
  --brand-deep: #1492af;
  --brand-soft: #dff7fd;
  --shadow: 0 24px 60px rgba(22, 50, 78, 0.08);
  --shadow-soft: 0 16px 40px rgba(22, 50, 78, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(39, 193, 228, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(20, 146, 175, 0.06), transparent 26%),
    linear-gradient(180deg, #fcfeff 0%, #f6fafe 100%);
  line-height: 1.6;
  color-scheme: light;
}

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

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

button,
.button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(20, 146, 175, 0.32);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--text);
  color: #ffffff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 254, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(19, 32, 44, 0.06);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 34px;
  width: auto;
}

.menu-toggle {
  display: none;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.menu-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-panel,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: 1rem;
}

.nav-links,
.nav-actions {
  gap: 0.9rem;
}

.nav-links {
  color: var(--muted);
  font-size: 0.96rem;
  gap: 1.4rem;
}

.nav-links a {
  padding: 0.25rem 0;
  transition: color 180ms ease, text-decoration-color 180ms ease;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
  text-decoration-color: transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  text-decoration-color: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(39, 193, 228, 0.24);
}

.button-secondary {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.button-ghost {
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-color: rgba(39, 193, 228, 0.18);
}

.hero {
  padding: 4.5rem 0 3.25rem;
  scroll-margin-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(39, 193, 228, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  margin-top: 1.15rem;
  font-size: clamp(2.8rem, 4.5vw, 4.9rem);
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.hero-copy p {
  margin: 1.35rem 0 0;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.14rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  margin-top: 1.7rem;
  max-width: 52rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-note strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.dashboard {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  width: 100%;
  text-align: center;
}

.panel,
.card,
.mini-card,
.stat,
.contact-form,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.panel,
.card,
.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.metric-sub,
.panel p,
.card p,
.stat p,
.contact-card p {
  color: var(--muted);
}

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

.mini-card,
.stat {
  border-radius: var(--radius-md);
  padding: 1rem;
}

.mini-card strong,
.stat strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.mini-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.floating-card small {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.floating-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.lead-panel {
  display: grid;
  gap: 1.2rem;
}

.lead-panel-header small {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.lead-panel-header strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lead-panel-header p {
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.lead-journey {
  display: grid;
  gap: 0.85rem;
}

.lead-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.lead-step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--brand-deep);
  font-weight: 700;
}

.lead-step strong {
  display: block;
  margin-bottom: 0.18rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.lead-step p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.lead-quote {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.lead-quote strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.lead-quote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 2.5rem 0;
  scroll-margin-top: 120px;
}

.section::before {
  content: "";
  display: block;
  width: min(100%, 1180px);
  height: 1px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(
    90deg,
    rgba(19, 32, 44, 0) 0%,
    rgba(39, 193, 228, 0.14) 18%,
    rgba(19, 32, 44, 0.08) 50%,
    rgba(39, 193, 228, 0.14) 82%,
    rgba(19, 32, 44, 0) 100%
  );
}

.section-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
}

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

.knowledge-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.knowledge-card p {
  margin: 0;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.card-meta-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--brand-deep);
}

.card-meta-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trust-card {
  background: #ffffff;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.badge {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--text);
}

.stats-strip,
.grid-4,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

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

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

.problem-card,
.solution-card,
.pillar-card,
.feature-card {
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.problem-card:hover,
.solution-card:hover,
.pillar-card:hover,
.feature-card:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(39, 193, 228, 0.22);
}

.icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.impact-line {
  margin-top: 1.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #edf8fd;
  border: 1px solid #cdeefa;
  color: var(--text);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.pillars-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}

.pillars-wrap .section-header,
.fipli-card,
.contact-card {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.pillar-intro {
  margin-top: 0.4rem;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  background: #f4f9fd;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.pillar-intro small {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pillar-intro p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.pillar-list {
  display: grid;
  gap: 1rem;
}

.pillar-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-number {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.fipli-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.94fr);
  gap: 1.2rem;
  align-items: center;
}

.fipli-card {
  background: #ffffff;
}

.fipli-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text);
}

.fipli-mark::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.28rem;
  background: var(--brand);
}

.fipli-preview {
  border-radius: var(--radius-xl);
  padding: 1.45rem;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.preview-header,
.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.preview-chip {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.88rem;
  border: 1px solid rgba(39, 193, 228, 0.18);
}

.preview-balance {
  margin: 0.6rem 0;
  font-size: 2.25rem;
  letter-spacing: -0.05em;
}

.preview-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.preview-row {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.preview-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-card {
  min-height: 100%;
}

.contact-card h2 {
  margin-bottom: 0.85rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.contact-list div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  color: var(--muted);
}

.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.form-header {
  margin-bottom: 1.2rem;
}

.form-header h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.form-header p {
  margin: 0;
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fbfdff;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input {
  min-height: 56px;
  padding: 0 1rem;
}

.field textarea {
  min-height: 132px;
  padding: 0.95rem 1rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(39, 193, 228, 0.55);
  box-shadow: 0 0 0 4px rgba(39, 193, 228, 0.12);
  background: #ffffff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.2rem;
}

.form-body.is-hidden {
  display: none;
}

.form-success {
  display: none;
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  background: #f2fcf7;
  border: 1px solid #cfeede;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcf8e8;
  color: #138a63;
  font-size: 1.4rem;
  font-weight: 700;
}

.form-success h4 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #138a63;
}

.form-status.is-error {
  color: #c23d3d;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 1.2rem 0 3rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.footer-brand-mark {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.footer-brand-mark img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.footer-brand-text strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.footer-brand-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 32rem;
}

.footer-side {
  justify-self: end;
  text-align: right;
}

.footer-side span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.footer-side strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.fade-up {
  animation: fadeUp 700ms ease both;
}

.delay-1 {
  animation-delay: 90ms;
}

.delay-2 {
  animation-delay: 180ms;
}

.delay-3 {
  animation-delay: 270ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .showcase,
  .pillars-wrap,
  .fipli-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav {
    padding: 1rem 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open .nav-panel {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.98rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.55rem 0;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .hero {
    padding-top: 2.8rem;
  }

  .eyebrow {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
  }

  .eyebrow::before {
    margin: 0 auto;
  }

  h1 {
    max-width: 100%;
  }

  .section-header,
  .hero-copy p {
    max-width: 100%;
  }

  .grid-3,
  .grid-4,
  .stats-strip,
  .panel-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .card,
  .contact-card,
  .contact-form {
    padding: 1.35rem;
  }

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-side {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
