:root {
  --blue: #174ec9;
  --blue-dark: #103c9c;
  --blue-soft: #eaf0ff;
  --ink: #0a0c10;
  --ink-soft: #4c5260;
  --line: #dce1ea;
  --surface: #f5f7fa;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.amdh-landing-page {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.brand img {
  width: 90px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 17px;
}

.brand-copy small {
  margin-top: 5px;
  color: #737987;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-nav[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-links {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  width: min(300px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10, 12, 16, 0.16);
}

.mobile-nav-links > a {
  padding: 11px 13px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-nav-links > a:hover,
.mobile-nav-links > a:focus-visible {
  background: var(--surface);
}

.mobile-nav-links .mobile-nav-cta {
  margin-top: 6px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.mobile-nav-links .mobile-nav-cta:hover,
.mobile-nav-links .mobile-nav-cta:focus-visible {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: #e8ebef;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.93) 34%, rgba(245, 247, 250, 0.28) 62%, rgba(10, 12, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 12, 16, 0.04));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 8px;
  background: var(--blue);
}

.hero-inner {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  direction: ltr;
}

.hero-card {
  width: min(560px, 100%);
  padding: 48px 0 52px;
  direction: rtl;
  text-align: right;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: middle;
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.16;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 545px;
  margin-top: 24px;
  color: #343a46;
  font-size: 17px;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: #aab2c0;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  background: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: #4a505c;
  font-size: 12px;
  font-weight: 700;
}

.trust-row span {
  position: relative;
  padding-right: 15px;
}

.trust-row span::before {
  content: "";
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.about-copy h2,
.sector-heading h2,
.contact-copy h2,
.faq-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 48px;
}

.split-heading > p {
  color: var(--ink-soft);
  font-size: 16px;
}

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

.service-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(11, 20, 38, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(23, 78, 201, 0.45);
  box-shadow: 0 24px 65px rgba(15, 37, 83, 0.1);
  transform: translateY(-6px);
}

.service-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.service-number {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 900;
}

.service-card > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.95;
}

.service-note {
  display: inline-block;
  margin-top: 28px;
  padding: 7px 11px;
  border-radius: 5px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
  direction: ltr;
}

.about-visual,
.about-copy {
  direction: rtl;
}

.about-visual {
  position: relative;
  max-width: 490px;
  justify-self: start;
}

.about-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -18px;
  left: -18px;
  width: 74%;
  height: 74%;
  border: 2px solid var(--blue);
  border-radius: 14px;
}

.about-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(12, 22, 43, 0.15);
}

.visual-caption {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 36px;
  min-width: 220px;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(23, 78, 201, 0.28);
}

.visual-caption strong,
.visual-caption span {
  display: block;
}

.visual-caption strong {
  font-size: 19px;
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.about-copy {
  max-width: 590px;
}

.about-intro {
  margin-top: 24px;
  color: #262b34;
  font-size: 18px;
  font-weight: 700;
}

.about-copy > p:not(.eyebrow):not(.about-intro) {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

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

.value-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.value-list > div > span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.value-list p {
  color: var(--ink-soft);
  font-size: 13px;
}

.value-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(-5px);
}

.sector-band {
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
}

.sector-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.eyebrow-light {
  color: #8eb0ff;
}

.sector-heading h2 {
  max-width: 460px;
}

.sector-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.sector-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sector-list span {
  color: #749cff;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.sector-list p {
  font-size: 16px;
  font-weight: 700;
}

.centered-heading {
  max-width: 660px;
  margin: 0 auto 54px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-top: 12px;
  color: var(--ink-soft);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 23px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 13px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-heading p:last-child {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid #cfd5df;
}

.faq-list details {
  border-bottom: 1px solid #cfd5df;
}

.faq-list summary {
  position: relative;
  padding: 22px 0 22px 48px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  left: 4px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 0 22px 40px;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact {
  padding: 80px 0;
  background: var(--blue);
  color: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.button-white {
  background: var(--white);
  color: var(--blue-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

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

.contact-details {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
  font-style: normal;
}

.contact-details > div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
}

.contact-details a,
.contact-details p {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 24px;
  background: #07090d;
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 74px;
  height: 44px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  bottom: 18px;
  left: 18px;
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(23, 78, 201, 0.35);
  font-size: 12px;
  font-weight: 900;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #7aa2ff;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .navbar {
    min-height: 78px;
  }

  .brand img {
    width: 76px;
    height: 44px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.92) 52%, rgba(245, 247, 250, 0.12) 100%);
  }

  .hero-card {
    width: min(530px, 64%);
  }

  .split-heading,
  .about-grid,
  .sector-grid,
  .faq-grid,
  .contact-panel {
    gap: 56px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

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

  .topbar p,
  .brand-copy,
  .nav-cta {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .navbar {
    min-height: 72px;
  }

  .brand {
    margin-right: 0;
    margin-left: auto;
  }

  .brand img {
    width: 92px;
    height: 48px;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.95) 52%, rgba(245, 247, 250, 0.56) 75%, rgba(10, 12, 16, 0.08) 100%),
      linear-gradient(90deg, rgba(245, 247, 250, 0.96), rgba(245, 247, 250, 0.15));
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-card {
    width: 100%;
    padding-top: 68px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .trust-row {
    gap: 6px 14px;
    font-size: 10px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .sector-heading h2,
  .contact-copy h2,
  .faq-heading h2 {
    font-size: 33px;
  }

  .split-heading,
  .about-grid,
  .sector-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-heading {
    margin-bottom: 34px;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .service-topline {
    margin-bottom: 34px;
  }

  .about-grid {
    direction: rtl;
  }

  .about-visual {
    max-width: calc(100% - 14px);
    justify-self: center;
  }

  .about-visual::before {
    top: -12px;
    left: -12px;
  }

  .visual-caption {
    right: 14px;
    bottom: 20px;
    min-width: 190px;
  }

  .sector-band {
    padding: 72px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 18px;
    padding: 0;
    text-align: right;
  }

  .step-number {
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .process-step h3 {
    align-self: end;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact-actions {
    flex-direction: column;
  }

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

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* English / left-to-right layout */
html[dir="ltr"] .brand {
  margin-left: 0;
  margin-right: auto;
}

html[dir="ltr"] .skip-link {
  left: 12px;
  right: auto;
}

html[dir="ltr"] .nav-links a::after {
  left: 0;
  right: auto;
}

html[dir="ltr"] .hero-inner {
  justify-content: flex-start;
  direction: ltr;
}

html[dir="ltr"] .hero-card {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .eyebrow span {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="ltr"] .trust-row span {
  padding-right: 0;
  padding-left: 15px;
}

html[dir="ltr"] .trust-row span::before {
  right: auto;
  left: 0;
}

html[dir="ltr"] .about-visual,
html[dir="ltr"] .about-copy {
  direction: ltr;
}

html[dir="ltr"] .mobile-nav-links {
  left: auto;
  right: 0;
}

@media (max-width: 720px) {
  html[dir="ltr"] .brand {
    margin-left: 0;
    margin-right: auto;
  }

  html[dir="ltr"] .about-grid {
    direction: ltr;
  }

  html[dir="ltr"] .process-step {
    text-align: left;
  }
}
