:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-2: #f2f6fb;
  --surface-3: #eaf1f8;
  --border: rgba(18, 32, 52, 0.1);
  --border-strong: rgba(18, 32, 52, 0.17);
  --text: #122034;
  --muted: #5c6d80;
  --muted-2: #7c8da1;
  --blue: #2563eb;
  --blue-2: #0ea5e9;
  --cyan: #06b6d4;
  --green: #16a34a;
  --purple: #7c3aed;
  --orange: #ea580c;
  --pink: #db2777;
  --shadow: 0 22px 70px rgba(28, 48, 75, 0.1);
  --font-body: "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Noto Kufi Arabic", "Noto Sans Arabic", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Noto Sans Arabic", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
  font-family: "Noto Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[dir="ltr"] .hero h1,
html[dir="ltr"] .section-title,
html[dir="ltr"] .cta-box h2,
html[dir="ltr"] .brand,
html[dir="ltr"] .bc-title,
html[dir="ltr"] .jstep-title,
html[dir="ltr"] .p-title,
html[dir="ltr"] .footer-brand {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(37, 99, 235, 0.18);
}

a {
  color: inherit;
}

.w {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-nav.scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px) saturate(1.3);
}

.nav-inner,
.nav-links,
.nav-actions,
.brand {
  display: flex;
  align-items: center;
}

.nav-inner {
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 255, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.18), transparent 55%);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.12);
}

.brand-mark img {
  width: 34px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand span span {
  color: var(--blue);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.2rem;
}

.nav-links a {
  display: block;
  padding: 0.42rem 0.85rem;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(37, 99, 235, 0.07);
}

.nav-actions {
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.6rem 1.15rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.42rem 0.86rem;
  font-size: 0.84rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 0.82rem 1.55rem;
  font-size: 0.98rem;
  border-radius: 12px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.28);
  background: #fff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    radial-gradient(760px 430px at 82% 20%, rgba(14, 165, 233, 0.16), transparent 70%),
    radial-gradient(720px 450px at 10% 65%, rgba(124, 58, 237, 0.1), transparent 68%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.36rem 0.46rem 0.36rem 0.82rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.09);
}

.hero-pill span {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  font-size: 0.68rem;
}

.hero-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.hero h1 {
  font-family: var(--font-display);
  margin: 2rem 0 1.4rem;
  max-width: 17ch;
  font-size: clamp(2.55rem, 5.5vw, 4.85rem);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 700;
}

.hero h1 span,
.cta-box h2 span {
  color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan) 55%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  margin: 0 0 2.2rem;
}

.hero-actions,
.hero-chips,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-bottom: 3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  min-height: 42px;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.chip b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.09);
  font-weight: 700;
}

.marquee-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.64);
  padding: 1.1rem 0;
}

.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 140px;
  pointer-events: none;
}

.marquee-section::before {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--bg));
}

.marquee-section::after {
  left: 0;
  background: linear-gradient(-90deg, transparent, var(--bg));
}

html[dir="ltr"] .marquee-section::before {
  right: auto;
  left: 0;
  background: linear-gradient(-90deg, transparent, var(--bg));
}

html[dir="ltr"] .marquee-section::after {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, transparent, var(--bg));
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  align-items: center;
  animation: marquee-rtl 30s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
}

.marquee-item img {
  width: clamp(132px, 14vw, 190px);
  height: 58px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(18, 32, 52, 0.08);
  border-radius: 10px;
  object-fit: contain;
  opacity: 0.96;
  transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}

.logo-light img {
  background:
    linear-gradient(145deg, rgba(9, 16, 28, 0.96), rgba(30, 45, 68, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.18), transparent 55%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.13);
  filter: contrast(1.12) saturate(1.08) drop-shadow(0 1px 1px rgba(255, 255, 255, 0.2));
}

.logo-dark img {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(18, 32, 52, 0.08);
  box-shadow: 0 8px 24px rgba(28, 48, 75, 0.06);
  filter: grayscale(0.02) contrast(1.12) saturate(1.08) drop-shadow(0 1px 0 rgba(15, 23, 42, 0.14));
}

.marquee-item img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.logo-light img:hover {
  filter: contrast(1.06) saturate(1.08) drop-shadow(0 1px 1px rgba(255, 255, 255, 0.24));
}

.logo-dark img:hover {
  filter: grayscale(0) contrast(1.06) saturate(1.08) drop-shadow(0 2px 2px rgba(15, 23, 42, 0.1));
}

.marquee-item span {
  color: var(--muted-2);
  opacity: 0.7;
}

@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.section {
  padding: 6rem 0;
}

.section-compact {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
}

.center-label {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-sub {
  max-width: 58ch;
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.bento,
.stats-row,
.clients-grid,
.promise-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--border);
  box-shadow: var(--shadow);
}

.bento {
  grid-template-columns: repeat(12, 1fr);
}

.bento-card,
.stat-cell,
.client-cell,
.promise-cell,
.journey-visual {
  background: var(--surface);
  transition: background 0.2s ease, transform 0.2s ease;
}

.bento-card:hover,
.stat-cell:hover,
.client-cell:hover,
.promise-cell:hover {
  background: var(--surface-2);
}

.bento-card {
  position: relative;
  padding: 2rem;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transition: opacity 0.2s;
}

.bento-card:hover::before {
  opacity: 1;
}

.bc-span4 { grid-column: span 4; }
.bc-span6 { grid-column: span 6; }

.bc-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  border: 1px solid currentColor;
  font-size: 1.15rem;
}

.accent-blue { color: var(--blue); background: rgba(37, 99, 235, 0.08); }
.accent-green { color: var(--green); background: rgba(22, 163, 74, 0.08); }
.accent-purple { color: var(--purple); background: rgba(124, 58, 237, 0.08); }
.accent-orange { color: var(--orange); background: rgba(234, 88, 12, 0.08); }
.accent-pink { color: var(--pink); background: rgba(219, 39, 119, 0.08); }
.accent-cyan { color: var(--cyan); background: rgba(6, 182, 212, 0.08); }

.bc-tag,
.stat-sub,
.jstep-num,
.jstep-chip,
.footer-copy {
  font-family: var(--font-mono);
  color: var(--muted-2);
}

.bc-tag {
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
}

.bc-title,
.jstep-title,
.p-title {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
}

.bc-desc,
.jstep-desc,
.p-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.stats-row {
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 2rem 1.75rem;
}

.stat-num {
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-weight: 600;
}

.stat-sub {
  margin-top: 0.25rem;
  font-size: 0.68rem;
}

.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.journey-visual {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.jstep {
  display: flex;
  gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.jstep:last-child {
  border-bottom: 0;
}

.jstep-line {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.jstep-dot {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.accent-border-blue { color: var(--blue); }
.accent-border-purple { color: var(--purple); }
.accent-border-cyan { color: var(--cyan); }
.accent-border-green { color: var(--green); }

.jstep-connector {
  width: 1px;
  min-height: 28px;
  flex: 1;
  margin-top: 6px;
  background: var(--border);
}

.jstep:last-child .jstep-connector {
  display: none;
}

.jstep-num {
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
}

.jstep-chip {
  display: inline-block;
  margin-top: 0.62rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface-2);
  font-size: 0.68rem;
}

.clients-grid {
  grid-template-columns: repeat(7, 1fr);
}

.client-cell {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 2rem 1rem;
  text-decoration: none;
}

.client-cell img {
  width: min(156px, 100%);
  height: 56px;
  padding: 0.35rem;
  object-fit: contain;
  opacity: 0.95;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}

.client-cell:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.project-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 0.38rem 0.78rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.project-links a:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: #fff;
  color: var(--blue);
}

.promise-grid {
  grid-template-columns: 1fr 1fr;
}

.promise-cell {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
}

.pcheck {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 163, 74, 0.26);
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  color: var(--green);
  font-weight: 700;
}

.soft-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 25%, var(--border-strong) 75%, transparent);
}

.cta-section {
  padding: 4rem 0 6rem;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  background:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 48px 48px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-box p:not(.section-label) {
  max-width: 48ch;
  margin: 0 auto 2.2rem;
  color: var(--muted);
  line-height: 1.85;
}

.cta-actions {
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: right;
}

html[dir="ltr"] .contact-form {
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.82rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-alert {
  max-width: 760px;
  margin: 1.4rem auto 0;
  border: 1px solid;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
}

.form-alert-success {
  border-color: rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.08);
  color: #137a38;
}

.form-alert-error {
  border-color: rgba(220, 38, 38, 0.25);
  background: rgba(220, 38, 38, 0.08);
  color: #b42323;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  min-height: 65px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-outer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.footer-mark {
  width: 38px;
  height: 28px;
  border-radius: 8px;
  box-shadow: none;
}

.footer-mark img {
  width: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-copy {
  font-size: 0.72rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .bc-span4 { grid-column: span 6; }
  .bc-span6 { grid-column: span 12; }
  .journey { grid-template-columns: 1fr; gap: 2.6rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .w {
    width: min(100% - 1.5rem, 1120px);
  }

  .site-nav {
    padding: 0.8rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7.5rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-compact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bc-span4,
  .bc-span6 {
    grid-column: span 12;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .stat-cell,
  .promise-cell,
  .journey-visual {
    padding: 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .fade-in,
  .fade-in.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in,
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}
