@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
}

:root {
  --gold: #ffe45c;
  --gold-deep: #ff9f1c;
  --text: #073842;
  --muted: rgba(7, 56, 66, 0.68);
  --line: rgba(255, 255, 255, 0.5);
  --page-bg: #9ec8d0;
  --page-bg-soft: #a9d2d8;
  --glass: rgba(255, 255, 255, 0.24);
  --glass-strong: rgba(255, 255, 255, 0.38);
  --glass-shadow: rgba(30, 84, 94, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 42px rgba(37, 89, 98, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header__logo img {
  width: 166px;
  height: auto;
}

.header__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.header__cta,
.btn--primary {
  color: #232a31;
  background: #ffb700;
  box-shadow: none;
}

.header__cta {
  padding: 0 22px;
}

.btn {
  padding: 0 24px;
}

.header__cta:hover,
.btn:hover {
  transform: translateY(-2px);
  background: #ffc42e;
}

.btn--primary:hover {
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 126px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(208, 239, 244, 0.72), transparent 38%),
    linear-gradient(135deg, #93bdc6 0%, #a9d2d8 44%, #98c4cd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 36%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(85, 135, 146, 0.08), transparent 46%);
  opacity: 0.86;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--page-bg));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 34px;
  min-height: 588px;
}

.hero__copy {
  max-width: 500px;
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: #073842;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: none;
}

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

h1 {
  margin-bottom: 28px;
  max-width: 520px;
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 0.96;
  font-weight: 800;
  color: #073842;
  text-shadow: none;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
}

.step,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
}

.hero__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
}

.hero__actions .btn {
  position: relative;
  min-height: 62px;
  padding: 0 42px;
  font-size: 16px;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.hero__note {
  margin-bottom: 0;
  color: rgba(7, 56, 66, 0.72);
  font-size: 12px;
  text-shadow: none;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 220px));
  justify-content: end;
  gap: 12px;
}

.hero-carousel {
  display: none;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  min-height: 286px;
  overflow: hidden;
  padding: 12px;
  color: #ffffff;
  border: 1px solid rgba(226, 250, 255, 0.66);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.16) 42%, rgba(58, 137, 149, 0.28)),
    rgba(151, 208, 216, 0.36);
  box-shadow:
    0 26px 60px rgba(55, 111, 121, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  backdrop-filter: blur(24px) saturate(1.25);
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 28%, rgba(255, 255, 255, 0.14) 56%, transparent 78%),
    linear-gradient(180deg, transparent 58%, rgba(7, 78, 91, 0.26));
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2) 42%, rgba(58, 137, 149, 0.32)),
    rgba(151, 208, 216, 0.44);
  box-shadow:
    0 30px 72px rgba(55, 111, 121, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.hero-card img {
  position: relative;
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  max-height: none;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(15, 64, 73, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.1) contrast(1.04);
}

.hero-card span,
.hero-card h2,
.hero-card p {
  position: relative;
  z-index: 1;
}

.hero-card span {
  position: absolute;
  top: 22px;
  left: 22px;
  transform: none;
  width: fit-content;
  margin-bottom: 0;
  padding: 8px 11px;
  border: 1px solid rgba(226, 250, 255, 0.72);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 78, 91, 0.56);
  box-shadow: 0 10px 22px rgba(15, 64, 73, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

.hero-card h2 {
  margin: 0 0 7px;
  padding: 0;
  max-width: none;
  color: #073842;
  background: none;
  font-size: 15px;
  line-height: 1.04;
  font-weight: 800;
  text-shadow: none;
}

.hero-card p {
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: rgba(7, 56, 66, 0.72);
  background: none;
  font-size: 12px;
  font-weight: 700;
  text-shadow: none;
}

.bonus-section,
.steps-section,
.cta-section,
.verification-section {
  position: relative;
  padding: 76px 0;
}

.bonus-section {
  padding-top: 116px;
  background: var(--page-bg);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

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

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 410px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 58px rgba(30, 84, 94, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  isolation: isolate;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -54px;
  right: -54px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 66%);
}

.bonus-card img {
  width: 100%;
  height: 230px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.16);
  filter: saturate(1.08) contrast(1.04);
}

.bonus-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.bonus-card span {
  display: inline-flex;
  color: #0b5260;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.bonus-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.bonus-card strong {
  color: #073842;
}

.steps-section {
  background: var(--page-bg);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.steps-copy {
  position: sticky;
  top: 120px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--glass);
  box-shadow: 0 18px 42px rgba(30, 84, 94, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.step span {
  color: #0b5260;
  font-size: 22px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: rgba(7, 56, 66, 0.82);
  font-size: 18px;
  font-weight: 600;
}

.cta-section {
  background: var(--page-bg);
}

.verification-section {
  background: var(--page-bg);
  padding-top: 0;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.58);
  background: var(--glass);
  box-shadow: 0 24px 70px rgba(30, 84, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.cta-panel::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -42%;
  width: 42%;
  height: 190%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.36), transparent 64%);
  filter: blur(4px);
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3.5vw, 42px);
}

.verification-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12)),
    var(--glass);
  box-shadow: 0 24px 70px rgba(30, 84, 94, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

.verification-panel .section-heading {
  margin-bottom: 18px;
}

.verification-panel h2 {
  margin-bottom: 0;
}

.verification-panel__intro {
  max-width: 860px;
  margin-bottom: 20px;
  color: rgba(7, 56, 66, 0.82);
  font-size: 18px;
  font-weight: 600;
}

.verification-panel__intro a {
  color: #0b5260;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.verification-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verification-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: rgba(7, 56, 66, 0.82);
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.verification-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b5260;
  box-shadow: 0 0 0 5px rgba(11, 82, 96, 0.12);
}

.footer {
  padding-top: 34px;
  color: var(--muted);
  background: var(--page-bg);
  border-top: 0;
}

.footer__partners,
.footer-providers,
.footer-menu,
.footer-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 24px;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.12);
}

.footer__partner {
  opacity: 0.72;
  filter: saturate(1.08);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.footer__partner:hover {
  opacity: 1;
  filter: none;
}

.footer__partner img {
  width: auto;
  height: 31px;
}

.footer-providers,
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  padding: 20px 0;
}

.footer-providers img {
  width: auto;
  height: 28px;
  opacity: 0.86;
}

.footer-menu__link {
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-menu__link:hover,
.footer-bottom-license a:hover {
  color: #0b5260;
}

.footer-bottom {
  padding: 24px 0 30px;
  border-bottom: 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.footer-bottom-row:last-child {
  margin-bottom: 0;
}

.footer-bottom-col_text p {
  margin: 0;
  font-size: 12px;
}

.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-age img,
.footer-license img {
  width: auto;
  height: 34px;
  opacity: 0.88;
}

.footer-bottom-license {
  width: 100%;
  color: rgba(7, 56, 66, 0.52);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.footer-bottom-license a {
  color: rgba(7, 56, 66, 0.78);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-card.reveal {
  opacity: 0.72;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.28s;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(255, 183, 0, 0);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(255, 183, 0, 0.28);
  }
}

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

@media (max-width: 1040px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__copy {
    max-width: 720px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
  }

  .steps-copy {
    position: static;
  }

  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    background: var(--page-bg);
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header {
    padding: 12px 0;
  }

  .header__logo img {
    width: 134px;
  }

  .header__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    padding: 96px 0 44px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero-cards {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-cards::-webkit-scrollbar {
    display: none;
  }

  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .hero-carousel__btn,
  .hero-carousel__dot {
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 10px 24px rgba(61, 127, 138, 0.18);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    backdrop-filter: blur(16px) saturate(1.3);
    cursor: pointer;
  }

  .hero-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #073842;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
  }

  .hero-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .hero-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    opacity: 0.72;
  }

  .hero-carousel__dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: rgba(226, 250, 255, 0.9);
    opacity: 1;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1;
  }

  .hero__actions {
    margin-bottom: 12px;
  }

  .hero-card {
    flex: 0 0 min(72vw, 276px);
    min-height: 330px;
    padding: 12px 14px 16px;
    scroll-snap-align: center;
  }

  .hero-card::before {
    inset: 0;
    box-shadow: none;
  }

  .hero-card::after {
    inset: 1px;
  }

  .hero-card img {
    width: 100%;
    height: auto;
    max-height: none;
    margin-bottom: 12px;
  }

  .hero-card span {
    top: 22px;
    left: 24px;
    transform: none;
    padding: 8px 11px;
    font-size: 10px;
  }

  .hero-card h2 {
    max-width: none;
    padding: 0;
    font-size: 18px;
  }

  .hero-card p {
    padding: 0;
    font-size: 12px;
  }

  .btn {
    width: 100%;
  }

  .bonus-section,
  .steps-section,
  .cta-section,
  .verification-section {
    padding: 52px 0;
  }

  .bonus-section {
    padding-top: 76px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card {
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 0;
  }

  .bonus-card img {
    width: 138px;
    height: 100%;
    min-height: 150px;
    border-right: 1px solid rgba(255, 228, 92, 0.22);
    border-bottom: 0;
  }

  .bonus-card div {
    padding: 18px;
  }

  .bonus-card h3 {
    font-size: 21px;
  }

  .steps-section {
    margin-top: 0;
    padding-top: 52px;
  }

  .cta-section {
    margin-top: 0;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .verification-section {
    padding-top: 0;
  }

  .verification-panel {
    padding: 22px;
  }

  .verification-panel__intro {
    font-size: 15px;
  }

  .verification-list li {
    padding: 14px 14px 14px 38px;
    font-size: 14px;
  }

  .verification-list li::before {
    top: 20px;
    left: 16px;
    width: 8px;
    height: 8px;
  }

  .footer {
    margin-top: 0;
    padding-top: 34px;
  }

  .step {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .step p {
    font-size: 15px;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

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

@media (max-width: 420px) {
  .header__cta {
    display: none;
  }

  .hero-card {
    flex-basis: 276px;
    min-height: 330px;
  }

  .bonus-card {
    grid-template-columns: 112px 1fr;
  }

  .bonus-card img {
    width: 112px;
    min-height: 140px;
  }

  .footer__partner img {
    height: 26px;
  }
}
