.benefits-page main {
  --benefits-content-gutter: 100px;
  width: min(100%, 1300px);
  margin: 0 auto;
  color: var(--e-global-color-primary);
  background: var(--e-global-color-190e127);
  font-size: 17px;
  line-height: 1.4;
}

.benefits-page main h1,
.benefits-page main h2,
.benefits-page main h3,
.benefits-page main p,
.benefits-page main ul {
  margin-top: 0;
}

.benefits-hero {
  min-height: 118px;
  padding: 0 20px 10px;
  text-align: center;
  background: var(--e-global-color-190e127);
}

.benefits-hero h1 {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefits-hero p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefits-schedule {
  position: relative;
  z-index: 1;
  padding: 20px var(--benefits-content-gutter) 70px;
  background: var(--e-global-color-190e127);
}

.benefits-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.benefits-tab {
  position: relative;
  min-width: calc(25% - 8px);
  padding: 12px 30px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(30deg, var(--e-global-color-primary) 0%, #2696ad 100%);
  cursor: pointer;
  font-family: "Archivo Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: color .3s ease-in-out, background .3s ease-in-out;
}

.benefits-tab span {
  display: block;
}

.benefits-tab:hover,
.benefits-tab:focus-visible,
.benefits-tab.is-active {
  outline: none;
  color: var(--e-global-color-primary);
  background: radial-gradient(at top left, var(--e-global-color-85ec8f2) 0%, var(--e-global-color-secondary) 100%);
}

.benefits-tab::after {
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgb(255 255 255 / 60%) 50%, transparent 100%);
  content: "";
  pointer-events: none;
  transform: skewX(-20deg);
}

.benefits-tab.is-shining::after {
  animation: benefits-tab-shine .8s ease forwards;
}

@keyframes benefits-tab-shine {
  from { left: -150%; }
  to { left: 150%; }
}

.benefits-tab-panel:focus-visible {
  outline: 2px solid var(--e-global-color-primary);
  outline-offset: 6px;
}

.benefits-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.benefits-group {
  display: flex;
  width: calc(25% - 11.3px);
  padding: 10px;
  border-radius: 20px;
  flex-direction: column;
  background: linear-gradient(30deg, var(--e-global-color-secondary) 0%, var(--e-global-color-fe163ce) 100%);
}

.benefits-page .benefits-group h3 {
  margin: 8px 0 16px;
  color: var(--e-global-color-primary);
  font-family: "Archivo Narrow", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.benefits-table-row {
  display: flex;
  padding-left: 10px;
  gap: .5px;
  justify-content: space-between;
}

.benefits-table-row:not(:last-child) {
  margin-bottom: 1px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgb(255 255 255 / 50%);
}

.benefits-table-row span {
  width: 55%;
  padding: 5px;
  color: var(--e-global-color-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.benefits-table-row span:first-child {
  width: 40%;
  text-align: right;
}

.benefits-table-row.is-highlighted {
  border-radius: 10px;
  background: linear-gradient(30deg, var(--e-global-color-primary) 0%, #2696ad 100%);
}

.benefits-table-row.is-highlighted span {
  color: var(--e-global-color-secondary);
}

.benefits-pdf-button[hidden] {
  display: none;
}

.benefits-total {
  display: flex;
  margin-top: auto;
  padding: 5px 20px;
  border-radius: 20px;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(30deg, var(--e-global-color-primary) 0%, #2696ad 100%);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.benefits-total > span {
  font-size: 16px;
}

.benefits-total strong {
  display: flex;
  margin-top: 2px;
  align-items: center;
}

.benefits-total img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  object-fit: contain;
}

.benefits-panel-actions {
  display: flex;
  min-height: 0;
  margin-top: 50px;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.benefits-pdf-button {
  display: inline-flex;
  min-height: 35px;
  padding: 5px 20px;
  border-radius: 25px;
  gap: 0;
  align-items: center;
  color: var(--e-global-color-primary);
  background-image: radial-gradient(at top left, var(--e-global-color-85ec8f2) 0%, var(--e-global-color-secondary) 67%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.benefits-pdf-button img {
  width: 25px;
  height: 25px;
  margin-left: 10px;
}

.benefits-schedule-copy {
  color: var(--e-global-color-primary);
}

.benefits-page .benefits-footnote {
  margin: 20px 0 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.benefits-introduction {
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.benefits-introduction p {
  margin-bottom: 0;
}

.benefits-introduction p:first-child {
  margin-bottom: 10px;
}

.benefits-wave-section {
  --benefits-wave-height: 70px;
  position: relative;
}

.benefits-wave-clip {
  position: absolute;
  z-index: 3;
  top: -70px;
  right: 0;
  left: 0;
  height: 70px;
  overflow: hidden;
  pointer-events: none;
}

.benefits-wave-clip img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
}

.benefits-section-inner {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-extra {
  margin-top: 10px;
  padding: 0 var(--benefits-content-gutter) 100px;
  background-color: var(--e-global-color-secondary);
  background-image: linear-gradient(0deg, rgb(211 199 144 / 0%) 0%, var(--e-global-color-6b908e9) 100%);
}

.benefits-extra-heading-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--e-global-color-primary);
}

.benefits-extra h2 {
  width: calc(100% - 440px);
  margin: 0;
  color: var(--e-global-color-secondary);
  font-family: "Jost", Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefits-extra-columns {
  display: grid;
  min-height: 596px;
  grid-template-columns: calc(100% - 400px) 400px;
}

.benefits-loyalty-copy {
  padding: 0 40px 20px 0;
}

.benefits-loyalty-copy h3 {
  margin: 0 0 15px;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.benefits-loyalty-copy p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.4;
}

.benefits-loyalty-copy p:last-child {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--e-global-color-secondary);
}

.benefits-bonus-panel {
  padding: 40px 0 0 40px;
  border-left: 1px solid var(--e-global-color-primary);
}

.benefits-bonus-list {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.benefits-bonus-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.benefits-bonus-row > div {
  display: flex;
  width: calc(50% - 5px);
  min-height: 46px;
  padding: 5px 20px;
  border-radius: 15px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(30deg, var(--e-global-color-primary) 0%, #2696ad 100%);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.benefits-bonus-row > div:first-child strong {
  color: var(--e-global-color-secondary);
  font-size: 20px;
  font-weight: 800;
}

.benefits-bonus-row img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  object-fit: contain;
}

.benefits-page .benefits-bonus-panel > p {
  margin: 20px 0 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.benefits-why {
  padding: 20px var(--benefits-content-gutter) 100px;
  color: var(--e-global-color-190e127);
  background: transparent;
}

.benefits-why::before {
  position: absolute;
  z-index: 0;
  top: calc(-1 * var(--benefits-wave-height));
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--e-global-color-b08dc46);
  background-image: radial-gradient(at 80% 100%, #2ba0b2 0%, #00417e 49%, #003153 72%);
  content: "";
  -webkit-mask-image: url("../images/wave-blue-deep.svg"), linear-gradient(#000 0 0);
  mask-image: url("../images/wave-blue-deep.svg"), linear-gradient(#000 0 0);
  -webkit-mask-position: top center, 0 var(--benefits-wave-height);
  mask-position: top center, 0 var(--benefits-wave-height);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto, 100% calc(100% - var(--benefits-wave-height));
  mask-size: 100% auto, 100% calc(100% - var(--benefits-wave-height));
}

.benefits-why > .benefits-wave-clip {
  display: none;
}

.benefits-why h2 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--e-global-color-secondary);
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

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

.benefits-why-columns > div:first-child {
  padding: 15px 40px 15px 0;
}

.benefits-why-details {
  padding: 15px 0 15px 40px;
  border-left: 1px solid var(--e-global-color-secondary);
}

.benefits-why p,
.benefits-why li {
  color: var(--e-global-color-190e127);
  font-size: 17px;
  line-height: 1.4;
}

.benefits-why p {
  margin-bottom: 10px;
}

.benefits-why ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.benefits-why li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.benefits-why li:last-child {
  margin-bottom: 0;
}

.benefits-why ul:last-child {
  margin-bottom: 0;
}

.benefits-why li::before {
  position: absolute;
  top: .62em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--e-global-color-190e127);
  content: "";
}

.benefits-amount {
  padding: 0 var(--benefits-content-gutter) 40px;
  background: var(--e-global-color-190e127);
}

.benefits-amount-inner {
  position: relative;
  z-index: 4;
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  align-items: stretch;
  grid-template-columns: 330px 30px minmax(0, 1fr);
}

.benefits-amount h2 {
  align-self: center;
  min-height: 95.4px;
  margin: 0;
  font-family: "Jost", Arial, sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 46.2px;
  text-transform: uppercase;
}

.benefits-amount h2 span {
  font-size: 42px;
  line-height: 46.2px;
}

.benefits-brace {
  display: block;
  width: 30px;
  height: 100%;
  background: var(--e-global-color-primary);
  -webkit-mask: url("../images/brace.svg") center / 100% 100% no-repeat;
  mask: url("../images/brace.svg") center / 100% 100% no-repeat;
  transform: scaleX(-1);
}

.benefits-amount-copy {
  padding: 10px 0;
  font-size: 17px;
  line-height: 1.4;
}

.benefits-amount-copy p {
  margin-bottom: 10px;
}

.benefits-amount-copy ul {
  margin: 0 0 15px;
  padding: 0;
  list-style: none;
}

.benefits-amount-copy li {
  position: relative;
  padding-left: 25px;
}

.benefits-amount-copy li + li {
  margin-top: 10px;
}

.benefits-amount-copy > p:last-child {
  margin-bottom: 0;
}

.benefits-amount-copy li::before {
  position: absolute;
  top: .58em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--e-global-color-primary);
  content: "";
}

.benefits-reasons {
  position: relative;
  padding: 110px var(--benefits-content-gutter) 40px;
  background: var(--e-global-color-190e127);
}

.benefits-wave-line {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: calc(100% - var(--benefits-content-gutter) - var(--benefits-content-gutter));
  height: 70px;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.benefits-wave-line img {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  max-width: none;
}

.benefits-wave-line img:last-child {
  top: 4px;
}

.benefits-reasons > h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: var(--e-global-color-secondary);
  font-family: "Jost", Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.benefits-reason-grid {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-reason-card {
  min-height: 312px;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(at 80% 80%, #2ba0b2 0%, #00417e 49%, #003153 79%);
}

.benefits-reason-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.benefits-reason-card h3 {
  margin: 0;
  padding: 20px;
  color: var(--e-global-color-secondary);
  font-family: "Jost", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 1400px) {
  .benefits-tab-list {
    flex-wrap: nowrap;
  }

  .benefits-tab {
    min-width: 0;
    padding: 6px;
    flex: 1;
    white-space: normal;
  }
}

@media (min-width: 881px) and (max-width: 1400px) {
  .benefits-group {
    width: calc(33.333% - 10px);
  }

  .benefits-group:last-child,
  .benefits-group:nth-last-child(2) {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 1200px) {
  .benefits-page main {
    --benefits-content-gutter: 50px;
  }

  .benefits-hero h1,
  .benefits-hero p {
    font-size: 36px;
  }

  .benefits-extra h2 {
    font-size: 36px;
  }

  .benefits-why h2 {
    font-size: 36px;
  }

  .benefits-amount-inner {
    gap: 40px;
    grid-template-columns: 230px 30px minmax(0, 1fr);
  }

  .benefits-amount h2 {
    min-height: 70px;
    font-size: 25px;
    line-height: 35px;
  }

  .benefits-amount h2 span {
    font-size: 29px;
    line-height: 35px;
  }

  .benefits-reasons {
    padding-top: 80px;
  }

  .benefits-reasons > h2 {
    font-size: 36px;
  }
}

@media (min-width: 481px) and (max-width: 880px) {
  .benefits-group {
    width: calc(50% - 7.5px);
  }
}

@media (max-width: 880px) {
  .benefits-page main {
    --benefits-content-gutter: 20px;
  }

  .benefits-wave-section {
    --benefits-wave-height: 60px;
  }

  .benefits-hero h1,
  .benefits-hero p {
    font-size: 32px;
  }

  .benefits-tab {
    padding-right: 20px;
    padding-left: 20px;
  }

  .benefits-extra h2 {
    width: 100%;
    font-size: 32px;
    text-align: center;
  }

  .benefits-extra-columns {
    grid-template-columns: 1fr;
  }

  .benefits-loyalty-copy {
    padding-right: 0;
  }

  .benefits-loyalty-copy h3 {
    font-size: 28px;
    text-align: center;
  }

  .benefits-bonus-panel {
    padding: 30px 0 0;
    border-top: 1px solid var(--e-global-color-primary);
    border-left: 0;
  }

  .benefits-why h2 {
    font-size: 32px;
  }

  .benefits-why-columns {
    grid-template-columns: 1fr;
  }

  .benefits-why-columns > div:first-child {
    padding-right: 0;
  }

  .benefits-why-details {
    padding: 30px 0 0;
    border-top: 1px solid var(--e-global-color-secondary);
    border-left: 0;
  }

  .benefits-amount-inner {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .benefits-amount h2 {
    min-height: 0;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .benefits-amount h2 span {
    font-size: inherit;
    line-height: inherit;
  }

  .benefits-brace {
    display: none;
  }

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

  .benefits-wave-clip {
    top: -60px;
    height: 60px;
  }
}

@media (max-width: 626px) {
  .benefits-tab-list {
    align-items: stretch;
  }

  .benefits-tab {
    display: flex;
    width: 31%;
    min-width: 0;
    min-height: 45px;
    padding: 10px 5px;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .benefits-wave-section {
    --benefits-wave-height: 40px;
  }

  .benefits-wave-clip {
    top: -40px;
    height: 40px;
  }

  .benefits-hero {
    padding: 10px 20px 0;
  }

  .benefits-hero h1 {
    font-size: 30px;
  }

  .benefits-hero p {
    font-size: 22px;
  }

  .benefits-schedule {
    padding-bottom: 50px;
  }

  .benefits-tab {
    padding-right: 5px;
    padding-left: 5px;
  }

  .benefits-group {
    width: 100%;
  }

  .benefits-introduction {
    font-size: 18px;
  }

  .benefits-extra {
    padding-top: 10px;
    padding-bottom: 80px;
  }

  .benefits-extra h2 {
    font-size: 28px;
  }

  .benefits-bonus-row > div {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 14px;
  }

  .benefits-bonus-row img {
    width: 27px;
    height: 27px;
    margin-right: 3px;
  }

  .benefits-why {
    padding-top: 10px;
    padding-bottom: 80px;
  }

  .benefits-why h2 {
    font-size: 24px;
  }

  .benefits-amount {
    padding-bottom: 20px;
  }

  .benefits-amount h2 {
    font-size: 30px;
  }

  .benefits-reasons {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .benefits-reasons > h2 {
    padding: 0 20px;
    font-size: 30px;
  }

  .benefits-reason-grid {
    grid-template-columns: 1fr;
  }

  .benefits-reason-card > img {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits-tab::after {
    display: none;
  }
}
