:root {
  --blue: #287fc4;
  --blue-dark: #1167aa;
  --blue-pale: #eaf4fb;
  --red: #d9343f;
  --green: #168b61;
  --green-pale: #e9f6f0;
  --amber: #b86400;
  --amber-pale: #fff5dd;
  --ink: #333;
  --muted: #666;
  --line: #d9dfe4;
  --surface: #f5f6f7;
  --white: #fff;
  --shadow: 0 14px 38px rgba(20, 59, 87, .1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

button, input, select { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.prototype-banner {
  min-height: 38px;
  padding: 8px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: #173f5f;
  font-size: 13px;
}

.prototype-banner span { opacity: .84; }
.prototype-banner .text-button { margin-left: auto; }

.text-button {
  border: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.brand-row {
  height: 82px;
  display: grid;
  grid-template-columns: 195px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand-crop {
  position: relative;
  display: block;
  width: 190px;
  height: 66px;
  overflow: hidden;
}

.brand-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.search-shell {
  height: 46px;
  padding: 0 18px 0 49px;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #5d656a;
  border-radius: 7px;
  color: #666;
  background: #fff;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  background: #333;
  transform: rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-button, .round-action {
  border: 0;
  background: transparent;
}

.country-button {
  padding: 7px 3px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg) translateY(-2px);
}

.round-action {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  color: #fff;
  background: #087dbd;
}

.person-icon {
  width: 9px;
  height: 9px;
  position: relative;
  border-radius: 50%;
  background: #fff;
}

.person-icon::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 11px;
  width: 17px;
  height: 10px;
  border-radius: 10px 10px 4px 4px;
  background: #fff;
}

.basket-action {
  color: #087dbd;
  background: #fff;
  border: 2px solid #087dbd;
}

.basket-action b {
  position: absolute;
  right: -3px;
  top: -5px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #087dbd;
  font-size: 9px;
}

.mini-basket {
  width: 16px;
  height: 11px;
  border: 2px solid #087dbd;
  border-radius: 1px 1px 5px 5px;
}

.mini-basket::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 6px;
  left: 10px;
  top: 7px;
  border-left: 2px solid #087dbd;
  transform: rotate(24deg);
}

.main-nav {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #333;
  font-size: 11px;
  white-space: nowrap;
}

.nav-business { color: #0074b7; }
.nav-clearance { color: #dc1f36; }

.promotion-strip {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0589c6;
  font-size: 14px;
}

.service-strip {
  min-height: 34px;
  padding: 0 max(18px, calc((100vw - 1244px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #3f3f3f;
  background: #f4f4f2;
  font-size: 10px;
}

.stars {
  padding: 1px 3px;
  color: #fff;
  background: #4f8c65;
  letter-spacing: 1px;
}

.payment-marks { font-size: 9px; font-weight: 700; }

.page-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 54px 24px 80px;
}

.gateway-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.gateway-intro > p:last-child,
.route-heading > p {
  color: var(--muted);
  font-size: 18px;
}

.activation-prompt {
  margin-top: 24px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.alert-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.activation-prompt > div {
  flex: 1;
}

.activation-prompt strong {
  display: block;
  margin-bottom: 2px;
  color: #444;
  font-size: 14px;
}

.activation-prompt span:not(.alert-icon) {
  color: var(--muted);
  font-size: 13px;
}

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

.gateway-card {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #dfe4e8;
  border-radius: 11px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gateway-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 21px;
  font-weight: 700;
}

.new-icon {
  color: #fff;
  background: var(--green);
  font-size: 29px;
  font-weight: 400;
}

.gateway-copy {
  flex: 1;
}

.gateway-label {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gateway-copy h2 {
  margin-bottom: 9px;
  color: #3f3f3f;
  font-size: 24px;
  line-height: 1.15;
}

.gateway-copy > p:last-child {
  color: var(--muted);
}

.gateway-button {
  width: 100%;
  margin-top: 20px;
}

.account-route {
  min-height: 520px;
}

.text-link-button {
  padding: 0;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.route-back {
  margin-bottom: 30px;
  font-size: 14px;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 55px;
  align-items: start;
}

.route-heading {
  padding-top: 20px;
}

.route-heading h1 {
  font-size: clamp(34px, 4vw, 44px);
}

.route-form {
  padding: 34px;
  display: grid;
  gap: 22px;
  border: 1px solid #e1e5e8;
  border-radius: 11px;
  background: #fff;
  box-shadow: var(--shadow);
}

.route-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.compact-check {
  margin: 0;
}

.route-submit {
  width: 100%;
}

.route-help {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.route-benefits {
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--green);
  background: var(--green-pale);
}

.route-benefits strong,
.route-benefits span,
.prototype-result strong,
.prototype-result span {
  display: block;
}

.route-benefits strong {
  margin-bottom: 4px;
  color: #216044;
}

.route-benefits span {
  color: #4f6e61;
  font-size: 14px;
}

.prototype-result {
  padding: 16px 18px;
  border: 1px solid #9bd2ba;
  border-radius: 6px;
  color: #0b6846;
  background: var(--green-pale);
}

.prototype-result strong {
  margin-bottom: 3px;
}

.prototype-result span {
  font-size: 14px;
}

.intro { max-width: 720px; }
.intro .route-back { display: block; }
.eyebrow, .step-label {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.08;
}

.intro > p:last-child, .section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.stepper {
  margin: 42px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.stepper li {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, max-content);
  align-items: center;
  column-gap: 9px;
  color: #8a9298;
  font-size: 13px;
}

.stepper li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(32px + 9px + var(--label-width, 90px) + 12px);
  right: 12px;
  top: 16px;
  height: 2px;
  background: var(--line);
}

.stepper span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-weight: 700;
}

.stepper b {
  position: relative;
  z-index: 1;
  padding-right: 7px;
  background: var(--white);
  white-space: nowrap;
}

.stepper li:nth-child(1) { --label-width: 82px; }
.stepper li:nth-child(2) { --label-width: 74px; }
.stepper li:nth-child(3) { --label-width: 82px; }

.stepper li.active, .stepper li.complete { color: var(--blue-dark); }
.stepper li.active span { border-color: var(--blue); color: #fff; background: var(--blue); }
.stepper li.complete span { border-color: var(--green); color: #fff; background: var(--green); }
.stepper li.complete::after { background: var(--green); }

#onboardingForm {
  overflow: hidden;
  border: 1px solid #e1e5e8;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-step { display: none; padding: 44px 48px 34px; }
.form-step.active { display: block; animation: step-in .22s ease-out; }

@keyframes step-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

.section-heading { max-width: 730px; margin-bottom: 32px; }
.section-heading h2 {
  margin-bottom: 8px;
  color: #3f3f3f;
  font-size: 29px;
  line-height: 1.2;
}

.choice-grid, .payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.choice-card {
  min-height: 205px;
  padding: 30px;
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  align-items: start;
  gap: 18px;
  position: relative;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.choice-card:hover { border-color: #91bfe1; transform: translateY(-2px); }
.choice-card:has(input:focus-visible) { outline: 3px solid rgba(40, 127, 196, .25); outline-offset: 3px; }
.choice-card:has(input:checked) { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40, 127, 196, .1); }
.choice-card input, .payment-card input { position: absolute; opacity: 0; pointer-events: none; }

.choice-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 23px;
  font-weight: 700;
}

.business-icon { color: #fff; background: var(--green); }
.choice-copy { display: flex; flex-direction: column; gap: 10px; }
.choice-copy strong { color: #444; font-size: 21px; }
.choice-copy small { max-width: 310px; color: var(--muted); font-size: 16px; }

.choice-tick {
  width: 28px;
  height: 28px;
  display: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.choice-card:has(input:checked) .choice-tick { display: grid; }

.benefit-confirmation {
  margin-top: 24px;
  padding: 21px 23px;
  border: 1px solid #b9d7ed;
  border-radius: 8px;
  background: #f5faff;
  animation: step-in .18s ease-out;
}

.benefit-confirmation.business-benefits,
.benefit-confirmation.credit-benefits {
  border-color: #acd5c3;
  background: var(--green-pale);
}

.benefit-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.benefit-check {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0;
}

.benefit-check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.business-benefits .benefit-check,
.credit-benefits .benefit-check {
  background: var(--green);
}

.benefit-heading strong,
.benefit-heading span {
  display: block;
}

.benefit-heading strong {
  margin-bottom: 2px;
  color: #334;
  font-size: 17px;
}

.benefit-heading div > span {
  color: var(--muted);
  font-size: 14px;
}

.benefit-list {
  margin: 17px 0 0 41px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 17px;
  color: #45525b;
  font-size: 14px;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.payment-benefits {
  margin-top: 18px;
}

.field-grid {
  display: grid;
  gap: 22px 24px;
}

.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.full-width { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { color: #444; font-size: 14px; font-weight: 700; }
em { color: var(--red); font-style: normal; }

.field input, .field select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #ccd4d9;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field input:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(40, 127, 196, .15);
}

.field input.invalid, .field select.invalid { border-color: var(--red); }
.field > small { color: var(--muted); font-size: 12px; }
.field-error, .inline-error { color: var(--red) !important; font-size: 13px !important; }
.inline-error:empty, .field-error:empty { display: none; }

.password-wrap { position: relative; }
.password-wrap input { padding-right: 62px; }
.show-password {
  position: absolute;
  right: 8px;
  top: 8px;
  height: 32px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.check-row {
  margin-top: 27px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #555;
  font-size: 14px;
}

.check-row input { width: 18px; height: 18px; accent-color: var(--blue); }

.vat-panel, .credit-panel {
  margin-top: 30px;
  padding: 28px;
  border-radius: 8px;
}

.vat-panel { border: 1px solid #b9d7ed; background: var(--blue-pale); }
.credit-panel { border-left: 5px solid var(--blue); background: var(--surface); }

.vat-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.eu-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.vat-heading h3, .subsection-heading h3 { margin-bottom: 5px; color: #3d3d3d; font-size: 22px; }
.vat-heading p, .subsection-heading p { margin-bottom: 0; color: var(--muted); }
.vat-entry {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 15px;
}

.vat-validate-button {
  margin-top: 27px;
  min-height: 48px;
}

.vat-result {
  margin-top: 18px;
  padding: 15px 17px;
  display: none;
  border-radius: 5px;
  font-size: 14px;
}

.vat-result.visible { display: block; }
.vat-result.valid { color: #0b6846; background: var(--green-pale); border: 1px solid #9bd2ba; }
.vat-result.invalid { color: #93400c; background: var(--amber-pale); border: 1px solid #edc983; }
.vat-result strong { display: block; margin-bottom: 3px; }

.payment-section {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}

.payment-section legend { color: #444; font-size: 23px; font-weight: 700; }
.payment-section > p { color: var(--muted); }

.payment-card {
  min-height: 105px;
  padding: 22px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 13px;
  position: relative;
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.payment-card:has(input:checked) { border-color: var(--green); background: var(--green-pale); }
.payment-card:has(input:focus-visible) { outline: 3px solid rgba(40, 127, 196, .25); }
.radio-dot {
  width: 21px;
  height: 21px;
  border: 2px solid #bbc7cf;
  border-radius: 50%;
}

.payment-card:has(input:checked) .radio-dot { border: 6px solid var(--green); }
.payment-card strong, .payment-card small { display: block; }
.payment-card strong { color: #444; font-size: 18px; }
.payment-card small { margin-top: 4px; color: var(--muted); font-size: 13px; }

.subsection-heading { margin-bottom: 24px; }
.subsection-heading > span {
  display: inline-block;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 20px;
  color: #804700;
  background: #ffe6ac;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.currency-input { display: flex; }
.currency-input > span {
  width: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #ccd4d9;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  background: #eef1f3;
}
.currency-input input { border-radius: 0 3px 3px 0; }

.form-actions {
  padding: 22px 48px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #e1e5e8;
  background: var(--surface);
}

.primary-button, .secondary-button, .back-button {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 700;
}

.primary-button { border: 2px solid var(--blue); color: #fff; background: var(--blue); }
.primary-button:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.secondary-button { border: 2px solid var(--blue); color: var(--blue-dark); background: #fff; }
.back-button { border: 1px solid #aeb9c0; color: #555; background: #fff; }

.review-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}

.review-list {
  margin: 0;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-content: start;
}

.review-list dt, .review-list dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.review-list dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.review-list dd { color: #333; font-weight: 700; }

.outcome-card {
  padding: 25px;
  align-self: start;
  border-radius: 9px;
  color: #fff;
  background: #173f5f;
}

.outcome-card .outcome-status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 16px;
  color: #173f5f;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.outcome-card h3 { font-size: 23px; }
.outcome-card p { margin-bottom: 12px; color: #d8e5ed; }
.outcome-card ul { margin: 16px 0 0; padding-left: 20px; }
.outcome-card li { margin-bottom: 8px; }
.terms-row { margin-top: 34px; }

.success-state {
  padding: 70px 50px;
  text-align: center;
  border: 1px solid #bae0ce;
  border-radius: 12px;
  background: var(--green-pale);
  box-shadow: var(--shadow);
}

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 34px;
  font-weight: 700;
}

.success-state h2 { color: #23543f; font-size: 32px; }
.success-state > p { max-width: 650px; margin-left: auto; margin-right: auto; color: #4f6e61; }
.success-summary {
  max-width: 700px;
  margin: 28px auto;
  padding: 18px;
  border-radius: 7px;
  background: #fff;
  color: #3f5a4e;
}

.site-footer {
  min-height: 110px;
  padding: 28px max(24px, calc((100vw - 1040px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #666;
  background: #f1f1f1;
  font-size: 13px;
}

.site-footer strong { color: var(--red); }
.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .main-nav { overflow: hidden; justify-content: flex-start; }
  .brand-row { grid-template-columns: 180px 1fr auto; }
  .brand-crop { width: 175px; }
  .service-strip span:nth-child(3), .payment-marks { display: none; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-card { min-height: 0; }
  .route-layout { grid-template-columns: 1fr; gap: 25px; }
  .route-heading { padding-top: 0; }
  .choice-grid, .payment-grid, .review-layout { grid-template-columns: 1fr; }
  .choice-card { min-height: 160px; }
  .stepper b { display: none; }
  .stepper li {
    display: flex;
    justify-content: center;
  }
  .stepper li:not(:last-child)::after {
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
  }
}

@media (max-width: 680px) {
  .prototype-banner { flex-wrap: wrap; gap: 4px 10px; }
  .prototype-banner .text-button { margin-left: 0; }
  .site-header { padding: 0 12px; }
  .search-shell, .main-nav { display: none; }
  .brand-row {
    height: 68px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .brand-crop { width: 180px; height: 62px; }
  .header-actions { gap: 7px; }
  .country-button { display: none; }
  .round-action { width: 32px; height: 32px; }
  .promotion-strip { min-height: 30px; padding: 5px 12px; text-align: center; font-size: 11px; }
  .service-strip {
    min-height: 29px;
    justify-content: center;
    padding: 5px 10px;
    text-align: center;
  }
  .service-strip span:first-child, .service-strip span:nth-child(3), .payment-marks { display: none; }
  .page-shell { padding: 32px 15px 60px; }
  .gateway-intro { margin-bottom: 23px; }
  .activation-prompt {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px;
  }
  .activation-prompt .text-link-button {
    margin-left: 45px;
  }
  .gateway-card { padding: 23px; }
  .gateway-icon { margin-bottom: 17px; }
  .route-layout { display: block; }
  .route-heading { margin-bottom: 24px; }
  .route-form { padding: 24px 20px; }
  .route-form-row { align-items: flex-start; flex-direction: column; }
  .form-step { padding: 30px 22px 24px; }
  .form-actions { padding: 18px 22px; }
  .two-column, .vat-entry { grid-template-columns: 1fr; }
  .vat-validate-button { margin-top: 0; }
  .full-width { grid-column: auto; }
  .choice-card {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 22px;
  }
  .choice-icon { width: 48px; height: 48px; }
  .choice-tick { position: absolute; top: 14px; right: 14px; }
  .benefit-confirmation { padding: 19px; }
  .benefit-list {
    margin-left: 0;
    grid-template-columns: 1fr;
  }
  .review-list { grid-template-columns: 1fr; }
  .review-list dt { padding-bottom: 2px; border-bottom: 0; }
  .review-list dd { padding-top: 0; }
  .site-footer { flex-direction: column; }
}
