:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-muted: #efeee8;
  --ink: #202620;
  --ink-soft: #4f5a50;
  --muted: #687267;
  --line: #d9ddd2;
  --line-strong: #bdc4b8;
  --accent: #657456;
  --accent-dark: #2f3f35;
  --accent-warm: #956b3d;
  --dark: #1f261f;
  --dark-soft: #dce2d7;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(35, 42, 36, 0.16);
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
.button,
.brand,
.faq-question {
  overflow-wrap: break-word;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: 4.15rem;
  line-height: 1;
  font-weight: 720;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.7rem;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: var(--ink-soft);
}

:focus-visible {
  outline: 3px solid rgba(149, 107, 61, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(217, 221, 210, 0.82);
  background: rgba(247, 247, 242, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  display: flex;
  width: var(--shell);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
}

.brand-text {
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-menu a {
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 640;
  padding: 10px 12px;
}

.site-menu a:hover {
  background: rgba(101, 116, 86, 0.1);
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 3px;
}

.site-menu .language-option {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 760;
}

.site-menu .language-option:hover,
.site-menu .language-option.is-active {
  background: var(--dark);
  color: var(--white);
}

.flag {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 14px;
  flex: 0 0 22px;
  border: 1px solid rgba(31, 38, 31, 0.18);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  overflow: hidden;
}

.flag-ae {
  background:
    linear-gradient(90deg, #ce1126 0 28%, transparent 28% 100%),
    linear-gradient(180deg, #009a49 0 33.33%, #ffffff 33.33% 66.66%, #000000 66.66% 100%);
}

.flag-en {
  background:
    linear-gradient(0deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(27deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
    linear-gradient(-27deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
    linear-gradient(27deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
    linear-gradient(-27deg, transparent 48%, #c8102e 48% 52%, transparent 52%),
    #012169;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  min-height: 42px;
  padding: 0 12px;
  font-weight: 680;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  display: grid;
  height: min(760px, 78svh);
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 28, 24, 0.88) 0%, rgba(23, 28, 24, 0.76) 42%, rgba(23, 28, 24, 0.45) 73%, rgba(23, 28, 24, 0.34) 100%),
    linear-gradient(180deg, rgba(23, 28, 24, 0.1) 0%, rgba(23, 28, 24, 0.48) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.eyebrow-on-dark {
  color: #dacdb6;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

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

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

.button-primary:hover {
  background: #253329;
}

.hero .button-primary:hover {
  background: #ede8dc;
}

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

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--accent);
  background: rgba(101, 116, 86, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 820px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-width: 160px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  padding-left: 14px;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--surface);
}

.section-muted {
  background: var(--surface-muted);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.split-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.84fr);
  gap: 64px;
  align-items: start;
}

.split-intro > p {
  margin: 36px 0 0;
}

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

.bottleneck {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.bottleneck p {
  max-width: 780px;
  margin-bottom: 0;
}

.item-number,
.step-count {
  color: var(--accent-warm);
  font-size: 0.84rem;
  font-weight: 800;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.solution-copy p {
  max-width: 620px;
}

.workflow-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.panel-heading strong {
  max-width: 240px;
  color: var(--ink);
  text-align: right;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 24px;
}

.workflow-steps li + li {
  border-top: 1px solid var(--line);
}

.workflow-steps span {
  color: var(--accent-dark);
  font-weight: 800;
}

.workflow-steps p {
  margin-bottom: 0;
}

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

.use-case {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.use-case-wide {
  grid-column: span 2;
  background: var(--dark);
  color: var(--white);
}

.use-case-full {
  display: grid;
  min-height: 220px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 32px;
  align-items: end;
}

.use-case-full .use-label,
.use-case-full h3,
.use-case-full p {
  max-width: 660px;
}

.use-case-full .case-meta {
  margin-top: 0;
  border-top: 0;
  border-left: 1px solid var(--line);
  padding-top: 0;
  padding-left: 24px;
}

.use-case-wide p,
.use-case-wide .case-meta span {
  color: rgba(255, 255, 255, 0.76);
}

.use-case-wide .use-label {
  color: #dacdb6;
}

.use-label {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.case-meta {
  margin-top: 22px;
  border-top: 1px solid rgba(104, 114, 103, 0.24);
  padding-top: 16px;
}

.use-case-wide .case-meta {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.case-meta span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  min-height: 250px;
  background: var(--surface);
  padding: 28px;
}

.process-step .step-count {
  display: block;
  margin-bottom: 30px;
}

.process-step p {
  margin-bottom: 0;
}

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

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 1fr);
  gap: 72px;
  align-items: start;
}

.trust-section h2 {
  color: var(--white);
}

.trust-section p {
  color: var(--dark-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-grid article {
  background: rgba(255, 255, 255, 0.055);
  padding: 26px;
}

.trust-grid h3 {
  color: var(--white);
}

.trust-grid p {
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 24px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 760;
}

.faq-question span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--ink);
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  display: none;
}

.faq-answer {
  max-width: 720px;
  padding: 0 0 24px;
}

.faq-answer p {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

.contact-section {
  background: #f2f0e9;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-copy p {
  max-width: 620px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.contact-points li {
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
  padding-left: 14px;
}

.lead-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fbfbf8;
  color: var(--ink);
  padding: 12px 13px;
}

.form-row input,
.form-row select {
  min-height: 48px;
}

.form-row textarea {
  min-height: 132px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(101, 116, 86, 0.18);
}

.form-submit {
  width: 100%;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 42px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 28px 48px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

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

.footer-links a {
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 680;
  padding: 8px 10px;
}

.footer-links a:hover {
  background: rgba(101, 116, 86, 0.1);
  color: var(--ink);
}

.footer-meta {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
}

html[dir="rtl"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] .language-switcher {
  margin-right: 8px;
  margin-left: 0;
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(23, 28, 24, 0.88) 0%, rgba(23, 28, 24, 0.76) 42%, rgba(23, 28, 24, 0.45) 73%, rgba(23, 28, 24, 0.34) 100%),
    linear-gradient(180deg, rgba(23, 28, 24, 0.1) 0%, rgba(23, 28, 24, 0.48) 100%);
}

html[dir="rtl"] .hero-content {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

html[dir="rtl"] .hero-proof li {
  border-right: 1px solid rgba(255, 255, 255, 0.36);
  border-left: 0;
  padding-right: 14px;
  padding-left: 0;
}

html[dir="rtl"] .bottleneck {
  grid-template-columns: 72px minmax(0, 1fr);
}

html[dir="rtl"] .panel-heading strong {
  text-align: left;
}

html[dir="rtl"] .use-case-full .case-meta {
  border-right: 1px solid var(--line);
  border-left: 0;
  padding-right: 24px;
  padding-left: 0;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .faq-question span::before,
html[dir="rtl"] .faq-question span::after {
  right: 5px;
  left: auto;
}

html[dir="rtl"] .contact-points li {
  border-right: 2px solid var(--accent);
  border-left: 0;
  padding-right: 14px;
  padding-left: 0;
}

html[dir="rtl"] .footer-links {
  justify-content: flex-start;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .split-intro,
  .solution-layout,
  .trust-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-intro > p {
    margin-top: 0;
  }

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

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

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {
  body.menu-open {
    overflow: auto;
  }

  .nav-shell {
    min-height: 66px;
  }

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

  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 12px;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    margin: 6px 0 0;
  }

  .site-menu .language-option {
    justify-content: center;
    flex: 1;
  }

  .hero {
    height: min(720px, 78svh);
    min-height: 560px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(23, 28, 24, 0.9) 0%, rgba(23, 28, 24, 0.78) 58%, rgba(23, 28, 24, 0.58) 100%),
      linear-gradient(180deg, rgba(23, 28, 24, 0.08) 0%, rgba(23, 28, 24, 0.56) 100%);
  }

  html[dir="rtl"] .hero-shade {
    background:
      linear-gradient(270deg, rgba(23, 28, 24, 0.9) 0%, rgba(23, 28, 24, 0.78) 58%, rgba(23, 28, 24, 0.58) 100%),
      linear-gradient(180deg, rgba(23, 28, 24, 0.08) 0%, rgba(23, 28, 24, 0.56) 100%);
  }

  .hero-media img {
    object-position: 56% center;
  }

  html[dir="rtl"] .hero-media img {
    object-position: 44% center;
  }

  .section {
    padding: 72px 0;
  }
}

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

  h1 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .brand-text {
    white-space: normal;
  }

  .hero {
    height: min(690px, 78svh);
    min-height: 540px;
  }

  .hero-inner {
    padding: 46px 0;
  }

  .hero-content {
    max-width: 360px;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .hero-proof li {
    min-width: 0;
    padding-left: 10px;
  }

  html[dir="rtl"] .hero-proof li {
    padding-right: 10px;
    padding-left: 0;
  }

  .hero-proof strong {
    font-size: 0.9rem;
  }

  .hero-proof span {
    font-size: 0.82rem;
  }

  .bottleneck {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .workflow-steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .panel-heading {
    display: grid;
  }

  .panel-heading strong {
    max-width: none;
    text-align: left;
  }

  .use-case-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .use-case-wide {
    grid-column: auto;
  }

  .use-case-full {
    display: flex;
    grid-column: auto;
  }

  .use-case-full .case-meta {
    margin-top: 22px;
    border-top: 1px solid rgba(104, 114, 103, 0.24);
    border-left: 0;
    padding-top: 16px;
    padding-left: 0;
  }

  html[dir="rtl"] .use-case-full .case-meta {
    border-right: 0;
    padding-right: 0;
  }

  .use-case,
  .process-step {
    min-height: auto;
  }

  .lead-form {
    padding: 22px;
  }

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

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

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

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