.rtl-intakes-page {
  --ink: 255, 255, 255;
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1c1c1c;
  --bg-card-hover: #232323;
  --bg-disabled: #2a2a2a;
  --bg-input-dark: #1a1a1a;
  --bg-overlay: 10, 10, 10;
  --line: rgba(var(--ink), 0.12);
  --line-strong: rgba(var(--ink), 0.22);
  /* Subtle hover overlay: lightens in dark mode, darkens in light mode. */
  --hover-overlay: rgba(255, 255, 255, 0.92);
  --text: #ffffff;
  --text-dim: #c4c4c4;
  --text-faint: #8a8a8a;
  --red: #E11D2A;
  --red-bright: #ff2030;
  --red-glow: rgba(225, 29, 42, 0.22);
  --red-deep: #B0141E;
  --red-dim: rgba(225, 29, 42, 0.35);
  --red-tint: rgba(225, 29, 42, 0.06);
  --yellow: #ffc901;
  --yellow-glow: rgba(255, 201, 1, 0.35);
  --yellow-dim: rgba(255, 201, 1, 0.55);
  --input-bg: #ffffff;
  --input-text: #0a0a0a;
  --input-placeholder: #8a8a8a;
  --input-border: #d9d4ca;
  --green: #1ec27a;
  --amber: #e2a73b;
  --noise-opacity: 0.55;
  --atmos-1: rgba(225,29,42,0.07);
  --atmos-2: rgba(225,29,42,0.04);
  --font-display: "Rajdhani", "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

.rtl-intakes-page[data-theme=light] {
  --ink: 0, 0, 0;
  --bg: #ffffff;
  --bg-elev: #f7f5f0;
  --bg-card: #f8f6f1;
  --bg-card-hover: #efece4;
  --bg-disabled: #e8e6e0;
  --bg-input-dark: #f0eee8;
  --bg-overlay: 255, 255, 255;
  --line: rgba(var(--ink), 0.10);
  --line-strong: rgba(var(--ink), 0.18);
  --hover-overlay: rgba(0, 0, 0, 0.04);
  --text: #0a0a0a;
  --text-dim: #5a5a5a;
  --text-faint: #8a8a8a;
  --red-glow: rgba(225, 29, 42, 0.18);
  --red-tint: rgba(225, 29, 42, 0.04);
  --noise-opacity: 0;
  --atmos-1: rgba(225,29,42,0.04);
  --atmos-2: rgba(225,29,42,0.02);
}

body.rtl-intakes-body {
  margin: 0;
  padding: 0;
}

.rtl-intakes-page *, .rtl-intakes-page *::before, .rtl-intakes-page *::after {
  box-sizing: border-box;
}

.rtl-intakes-page, .rtl-intakes-page {
  margin: 0;
  padding: 0;
  height: 100%;
}

.rtl-intakes-page {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

.rtl-intakes-page body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, var(--atmos-1), transparent 60%), radial-gradient(ellipse 60% 40% at 0% 100%, var(--atmos-2), transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s;
}

.rtl-intakes-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: var(--noise-opacity);
  z-index: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.3s;
}

.rtl-intakes-page .mono-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rtl-intakes-page .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(var(--bg-overlay), 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.rtl-intakes-page .topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rtl-intakes-page .topbar-logo-drive {
  height: 48px;
  width: auto;
}

.rtl-intakes-page .topbar-divider {
  background-color: var(--text);
  width: 1px;
  height: 36px;
}

.rtl-intakes-page .topbar-logo-shift-container {
  display: flex;
  align-items: center;
}

.rtl-intakes-page .topbar-logo-shift {
  height: 38px;
  width: auto;
}

.rtl-intakes-page .topbar-middle {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-left: 24px;
}

.rtl-intakes-page[data-theme=light] .topbar-middle {
  color: #a67c00;
}

.rtl-intakes-page .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rtl-intakes-page .theme-switch {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  position: relative;
}

.rtl-intakes-page .theme-opt {
  background: transparent;
  border: none;
  width: 30px;
  height: 26px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-faint);
  transition: color 0.18s;
  padding: 0;
  position: relative;
  z-index: 2;
}

.rtl-intakes-page .theme-opt svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.rtl-intakes-page .theme-opt:hover {
  color: var(--text-dim);
}

.rtl-intakes-page .theme-opt.active {
  color: white;
}

.rtl-intakes-page .theme-opt.active svg {
  transform: scale(1.05);
}

.rtl-intakes-page .theme-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 30px;
  height: 26px;
  background: var(--red);
  border-radius: 100px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  box-shadow: 0 2px 8px var(--red-glow);
}

.rtl-intakes-page .theme-switch[data-active=light]::after {
  transform: translateX(30px);
}

.rtl-intakes-page .stepper {
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  background: rgba(var(--bg-overlay), 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 19;
  padding: 14px 32px;
}

.rtl-intakes-page .stepper-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.rtl-intakes-page .stepper-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s;
  user-select: none;
}

.rtl-intakes-page .stepper-section:not(.locked):hover {
  background: rgba(var(--ink), 0.04);
}

.rtl-intakes-page .stepper-section.locked {
  cursor: not-allowed;
  opacity: 0.5;
}

.rtl-intakes-page .stepper-section.locked:hover {
  background: transparent;
}

.rtl-intakes-page .stepper-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  background: var(--bg);
  transition: all 0.25s;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.rtl-intakes-page .stepper-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
  white-space: nowrap;
}

.rtl-intakes-page .stepper-section.complete .stepper-num {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: white;
}

.rtl-intakes-page .stepper-section.complete .stepper-label {
  color: var(--text);
}

.rtl-intakes-page .stepper-section.current .stepper-num {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 0 0 4px var(--red-glow);
}

.rtl-intakes-page .stepper-section.current .stepper-label {
  color: var(--red);
}

.rtl-intakes-page .stepper-connector {
  flex: 0 0 18px;
  height: 1px;
  background: var(--line-strong);
  margin: 0 -2px;
}

.rtl-intakes-page .stepper-progress {
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--ink), 0.06);
  overflow: hidden;
}

.rtl-intakes-page .stepper-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 92%, var(--yellow) 100%);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 1px 0 6px var(--yellow-glow);
}

.rtl-intakes-page .back-btn {
  position: static;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--text);
  height: 40px;
  padding: 0 16px 0 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 8;
  transition: all 0.18s;
  font: inherit;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rtl-intakes-page .back-btn:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}

.rtl-intakes-page .back-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.rtl-intakes-page .back-btn svg {
  width: 12px;
  height: 12px;
}

.rtl-intakes-page main {
  position: relative;
  width: 100%;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--bg) !important;
}

.rtl-intakes-page .step {
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  padding: 60px 32px 32px;
  display: flex;
  justify-content: center;
  visibility: hidden;
  z-index: 2;
}

.rtl-intakes-page .step.active {
  visibility: visible;
  position: relative;
  top: auto;
}

.rtl-intakes-page .step-inner {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
}

.rtl-intakes-page .step-inner.wide {
  max-width: 980px;
}

.rtl-intakes-page .question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--text);
  text-transform: none;
  padding-bottom: 2rem;
}

.rtl-intakes-page .question em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
}

.rtl-intakes-page .question .accent {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
}

.rtl-intakes-page .helper {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  font-weight: 400;
}

.rtl-intakes-page .helper strong {
  color: var(--text);
  font-weight: 600;
}

.rtl-intakes-page .sub-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 4px;
}

.rtl-intakes-page .sub-question em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
}

.rtl-intakes-page .exit-block {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, max-height 0.32s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rtl-intakes-page .exit-block.visible {
  opacity: 1;
  max-height: 800px;
  pointer-events: auto;
}

.rtl-intakes-page .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rtl-intakes-page .field-row.two {
  grid-template-columns: 1fr 1fr;
}

.rtl-intakes-page .field-row.three {
  grid-template-columns: 1.6fr 0.9fr 0.7fr;
}

.rtl-intakes-page .field-row.three-eq {
  grid-template-columns: 1fr 1fr 1fr;
}

.rtl-intakes-page .field-row.split-2-1 {
  grid-template-columns: 2fr 1fr;
}

.rtl-intakes-page .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rtl-intakes-page .field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.rtl-intakes-page .field label .req {
  color: var(--red);
  margin-left: 2px;
}

.rtl-intakes-page .field .hint {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
  font-weight: 400;
}

.rtl-intakes-page input[type=text], .rtl-intakes-page input[type=email], .rtl-intakes-page input[type=tel], .rtl-intakes-page input[type=number], .rtl-intakes-page input[type=date], .rtl-intakes-page select, .rtl-intakes-page textarea {
  width: 100%;
  background: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  padding: 16px 18px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.rtl-intakes-page input::placeholder, .rtl-intakes-page textarea::placeholder {
  color: var(--input-placeholder);
  font-weight: 400;
}

.rtl-intakes-page input:focus, .rtl-intakes-page select:focus, .rtl-intakes-page textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-glow);
}

.rtl-intakes-page select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a0a0a' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.rtl-intakes-page select.exit-strategy-locked {
  background-image: none;
  padding-right: 18px;
  pointer-events: none;
}

.rtl-intakes-page input.total-loan-readonly {
  pointer-events: none;
  cursor: default;
}

.rtl-intakes-page textarea {
  min-height: 130px;
  resize: vertical;
}

.rtl-intakes-page .prefix-wrap {
  position: relative;
}

.rtl-intakes-page .prefix-wrap .prefix {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--input-placeholder);
  font-weight: 500;
  font-size: 16px;
  pointer-events: none;
}

.rtl-intakes-page .prefix-wrap input {
  padding-left: 32px;
}

.rtl-intakes-page .options {
  display: grid;
  gap: 12px;
}

.rtl-intakes-page .options.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.rtl-intakes-page .options.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.rtl-intakes-page .options.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.rtl-intakes-page .options.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.rtl-intakes-page .options.yes-no {
  grid-template-columns: 1fr 1fr;
  max-width: 460px;
}

.rtl-intakes-page .opt .ladda-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.rtl-intakes-page .options.cols-4 .opt.yn .ladda-label,
.rtl-intakes-page .options.yes-no .opt.yn .ladda-label {
  justify-content: center;
}

.rtl-intakes-page .opt {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(var(--ink), 0.14);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.rtl-intakes-page .opt.compact {
  padding: 14px 16px;
  font-size: 14px;
}

.rtl-intakes-page .opt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.rtl-intakes-page .opt:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
}

.rtl-intakes-page .opt:hover::before {
  transform: scaleY(0.4);
}

.rtl-intakes-page .opt.selected {
  border-color: var(--red);
  background: linear-gradient(90deg, rgba(225, 29, 42, 0.1), rgba(225, 29, 42, 0.02));
}

.rtl-intakes-page .opt.selected::before {
  transform: scaleY(1);
}

.rtl-intakes-page .opt.selected .opt-check {
  opacity: 1;
  transform: scale(1);
}

.rtl-intakes-page .opt-key {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.rtl-intakes-page .opt.selected .opt-key {
  color: var(--red);
}

.rtl-intakes-page .opt-label {
  flex: 1;
}

.rtl-intakes-page .opt-sub {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 3px;
}

.rtl-intakes-page .opt-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.rtl-intakes-page .opt-check svg {
  width: 10px;
  height: 10px;
}

.rtl-intakes-page .opt.yn {
  justify-content: center;
  padding: 22px 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.rtl-intakes-page .opt.yn .opt-label {
  flex: 0;
}

.rtl-intakes-page .declarations-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rtl-intakes-page .yn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(var(--ink), 0.02);
  transition: border-color 0.2s;
}

.rtl-intakes-page .yn-row:hover {
  border-color: var(--line-strong);
}

.rtl-intakes-page .yn-row.answered {
  border-color: rgba(225, 29, 42, 0.4);
}

.rtl-intakes-page .yn-row .q-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
  font-weight: 500;
}

.rtl-intakes-page .yn-row .q-text .q-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 3px;
}

.rtl-intakes-page .yn-row .yn-buttons {
  display: flex;
  gap: 8px;
}

.rtl-intakes-page .yn-btn {
  background: transparent;
  border: 1px solid rgba(var(--ink), 0.28);
  color: var(--text-dim);
  padding: 8px 18px;
  border-radius: 8px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
}

.rtl-intakes-page .yn-btn:hover {
  color: var(--text);
  border-color: rgba(var(--ink), 0.5);
}

.rtl-intakes-page .yn-btn.selected {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.rtl-intakes-page .yn-select {
  background: rgba(var(--ink), 0.04);
  border: 1px solid rgba(var(--ink), 0.28);
  color: var(--text);
  padding: 7px 32px 7px 14px;
  border-radius: 8px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  max-width: 240px;
  transition: border-color 0.15s, background 0.15s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c4c4c4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.rtl-intakes-page .yn-select:hover {
  border-color: rgba(var(--ink), 0.5);
  background-color: rgba(var(--ink), 0.06);
}

.rtl-intakes-page .yn-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.rtl-intakes-page .yn-select option {
  background: var(--bg-card);
  color: var(--text);
}

.rtl-intakes-page[data-theme=light] .yn-select option {
  background: #ffffff;
  color: var(--input-text);
}

.rtl-intakes-page .actions {
  display: flex;
  align-items: center;
  margin-top: 8px;
  padding-bottom: 32px;
}

.rtl-intakes-page .actions .hint {
  font-size: 10.5px;
  color: var(--text-faint);
  line-height: 1.5;
  pointer-events: none;
  font-weight: 500;
  margin-left: auto;
}

.rtl-intakes-page .btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rtl-intakes-page .btn.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 24px -8px var(--red-glow), 0 0 0 1px var(--red-deep);
}

.rtl-intakes-page .btn.primary:hover {
  background: #d0151f;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(225, 29, 42, 0.4), 0 0 0 1px var(--red-deep);
}

.rtl-intakes-page .btn.primary:disabled {
  background: var(--bg-disabled);
  color: var(--text-faint);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.rtl-intakes-page .btn .arrow {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  height: 14px;
  display: flex;
  align-items: end;
}

.rtl-intakes-page .key-hint {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: auto;
  font-weight: 600;
}

.rtl-intakes-page .key-hint kbd {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 7px;
  font-family: inherit;
  font-size: 10px;
  color: var(--text-dim);
}

.rtl-intakes-page .small-link {
  color: var(--text-dim);
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.18s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
  font-weight: 500;
}

.rtl-intakes-page .small-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.rtl-intakes-page .metrics {
  background: linear-gradient(180deg, rgba(225, 29, 42, 0.05), rgba(225, 29, 42, 0));
  border: 1px solid rgba(225, 29, 42, 0.22);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 8px;
}

.rtl-intakes-page .metrics-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.rtl-intakes-page .metrics-head .label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  background-color: transparent;
}

.rtl-intakes-page .metrics-head .pulse {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--yellow-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--yellow-glow);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}
.rtl-intakes-page .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 18px;
}

.rtl-intakes-page .metric .k {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.rtl-intakes-page .metric .v {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.005em;
}

.rtl-intakes-page .metric .v.empty {
  color: var(--text-faint);
  font-weight: 500;
}

.rtl-intakes-page .metric .flag {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--amber);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.rtl-intakes-page .metric .flag.over {
  color: var(--red);
}

.rtl-intakes-page .metric .v.over {
  color: var(--red);
}

.rtl-intakes-page .guarantor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.rtl-intakes-page .guarantor-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(var(--ink), 0.04);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.rtl-intakes-page .guarantor-chip strong {
  color: var(--text);
  font-weight: 600;
}

.rtl-intakes-page .g-hub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.rtl-intakes-page .g-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rtl-intakes-page .g-card:hover {
  border-color: var(--red);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.rtl-intakes-page .g-card:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-glow);
}

.rtl-intakes-page .g-card.complete {
  border-color: rgba(225, 29, 42, 0.32);
}

.rtl-intakes-page .g-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.rtl-intakes-page .g-card-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.rtl-intakes-page .g-card-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rtl-intakes-page .g-card.incomplete .g-card-status {
  color: var(--amber);
}

.rtl-intakes-page .g-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.rtl-intakes-page .g-card-name.empty {
  color: var(--text-faint);
  font-style: italic;
  font-weight: 600;
}

.rtl-intakes-page .g-card-meta {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 6px;
}

.rtl-intakes-page .g-card-edit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.18s;
}

.rtl-intakes-page .g-card:hover .g-card-edit {
  color: var(--red);
}

.rtl-intakes-page .g-card-edit .arrow {
  font-weight: 500;
}

.rtl-intakes-page .g-hub-actions {
  margin-top: 4px;
}

.rtl-intakes-page .g-card-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rtl-intakes-page .g-card-remove {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-faint);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.rtl-intakes-page .g-card-remove:hover {
  border-color: var(--red);
  color: var(--red);
}

.rtl-intakes-page .review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.rtl-intakes-page .review-sect {
  grid-column: span 2;
  margin-top: 44px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
}

.rtl-intakes-page .review-sect:first-child {
  margin-top: 0;
}

.rtl-intakes-page .review-sect .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 1;
}

.rtl-intakes-page .review-sect .dash {
  color: var(--text-faint);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
}

.rtl-intakes-page .review-sect .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.rtl-intakes-page .review-add-guarantor {
  grid-column: span 2;
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.rtl-intakes-page .add-g-btn {
  background: transparent;
  border: 1.5px dashed var(--line-strong);
  color: var(--text-dim);
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rtl-intakes-page .add-g-btn:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-tint);
}

.rtl-intakes-page .add-g-btn .plus {
  font-size: 16px;
  font-weight: 600;
}

.rtl-intakes-page .rv-remove-g {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-faint);
  padding: 5px 12px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.rtl-intakes-page .rv-remove-g:hover {
  color: var(--red);
  border-color: var(--red);
}

.rtl-intakes-page .rv-remove-g svg {
  width: 11px;
  height: 11px;
}

.rtl-intakes-page .rv-remove-g[data-state=confirm] {
  background: var(--red);
  color: white;
  border-color: var(--red);
  animation: rmPulse 0.6s ease-out 1;
}

.rtl-intakes-page .rv-remove-g[data-state=confirm]:hover {
  background: #d0151f;
  color: white;
}

.rtl-intakes-page .rv-remove-g .label-idle {
  display: inline;
}

.rtl-intakes-page .rv-remove-g .label-confirm {
  display: none;
}

.rtl-intakes-page .rv-remove-g[data-state=confirm] .label-idle {
  display: none;
}

.rtl-intakes-page .rv-remove-g[data-state=confirm] .label-confirm {
  display: inline;
}

@keyframes rmPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.rtl-intakes-page .review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(var(--ink), 0.05);
  min-height: 44px;
}

.rtl-intakes-page .review-item .k {
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 500;
  flex-shrink: 0;
}

.rtl-intakes-page .review-item .v {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.rtl-intakes-page .review-item .v.empty {
  color: var(--text-faint);
  font-style: italic;
  font-weight: 400;
}

.rtl-intakes-page .rv-control {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.rtl-intakes-page .rv-input, .rtl-intakes-page .rv-select {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 7px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  text-align: left;
  width: 100%;
  max-width: 320px;
  min-width: 120px;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.rtl-intakes-page .rv-input::placeholder {
  color: var(--text-faint);
  font-style: italic;
  font-weight: 400;
}

.rtl-intakes-page .rv-select:hover {
  background: rgba(var(--ink), 0.04);
  border-color: var(--line);
}

.rtl-intakes-page .rv-input:hover {
  background: var(--hover-overlay);
  border-color: var(--line);
}

.rtl-intakes-page .rv-input:focus, .rtl-intakes-page .rv-select:focus {
  background: var(--input-bg);
  color: var(--input-text);
  border-color: var(--red);
  cursor: text;
  box-shadow: 0 0 0 3px var(--red-glow);
}

.rtl-intakes-page .rv-input:focus::placeholder {
  color: var(--input-placeholder);
}

.rtl-intakes-page .rv-currency-input,
.rtl-intakes-page .rv-currency-input:focus {
  text-align: right;
}

.rtl-intakes-page .rv-select {
  background-color: transparent;
  color: var(--text);
}

.rtl-intakes-page .rv-select:focus {
  background-color: var(--bg-input-dark);
  color: var(--text);
}

.rtl-intakes-page .rv-select option {
  background: var(--bg-input-dark);
  color: var(--text);
}

.rtl-intakes-page .rv-select:focus option {
  background: var(--bg-input-dark);
  color: var(--text);
}

.rtl-intakes-page .rv-currency {
  display: flex;
  align-items: center;
  position: relative;
  flex: 0 1 220px;
  min-width: 0;
}

.rtl-intakes-page .rv-currency .rv-prefix {
  position: absolute;
  left: 12px;
  color: var(--text-faint);
  font-weight: 600;
  font-size: 13.5px;
  pointer-events: none;
  transition: color 0.15s;
  z-index: 1;
}

.rtl-intakes-page .rv-currency .rv-input {
  padding-left: 24px;
}

.rtl-intakes-page .rv-currency:focus-within .rv-prefix {
  color: var(--input-placeholder);
}

.rtl-intakes-page .rv-yn {
  display: flex;
  gap: 6px;
}

.rtl-intakes-page .rv-yn-btn {
  background: transparent;
  border: 1px solid rgba(var(--ink), 0.18);
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: 6px;
  font: inherit;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.rtl-intakes-page .rv-yn-btn:hover {
  color: var(--text);
  border-color: rgba(var(--ink), 0.35);
}

.rtl-intakes-page .rv-yn-btn.selected {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.rtl-intakes-page .rv-yn-btn.selected:hover {
  background: #d0151f;
}

.rtl-intakes-page .rv-name-row {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.rtl-intakes-page .rv-name-row .rv-input {
  max-width: 160px;
}

.rtl-intakes-page .review-guarantors {
  grid-column: span 2;
}

.rtl-intakes-page .review-guarantor-section {
  margin-top: 44px;
  grid-column: span 2;
}

.rtl-intakes-page .review-guarantor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 0;
}

.rtl-intakes-page .review-guarantor-grid .review-item {
  min-width: 0;
}

.rtl-intakes-page .success {
  text-align: center;
  max-width: 600px;
}

.rtl-intakes-page .success .mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--red-glow);
}

.rtl-intakes-page .success .mark svg {
  width: 32px;
  height: 32px;
}

.rtl-intakes-page .success h2 {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rtl-intakes-page .success h2 em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
}

.rtl-intakes-page .success p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 32px;
}

.rtl-intakes-page .footer-fine {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 32px;
  font-size: 10.5px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
  background: linear-gradient(180deg, transparent, var(--bg) 60%);
  z-index: 5;
  pointer-events: none;
  font-weight: 500;
}

.rtl-intakes-page #ae-dropdown {
  max-width: 460px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stepper-label {
    display: none;
  }
  .stepper-section {
    flex: 0 0 auto;
    gap: 0;
  }
  .stepper-inner {
    justify-content: center;
    gap: 4px;
  }
}
@media (max-width: 760px) {
  .rtl-intakes-page .topbar {
    padding: 0 16px;
    height: 76px;
    top: 0;
  }
  .rtl-intakes-page .topbar-divider,
  .rtl-intakes-page .topbar-logo-shift-container,
  .rtl-intakes-page .topbar-middle,
  .rtl-intakes-page .btn-launch-corsa {
    display: none !important;
  }
  .rtl-intakes-page .stepper {
    padding: 12px 16px;
    top: 76px;
  }
  .rtl-intakes-page .step {
    padding: 50px 16px 24px;
    top: 130px;
  }
  .rtl-intakes-page main {
    padding-top: 130px;
  }
  .rtl-intakes-page .field-row.two, .rtl-intakes-page .field-row.three, .rtl-intakes-page .field-row.three-eq, .rtl-intakes-page .field-row.split-2-1 {
    grid-template-columns: 1fr;
  }
  .rtl-intakes-page .options.cols-2, .rtl-intakes-page .options.cols-3, .rtl-intakes-page .options.cols-4, .rtl-intakes-page .options.cols-5 {
    grid-template-columns: 1fr 1fr;
  }
  .rtl-intakes-page .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rtl-intakes-page .review-grid {
    grid-template-columns: 1fr;
  }
  .rtl-intakes-page .review-sect {
    grid-column: span 1;
  }
  .rtl-intakes-page .question {
    font-size: 32px;
  }
  .rtl-intakes-page .top-right .meta-text {
    display: none;
  }
  .rtl-intakes-page .footer-fine {
    display: none;
  }
  .rtl-intakes-page .review-guarantor-grid {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .rtl-intakes-page .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .rtl-intakes-page .actions .step-counter {
    margin-left: 0;
    margin-top: 12px;
  }
  .rtl-intakes-page .actions .back-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
}
/* SweetAlert2 styling for RTL intake error dialogs (showErrorAlert) */
.rtl-swal {
  background: #1A1A1A;
  color: #F0F0F0;
}

.rtl-swal .swal2-title {
  color: #F0F0F0;
}

/* pre-line keeps the \n line breaks used when listing multiple metric issues. */
.rtl-swal .swal2-html-container {
  color: #F0F0F0;
  white-space: pre-line;
}

.rtl-swal-confirm {
  background-color: #E8192C !important;
}

/* Logo Toggling between Dark and Light mode */
.rtl-intakes-page .light-logo {
  display: none !important;
}
.rtl-intakes-page .dark-logo {
  display: inline-block !important;
}

.rtl-intakes-page[data-theme=light] .dark-logo {
  display: none !important;
}
.rtl-intakes-page[data-theme=light] .light-logo {
  display: inline-block !important;
}

.rtl-intakes-page[data-theme=dark] .light-logo {
  display: none !important;
}
.rtl-intakes-page[data-theme=dark] .dark-logo {
  display: inline-block !important;
}

/* Redesigned topbar buttons and elements */
.rtl-intakes-page .btn-launch-corsa {
  background: transparent;
  border: 1.5px solid #E8192C;
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.rtl-intakes-page[data-theme=light] .btn-launch-corsa {
  color: #0a0a0a !important;
}

.rtl-intakes-page .btn-launch-corsa:hover {
  background: #E8192C;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(232, 25, 44, 0.4);
}

/* Hamburger dropdown menu styling */
.rtl-intakes-page .hamburger-menu-wrapper {
  position: relative;
}

.rtl-intakes-page .hamburger-btn {
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.rtl-intakes-page .hamburger-btn:hover {
  background: var(--bg-card);
}

.rtl-intakes-page .hamburger-btn svg {
  width: 24px;
  height: 24px;
}

.rtl-intakes-page .hamburger-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(var(--bg-overlay), 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  width: 220px;
  padding: 8px 0;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.rtl-intakes-page .hamburger-dropdown.hidden {
  display: none;
}

.rtl-intakes-page .dropdown-item {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  text-decoration: none !important;
  transition: all 0.15s;
  text-align: left;
}

.rtl-intakes-page .dropdown-item:hover {
  background: var(--red);
  color: #ffffff !important;
}

/* Dynamic positioning and restyling of back-btn and step-counter inside step actions */
.rtl-intakes-page .actions {
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.rtl-intakes-page .actions .step-counter {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: auto;
  margin-right: 0;
  order: 2;
}

.rtl-intakes-page .actions .step-counter .now {
  color: var(--text);
}

.rtl-intakes-page .actions .step-counter .sep {
  color: var(--text-faint);
}

.rtl-intakes-page .actions .back-btn {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--text);
  height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 8;
  transition: all 0.18s;
  font: inherit;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  order: 3;
  margin-left: 24px;
  margin-right: 0;
}

.rtl-intakes-page .actions .back-btn:hover {
  border-color: var(--text);
  background: var(--bg-card-hover);
}

.rtl-intakes-page .actions .back-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.rtl-intakes-page .actions .back-btn .back-chevron {
  font-size: 14px;
  font-weight: 800;
}

.rtl-intakes-page .actions .hint {
  width: 100%;
  margin-top: 12px;
  margin-left: 0 !important;
}

/* Footer Product Matrix Link Block */
.rtl-intakes-page .form-footer-matrix {
  max-width: 720px;
  width: calc(100% - 64px);
  margin: 0 auto 60px auto;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rtl-intakes-page .footer-matrix-link {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dim);
  transition: all 0.2s;
}

.rtl-intakes-page .footer-matrix-link:hover {
  color: var(--text);
  border-color: var(--text);
}

.rtl-intakes-page .footer-matrix-separator {
  background: var(--text);
  width: 1px;
  height: 17px;
}

.rtl-intakes-page .footer-support {
  color: var(--text-dim);
}
