:root {
  --ink: #171717;
  --muted: #66615b;
  --red: #dd1f2a;
  --cream: #f7f4ef;
  --sand: #d7cec2;
  --tan: #b8885f;
  --green: #00b67a;
  --line: #e7e2dc;
  --panel: #f4f2ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  zoom: 1.2;
}

body.menu-is-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(920px, calc(100% - 48px));
}

.center {
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.utility {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  width: 142px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.desktop-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-actions a:not(.login-button):hover,
.footer a:hover {
  color: var(--red);
}

.login-button,
.button,
.hero-cta,
.footer-button {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.login-button {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
}

.login-button:hover,
.hero-cta:hover {
  background: #bd121d;
  transform: translateY(-1px);
}

.desktop-nav {
  background: #efede8;
}

.desktop-nav .container {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a span {
  font-size: 15px;
  transform: translateY(-2px);
}

.mobile-actions,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.13), transparent 58%),
    url("assets/hero-canyon.png") center / cover no-repeat;
}

.hero-inner {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-card {
  width: min(526px, 50%);
  min-height: 288px;
  padding: 29px 34px 27px;
  border-radius: 15px;
  background: rgba(247, 244, 239, 0.96);
  box-shadow: 0 18px 45px rgba(37, 18, 7, 0.14);
}

.eyebrow,
.section-kicker {
  margin-bottom: 9px;
  color: #9a6c49;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-cta,
.section-kicker {
  display: none;
}

.hero h1 {
  margin-bottom: 17px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero h2 {
  max-width: 410px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-card > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 0;
  color: #393531;
  font-size: 12.5px;
  line-height: 1.42;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.stats {
  background: #fbfaf8;
  border-bottom: 1px solid #f0ede8;
}

.stats-grid {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat {
  min-height: 85px;
  padding-inline: 34px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 9px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.045em;
}

.stat span {
  display: block;
  max-width: 160px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.section {
  padding-block: 88px;
}

.verticals {
  padding-block: 65px 96px;
}

.cards-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(31, 25, 20, 0.055);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(31, 25, 20, 0.11);
}

.solution-image {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.solution-content {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 23px 24px 20px;
}

.solution-content h3,
.payment-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.solution-content > p {
  min-height: 44px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.solution-content ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.solution-content li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.solution-content li img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.62;
}

.arrow-link {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #835e40;
  font-size: 12px;
  font-weight: 750;
}

.arrow-link span:last-child {
  font-size: 20px;
  line-height: 0.7;
}

.mobile-dots {
  display: none;
}

.partners h2,
.infrastructure h2,
.section-heading h2,
.split-copy h2,
.reviews h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section-lede {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 44px;
}

.logo-row a {
  width: 112px;
  height: 60px;
  display: grid;
  place-items: center;
}

.logo-row img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.88);
}

.client-logos a:nth-child(3) img {
  max-height: 58px;
}

.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.carousel-arrows a {
  width: 37px;
  height: 37px;
  border: 1px solid #cfb69e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a77c58;
  font-size: 16px;
}

.payment-solutions {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.payment-card {
  min-height: 285px;
  padding: 27px 25px 21px;
  border: 1px solid #e1ddd7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.83);
  display: flex;
  flex-direction: column;
}

.payment-card > img {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  object-fit: contain;
  opacity: 0.54;
}

.payment-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12.5px;
}

.infra-logos a {
  width: 120px;
}

.infra-logos img {
  max-height: 36px;
}

.infra-logos a:first-child img {
  max-height: 46px;
}

.split-section {
  padding-block: 72px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 74px;
  align-items: center;
}

.split-reverse .split-visual {
  grid-column: 2;
}

.split-reverse .split-copy {
  grid-column: 1;
  grid-row: 1;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
  border-radius: 14px;
}

.split-copy {
  max-width: 480px;
}

.split-copy > p:not(.section-kicker) {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.button-tan {
  background: var(--tan);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.technology {
  background: #dad7cf;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: #745032;
  font-size: 13px;
  font-weight: 750;
}

.travel-promo {
  min-height: 455px;
  padding-block: 55px;
  background:
    linear-gradient(90deg, rgba(2, 15, 16, 0.86), rgba(2, 15, 16, 0.1)),
    url("assets/travel-card-hero.png") center / cover no-repeat;
  color: #fff;
}

.promo-inner {
  min-height: 345px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: center;
}

.promo-copy {
  max-width: 570px;
}

.promo-proof {
  margin-bottom: 16px;
  font-size: 12px;
}

.promo-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.promo-copy > p:not(.promo-proof) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0;
  font-size: 12px;
}

.trust-line span:first-child,
.trust-line span:nth-child(2) {
  color: #21c995;
  font-weight: 750;
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.card-frame {
  position: relative;
  aspect-ratio: 1.12;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
}

.card-frame img {
  width: 96%;
  transform: rotate(-1.5deg);
  filter: brightness(0.94);
}

.mastercard-mark {
  position: absolute;
  right: 24px;
  bottom: 23px;
  display: flex;
}

.mastercard-mark i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eb001b;
}

.mastercard-mark i + i {
  margin-left: -12px;
  background: #f79e1b;
  mix-blend-mode: screen;
}

.reviews {
  padding-block: 68px 78px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(4, 1fr);
  gap: 22px;
}

.trust-summary,
.review-card {
  min-width: 0;
  font-size: 12px;
}

.trust-summary strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.stars {
  width: fit-content;
  padding: 2px 4px;
  background: var(--green);
  color: #fff;
  letter-spacing: 2px;
}

.trust-summary span,
.trust-summary b {
  display: block;
  margin-top: 5px;
}

.trust-summary b {
  color: #009c68;
}

.review-card strong,
.review-card small {
  display: block;
  margin-top: 7px;
}

.review-card small,
.review-card p {
  color: var(--muted);
  font-size: 10px;
}

.review-card p {
  margin-top: 7px;
  line-height: 1.3;
}

.footer {
  padding-block: 68px 32px;
  background: #f0f1f3;
  color: #272727;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-column h3,
.app-block h3 {
  margin-bottom: 12px;
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h4 {
  margin: 23px 0 9px;
  color: #8c8c8c;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-column > a:not(.footer-button) {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 600;
}

.footer-button {
  min-width: 110px;
  margin-top: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--tan);
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 750;
}

.footer-button.outline {
  border: 1px solid var(--tan);
  background: transparent;
  color: var(--tan);
}

.cyber-badge {
  width: 64px;
  margin-top: 14px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 70px;
  margin-top: 70px;
}

.app-badges {
  display: flex;
  gap: 6px;
}

.app-badges img {
  width: auto;
  height: 31px;
}

.app-block address {
  margin: 16px 0;
  font-size: 10px;
  font-style: normal;
}

.footer-brand {
  display: block;
  width: 100px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socials a {
  font-size: 11px;
  font-weight: 800;
}

.legal-copy {
  align-self: end;
  color: #666;
  font-size: 9px;
  line-height: 1.55;
}

.chat-button {
  position: fixed;
  right: 23px;
  bottom: 22px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border: 8px solid var(--red);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.chat-button::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -5px;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 35%, 15% 100%);
}

.chat-button i,
.chat-button i::before,
.chat-button i::after {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #989898;
}

.chat-button i {
  left: 50%;
  transform: translate(-50%, -50%);
}

.chat-button i::before,
.chat-button i::after {
  content: "";
  top: 0;
}

.chat-button i::before {
  left: -12px;
}

.chat-button i::after {
  left: 12px;
}

.chat-button > span {
  position: absolute;
  top: -17px;
  left: -14px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #08b21d;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .desktop-actions,
  .desktop-nav {
    display: none;
  }

  .utility {
    min-height: 82px;
  }

  .brand {
    width: 126px;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .account-pill {
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 5px 4px 15px;
    border: 1px solid #dfd2c3;
    border-radius: 999px;
    color: #9d7455;
    font-size: 13px;
    box-shadow: 0 3px 9px rgba(51, 35, 25, 0.1);
  }

  .account-pill strong {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
  }

  .menu-toggle {
    position: relative;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 2px solid #151515;
    border-radius: 6px;
    background: transparent;
  }

  .menu-toggle i {
    position: absolute;
    top: 19px;
    left: 9px;
    width: 22px;
    height: 2px;
    background: #171717;
    transition: transform 180ms ease;
  }

  .menu-toggle i:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle i:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open i:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open i:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 82px 0 0;
    z-index: 49;
    display: block;
    padding: 28px 34px;
    background: #f6f5f3;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 240ms ease,
      visibility 240ms ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu a {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .hero,
  .hero-inner {
    min-height: 500px;
  }

  .hero-card {
    width: min(540px, 90%);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 30px;
  }

  .stat {
    padding: 25px 18px;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .cards-scroll {
    grid-template-columns: repeat(3, minmax(290px, 1fr));
    overflow-x: auto;
    padding: 3px 18px 24px;
    margin-inline: -18px;
    scrollbar-width: none;
  }

  .cards-scroll::-webkit-scrollbar,
  .payment-grid::-webkit-scrollbar {
    display: none;
  }

  .snap-row > * {
    scroll-snap-align: center;
  }

  .snap-row {
    scroll-snap-type: x mandatory;
  }

  .mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d4ccc3;
  }

  .mobile-dots .active {
    width: 18px;
    border-radius: 999px;
    background: #b48a65;
  }

  .payment-grid {
    grid-template-columns: repeat(4, minmax(235px, 1fr));
    overflow-x: auto;
    padding: 3px 18px 18px;
    margin-inline: -18px;
    scrollbar-width: none;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .promo-inner {
    gap: 40px;
  }

  .review-grid {
    grid-template-columns: 1.15fr repeat(4, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container,
  .narrow {
    width: calc(100% - 28px);
  }

  .utility {
    width: calc(100% - 24px);
    min-height: 50px;
  }

  .brand {
    width: 72px;
  }

  .mobile-actions {
    gap: 8px;
  }

  .account-pill {
    min-height: 30px;
    gap: 5px;
    padding: 2px 2px 2px 8px;
    font-size: 9px;
  }

  .account-pill strong {
    padding: 5px 8px;
  }

  .menu-toggle {
    width: 30px;
    height: 30px;
  }

  .menu-toggle i {
    top: 13px;
    left: 6px;
    width: 16px;
  }

  .mobile-menu {
    inset: 50px 0 0;
    padding: 26px 20px;
  }

  .mobile-menu a {
    min-height: 78px;
    font-size: 22px;
  }

  .hero,
  .hero-inner {
    min-height: 285px;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 16px;
  }

  .hero-card {
    width: 52%;
    min-height: 0;
    padding: 12px 12px 11px;
    border-radius: 7px;
  }

  .hero .eyebrow,
  .hero-cta {
    display: none;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.02;
  }

  .hero h2 {
    margin-bottom: 6px;
    font-size: 9.5px;
    line-height: 1.12;
  }

  .hero-card > p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 7.3px;
    line-height: 1.3;
  }

  .stats-grid {
    min-height: 206px;
    padding-block: 15px;
  }

  .stat {
    min-height: 84px;
    padding: 19px 9px;
  }

  .stat strong {
    margin-bottom: 7px;
    font-size: 30px;
  }

  .stat span {
    max-width: 115px;
    font-size: 9px;
  }

  .section {
    padding-block: 52px;
  }

  .verticals {
    padding-block: 28px 52px;
  }

  .cards-scroll {
    grid-template-columns: repeat(3, calc(100vw - 58px));
    gap: 14px;
  }

  .solution-content {
    min-height: 284px;
    padding: 18px 18px 16px;
  }

  .solution-content h3,
  .payment-card h3 {
    font-size: 17px;
  }

  .solution-content > p {
    min-height: 35px;
    font-size: 11px;
  }

  .solution-content li {
    gap: 6px;
    font-size: 11px;
  }

  .solution-content li img {
    width: 16px;
    height: 16px;
  }

  .partners h2,
  .infrastructure h2,
  .section-heading h2,
  .split-copy h2,
  .reviews h2 {
    font-size: 26px;
  }

  .section-kicker {
    font-size: 9px;
  }

  .section-lede {
    font-size: 11px;
  }

  .logo-row {
    gap: 18px;
    margin-top: 30px;
    overflow: hidden;
  }

  .logo-row a {
    flex: 0 0 48px;
    height: 43px;
  }

  .logo-row img {
    max-height: 30px;
  }

  .client-logos a:nth-child(3) img {
    max-height: 40px;
  }

  .carousel-arrows {
    margin-top: 24px;
  }

  .carousel-arrows a {
    width: 32px;
    height: 32px;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .payment-grid {
    grid-template-columns: repeat(4, calc(78vw - 20px));
    gap: 12px;
  }

  .payment-card {
    min-height: 244px;
    padding: 20px 18px 16px;
  }

  .payment-card > img {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
  }

  .payment-card > p {
    font-size: 11px;
  }

  .split-section {
    padding-block: 0;
  }

  .split {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split-copy,
  .split-reverse .split-copy {
    grid-column: 1;
    grid-row: auto;
    padding: 42px 24px 36px;
  }

  .split-visual,
  .split-reverse .split-visual {
    grid-column: 1;
  }

  .split-visual img {
    aspect-ratio: 1.53;
    border-radius: 0;
  }

  .safety .split-visual {
    order: 2;
  }

  .safety .split-copy {
    order: 1;
  }

  .split-copy > p:not(.section-kicker) {
    font-size: 11.5px;
  }

  .travel-promo {
    min-height: 620px;
    padding-block: 36px 28px;
    background-position: 60% center;
  }

  .promo-inner {
    min-height: 555px;
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: space-between;
  }

  .promo-copy {
    max-width: 92%;
  }

  .promo-proof {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .promo-copy h2 {
    font-size: 30px;
  }

  .promo-copy > p:not(.promo-proof) {
    font-size: 11px;
  }

  .trust-line {
    flex-wrap: wrap;
    margin: 17px 0;
    font-size: 10px;
  }

  .card-frame {
    width: 74%;
    justify-self: end;
    padding: 15px;
    border-width: 3px;
    border-radius: 12px;
  }

  .mastercard-mark {
    right: 12px;
    bottom: 10px;
  }

  .mastercard-mark i {
    width: 24px;
    height: 24px;
  }

  .reviews {
    padding-block: 48px 58px;
  }

  .review-grid {
    grid-template-columns: 130px repeat(4, 155px);
    gap: 14px;
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .footer {
    padding-block: 48px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 26px;
  }

  .footer-column:last-child {
    grid-column: span 2;
  }

  .footer-column > a:not(.footer-button) {
    font-size: 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 50px;
  }

  .legal-copy {
    font-size: 8px;
  }

  .chat-button {
    right: 14px;
    bottom: 15px;
    width: 56px;
    height: 56px;
    border-width: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
