@font-face {
  font-family: "RzxSans";
  src: url("./assets/fonts/coolzino-sans.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "RzxDisplay";
  src: url("./assets/fonts/coolzino-display.woff2") format("woff2");
  font-display: swap;
}

:root {
  --rzx-bg: #070b13;
  --rzx-bg-soft: #0e1626;
  --rzx-card: rgba(18, 28, 46, 0.94);
  --rzx-line: rgba(255, 255, 255, 0.12);
  --rzx-text: #ecf2fc;
  --rzx-muted: #b4c0d6;
  --rzx-accent: #f4c14f;
  --rzx-btn-a: #1ebf60;
  --rzx-btn-b: #28d970;
  --rzx-btn-shadow: rgba(40, 217, 112, 0.42);
  --rzx-cookie-space: 0px;
  --rzx-flow-gap: clamp(18px, 2.2vw, 26px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }

body {
  font-family: "RzxSans", "Segoe UI", Arial, sans-serif;
  color: var(--rzx-text);
  background:
    radial-gradient(circle at 18% -10%, #152640 0%, #070b13 58%, #04070d 100%);
  padding-bottom: var(--rzx-cookie-space);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.rzx-wrap {
  width: min(1220px, 100% - 40px);
  margin: 0 auto;
}

.rzx-main {
  display: grid;
  gap: 22px;
  padding: 22px 0 34px;
}

.rzx-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 11, 19, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.rzx-head-desktop {
  min-height: 78px;
  display: grid;
  align-items: center;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
}

.rzx-logo-link {
  display: inline-flex;
  align-items: center;
}

.rzx-main-nav {
  display: flex;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--rzx-muted);
}

.rzx-main-nav a:hover,
.rzx-main-nav a:focus-visible {
  color: #ffdf90;
}

.rzx-search input,
.rzx-drawer-search input {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--rzx-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--rzx-text);
  padding: 0 14px;
}

.rzx-head-actions,
.rzx-drawer-actions {
  display: flex;
  gap: 10px;
}

.rzx-head-actions a,
.rzx-drawer-actions a,
.rzx-mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #edf4ff;
  background: rgba(9, 14, 24, 0.9);
  border: 1px solid rgba(219, 229, 243, 0.44);
  padding: 0 16px;
}

.rzx-head-actions a:hover,
.rzx-drawer-actions a:hover,
.rzx-mobile-cta a:hover {
  border-color: rgba(240, 247, 255, 0.72);
}

.rzx-head-actions a:last-child,
.rzx-drawer-actions a:last-child,
.rzx-mobile-cta a:last-child {
  color: #ffffff;
  background: linear-gradient(120deg, var(--rzx-btn-a), var(--rzx-btn-b));
  border-color: transparent;
  box-shadow: 0 10px 24px var(--rzx-btn-shadow);
}

.rzx-head-actions a:last-child:hover,
.rzx-drawer-actions a:last-child:hover,
.rzx-mobile-cta a:last-child:hover {
  filter: brightness(1.04);
}

.rzx-btn-ghost,
.rzx-btn-solid,
.rzx-btn-outline,
.rzx-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.rzx-btn-ghost,
.rzx-btn-outline {
  border: 1px solid var(--rzx-line);
  padding: 0 16px;
}

.rzx-btn-solid,
.rzx-hero-cta {
  border: 0;
  color: #ffffff;
  padding: 0 18px;
  background: linear-gradient(120deg, var(--rzx-btn-a), var(--rzx-btn-b));
  box-shadow: 0 10px 24px var(--rzx-btn-shadow);
}

.rzx-head-mobile { display: none; }

.rzx-mobile-drawer {
  display: none;
  margin: 8px 12px 12px;
  padding: 10px;
  border: 1px solid rgba(214, 226, 246, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 23, 38, 0.95), rgba(10, 17, 29, 0.97));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.rzx-mobile-drawer.is-open {
  display: block;
  animation: rzxDrawerIn 0.24s ease-out both;
}

@keyframes rzxDrawerIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rzx-drawer-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.rzx-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 11px;
  border: 1px solid rgba(214, 226, 246, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: #dce6f7;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.rzx-drawer-nav a::after {
  content: "›";
  font-size: 1.12rem;
  color: #91a3c2;
  transition: transform 0.2s ease, color 0.2s ease;
}

.rzx-drawer-nav a:hover,
.rzx-drawer-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #f2f7ff;
}

.rzx-drawer-nav a:hover::after,
.rzx-drawer-nav a:focus-visible::after {
  color: #f2f7ff;
  transform: translateX(2px);
}

.rzx-section {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
}

.rzx-section .rzx-wrap { padding: 24px 0; }

.rzx-section-soft {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 20, 34, 0.62);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.14;
  font-family: "RzxDisplay", "RzxSans", sans-serif;
}

h1 { font-size: clamp(1.82rem, 2.7vw, 2.76rem); margin-bottom: 14px; }
h2 { font-size: clamp(1.34rem, 2.1vw, 2rem); margin-bottom: 12px; }
h3 { font-size: clamp(1.05rem, 1.58vw, 1.24rem); }

p {
  margin: 0 0 14px;
  line-height: 1.64;
  color: #d8e1ef;
}

.rzx-section-head {
  margin-bottom: 14px;
}

.rzx-hero {
  position: relative;
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  overflow: clip;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.92) 0%, rgba(8, 13, 22, 0.8) 38%, rgba(8, 13, 22, 0.42) 72%, rgba(8, 13, 22, 0.2) 100%),
    url("./assets/images/hero-core/hero-background.webp") center / cover no-repeat;
}

.rzx-hero-grid {
  position: relative;
  min-height: 458px;
  display: grid;
  align-items: center;
  padding: 36px 28px 92px;
}

.rzx-hero-copy {
  width: min(50%, 560px);
  padding-left: clamp(8px, 2.2vw, 24px);
  z-index: 4;
}

.rzx-hero-copy p { max-width: 54ch; }

.rzx-hero-cta {
  min-height: 52px;
  padding: 0 26px;
  transform: translateZ(0);
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, box-shadow;
  animation: rzxPulse 2.45s ease-in-out infinite;
}

@keyframes rzxPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px var(--rzx-btn-shadow);
  }
  50% {
    transform: scale(1.038);
    box-shadow: 0 18px 40px rgba(40, 217, 112, 0.62);
  }
}

.rzx-hero-right {
  position: absolute;
  right: clamp(-20px, 1vw, 14px);
  bottom: 74px;
  width: min(45vw, 560px);
  max-width: 560px;
  object-fit: contain;
  object-position: right center;
  opacity: 0.92;
  z-index: 2;
  pointer-events: none;
}

.rzx-hero-badges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(9px, 2.2vw, 22px);
  padding: 9px 12px;
  background: rgba(7, 10, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rzx-hero-badges img {
  width: auto;
  height: 25px;
  object-fit: contain;
}

.rzx-card-row,
.rzx-two-col,
.rzx-pay-grid,
.rzx-why-grid {
  display: grid;
  gap: 12px;
}

.rzx-card-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rzx-two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rzx-pay-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 10px; }
.rzx-why-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; margin: 14px 0 0; padding: 0; }

.rzx-card-row,
.rzx-two-col,
.rzx-pay-grid,
.rzx-slot-grid,
.rzx-why-grid,
.rzx-list,
.rzx-provider-grid,
.rzx-faq-box {
  margin-bottom: var(--rzx-flow-gap);
}

.rzx-info,
.rzx-panel,
.rzx-auth-card,
.rzx-pay-item,
.rzx-why-grid li,
.rzx-faq-item {
  background: var(--rzx-card);
  border: 1px solid var(--rzx-line);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}

.rzx-info,
.rzx-panel,
.rzx-auth-card,
.rzx-pay-item,
.rzx-why-grid li {
  padding: 15px;
}

.rzx-slot-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.rzx-slot-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--rzx-line);
  isolation: isolate;
}

.rzx-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.34s ease;
}

.rzx-slot-grid > a {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--rzx-line);
  isolation: isolate;
}

.rzx-slot-grid > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.34s ease;
}

.rzx-slot-shade,
.rzx-slot-cta,
.rzx-slot-name {
  position: absolute;
  left: 0;
  right: 0;
  transition: 0.3s ease;
}

.rzx-slot-shade {
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.rzx-slot-cta {
  top: 50%;
  margin: 0 auto;
  width: 130px;
  text-align: center;
  padding: 10px 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--rzx-btn-a), var(--rzx-btn-b));
  color: #ffffff;
  box-shadow: 0 10px 24px var(--rzx-btn-shadow);
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateY(-50%) scale(0.95);
  opacity: 0;
}

.rzx-slot-name {
  bottom: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(8px);
}

.rzx-slot-card:hover img,
.rzx-slot-card:focus-visible img,
.rzx-slot-grid > a:hover img,
.rzx-slot-grid > a:focus-visible img { transform: scale(1.05); }
.rzx-slot-card:hover .rzx-slot-shade,
.rzx-slot-card:focus-visible .rzx-slot-shade,
.rzx-slot-grid > a:hover .rzx-slot-shade,
.rzx-slot-grid > a:focus-visible .rzx-slot-shade { opacity: 1; }
.rzx-slot-card:hover .rzx-slot-cta,
.rzx-slot-card:focus-visible .rzx-slot-cta,
.rzx-slot-grid > a:hover .rzx-slot-cta,
.rzx-slot-grid > a:focus-visible .rzx-slot-cta { opacity: 1; transform: translateY(-50%) scale(1); }
.rzx-slot-card:hover .rzx-slot-name,
.rzx-slot-card:focus-visible .rzx-slot-name,
.rzx-slot-grid > a:hover .rzx-slot-name,
.rzx-slot-grid > a:focus-visible .rzx-slot-name { opacity: 1; transform: translateY(0); }

.rzx-list {
  list-style: none;
  margin: 10px 0 var(--rzx-flow-gap);
  padding: 0;
  display: grid;
  gap: 10px;
}

.rzx-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-radius: 12px;
  border: 1px solid var(--rzx-line);
  background: rgba(15, 24, 40, 0.74);
}

.rzx-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--rzx-accent);
  box-shadow: inset 0 0 0 3px rgba(244, 193, 79, 0.24);
}

.rzx-panel table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.rzx-panel th,
.rzx-panel td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid var(--rzx-line);
}

.rzx-panel th {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.rzx-why-grid li span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: rgba(244, 193, 79, 0.2);
  color: #ffd978;
  font-weight: 800;
}

.rzx-why-grid li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.rzx-why-grid li strong {
  display: inline;
  line-height: 1.2;
}

.rzx-why-grid li p {
  margin: 2px 0 0;
  width: 100%;
  line-height: 1.45;
}

.rzx-auth-card {
  text-align: center;
  margin-bottom: var(--rzx-flow-gap);
}

.rzx-auth-card h3 {
  margin-bottom: 12px;
}

.rzx-auth-card img {
  width: min(680px, 100%);
  max-width: 100%;
  max-height: 460px;
  margin: 0 auto 14px;
  border-radius: 12px;
  object-fit: contain;
}

.rzx-pay-item {
  text-align: center;
}

.rzx-pay-item img {
  margin: 0 auto 10px;
  height: 30px;
  width: auto;
}

.rzx-provider-grid,
.rzx-partner-grid {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rzx-provider-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }

.rzx-provider-grid li {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rzx-line);
  border-radius: 12px;
  background: rgba(15, 24, 40, 0.74);
  padding: 10px;
}

.rzx-provider-grid img { max-height: 36px; width: auto; }

.rzx-faq-box { display: grid; gap: 10px; }

.rzx-faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--rzx-text);
  text-align: left;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.rzx-faq-content { display: none; }

.rzx-faq-content p { margin: 0; padding: 0 18px 16px; }

.rzx-faq-item.is-open .rzx-faq-content { display: block; }

.rzx-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070a12;
}

.rzx-footer .rzx-wrap { padding: 22px 0 18px; }

.rzx-foot-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.rzx-foot-top p {
  margin: 0;
  color: #b5bfd3;
  font-size: 0.92rem;
}

.rzx-partner-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.rzx-partner-grid li {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.72;
  filter: grayscale(1);
}

.rzx-partner-grid img {
  max-height: 30px;
  width: auto;
}

.rzx-foot-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #d1d8e8;
}

.rzx-foot-note {
  margin: 10px 0 0;
  color: #8f9ab0;
  font-size: 0.82rem;
}

.rzx-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(10, 16, 28, 0.96);
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.rzx-cookie p { margin: 0; font-size: 0.9rem; color: #dce4f3; }

.rzx-cookie button {
  border: 0;
  border-radius: 999px;
  min-width: 110px;
  min-height: 40px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--rzx-btn-a), var(--rzx-btn-b));
  color: #ffffff;
  box-shadow: 0 10px 24px var(--rzx-btn-shadow);
  cursor: pointer;
}

.rzx-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(120deg, var(--rzx-btn-a), var(--rzx-btn-b));
  box-shadow: 0 10px 24px var(--rzx-btn-shadow);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.rzx-article-wrap { max-width: 920px; }

.rzx-404 .rzx-article-wrap { text-align: center; padding: 80px 0; }

@media (max-width: 1040px) {
  .rzx-head-desktop { grid-template-columns: auto auto 1fr; }
  .rzx-search { grid-column: 1 / -1; }
  .rzx-provider-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .rzx-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --rzx-flow-gap: 16px; }

  .rzx-main {
    padding-top: 0;
  }

  .rzx-head-desktop { display: none; }
  .rzx-head-mobile { display: block; }

  .rzx-mobile-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .rzx-mobile-top {
    justify-content: center;
    position: relative;
    min-height: 58px;
  }

  .rzx-mobile-top .rzx-logo-link img {
    width: auto;
    max-width: 128px;
    height: 28px;
    object-fit: contain;
  }

  .rzx-burger {
    position: absolute;
    left: 12px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--rzx-line);
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    place-content: center;
    gap: 4px;
    padding: 0;
  }

  .rzx-burger span {
    width: 18px;
    height: 2px;
    background: #dce4f3;
    display: block;
  }

  .rzx-mobile-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-top: 6px;
    padding-bottom: 10px;
  }

  .rzx-mobile-cta a {
    width: 100%;
    min-height: 40px;
    font-size: 0.8rem;
  }

  .rzx-mobile-tabs {
    overflow-x: auto;
    white-space: nowrap;
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rzx-mobile-tabs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8d1e6;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rzx-hero {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .rzx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.1) 36%, rgba(7, 11, 19, 0.82) 76%, rgba(7, 11, 19, 0.95) 100%);
    z-index: 1;
  }

  .rzx-hero-grid {
    min-height: 500px;
    align-items: end;
    padding: 20px 16px 94px;
  }

  .rzx-hero-copy {
    width: 100%;
    text-align: center;
    padding-left: 0;
    position: relative;
    z-index: 4;
  }

  .rzx-hero-copy h1 { font-size: clamp(1.38rem, 6.1vw, 2.1rem); }
  .rzx-hero-copy p {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.97rem;
  }

  .rzx-hero-cta {
    min-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .rzx-hero-right { display: none; }

  .rzx-hero-badges {
    gap: 6px;
    padding: 7px 8px;
    flex-wrap: nowrap;
  }

  .rzx-hero-badges img { height: 18px; max-width: 42px; }

  .rzx-card-row,
  .rzx-two-col,
  .rzx-pay-grid,
  .rzx-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rzx-slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rzx-provider-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .rzx-partner-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .rzx-auth-card img {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .rzx-cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .rzx-foot-top { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .rzx-wrap { width: min(1220px, 100% - 24px); }
  .rzx-main { gap: 16px; padding-top: 0; }
  .rzx-section .rzx-wrap { padding: 18px 0; }

  .rzx-card-row,
  .rzx-two-col,
  .rzx-pay-grid,
  .rzx-why-grid {
    grid-template-columns: 1fr;
  }

  .rzx-provider-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
