:root {
  --ink: #172343;
  --muted: #68738a;
  --teal: #0176ff;
  --teal-dark: #17276f;
  --lime: #58b3ff;
  --cream: #f4f7fc;
  --paper: #fff;
  --line: #dce3ef;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(29, 48, 114, .14);
}

* { box-sizing: border-box; }

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #edf1ed;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, select { font: inherit; }
button { cursor: pointer; }

.page-shell {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.topbar {
  height: 78px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: white;
  background: #121f62;
}

.topbar-inner {
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.partnership-logo {
  max-width: 100%;
  width: clamp(190px, 19vw, 268px);
  height: auto;
  display: block;
}

.brand-name {
  margin-left: 15px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.76);
  font-weight: 600;
}

.secure-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.secure-label svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.top-nav { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
.top-nav a { padding: 10px 13px; border-radius: 7px; color: rgba(255,255,255,.78); text-decoration: none; font-size: 13px; font-weight: 700; }
.top-nav a:hover, .top-nav a.active { color: white; background: rgba(255,255,255,.1); }

.layout {
  width: 100%;
  margin: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(380px, 42%) minmax(0, 58%);
}

.layout > *,
.form-panel,
.form-wrap,
form {
  min-width: 0;
  max-width: 100%;
}

.intro-panel {
  min-height: calc(100vh - 78px);
  padding: clamp(52px, 7vw, 105px) clamp(34px, 4.5vw, 72px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background:
    radial-gradient(circle at 20% 90%, rgba(0,145,255,.22), transparent 30%),
    linear-gradient(150deg, #263d9b, #17276f 58%, #101b55);
}

.intro-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  top: 20%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02);
}

.intro-content,
.trust-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  margin-inline: auto;
}
.eyebrow, .step-label {
  margin: 0 0 18px;
  color: #77c8ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.intro-content h1 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.intro-content h1 span { display: block; }

.intro-copy {
  max-width: 440px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.7;
}

.trust-card {
  max-width: 440px;
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(8,20,76,.34);
  backdrop-filter: blur(12px);
}

.trust-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #76c8ff;
  background: rgba(90,181,255,.12);
}

.trust-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.trust-card strong { display: block; margin: 1px 0 6px; font-size: 14px; }
.trust-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }

.decorative-grid {
  position: absolute;
  inset: auto 0 0 auto;
  width: 45%;
  height: 34%;
  opacity: .06;
  background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to top left, black, transparent 70%);
}

.hero-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.hero-lockup img {
  width: min(370px, 88%);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(4,10,46,.18));
}

.form-panel { background: var(--cream); }
.form-wrap { width: min(720px, calc(100% - 48px)); margin: 0 auto; padding: 68px 0 84px; }
.form-heading { margin-bottom: 48px; }
.form-heading .step-label { color: var(--teal); margin-bottom: 12px; }
.form-heading h2 {
  margin: 0 0 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.form-heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.6; }

.acceptance-note {
  margin: -20px 0 48px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  border: 1px solid #cfddf3;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #f0f6ff);
  box-shadow: 0 10px 30px rgba(29,48,114,.07);
}

.acceptance-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--teal);
}

.acceptance-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.acceptance-note .step-label { margin: 1px 0 7px; color: var(--teal); font-size: 11px; }
.acceptance-note h3 { margin: 0 0 10px; font-family: Manrope, sans-serif; font-size: 20px; }
.acceptance-note p:not(.step-label) { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.acceptance-note ol { margin: 13px 0 0; padding-left: 20px; color: #46526a; font-size: 13px; line-height: 1.75; }

fieldset { min-width: 0; margin: 0 0 45px; padding: 0 0 45px; border: 0; border-bottom: 1px solid var(--line); }
legend {
  width: 100%;
  margin-bottom: 27px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 800;
}
legend span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #e2eeea;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
}

.field { min-width: 0; margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field-grid { display: grid; gap: 18px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.address-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.address-grid .country-field { grid-column: 1 / -1; }

label, .field-label {
  display: block;
  margin-bottom: 8px;
  color: #304748;
  font-size: 14px;
  font-weight: 700;
}

input, select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d5dfdb;
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-size: 15px;
}

input::placeholder { color: #a7b1af; }
input:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(1,118,255,.1); background: white; }
input.invalid, select.invalid { border-color: var(--danger); }

.input-hint-row { position: relative; }
.input-hint-row input { padding-right: 165px; text-transform: uppercase; letter-spacing: .06em; }
.format-hint {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a9694;
  font-size: 12px;
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 20px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  pointer-events: none;
}
select { appearance: none; padding-right: 45px; }
.state-other { margin-top: 8px; }
.state-other[hidden] { display: none; }
.error { min-height: 17px; display: block; margin-top: 5px; color: var(--danger); font-size: 12px; line-height: 1.4; }
.field-help { display: block; margin-top: 6px; color: #748198; font-size: 12px; }
.field-help + .error { margin-top: 2px; }

.option-field { padding-top: 4px; }
.choice-row { display: flex; gap: 10px; }
.choice-pill { margin: 0; }
.choice-pill input, .payment-choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-pill span {
  min-width: 74px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #d5dfdb;
  border-radius: 8px;
  background: white;
  transition: .2s;
}
.choice-pill input:checked + span { color: var(--teal-dark); border-color: var(--teal); background: #edf5ff; box-shadow: inset 0 0 0 1px var(--teal); }

.payment-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.payment-choice { min-width: 0; margin: 0; }
.payment-content {
  min-width: 0;
  min-height: 96px;
  padding: 17px;
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid #d5dfdb;
  border-radius: 11px;
  background: rgba(255,255,255,.84);
  transition: .2s;
}
.payment-content > span:nth-child(2) { min-width: 0; }
.payment-content strong,
.payment-content small { overflow-wrap: anywhere; }
.payment-choice input:checked + .payment-content { border-color: var(--teal); box-shadow: inset 0 0 0 1px var(--teal); background: #f3f8ff; }
.payment-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: var(--teal); background: #e8f2ff; }
.payment-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.payment-content strong { display: block; margin-bottom: 4px; font-size: 14px; }
.payment-content small { display: block; color: var(--muted); font-size: 12px; line-height: 1.45; }
.payment-content i { width: 16px; height: 16px; border: 1px solid #bdc8c5; border-radius: 50%; }
.payment-choice input:checked + .payment-content i { border: 5px solid var(--teal); }

.bank-transfer-details {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #cbd9ec;
  border-radius: 11px;
  background: #edf4ff;
}

.bank-transfer-details[hidden] { display: none; }
.bank-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.bank-heading > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--teal-dark); background: white; }
.bank-heading svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.bank-heading strong { display: block; margin-bottom: 2px; font-size: 14px; }
.bank-heading small { color: var(--muted); font-size: 12px; }
.bank-transfer-details dl { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 15px; }
.bank-transfer-details dl div { padding: 9px 11px; border-radius: 7px; background: rgba(255,255,255,.78); }
.bank-transfer-details dt { margin-bottom: 3px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.bank-transfer-details dd { margin: 0; color: var(--ink); font-size: 13px; font-weight: 700; line-height: 1.5; overflow-wrap: anywhere; }
.bank-transfer-details > p { margin: 14px 0 0; color: #58647b; font-size: 12px; line-height: 1.55; }
.bank-transfer-details a { color: var(--teal-dark); font-weight: 700; }

.checkout-bar {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 35px rgba(21,60,57,.08);
}
.checkout-bar > div > span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; }
.checkout-bar strong { font-family: Manrope, sans-serif; font-size: 24px; letter-spacing: -.03em; }
.checkout-bar strong small { font-size: 10px; letter-spacing: .06em; color: var(--muted); }
.checkout-bar button {
  min-height: 52px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--teal);
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, background .2s;
}
.checkout-bar button:hover { background: var(--teal-dark); transform: translateY(-1px); }
.checkout-bar button:disabled { cursor: wait; opacity: .65; transform: none; }
.checkout-bar button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.terms { margin: 16px 0 0; text-align: center; color: #7d898f; font-size: 12px; line-height: 1.5; }

.payment-provider {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #8994a8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.payment-provider img { width: 112px; height: auto; }

.tracking-card {
  margin-top: 46px;
  padding: 25px;
  border: 1px solid #cfddf3;
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #f0f6ff);
  box-shadow: 0 10px 30px rgba(29,48,114,.07);
}
.tracking-heading { display: flex; align-items: flex-start; gap: 14px; }
.tracking-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: white; background: var(--teal); }
.tracking-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.tracking-heading .step-label { margin: 1px 0 5px; color: var(--teal); font-size: 11px; }
.tracking-heading h3 { margin: 0; font: 800 18px Manrope, sans-serif; }
.tracking-heading p:last-child { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.tracking-form { margin-top: 20px; }
.tracking-form label { margin-bottom: 7px; }
.tracking-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.tracking-form button { padding: 0 17px; border: 0; border-radius: 8px; color: white; background: var(--teal-dark); font-size: 13px; font-weight: 700; }
.tracking-form button:disabled { opacity: .6; }
.tracking-error { min-height: 18px; margin: 6px 0 0; color: var(--danger); font-size: 12px; }
.tracking-result { margin-top: 18px; padding: 18px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.tracking-status { padding-left: 12px; border-left: 4px solid var(--teal); }
.tracking-result[data-status="paid"] .tracking-status { border-color: #087a55; }
.tracking-result[data-status="failed"] .tracking-status,
.tracking-result[data-status="cancelled"] .tracking-status { border-color: var(--danger); }
.tracking-status span { font-weight: 800; font-size: 15px; }
.tracking-status p { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.tracking-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.tracking-grid div { min-width: 0; padding: 10px; border-radius: 7px; background: var(--cream); }
.tracking-grid span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.tracking-grid strong { display: block; margin-top: 4px; overflow-wrap: anywhere; font-size: 13px; line-height: 1.45; }

.form-alert { margin: -18px 0 20px; padding: 13px 15px; border-radius: 8px; color: #7a271a; background: #fee4e2; font-size: 12px; line-height: 1.5; }

.policy-consent {
  margin: -12px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.72);
}

.policy-consent label {
  margin: 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #4d5870;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.policy-consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.custom-checkbox {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border: 1px solid #b8c4d7;
  border-radius: 5px;
  background: white;
  transition: .2s;
}
.custom-checkbox svg { width: 14px; fill: none; stroke: white; stroke-width: 2.5; opacity: 0; }
.policy-consent input:checked + .custom-checkbox { border-color: var(--teal); background: var(--teal); }
.policy-consent input:checked + .custom-checkbox svg { opacity: 1; }
.policy-consent input:focus-visible + .custom-checkbox { box-shadow: 0 0 0 3px rgba(1,118,255,.15); }
.policy-consent a { color: var(--teal-dark); font-weight: 700; }

.modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(4,31,31,.72);
  backdrop-filter: blur(7px);
}
.modal[hidden] { display: none; }
.modal-card { width: min(440px, 100%); padding: 42px; text-align: center; border-radius: 20px; background: var(--cream); box-shadow: var(--shadow); }
.modal-card { position: relative; }
.modal-card .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  box-shadow: 0 4px 12px rgba(29,48,114,.08);
}
.modal-close:hover { color: white; border-color: var(--teal-dark); background: var(--teal-dark); }
.modal-close svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.success-check { width: 66px; height: 66px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--lime); }
.success-check svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 2; }
.modal-card .eyebrow { color: var(--teal); margin-bottom: 10px; }
.modal-card h2 { margin: 0 0 12px; font-family: Manrope, sans-serif; font-size: 34px; }
.modal-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.reference-box { margin: 25px 0; padding: 15px; border-radius: 10px; background: white; }
.reference-box span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.reference-box strong { font-size: 14px; word-break: break-all; }
.modal-card button { width: 100%; height: 48px; border: 0; border-radius: 9px; color: white; background: var(--teal); font-weight: 700; }

.outcome-card {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.outcome-card .outcome-content {
  color: var(--muted);
  text-align: left;
  font-size: 14px;
  line-height: 1.65;
}

.outcome-card .outcome-content > p:first-child { margin-top: 0; }
.outcome-card .outcome-content a { color: var(--teal-dark); font-weight: 700; }
.modal[data-type="failure"] .success-check { color: white; background: #d92d20; }
.modal[data-type="bank"] .success-check { color: white; background: var(--teal); }

.outcome-bank-details {
  margin: 15px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.outcome-bank-details div {
  padding: 11px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.outcome-bank-details div:last-child { grid-column: 1 / -1; }
.outcome-bank-details dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.outcome-bank-details dd { margin: 3px 0 0; color: var(--ink); font-weight: 700; overflow-wrap: anywhere; }
.proof-note { padding: 11px 13px; border-radius: 8px; background: #edf4ff; }

.outcome-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.outcome-actions a,
.outcome-actions button {
  min-height: 44px;
  width: 100%;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.outcome-actions .primary-action { border: 0; color: white; background: var(--teal); }
.outcome-actions .secondary-action { border: 1px solid #cbd6e6; color: var(--teal-dark); background: white; }

@media (max-width: 980px) {
  .brand-name { display: none; }
  .layout { grid-template-columns: 1fr; }
  .intro-panel { min-height: auto; padding-top: 65px; padding-bottom: 65px; gap: 65px; }
  .intro-content,
  .trust-card { width: min(720px, 100%); }
  .form-wrap { padding-top: 60px; }
}

@media (max-width: 760px) {
  .topbar-inner { padding-inline: 24px; }
  .form-wrap { width: calc(100% - 40px); }
  .two-columns,
  .address-grid,
  .payment-choices { grid-template-columns: 1fr; gap: 0; }
  .input-hint-row input { padding-right: 15px; }
  .format-hint { position: static; display: block; margin-top: 6px; transform: none; }
  .checkout-bar { align-items: stretch; flex-direction: column; }
  .checkout-bar button { width: 100%; }
}

@media (max-width: 640px) {
  .topbar { height: 68px; }
  .topbar-inner { padding: 0 20px; }
  .partnership-logo { width: 205px; }
  .brand-name { display: none; }
  .top-nav a { padding: 8px; font-size: 0; }
  .top-nav a[href="/track.html"]::after { content: "Track"; font-size: 12px; }
  .top-nav a[href="/"]::after { content: "Pay"; font-size: 12px; }
  .layout { display: block; }
  .intro-panel { padding: 50px 24px; }
  .intro-content h1 { font-size: 44px; }
  .intro-content h1 span { display: inline; }
  .intro-content h1 span + span::before { content: " "; }
  .form-wrap { width: calc(100% - 32px); padding: 46px 0 60px; }
  .acceptance-note { grid-template-columns: 1fr; padding: 20px; }
  .bank-transfer-details dl { grid-template-columns: 1fr; }
  .payment-provider { flex-direction: column; }
  .tracking-form > div, .tracking-grid { grid-template-columns: 1fr; }
  .tracking-form button { min-height: 46px; }
  .modal-card { padding: 34px 24px; }
  .outcome-bank-details, .outcome-actions { grid-template-columns: 1fr; }
  .outcome-bank-details div:last-child { grid-column: auto; }
}

@media (max-width: 760px) {
  input,
  select {
    font-size: 16px;
  }
  .form-heading h2 { font-size: clamp(30px, 9vw, 40px); }
  .modal-card h2 { font-size: 29px; }
}
