:root {
  --page: #081231;
  --page-deep: #050d27;
  --surface: #0d1b43;
  --surface-soft: #102451;
  --surface-bright: #142d65;
  --blue: #4d86ff;
  --blue-strong: #2f6bff;
  --gold: #F0C24E;
  --text: #f7f9ff;
  --muted: #aebbd9;
  --muted-strong: #cbd5ec;
  --line: rgba(132, 161, 226, 0.16);
  --line-strong: rgba(132, 161, 226, 0.28);
  --success: #62dda6;
  --danger: #ff8394;
  --shadow-blue: 0 16px 38px rgba(34, 88, 222, 0.3);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-family: "Manrope", "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(35, 97, 220, 0.16), transparent 31rem),
    radial-gradient(circle at 15% 48%, rgba(33, 79, 186, 0.08), transparent 30rem),
    var(--page);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Archivo", "Cairo", sans-serif;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

ul,
ol {
  margin-block: 0;
}

.shell {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 40px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset-block-start: 10px;
  inset-inline-start: 12px;
  padding: 9px 14px;
  color: var(--page-deep);
  background: var(--gold);
  border-radius: 9px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(77, 134, 255, 0.95);
  outline-offset: 3px;
}

/* Shared chrome */
.site-header {
  position: sticky;
  z-index: 60;
  inset-block-start: 0;
  border-block-end: 1px solid rgba(132, 161, 226, 0.12);
  background: rgba(8, 18, 49, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 14px 40px;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: auto;
  height: 30px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-inline: auto;
}

.header-nav a {
  position: relative;
  color: #bac7e4;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 160ms ease;
}

.header-nav a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: -8px;
  height: 2px;
  content: "";
  background: var(--gold);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: #fff;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: #e3e9f7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.language-switch:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  border-color: rgba(130, 176, 255, 0.52);
  background: linear-gradient(180deg, #3f78ff, #1c47d6);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.2),
    var(--shadow-blue);
}

.button-primary:hover {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.26),
    0 18px 44px rgba(34, 88, 222, 0.4);
}

.button-secondary {
  border-color: rgba(170, 190, 234, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #e9edfa;
}

.button-secondary:hover {
  border-color: rgba(170, 190, 234, 0.44);
  background: rgba(255, 255, 255, 0.09);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 11px;
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Approved role-page hero */
.role-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  min-height: 545px;
  padding-block: 62px 54px;
  column-gap: 20px;
  isolation: isolate;
}

.role-hero::before {
  position: absolute;
  z-index: -2;
  inset-block: 0;
  inset-inline: calc((100vw - min(100vw, var(--shell))) / -2);
  content: "";
  border-block-end: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 42%, rgba(31, 105, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, rgba(12, 28, 68, 0.32), rgba(8, 18, 49, 0));
}

.role-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 580px;
}

.eyebrow,
.section-kicker,
.responsibility-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-block-end: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.responsibility-kicker::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(240, 194, 78, 0.5);
  transform: rotate(45deg);
}

.role-copy h1 {
  max-width: 650px;
  font-size: clamp(42px, 3.5vw, 56px);
}

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

.hero-summary {
  max-width: 540px;
  margin-block-start: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.cash-rates,
.role-metrics {
  display: flex;
  align-items: stretch;
  margin-block: 26px 24px;
  gap: 0;
}

.cash-rate,
.role-metric {
  min-width: 140px;
  padding-block: 2px;
  padding-inline-end: 26px;
}

.cash-rate + .cash-rate,
.role-metric + .role-metric {
  padding-inline: 26px;
  border-inline-start: 1px solid rgba(174, 187, 217, 0.34);
}

.cash-rate strong,
.role-metric strong {
  display: block;
  color: var(--gold);
  font-family: "Archivo", "Cairo", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.cash-rate span,
.role-metric span {
  display: block;
  margin-block-start: 8px;
  color: #f2f5fc;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cash-hero__actions,
.role-hero__actions {
  margin-block-start: 4px;
}

.hero-note {
  margin-block-start: 18px;
  color: #9eacd0;
  font-size: 13px;
}

.hero-note a,
.cash-hero-link {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(77, 134, 255, 0.5);
  text-underline-offset: 4px;
}

.role-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 430px;
  margin-inline-end: -22px;
}

.role-visual::before {
  position: absolute;
  z-index: -1;
  width: 82%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(34, 94, 228, 0.22);
  filter: blur(72px);
}

.role-visual::after {
  position: absolute;
  z-index: -1;
  inset-inline: 8% -3%;
  inset-block-end: 7%;
  height: 78px;
  content: "";
  border-radius: 50%;
  background: rgba(39, 98, 232, 0.38);
  filter: blur(34px);
}

.role-visual img {
  width: min(100%, 680px);
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.38));
}

.cash-agent-page .role-visual img {
  width: min(100%, 630px);
}

.bank-agent-page .role-visual img {
  width: min(100%, 690px);
}

.affiliate-page .role-visual img {
  width: min(90%, 590px);
}

/* Shared section rhythm */
.content-section {
  position: relative;
  padding-block: 76px;
}

.content-section + .content-section {
  border-block-start: 1px solid rgba(132, 161, 226, 0.12);
}

.section-heading {
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: 42px;
  text-align: center;
}

.section-heading h2,
.role-contact-copy h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 43px);
  text-transform: uppercase;
}

.section-heading > p:not(.section-kicker) {
  margin-block-start: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* Four-step transaction flow */
.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}

.flow-track::before {
  position: absolute;
  inset-inline: calc(12.5% - 1px);
  inset-block-start: 38px;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(77, 134, 255, 0.14),
    rgba(77, 134, 255, 0.68),
    rgba(77, 134, 255, 0.14)
  );
}

.flow-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}

.flow-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(77, 134, 255, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(41, 94, 217, 0.18), transparent 68%),
    var(--page);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.flow-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 20px;
  gap: 8px;
  color: #fff;
  font-family: "Archivo", "Cairo", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.flow-label span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-strong);
  font-family: "Manrope", "Cairo", sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.flow-step > p:last-child {
  max-width: 240px;
  margin-inline: auto;
  margin-block-start: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Responsibilities */
.responsibility-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 77, 176, 0.1), transparent 36rem);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}

.responsibility-column {
  min-width: 0;
  padding-block: 6px;
  padding-inline: 42px 58px;
}

.responsibility-column + .responsibility-column {
  padding-inline: 58px 42px;
  border-inline-start: 1px solid rgba(132, 161, 226, 0.28);
}

.responsibility-kicker {
  margin-block-end: 16px;
}

.responsibility-column h3 {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  text-transform: uppercase;
}

.responsibility-column ul {
  display: grid;
  margin-block-start: 18px;
  padding-inline-start: 20px;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.responsibility-column li::marker {
  color: var(--blue);
}

/* Four-step onboarding */
.onboarding-track,
.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}

.onboarding-step {
  position: relative;
  min-width: 0;
  padding: 30px 22px 26px;
  text-align: center;
}

.onboarding-step::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: -19px;
  width: 10px;
  height: 10px;
  content: "";
  border-block-start: 1px solid rgba(151, 173, 220, 0.7);
  border-inline-end: 1px solid rgba(151, 173, 220, 0.7);
  transform: rotate(45deg);
}

.onboarding-step:last-child::after {
  display: none;
}

.onboarding-step > span {
  display: inline-grid;
  min-width: 38px;
  height: 32px;
  place-items: center;
  padding-inline: 8px;
  border: 1px solid rgba(255, 224, 120, 0.72);
  border-radius: 6px;
  color: #171507;
  background: linear-gradient(180deg, #ffdd6b, #dca628);
  box-shadow: 0 0 22px rgba(240, 194, 78, 0.22);
  font-family: "Archivo", "Cairo", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.onboarding-step h3 {
  margin-block-start: 22px;
  color: #fff;
  font-size: 17px;
}

.onboarding-step p {
  max-width: 230px;
  margin-inline: auto;
  margin-block-start: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* FAQ */
.faq-list {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  gap: 8px;
}

.faq-item {
  overflow: clip;
  border: 1px solid rgba(132, 161, 226, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(105deg, rgba(17, 39, 88, 0.88), rgba(9, 23, 57, 0.92));
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 54px 15px 20px;
  color: #edf2ff;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  inset-inline-end: 22px;
  inset-block-start: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-block-end: 1.5px solid #dbe5ff;
  border-inline-end: 1.5px solid #dbe5ff;
  transform: translateY(-72%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-answer {
  padding: 0 54px 18px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Approved split contact option */
.role-contact-section,
.cash-contact-section {
  padding-block: 72px 44px;
  background:
    radial-gradient(circle at 24% 46%, rgba(39, 94, 210, 0.14), transparent 30rem);
}

.role-contact-grid,
.cash-contact-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  max-width: 1120px;
  margin-inline: auto;
  padding: 32px;
  gap: 34px;
  border: 1px solid rgba(132, 161, 226, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 50%, rgba(38, 91, 207, 0.18), transparent 27rem),
    linear-gradient(120deg, rgba(15, 35, 81, 0.9), rgba(8, 21, 53, 0.92));
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.2);
}

.role-contact-copy,
.cash-contact-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 12px;
}

.role-contact-copy .responsibility-kicker,
.cash-contact-copy .responsibility-kicker {
  margin-block-end: 18px;
}

.role-contact-copy h2 span,
.cash-contact-copy h2 span {
  display: block;
  color: var(--blue);
}

.role-contact-copy > p:not(.responsibility-kicker):not(.cash-contact-note) {
  max-width: 390px;
  margin-block-start: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.role-contact-copy .button-row,
.cash-contact-copy .button-row {
  margin-block-start: 24px;
}

.cash-contact-note,
.contact-note {
  margin-block-start: 18px;
  color: #8fa1c8;
  font-size: 12.5px;
}

.cash-contact-note:empty,
.contact-note:empty {
  display: none;
}

.role-lead-form {
  min-width: 0;
  width: 100%;
  max-width: 640px;
  align-self: center;
  padding: 32px;
  border: 1px solid rgba(132, 161, 226, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(17, 39, 89, 0.66), rgba(9, 25, 63, 0.76));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.03),
    0 18px 38px rgba(0, 0, 0, 0.14);
}

.role-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.role-lead-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.role-lead-field--full {
  grid-column: 1 / -1;
}

.role-lead-field label {
  color: #7f8fb5;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-lead-input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(151, 174, 224, 0.22);
  border-radius: 12px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  color: #f5f7ff;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14.5px;
  line-height: 1.35;
  color-scheme: dark;
  transition:
    border-color 160ms ease,
    outline-color 160ms ease,
    background 160ms ease;
}

.role-lead-input::placeholder {
  color: #7f91bd;
  opacity: 1;
}

.role-lead-input:hover {
  border-color: rgba(151, 174, 224, 0.38);
}

.role-lead-input:focus-visible {
  border-color: rgba(92, 151, 255, 0.86);
  outline: 2px solid rgba(77, 134, 255, 0.22);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.075);
}

.role-lead-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-block-start: 20px;
  gap: 14px;
}

.role-lead-submit {
  min-width: 166px;
  min-height: 48px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
}

.role-lead-submit:disabled {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.lead-message {
  min-height: 1.5em;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.lead-message[data-state="success"] {
  color: var(--success);
}

.lead-message[data-state="error"] {
  color: var(--danger);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin-inline: auto;
  margin-block-start: 18px;
  gap: 14px;
}

.contact-channel {
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  padding: 16px 20px;
  gap: 14px;
  border: 1px solid rgba(132, 161, 226, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(16, 40, 91, 0.82), rgba(8, 22, 55, 0.9));
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.contact-channel:hover {
  border-color: rgba(77, 134, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(21, 52, 116, 0.86), rgba(9, 26, 66, 0.92));
  transform: translateY(-2px);
}

.contact-channel__icon,
.contact-channel-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #42b9f2, #2771dd);
  box-shadow: 0 12px 24px rgba(31, 100, 213, 0.28);
  font-size: 21px;
  font-weight: 800;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.contact-channel:nth-child(2) .contact-channel__icon,
.contact-channel:nth-child(2) .contact-channel-icon {
  color: #191404;
  background: linear-gradient(145deg, #ffe474, #d89f25);
  box-shadow: 0 12px 24px rgba(216, 159, 37, 0.2);
}

.contact-channel__copy,
.contact-channel-copy {
  min-width: 0;
}

.contact-channel small {
  display: block;
  color: #8295c1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-channel strong {
  display: block;
  overflow: hidden;
  margin-block-start: 3px;
  color: #f3f6ff;
  font-size: 13px;
  line-height: 1.4;
  text-overflow: ellipsis;
}

/* Four-column footer shared with the homepage */
.site-footer {
  border-block-start: 1px solid rgba(132, 161, 226, 0.13);
  background: rgba(5, 13, 39, 0.54);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  padding-block: 42px 50px;
  gap: 44px;
}

.footer-brand img {
  width: auto;
  height: 26px;
}

.footer-age {
  margin-block-start: 13px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.footer-column h2,
.footer-column h3 {
  margin-block-end: 14px;
  color: #8395bd;
  font-family: "Manrope", "Cairo", sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a,
.footer-links span {
  color: #b6c2dd;
  font-size: 12.5px;
  line-height: 1.55;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  color: #62c7ff !important;
  font-weight: 700;
}

.footer-note {
  color: #7f91b9 !important;
}

.footer-bottom {
  border-block-start: 1px solid rgba(132, 161, 226, 0.1);
}

.footer-bottom .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 20px;
  color: #7f91b9;
  font-size: 12px;
}

/* Compatibility: old markup can adopt the unified system without a second theme. */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 32px;
}

.footer-inner > p {
  color: #d5ddf1;
  font-weight: 700;
}

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

/* RTL */
[dir="rtl"] .eyebrow,
[dir="rtl"] .section-kicker,
[dir="rtl"] .responsibility-kicker,
[dir="rtl"] .role-lead-field label,
[dir="rtl"] .contact-channel small,
[dir="rtl"] .footer-column h2,
[dir="rtl"] .footer-column h3,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] .cash-rate span,
[dir="rtl"] .role-metric span {
  letter-spacing: normal;
}

[dir="rtl"] .onboarding-step::after {
  transform: rotate(225deg);
}

[dir="rtl"] .faq-item summary {
  padding: 15px 20px 15px 54px;
}

[dir="rtl"] .faq-answer {
  padding: 0 20px 18px 54px;
}

[dir="rtl"] .role-visual {
  margin-inline-end: 0;
  margin-inline-start: -22px;
}

/* Tablet */
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .role-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
    min-height: 510px;
  }

  .role-copy h1 {
    font-size: clamp(40px, 6vw, 58px);
  }

  .role-visual {
    min-height: 380px;
  }

  .flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

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

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

  .onboarding-step:nth-child(2)::after {
    display: none;
  }

  .role-contact-grid,
  .cash-contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .role-contact-copy,
  .cash-contact-copy {
    align-items: center;
    max-width: 650px;
    margin-inline: auto;
    padding-block-end: 4px;
    text-align: center;
  }

  .role-contact-copy > p:not(.responsibility-kicker):not(.cash-contact-note),
  .cash-contact-copy > p:not(.responsibility-kicker):not(.cash-contact-note) {
    max-width: 560px;
  }

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

/* Compact tablet keeps the four-step narrative legible. */
@media (max-width: 760px) {
  .shell {
    padding-inline: 24px;
  }

  .header-inner {
    padding: 12px 24px;
  }

  .role-hero {
    grid-template-columns: 1fr;
    padding-block: 44px 38px;
  }

  .role-copy {
    max-width: none;
  }

  .role-copy h1 {
    max-width: 680px;
    font-size: clamp(40px, 10.4vw, 62px);
  }

  .role-visual {
    min-height: 360px;
    margin-inline: 0;
    margin-block-start: 28px;
  }

  [dir="rtl"] .role-visual {
    margin-inline: 0;
  }

  .role-visual img {
    max-height: 390px;
  }

  .responsibility-column {
    padding-inline: 24px 34px;
  }

  .responsibility-column + .responsibility-column {
    padding-inline: 34px 24px;
  }

  .role-lead-form__grid {
    grid-template-columns: 1fr;
  }

  .role-lead-actions {
    grid-template-columns: 1fr;
  }

  .role-lead-field--full {
    grid-column: auto;
  }

  .role-lead-submit {
    width: 100%;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  .shell {
    padding-inline: 20px;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 20px;
    gap: 10px;
  }

  .brand img {
    height: 26px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .button-small {
    min-width: 42px;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .role-hero {
    min-height: 0;
    padding-block: 38px 30px;
  }

  .eyebrow {
    margin-block-end: 14px;
  }

  .role-copy h1 {
    font-size: clamp(34px, 10.8vw, 48px);
  }

  .hero-summary {
    margin-block-start: 18px;
    font-size: 14px;
  }

  .cash-rates,
  .role-metrics {
    margin-block: 22px;
  }

  .cash-rate,
  .role-metric {
    min-width: 0;
    flex: 1 1 0;
    padding-inline-end: 16px;
  }

  .cash-rate + .cash-rate,
  .role-metric + .role-metric {
    padding-inline: 16px 0;
  }

  .cash-rate strong,
  .role-metric strong {
    font-size: 34px;
  }

  .role-visual {
    min-height: 280px;
    margin-block-start: 18px;
  }

  .role-visual img {
    max-height: 310px;
  }

  .content-section {
    padding-block: 54px;
  }

  .section-heading {
    margin-block-end: 30px;
  }

  .section-heading h2,
  .role-contact-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .flow-track,
  .responsibility-grid,
  .onboarding-track,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }

  .flow-track {
    gap: 36px;
  }

  .flow-step > p:last-child {
    max-width: 290px;
  }

  .responsibility-column,
  .responsibility-column + .responsibility-column {
    padding: 8px 0;
    border-inline-start: 0;
  }

  .responsibility-column + .responsibility-column {
    margin-block-start: 36px;
    padding-block-start: 36px;
    border-block-start: 1px solid rgba(132, 161, 226, 0.22);
  }

  .onboarding-track,
  .onboarding-grid {
    gap: 2px;
  }

  .onboarding-step {
    padding-block: 22px;
  }

  .onboarding-step::after {
    display: none;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 15px 48px 15px 16px;
    font-size: 13px;
  }

  [dir="rtl"] .faq-item summary {
    padding: 15px 16px 15px 48px;
  }

  .faq-answer {
    padding: 0 48px 17px 16px;
    font-size: 13px;
  }

  [dir="rtl"] .faq-answer {
    padding: 0 16px 17px 48px;
  }

  .role-contact-section,
  .cash-contact-section {
    padding-block: 54px 34px;
  }

  .role-contact-grid,
  .cash-contact-grid,
  .contact-layout {
    padding: 22px;
    gap: 24px;
    border-radius: 20px;
  }

  .role-contact-copy,
  .cash-contact-copy {
    padding: 8px 0;
  }

  .role-contact-copy .button-row,
  .cash-contact-copy .button-row {
    width: 100%;
  }

  .role-contact-copy .button-row .button,
  .cash-contact-copy .button-row .button {
    width: 100%;
    flex: 0 0 auto;
  }

  .role-lead-form {
    padding: 22px;
    border-radius: 18px;
  }

  .contact-channel {
    min-height: 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 36px 42px;
    gap: 30px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 30px;
  }

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

@media (max-width: 430px) {
  .role-contact-grid,
  .cash-contact-grid,
  .contact-layout {
    margin-inline: -4px;
    padding: 18px;
  }

  .role-lead-form {
    padding: 18px;
  }

  .header-actions .button-small {
    width: 104px;
    max-width: 104px;
  }
}

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

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