:root {
  --color-primary: #262aff;
  --color-subtle-bg: #f4f4f4;
  --color-black: #000000;
  --color-secondary-black: #0c0c0c;
  --color-subtle-text: #596063;
  --color-muted: #747474;
  --color-border: #c4c4c4;
  --color-white: #ffffff;
  --color-overlay: rgba(10, 12, 36, 0.54);
  --container-width: 1440px;
  --content-width: 1280px;
  --gutter: 1rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --transition-base: 180ms ease;
}

/* Fonts */
@font-face {
  font-family: "GP Commerce";
  src: url("https://discover-lp.globalpayments.com/rs/855-OAG-081/images/GPCommerce-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "GP Commerce";
  src: url("https://discover-lp.globalpayments.com/rs/855-OAG-081/images/GPCommerce-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GP Commerce";
  src: url("https://discover-lp.globalpayments.com/rs/855-OAG-081/images/GPCommerce-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GP Commerce";
  src: url("https://discover-lp.globalpayments.com/rs/855-OAG-081/images/GPCommerce-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "GP Commerce";
  src: url("../fonts/GPCommerce-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

body {
  margin: 0;
  font-family: "GP Commerce", Helvetica, Arial, sans-serif;
  color: var(--color-black);
  background: var(--color-white);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.flex-1 {
  flex: 1;
}

sup {
  font-size: 0.5rem;
}

/* Layout Helpers */
.container {
  width: 100%;
  max-width: calc(var(--container-width) + (var(--gutter) * 2));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.content-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  padding-block: 1rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.phone-link {
  font-size: 1rem;
  font-weight: 600;
}

.lang-version {
  font-weight: bold;
}

.phone-link:hover,
.lang-version:hover {
  color: var(--color-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: none;
}

.button--primary {
  padding: 0.875rem 2rem;
  font-weight: 500;
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.button--primary:hover {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.button--primary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button--large {
  padding-inline: 2rem;
}

/* Hero */
.hero {
  display: grid;
  gap: 1.5rem;
  padding: 4.375rem 0 2rem;
  max-width: 68.75rem;
}

.hero[hidden],
.result-screen[hidden] {
  display: none;
}

.hero__headline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero__headline p {
  width: 52%;
  font-size: clamp(1rem, 4.1vw, 0.5rem);
  text-align: center;
  line-height: 1.2;
  margin: 0;
  padding-top: 1rem;
}

.hero h1 {
  max-width: 75%;
  text-align: center;
  font-size: clamp(1.75rem, 4.1vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero__benefits {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 70px;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: 22px;
  color: var(--color-black);
  box-shadow: 0px 2.5rem 3.75rem 0px #00000014;
}

.benefit-pill__icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  flex-shrink: 0;
  font-size: 0.625rem;
}

.benefit-pill span {
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.9rem;
}

.hero__visual {
  display: flex;
  align-items: flex-start;
}

.awards {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 2rem;
  filter: grayscale(1);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 20;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: -1;
  pointer-events: none;
}

.modal__dialog {
  position: relative;
  width: min(100%, 38rem);
  padding: 2.5rem;
  padding-top: 1.375rem;
  background: var(--color-white);
  border-radius: 1.25rem;
  border: 1px solid #ececf2;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-shrink: 0;

  min-height: 34rem;
}

.flow-step {
  display: none;
}

.flow-step.is-active {
  display: block;
}

/* FLOW CONTAINER HEADER & BACK BUTTON ARCHITECTURE */
.flow-step__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: 1.5rem;
}

.flow-step__back {
  display: none; /* Injected dynamically via script orchestration runtime */
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid #e1e1ed;
  border-radius: 50%;
  color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.flow-step__back:hover {
  background-color: #f4f6ff;
  border-color: var(--color-primary);
}
/*
.flow-step__back .back-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
} */

.flow-step__header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-black);
  flex: 1;
}

.flow-step__header p {
  color: #5a5a5a;
  margin-top: var(--space-1);
}

.flow-step__header--zip {
  display: block; /* Preserve original stacked paragraph design on Zip view */
  max-width: 34rem;
}

.option-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color var(--transition-base), opacity var(--transition-base);
}

.option-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  background: #fdfdfd;
}

.option-card input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--color-primary);
}

.option-card span {
  font-size: 1.5rem;
  line-height: 1;
}

.flow-step__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.zip-form {
  margin-top: 1.5rem;
  min-height: 14rem;
}

.input-field {
  display: grid;
  gap: 0.65rem;
}

.input-field span {
  font-weight: 600;
}

.input-field input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  transition: none;
}

.input-field input:focus {
  border-color: rgba(38, 42, 255, 0.55);
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.flow-step__footer--zip {
  justify-content: flex-end;
  margin-top: 6rem;
}

/* Result Section */
.result-screen {
  background: var(--color-subtle-bg);
}

.result-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ececf2;
}

.result-hero__copy {
  padding: 6.25rem 2rem 2rem 0rem;
}

.result-hero__copy h1 {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: left;
  max-width: none;
}

.result-hero__copy > p {
  max-width: 30rem;
  margin: 0 0 1rem;
  color: var(--color-subtle-text);
  font-size: 1rem;
  line-height: 1.625;
}

.result-hero__note a,
.consultant-card__schedule a,
.consultant-card__zip a {
  color: var(--color-primary);
}

.result-hero__note a {
  text-decoration: underline;
}

.result-hero__note a:hover {
  text-decoration: none;
}

.consultant-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  min-height: 26.25rem;
  margin-top: 1.25rem;
  position: absolute;
}

[hidden] {
  display: none !important;
}

.cardVariant:not([hidden]) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: inherit;
  border: 0.063px solid #f0f0f0;
  width: 23rem;
  box-shadow: 0px 0px 1.25rem 0px #0000001a;
  border-radius: 1.25rem;
  background: var(--color-white);
}

.cardVariant:not([hidden]) .operating-details {
  margin-top: auto;
}

#defaultCardVariant:not([hidden]) .consultant-card__zip {
  margin-top: -0.8rem;
}

.card-wrapper {
  padding: 2rem 2rem 0 2rem;
}

.consultant-card__eyebrow,
.consultant-card__body,
.consultant-card__person p,
.consultant-card__zip span {
  margin: 0;
}

.consultant-card__eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.375rem;
}

.consultant-card__body {
  font-size: 1rem;
  line-height: 1.55;
}

.consultant-card__person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.consultant-card__avatar {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #e5e7ef;
  color: #3a3a3a;
  font-weight: 600;
  font-size: 0.8rem;
  overflow: hidden;
}

.consultant-card__avatar img {
  object-fit: cover;
}

.consultant-card__person p {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}

.consultant-card__person span {
  font-size: 0.75rem;
  font-weight: 400;
}

#executivePhone {
  margin-top: 0.375rem;
  color: var(--color-primary);
}

.consultant-card__phone {
  display: flex;
  margin-top: 1.5rem;
  color: var(--color-secondary-black);
  line-height: 1.3;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 0.625rem;
  padding-top: 2rem;
}

.consultant-card__phone img {
  width: 1.875rem;
  height: 1.875rem;
}

.operating-details {
  padding: 0 2rem 2rem;
}

.operating-details span {
  color: var(--color-primary);
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 500;
}

.operating-details .hours span {
  color: var(--color-secondary-black);
  font-weight: 400;
}

.consultant-card__schedule {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.5rem;
}

.consultant-card__schedule span {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.consultant-card__schedule .schedule {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.consultant-card__schedule a {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.consultant-card__zip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding-inline: 2rem;
  padding-block: 0.625rem;
  background: #dcf3ff;
  font-size: 0.875rem;
  font-weight: bold;
  color: #595959;
  border-radius: 0 0 1.25rem 1.25rem;
}

.consultant-card__zip .edit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.consultant-card__zip a {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.support-strip {
  color: var(--color-white);
  background: var(--color-primary);
}

.support-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 1rem 2rem;
  gap: 2rem;
}

.support-strip__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-strip__media img {
  max-width: 100%;
  height: auto;
}

body.result-mode .phone-link {
  display: none;
}

.support-strip__copy {
  margin-left: 3rem;
}

.support-strip__copy h2,
.support-strip__copy p {
  margin: 0;
}

.support-strip__copy h2 {
  font-size: 2.375rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.support-strip__copy p {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.support-strip__button {
  margin-top: 1.4rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  background: var(--color-white);
  cursor: pointer;
}

.support-strip__button:hover {
  background: #ededed;
}

/* FOOTER */
.result-footer {
  background: var(--color-black);
  color: #fff;
  padding-block: 4rem;
}

.footer-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "logo col1 col2 login social";
  gap: 2.5rem;
}

.footer-wrapper .logo img {
  height: unset;
  width: 12rem;
}

.footer-wrapper .col1 {
  grid-area: col1;
}

.footer-wrapper .col2 {
  grid-area: col2;
}

.footer-wrapper .login-section {
  grid-area: login;
}

.footer-wrapper .social {
  grid-area: social;
}

.footer-wrapper li {
  margin-bottom: 0.625rem;
  white-space: nowrap;
}

.footer-wrapper a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: anchor-center;
  justify-content: center;
  gap: 0.625rem;
  line-height: 1.2;
}

.footer-wrapper a img {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-wrapper a:hover {
  text-decoration: underline;
}

.footer-wrapper .login-section p {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-wrapper .login-section a {
  border: 0.125rem solid var(--color-white);
  background: transparent;
  color: var(--color-white);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-wrapper .login-section a:hover {
  background: #fff;
  color: #000;
}

.footer-wrapper .social p {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.divider {
  border-top: 0.063rem solid var(--color-white);
  margin: 3.125rem auto;
}

.bottom {
  margin: auto;
  font-size: 0.875rem;
}

.bottom p {
  margin-bottom: 1rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}

.legal-links a {
  text-decoration: underline;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "logo logo"
      "col1 col2"
      "login social";
  }
}

@media (max-width: 500px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "col1"
      "col2"
      "login"
      "social";
  }

  .cardVariant:not([hidden]) {
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__copy {
    max-width: 50rem;
    margin: 0 auto;
    width: 100%;
  }

  .result-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .support-strip__inner,
  .result-footer__links {
    grid-template-columns: 1fr;
  }

  .result-footer__top {
    flex-direction: column;
  }

  .result-hero__media {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    max-width: none;
    height: auto;
  }

  .result-hero__media img {
    object-fit: cover;
    max-width: 100%;
  }

  .result-hero__copy {
    padding: 2.25rem 0rem;
  }

  .result-hero__copy h1 {
    margin-top: 0;
    font-size: clamp(2.6rem, 8vw, 3.4rem);
  }

  .support-strip__inner {
    padding: 2rem 1.5rem;
  }

  .support-strip__copy {
    text-align: center;
    margin-left: 0;
  }

  .support-strip__copy p {
    max-width: none;
  }

  .support-strip__button {
    width: 100%;
    max-width: 12rem;
  }

  .consultant-card {
    width: 100%;
    position: relative;
  }
}

@media (max-width: 768px) {
  .hero__actions,
  .flow-step__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .phone-link {
    font-size: 1.1rem;
    text-align: center;
    display: none;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__headline p {
    width: 100% !important;
  }

  .hero__content {
    gap: 2rem;
  }

  .hero__benefits {
    margin-top: 0;
  }

  .awards {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
  }

  .modal__dialog {
    padding: 1.4rem;
    border-radius: 24px;

  }

  .option-card span {
    font-size: 1.25rem;
  }

  .result-hero__copy {
    padding: 1.5rem 0rem;
  }

  .result-hero__copy h1 {
    font-size: 2.4rem;
    line-height: 1.05;
  }

  .result-hero__copy > p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .consultant-card {
    width: 100%;
    position: relative;
  }

  .card-wrapper,
  .consultant-card__zip {
    padding-inline: 1rem;
  }

  .consultant-card__phone {
    font-size: 1.35rem;
  }

  .consultant-card__zip {
    flex-wrap: wrap;
  }

  .support-strip {
    min-height: auto;
  }

  .support-strip__inner {
    padding: 1.5rem 1rem 3rem;
    gap: 1.5rem;
  }

  .support-strip__copy h2 {
    font-size: 1.75rem;
  }

  .support-strip__copy p {
    font-size: 0.88rem;
  }

  .result-footer {
    padding: 1.25rem 1rem;
  }

  .result-footer__top {
    gap: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .result-footer__links {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__content {
    gap: 1rem;
  }

  .hero__headline br {
    display: none;
  }

  .site-header__actions {
    gap: 0.75rem;
  }

  .site-header__actions .button {
    width: 100%;
  }

  .benefit-pill span {
    white-space: unset;
  }

  .phone-link {
    font-size: 1rem;
  }

  .result-hero__copy h1 {
    font-size: 2rem;
  }

  .consultant-card__person {
    align-items: flex-start;
  }

  .consultant-card__phone {
    font-size: 1.2rem;
  }

  .support-strip__button {
    max-width: none;
  }

  .modal,
  .modal__dialog {
    padding: 1rem;
min-height: auto;
  }
}

@media (max-width: 400px) {
  .site-header__inner {
    flex-direction: column;
    gap: var(--space-1);
  }

  .site-header__inner .brand img {
    width: unset;
  }
}

/* FIX FOR LANDSCAPE FOOTER GAP */
@media (max-height: 500px) {
  .modal {
    align-items: flex-start;
  }

  .modal__dialog {
    padding: 1.5rem;
    margin-top: 1rem;

  }

  .flow-step__footer--zip {
    margin-top: 2rem;
  }
}

.lang-switcher {
  display: inline-flex;
  background: #dcf3ff;
  border-radius: 100px;
  padding: 5px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.lang-btn.active {
  background: #fff;
  color: #262aff;
  font-weight: 700;
}

.modal_lang_container {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0.875rem;
}

/* Invisible bold placeholder workaround for tracking spacing shift */
.lang-btn::after {
  content: attr(data-lang-text);
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
}

@media (max-width: 991px) {
  .site-header__actions {
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .site-header__actions {
    gap: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .hero {
    padding: 3.375rem 0 2rem;
  }
}


/* ==========================================================================
   MODAL UTILITY SUB-HEADER: DYNAMIC CONTROLS & COMPONENT ALIGNMENT
   ========================================================================== */

.modal_lang_container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Keeps back button left-aligned and lang toggles right-aligned */
  width: 100%;
  padding-bottom: 1.25rem;
  min-height: 4rem;
  /* border-bottom: 1px solid #f0f0f5;
  margin-bottom: 1.5rem; */
}

/* Back navigation architecture styling updates */
.modal_lang_container .flow-step__back {
  display: none; /* Controlled dynamically via runtime js orchestration layer */
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  /* border: 1px solid #e1e1ed; */
  border: none;
  border-radius: 50%;
  color: var(--color-primary); /* Exact match #262aff */
  cursor: pointer;


  background: transparent url('https://discover-lp.globalpayments.com/rs/855-OAG-081/images/Back_button_default.svg') no-repeat center;
  background-size: 1.75rem; /* Adjust sizes easily here if needed */

  /* 2. Transition both border and background-image properties */
  transition: border-color var(--transition-base), background-image var(--transition-base);

  /* transition: background-color var(--transition-base), border-color var(--transition-base); */
}

.modal_lang_container .flow-step__back:hover {
  /* background-color: #f4f6ff; */
  border-color: var(--color-primary);
background-image: url('https://discover-lp.globalpayments.com/rs/855-OAG-081/images/Back_button_hover.svg');
}

.modal_lang_container .flow-step__back .back-icon {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

/* Language toggle container override alignment rules */
.lang-switcher {
  display: inline-flex;
  background: #dcf3ff;
  border-radius: 100px;
  padding: 5px;
  margin-left: auto; /* Fallback insurance to lock toggle grouping to right perimeter wall */
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.lang-btn.active {
  background: #fff;
  color: var(--color-primary); /* Linked directly to token variable path */
  font-weight: 700;
}

/* Clear duplicate elements out from nested templates to prevent styling contamination */
.flow-step__header {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}

.flow-step__header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-black);
}

.flow-step__back.is-disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none; /* Block native hover/click interactions entirely */
}


.flow-step[data-step="segment"] .option-list{
/* gap: 2.5rem; */
    /* gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem; */
}

/* .flow-step[data-step="revenue"] .option-list{
margin-top: 0;
} */