:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fd;
  --bg-soft-2: #f8f9fc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --line: rgba(32, 54, 96, 0.12);
  --line-soft: rgba(32, 54, 96, 0.08);
  --text: #203660;
  --text-strong: #1b2f58;
  --text-muted: #57698d;
  --text-soft: #6c7ea1;
  --accent: #14264f;
  --accent-2: #243f78;
  --footer: #14264f;
  --shadow-soft: 0 24px 60px rgba(32, 54, 96, 0.08);
  --shadow-card: 0 20px 50px rgba(32, 54, 96, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --header-height: 104px;
  --container: min(1280px, calc(100vw - 52px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 63, 120, 0.12), rgba(36, 63, 120, 0) 30%),
    radial-gradient(circle at 100% 18%, rgba(36, 63, 120, 0.08), rgba(36, 63, 120, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 38%, #ffffff 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-strong);
}

p {
  margin: 0;
}

svg {
  display: block;
}

::selection {
  background: rgba(36, 63, 120, 0.14);
  color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  transition: top 0.24s ease;
}

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

.container {
  width: 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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.66);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  backdrop-filter: blur(10px) saturate(180%);
  transition: background-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 10px 28px rgba(32, 54, 96, 0.05);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--text-strong);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  display: flex;
  align-items: center;
}

.language-select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(36, 63, 120, 0.14);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.44)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%2314264f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      no-repeat right 14px center / 14px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.language-select:focus {
  outline: none;
  border-color: rgba(20, 38, 79, 0.26);
  box-shadow: 0 0 0 4px rgba(20, 38, 79, 0.08);
}

.nav-link {
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 0.96rem;
  transition: color 0.24s ease, background-color 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.34);
  color: var(--accent);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), background-color 0.26s var(--ease), border-color 0.26s var(--ease);
}

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

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(20, 38, 79, 0.16);
}

.button-primary:hover {
  background: #0f2146;
}

.button-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(36, 63, 120, 0.14);
}

.button-secondary:hover {
  background: #ffffff;
}

.nav-cta {
  margin-left: 10px;
}

.hero {
  position: relative;
  margin-top: calc(var(--header-height) * -1);
  padding: calc(var(--header-height) + 34px) 0 26px;
  overflow: clip;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 16%, rgba(255, 255, 255, 0.8) 34%, rgba(255, 255, 255, 0.5) 52%, rgba(255, 255, 255, 0.16) 74%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.08) 26%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
  transform: scale(1.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 40px;
  min-height: 720px;
}

.hero-copy {
  display: grid;
  gap: 28px;
  max-width: 620px;
  padding-top: 34px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 4.7rem);
  max-width: 10.5ch;
}

.hero-description {
  max-width: 39rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

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

.hero-spacer {
  min-height: 520px;
}

.trust-strip {
  padding: 0 0 42px;
}

.trust-shell {
  border-top: 1px solid rgba(36, 63, 120, 0.08);
  border-bottom: 1px solid rgba(36, 63, 120, 0.08);
  padding: 30px 0 22px;
}

.trust-title {
  margin-bottom: 24px;
  text-align: center;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--text-strong);
}

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

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 18px;
  color: var(--text);
  font-size: 0.96rem;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(36, 63, 120, 0.1);
}

.trust-icon,
.service-card-icon,
.service-list-icon,
.value-icon,
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.trust-icon svg,
.service-card-icon svg,
.service-list-icon svg,
.value-icon svg,
.footer-contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 76px 0;
}

.about-section {
  padding-top: 34px;
}

.section-soft {
  background:
    radial-gradient(circle at 20% 0%, rgba(36, 63, 120, 0.08), rgba(36, 63, 120, 0) 28%),
    linear-gradient(180deg, rgba(246, 248, 253, 0.78), rgba(246, 248, 253, 0.96));
}

.section-heading,
.section-copy {
  display: grid;
  gap: 20px;
}

.section-heading.centered {
  max-width: 860px;
  margin: 0 auto 34px;
  justify-items: center;
  text-align: center;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(36, 63, 120, 0.78);
}

.section-copy h2,
.section-heading h2,
.footer-contact-block h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  max-width: 16ch;
}

.section-heading.centered h2,
.section-heading.centered .section-intro {
  margin-inline: auto;
}

.section-intro,
.section-body,
.footer-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--accent-2);
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.service-list-shell {
  border: 1px solid rgba(36, 63, 120, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.service-list-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px 28px 28px 24px;
}

.service-list-item + .service-list-item {
  border-top: 1px solid rgba(36, 63, 120, 0.08);
}

.service-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(36, 63, 120, 0.06);
}

.service-list-copy {
  display: grid;
  gap: 8px;
}

.service-list-copy h3 {
  font-size: 1.5rem;
}

.service-list-copy p {
  color: var(--text-soft);
  line-height: 1.65;
}

.service-list-arrow {
  color: var(--text-soft);
  font-size: 1.8rem;
  line-height: 1;
}

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

.service-card,
.industry-card {
  border: 1px solid rgba(36, 63, 120, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 28px 24px 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(36, 63, 120, 0.06);
}

.service-card h3 {
  font-size: 1.55rem;
}

.service-card p,
.industry-card p,
.value-item p {
  color: var(--text-soft);
  line-height: 1.72;
}

.industries-section {
  padding-top: 66px;
}

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

.industry-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.industry-card h3 {
  font-size: 1.28rem;
}

.values-section {
  padding-top: 54px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(36, 63, 120, 0.1);
  border-bottom: 1px solid rgba(36, 63, 120, 0.1);
}

.value-item {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: 26px 18px;
}

.value-item + .value-item {
  border-left: 1px solid rgba(36, 63, 120, 0.1);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(36, 63, 120, 0.06);
}

.value-item h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  background: linear-gradient(180deg, #07204c 0%, #02173c 100%);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(95, 126, 190, 0.08), rgba(95, 126, 190, 0) 28%),
    radial-gradient(circle at 100% 100%, rgba(95, 126, 190, 0.08), rgba(95, 126, 190, 0) 26%),
    radial-gradient(circle at 82% 46%, rgba(62, 98, 176, 0.08), rgba(62, 98, 176, 0) 26%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.96fr) minmax(420px, 1.22fr);
  gap: 40px;
  align-items: center;
  padding: 58px 0 44px;
}

.brand-footer .brand-wordmark,
.site-footer h2,
.site-footer .section-label {
  color: #ffffff;
}

.brand-footer .brand-mark {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.brand-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.footer-brand-block {
  display: grid;
  gap: 20px;
}

.footer-description {
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-block {
  display: grid;
  gap: 24px;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer-contact-icon {
  color: rgba(255, 255, 255, 0.78);
}

.footer-art {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  min-height: 100%;
}

.footer-art-picture,
.footer-art-picture img {
  display: block;
  width: 100%;
}

.footer-art-picture {
  width: min(100%, 920px);
  margin-right: -96px;
}

.footer-art-picture img {
  height: auto;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

body.is-rtl {
  direction: rtl;
}

body.is-rtl .hero-copy,
body.is-rtl .section-copy,
body.is-rtl .service-list-copy,
body.is-rtl .service-card,
body.is-rtl .industry-card,
body.is-rtl .footer-brand-block,
body.is-rtl .footer-contact-block,
body.is-rtl .footer-contact-item,
body.is-rtl .service-list-item {
  text-align: right;
}

body.is-rtl .text-link,
body.is-rtl .hero-actions {
  justify-content: flex-start;
}

body.is-rtl .hero-copy,
body.is-rtl .section-copy {
  justify-items: start;
}

body.is-rtl .section-heading.centered {
  justify-items: center;
}

body.menu-open {
  overflow: hidden;
}

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

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

@media (max-width: 1160px) {
  .header-inner {
    gap: 18px;
  }

  .brand-wordmark {
    font-size: 1.35rem;
  }

  .hero-grid,
  .about-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 640px;
    gap: 22px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 18px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-spacer {
    display: none;
  }

  .footer-art {
    justify-content: flex-end;
  }

  .footer-art-picture {
    width: min(100%, 720px);
    margin-right: -36px;
  }

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

  .value-item:nth-child(2n) {
    border-left: 1px solid rgba(36, 63, 120, 0.1);
  }

  .value-item:nth-child(odd) {
    border-left: none;
  }

  .value-item:nth-child(n + 3) {
    border-top: 1px solid rgba(36, 63, 120, 0.1);
  }

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

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(36, 63, 120, 0.1);
  }

  .trust-item:nth-child(3) {
    border-left: none;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 90px;
    --container: min(1280px, calc(100vw - 30px));
  }

  html {
    scroll-padding-top: 120px;
  }

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

  .brand-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .brand-wordmark {
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(36, 63, 120, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 24px 46px rgba(32, 54, 96, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link.is-active {
    background: rgba(20, 38, 79, 0.08);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav-cta,
  .language-switcher {
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .language-select {
    width: 100%;
    min-height: 48px;
    background-position: right 16px center;
  }

  .trust-item + .trust-item,
  .value-item + .value-item {
    border-left: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 82px;
  }

  html {
    scroll-padding-top: 112px;
  }

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

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
    letter-spacing: 0.02em;
  }

  .hero {
    padding-top: calc(var(--header-height) + 18px);
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .hero-grid {
    min-height: 620px;
  }

  .hero-copy {
    padding-top: 8px;
    gap: 24px;
  }

  .hero-copy h1 {
    color: #1f3767;
  }

  .hero-description {
    color: #4a6595;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 28%, rgba(255, 255, 255, 0.68) 50%, rgba(255, 255, 255, 0.24) 76%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.32) 58%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-backdrop img {
    object-position: center top;
    transform: scale(1.02);
  }

  .hero-description,
  .section-body,
  .section-intro,
  .footer-description {
    font-size: 1rem;
  }

  .hero-actions,
  .services-grid,
  .industries-grid,
  .values-grid,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-spacer {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .footer-contact-block h2 {
    max-width: 100%;
  }

  .service-list-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .service-list-arrow {
    display: none;
  }

  .trust-item,
  .value-item {
    justify-content: flex-start;
    text-align: left;
  }

  .trust-item + .trust-item,
  .value-item + .value-item,
  .value-item:nth-child(n + 2) {
    border-top: 1px solid rgba(36, 63, 120, 0.1);
  }

  .footer-shell {
    padding-top: 48px;
  }

  .footer-art {
    justify-content: center;
  }

  .footer-art-picture {
    width: min(100%, 460px);
    margin-right: 0;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
