:root {
  --ink: #151b28;
  --deep: #202943;
  --blue: #35405f;
  --muted: #657085;
  --line: #dfe4ec;
  --paper: #f6f7f9;
  --white: #ffffff;
  --red: #b03238;
  --red-dark: #87272d;
  --gold: #cba15c;
  --teal: #197a73;
  --mint: #e9f4f1;
  --warm: #fbf5eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 27, 40, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(21, 27, 40, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 92px;
}

section {
  scroll-margin-top: 96px;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(20px, 5vw, 74px);
  background: rgba(246, 247, 249, 0.9);
  border-bottom: 1px solid rgba(223, 228, 236, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(21, 27, 40, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(21, 27, 40, 0.14);
}

.brand-name {
  font-size: 15px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.8vw, 34px);
  color: #536077;
  font-size: 14px;
  font-weight: 760;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover {
  color: var(--red);
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  direction: ltr;
}

.language-switch button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #536077;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(21, 27, 40, 0.98), rgba(32, 41, 67, 0.92) 46%, rgba(25, 122, 115, 0.72)),
    linear-gradient(135deg, var(--ink), var(--blue));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 42%, transparent 85%);
  animation: grid-drift 18s linear infinite;
}

.hero-route {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 39%, rgba(203, 161, 92, 0.35) 39.2%, transparent 40%),
    linear-gradient(148deg, transparent 0 55%, rgba(176, 50, 56, 0.28) 55.2%, transparent 56%),
    linear-gradient(100deg, transparent 0 66%, rgba(25, 122, 115, 0.24) 66.2%, transparent 67%);
  opacity: 0.85;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 18%, #000 44%, #000 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
}

.hero-layout {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 88vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 410px;
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: 78px 0 118px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 950;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(176, 50, 56, 0.22);
}

.button.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 34px rgba(176, 50, 56, 0.28);
}

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

.command-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px);
}

.command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(203, 161, 92, 0.8);
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.panel-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(220, 232, 228, 0.86));
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  box-shadow: inset 0 -5px 0 rgba(176, 50, 56, 0.28);
}

.panel-top small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.panel-top span,
.panel-metrics span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.panel-top strong {
  font-size: 30px;
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
  transform: translateY(-50%);
}

.flow-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(21, 27, 40, 0.82);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 900;
}

.panel-metrics {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-metrics div {
  padding: 18px;
  background: rgba(21, 27, 40, 0.38);
}

.panel-metrics strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(21, 27, 40, 0.58);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker-move 28s linear infinite;
}

.ticker span {
  padding: 16px 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-bar,
.positioning,
.services,
.entry,
.process,
.proof,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
  box-shadow: 0 24px 70px rgba(21, 27, 40, 0.14);
}

.signal-bar div {
  min-height: 168px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 180ms ease, background-color 180ms ease;
}

.signal-bar div:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.signal-bar span,
.service-grid span,
.process-list span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.signal-bar strong {
  display: block;
  margin-bottom: 9px;
  font-size: 20px;
}

.signal-bar p,
.service-grid p,
.process-list p,
.entry p,
.positioning-copy p,
.contact p,
.checklist li {
  color: var(--muted);
  line-height: 1.7;
}

.positioning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 72px;
  padding: 104px 0 84px;
}

.positioning h2,
.section-heading h2,
.entry h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.positioning-copy {
  padding-top: 32px;
}

.positioning-copy p {
  margin-bottom: 20px;
  font-size: 18px;
}

.services,
.process {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

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

.service-grid article {
  position: relative;
  min-height: 306px;
  height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 50, 56, 0.3);
  box-shadow: 0 24px 60px rgba(21, 27, 40, 0.12);
}

.service-grid article:hover::after {
  transform: scaleX(1);
}

.service-grid article:nth-child(2),
.service-grid article:nth-child(5) {
  background: var(--warm);
}

.service-grid article:nth-child(3),
.service-grid article:nth-child(6) {
  background: var(--mint);
}

.service-grid h3,
.process-list h3,
.checklist h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.18;
}

.entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: stretch;
  padding: 0 0 86px;
}

.entry-card,
.checklist {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.entry-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 27, 40, 0.96), rgba(53, 64, 95, 0.92)),
    var(--deep);
}

.entry-card::after {
  content: "VISION 2030  |  GCC  |  KSA";
  position: absolute;
  right: 28px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  white-space: nowrap;
}

.entry-card p {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.checklist {
  background: var(--white);
}

.checklist ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--deep);
}

.process-list article {
  position: relative;
  padding: 26px 18px 0 0;
}

.process-list article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(176, 50, 56, 0.12);
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(21, 27, 40, 0.96), rgba(32, 41, 67, 0.96)),
    var(--deep);
  box-shadow: 0 24px 70px rgba(21, 27, 40, 0.12);
}

.proof div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof div:last-child {
  border-right: 0;
}

.proof span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  align-items: start;
  gap: 28px;
  margin-top: 74px;
  margin-bottom: 82px;
}

.contact-copy,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(21, 27, 40, 0.1);
}

.contact-copy {
  position: sticky;
  top: 112px;
  padding: clamp(28px, 5vw, 46px);
  overflow: hidden;
}

.contact-copy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal));
}

.contact p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 17px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--mint);
  color: #245d58;
  font-size: 12px;
  font-weight: 820;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 22px;
  padding: 0 14px;
  border: 1px solid #cbd3df;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #30394c;
  font-size: 13px;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd5e1;
  border-radius: 7px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(25, 122, 115, 0.12);
}

.form-button {
  width: 100%;
  border: 0;
  box-shadow: 0 7px 16px rgba(176, 50, 56, 0.12);
}

.form-button:hover {
  box-shadow: 0 10px 22px rgba(176, 50, 56, 0.16);
}

.form-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 760;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
  font-size: 14px;
}

footer strong {
  display: block;
  color: var(--white);
}

footer a {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

footer span:last-child {
  text-align: end;
}

body.is-rtl {
  direction: ltr;
}

body.is-rtl .brand,
body.is-rtl .header-actions,
body.is-rtl nav,
body.is-rtl .hero-actions,
body.is-rtl .panel-top,
body.is-rtl .contact-points {
  direction: rtl;
}

body.is-rtl .brand-mark,
body.is-rtl .panel-logo,
body.is-rtl .flow-track,
body.is-rtl .language-switch {
  direction: ltr;
}

body.is-rtl .hero-copy,
body.is-rtl .positioning,
body.is-rtl .section-heading,
body.is-rtl .entry,
body.is-rtl .process,
body.is-rtl .contact,
body.is-rtl .contact-form,
body.is-rtl .proof,
body.is-rtl footer {
  direction: rtl;
  text-align: right;
}

body.is-rtl .checklist li {
  padding-right: 26px;
  padding-left: 0;
}

body.is-rtl .checklist li::before {
  right: 0;
  left: auto;
}

body.is-rtl footer span:last-child {
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

.delay-2 {
  --reveal-delay: 170ms;
}

.delay-3 {
  --reveal-delay: 250ms;
}

.delay-4 {
  --reveal-delay: 330ms;
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 112px 56px;
  }
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1060px) {
  .hero-layout,
  .positioning,
  .entry,
  .contact {
    grid-template-columns: 1fr;
  }

  .command-panel {
    max-width: 560px;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

  .signal-bar,
  .service-grid,
  .process-list,
  .proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  footer span:last-child,
  body.is-rtl footer span:last-child {
    text-align: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding: 64px 0 110px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-copy p,
  .positioning-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .flow-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-track::before {
    display: none;
  }

  .signal-bar,
  .service-grid,
  .process-list,
  .proof,
  .form-row {
    grid-template-columns: 1fr;
  }

  .positioning,
  .services,
  .process {
    padding: 66px 0;
  }

  .entry {
    padding-bottom: 66px;
  }

  .service-grid article,
  .signal-bar div {
    min-height: auto;
  }

  .process-list {
    gap: 0;
    margin-left: 9px;
    border-top: 0;
    border-left: 2px solid var(--deep);
  }

  .process-list article {
    padding: 0 0 30px 26px;
  }

  .process-list article::before {
    top: 4px;
    left: -7px;
  }

  body.is-rtl .process-list {
    margin-right: 9px;
    margin-left: 0;
    border-right: 2px solid var(--deep);
    border-left: 0;
  }

  body.is-rtl .process-list article {
    padding: 0 26px 30px 0;
  }

  body.is-rtl .process-list article::before {
    right: -7px;
    left: auto;
  }

  .proof div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  footer span {
    display: block;
    margin-top: 8px;
  }
}
