@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17191d;
  --muted: #696c73;
  --paper: #f4f2ec;
  --white: #ffffff;
  --line: #d9d7d0;
  --line-dark: #c8c5bc;
  --blue: #285be8;
  --blue-dark: #1645cd;
  --blue-soft: #e9efff;
  --yellow: #ffd84a;
  --container: 1220px;
  --shadow: 0 16px 40px rgba(25, 28, 37, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Gilroy", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

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

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

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

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 236, 0.95);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-logo img {
  width: 171px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #4f5258;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a,
.site-footer__nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer__nav a:hover {
  color: var(--blue);
}

.header-action,
.button--header {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.header-action:hover,
.button--header:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  position: absolute;
  left: 13px;
  top: 17px;
  background: var(--ink);
  transition: transform 160ms ease, top 160ms ease;
}

.menu-toggle span + span {
  top: 24px;
}

.menu-toggle.is-open span {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span + span {
  transform: rotate(-45deg);
}

.hero {
  padding: 64px 0 26px;
  border-bottom: 1px solid var(--line);
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 72px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--blue-soft);
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(48px, 6.1vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero__aside > p {
  margin-bottom: 26px;
  color: #55585f;
  font-size: 18px;
  line-height: 1.5;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero__facts span {
  min-width: 0;
  padding-top: 12px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
}

.hero__facts b {
  display: block;
  margin-bottom: 1px;
  color: var(--ink);
  font-size: 19px;
}

.finder {
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(210px, 1fr) minmax(145px, 0.55fr) auto;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.finder__field,
.finder__result {
  min-height: 102px;
  padding: 22px 24px 18px;
  border-right: 1px solid var(--line);
}

.finder__field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.finder__field output {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.finder input[type="range"] {
  width: 100%;
  height: 4px;
  display: block;
  margin: 0;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(90deg, var(--blue) 0 var(--range-progress, 20%), #dedede var(--range-progress, 20%) 100%);
  appearance: none;
}

.finder input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  cursor: pointer;
  appearance: none;
}

.finder input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  cursor: pointer;
}

.finder__result {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.finder__result span {
  color: var(--muted);
  font-size: 12px;
}

.finder__result strong {
  font-size: 16px;
}

.finder__result b {
  color: var(--blue);
  font-size: 24px;
}

.primary-button,
.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.primary-button:hover,
.offer-cta:hover {
  background: var(--blue-dark);
}

.primary-button:active,
.offer-cta:active {
  transform: translateY(1px);
}

.finder__button {
  min-width: 225px;
  padding: 0 24px;
  font-size: 16px;
}

.button-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero__note span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.offers-section {
  padding: 82px 0 96px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 38px;
}

.section-kicker {
  margin-bottom: 9px;
}

.section-heading h2,
.how-intro h2,
.faq-layout h2,
.policy-hero h1 {
  margin-bottom: 0;
  font-size: clamp(37px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 470px;
  justify-self: end;
  margin-bottom: 3px;
  color: var(--muted);
}

.offer-list-head,
.offer-row__main {
  display: grid;
  grid-template-columns: minmax(240px, 2.1fr) repeat(3, minmax(118px, 1fr)) minmax(190px, 0.9fr);
  align-items: center;
  gap: 18px;
}

.offer-list-head {
  padding: 0 22px 10px 62px;
  color: #81848a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-list {
  border-top: 1px solid var(--ink);
}

.offer-row {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 160ms ease;
}

.offer-row:hover {
  background: #fbfaf7;
}

.offer-row[hidden] {
  display: none;
}

.offer-row__main {
  min-height: 118px;
  padding: 18px 22px 15px;
}

.offer-row__company {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.offer-row__number {
  color: #96989e;
  font-size: 12px;
  font-weight: 700;
}

.offer-row--top .offer-row__number {
  color: var(--blue);
}

.offer-row__logo {
  width: 92px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.offer-row__logo img {
  width: 100%;
  max-height: 35px;
  object-fit: contain;
}

.offer-row__logo strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
}

.offer-row__company h3 {
  overflow: hidden;
  margin: 0 0 2px;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-row__company div > span {
  color: #8a8c91;
  font-size: 11px;
}

.offer-stat {
  min-width: 0;
}

.offer-stat > span {
  display: none;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.offer-stat strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.offer-cta {
  min-height: 54px;
  padding: 8px 10px 8px 20px;
  border-radius: 9px;
  font-size: 14px;
}

.offer-row__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 22px 11px 62px;
  border-top: 1px solid #efeee9;
  color: var(--muted);
  background: rgba(244, 242, 236, 0.42);
  font-size: 11px;
}

.apr {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.apr strong {
  color: #3f4248;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 16px;
}

.legal-links a {
  text-decoration: underline;
  text-decoration-color: #b8bac0;
  text-underline-offset: 3px;
}

.legal-links a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.empty-state {
  padding: 48px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.empty-state p {
  margin-bottom: 18px;
  color: var(--muted);
}

.empty-state button {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.how-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--ink);
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: 105px;
}

.how-intro {
  align-self: start;
  position: sticky;
  top: 118px;
}

.how-intro .section-kicker {
  color: #87a7ff;
}

.how-intro h2 {
  margin-bottom: 24px;
}

.how-intro > p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: #aeb1b8;
  font-size: 17px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 30px 0 36px;
  border-top: 1px solid #414349;
}

.steps li:last-child {
  border-bottom: 1px solid #414349;
}

.steps li > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 25px;
}

.steps p {
  max-width: 470px;
  margin-bottom: 0;
  color: #aeb1b8;
  font-size: 16px;
}

.faq-section {
  padding: 96px 0;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 95px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  width: 16px;
  height: 2px;
  position: absolute;
  top: 34px;
  right: 4px;
  background: var(--ink);
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 24px 0;
  margin-bottom: 0;
  color: var(--muted);
}

.responsible-section {
  padding: 0 0 96px;
  background: var(--paper);
}

.responsible-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 30px 34px;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
}

.responsible-card__mark {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 700;
}

.responsible-card h2 {
  margin-bottom: 4px;
  font-size: 24px;
}

.responsible-card p {
  max-width: 720px;
  margin-bottom: 0;
}

.responsible-card > a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer {
  padding: 62px 0 28px;
  color: #b9bbc0;
  background: #111317;
}

.site-footer__top,
.site-footer__contacts,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__top {
  padding-bottom: 28px;
  border-bottom: 1px solid #35373b;
}

.site-footer__logo {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer__logo img {
  width: 150px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
  font-size: 13px;
}

.site-footer__contacts {
  padding: 24px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.site-footer__contacts a {
  color: #87a7ff;
}

.site-footer__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  padding: 24px 0;
  border-top: 1px solid #35373b;
  border-bottom: 1px solid #35373b;
  font-size: 12px;
}

.site-footer__text p {
  margin-bottom: 0;
}

.site-footer__bottom {
  padding-top: 24px;
  color: #76787d;
  font-size: 12px;
}

.site-shell {
  min-height: 100vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.policy-page {
  min-height: 60vh;
}

.policy-hero {
  padding: 76px 0 36px;
}

.policy-hero__card {
  max-width: 920px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ink);
}

.policy-hero__subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-head__label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-content {
  padding: 24px 0 96px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.policy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.section-title {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 700;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .hero__top {
    gap: 40px;
  }

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

  .finder__field:nth-child(2) {
    border-right: 0;
  }

  .finder__result {
    min-height: 78px;
    border-top: 1px solid var(--line);
  }

  .finder__button {
    min-height: 78px;
    border-top: 1px solid var(--blue);
  }

  .offer-list-head {
    display: none;
  }

  .offer-row__main {
    grid-template-columns: minmax(230px, 1.8fr) repeat(3, minmax(105px, 1fr));
  }

  .offer-cta {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .offer-stat > span {
    display: block;
  }

  .how-layout,
  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 68px;
  }

  .site-nav {
    width: 100%;
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-action {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .hero__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero__aside > p {
    margin-bottom: 0;
  }

  .section-heading,
  .how-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading > p {
    justify-self: start;
  }

  .offer-row__main {
    grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(110px, 1fr));
  }

  .offer-stat:nth-of-type(4) {
    grid-column: 2 / 3;
  }

  .offer-cta {
    grid-column: 3 / 4;
  }

  .offer-row__legal {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 22px;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .how-intro {
    position: static;
  }

  .responsible-card {
    grid-template-columns: 52px 1fr;
  }

  .responsible-card > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-logo img {
    width: 148px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .hero {
    padding: 38px 0 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero__aside {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__aside > p {
    font-size: 16px;
  }

  .finder {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .finder__field,
  .finder__result {
    min-height: 87px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .finder__field:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .finder__result {
    min-height: 67px;
    border-top: 0;
  }

  .finder__button {
    min-height: 64px;
    border-top: 0;
  }

  .offers-section,
  .how-section,
  .faq-section {
    padding: 68px 0;
  }

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

  .offer-row {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .offer-list {
    border-top: 0;
  }

  .offer-row__main {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    padding: 17px;
  }

  .offer-row__company {
    grid-column: 1 / -1;
    grid-template-columns: 24px 92px minmax(0, 1fr);
  }

  .offer-stat:nth-of-type(4) {
    grid-column: auto;
  }

  .offer-stat strong {
    font-size: 14px;
  }

  .offer-cta {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .offer-row__legal {
    padding: 13px 17px 15px;
  }

  .apr {
    flex-direction: column;
  }

  .legal-links {
    flex-direction: column;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .responsible-section {
    padding-bottom: 68px;
  }

  .responsible-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .responsible-card > a {
    grid-column: auto;
  }

  .site-footer__top,
  .site-footer__contacts,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__text,
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .policy-hero {
    padding-top: 52px;
  }

  .policy-card {
    padding: 22px;
  }
}

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

/* BestMoney cards and regenerated brand mark */

.bestmoney-logo .bestmoney-logo__image {
  width: 198px;
  height: auto;
}

.site-footer__logo .bestmoney-logo__image,
.footer-brand__logo .bestmoney-logo__image {
  width: 216px;
}

.offer-row__company {
  grid-template-columns: 31px 150px minmax(0, 1fr);
}

.offer-row__logo {
  width: 150px;
  height: 84px;
  padding: 7px;
}

.offer-row__logo img {
  max-height: 62px;
}

.footer-cta-panel {
  margin-top: 64px;
}

.creditor-card summary {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 1180px) {
  .offer-row__company {
    grid-template-columns: 34px 160px minmax(0, 1fr);
  }

  .offer-row__logo {
    width: 160px;
    height: 88px;
  }

  .offer-row__logo img {
    max-height: 66px;
  }
}

@media (max-width: 760px) {
  .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .offer-row .offer-row__main,
  .offer-row--lead .offer-row__main,
  .offer-row--top .offer-row__main,
  .offer-row--compact .offer-row__main {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
  }

  .offer-row .offer-row__company,
  .offer-row--lead .offer-row__company,
  .offer-row--top .offer-row__company,
  .offer-row--compact .offer-row__company {
    position: relative;
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0;
    text-align: center;
  }

  .offer-row .offer-row__number,
  .offer-row--lead .offer-row__number,
  .offer-row--top .offer-row__number,
  .offer-row--compact .offer-row__number {
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 6px;
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--white);
    background: var(--blue);
    font-size: 10px;
  }

  .offer-row__logo,
  .offer-row--lead .offer-row__logo,
  .offer-row--top .offer-row__logo,
  .offer-row--compact .offer-row__logo {
    width: 100%;
    height: 80px;
    padding: 8px;
    border-radius: 13px;
  }

  .offer-row__logo img {
    max-height: 58px;
  }

  .offer-row__company h3 {
    font-size: 14px;
  }

  .offer-row__company div > span {
    display: none;
  }

  .offer-stat {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px 8px;
    border: 1px solid #e4e8f2;
    border-radius: 10px;
    background: #f8faff;
  }

  .offer-stat > span {
    display: block;
    margin-bottom: 2px;
    font-size: 9px;
  }

  .offer-stat strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .offer-cta {
    min-height: 45px;
    gap: 6px;
    padding: 6px 7px 6px 10px;
    font-size: 11px;
    line-height: 1.1;
  }

  .button-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 9px;
  }

  .button-icon::before {
    left: 7px;
    width: 12px;
  }

  .button-icon::after {
    right: 7px;
    width: 6px;
    height: 6px;
  }

  .offer-row__legal {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 11px;
    font-size: 9px;
  }

  .apr {
    gap: 2px;
  }

  .apr strong {
    font-size: 10px;
  }

  .legal-links {
    justify-content: flex-start;
    gap: 5px;
  }

  .footer-cta-panel {
    margin-top: 42px;
  }

  .creditor-card summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .creditor-card__toggle {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .bestmoney-logo .bestmoney-logo__image {
    width: 168px;
  }

  .site-footer__logo .bestmoney-logo__image,
  .footer-brand__logo .bestmoney-logo__image {
    width: 188px;
  }
}

/* BestMoney: creditor disclosure section */

.creditors-section {
  padding: 96px 0;
  background: var(--white);
  scroll-margin-top: 84px;
}

.creditors-heading {
  margin-bottom: 34px;
}

.creditors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.creditor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfbf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.creditor-card[open] {
  border-color: #b7c7f6;
  box-shadow: 0 16px 38px rgba(35, 57, 116, 0.08);
}

.creditor-card summary {
  min-height: 104px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.creditor-card summary::-webkit-details-marker {
  display: none;
}

.creditor-card__logo {
  width: 86px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #ecebe6;
  border-radius: 14px;
  background: var(--white);
}

.creditor-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.creditor-card__logo b {
  color: var(--blue);
  font-size: 1.4rem;
}

.creditor-card__name {
  min-width: 0;
}

.creditor-card__name strong,
.creditor-card__name small {
  display: block;
}

.creditor-card__name strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.creditor-card__name small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.creditor-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.creditor-card__toggle::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 1rem;
}

.creditor-card[open] .creditor-card__toggle::after {
  content: "−";
}

.creditor-card__body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--line);
}

.creditor-card__body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 0;
  padding: 20px 0;
}

.creditor-card__body dl div {
  min-width: 0;
}

.creditor-card__body dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creditor-card__body dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.86rem;
  line-height: 1.45;
}

.creditor-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.creditor-card__contacts a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.creditor-card__contacts a:last-child {
  color: var(--white);
  background: var(--blue);
}

.creditors-note,
.creditors-empty {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.creditors-empty {
  padding: 24px;
  border-radius: 18px;
  background: var(--paper);
}

@media (max-width: 900px) {
  .creditors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .creditors-section {
    padding: 72px 0;
  }

  .creditor-card summary {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 92px;
    gap: 12px;
    padding: 14px;
  }

  .creditor-card__logo {
    width: 72px;
    height: 54px;
  }

  .creditor-card__toggle {
    grid-column: 2;
  }

  .creditor-card__body {
    padding: 0 14px 16px;
  }

  .creditor-card__body dl {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

/* Modern direction: soft product UI, clear cards and restrained accents. */
:root {
  --ink: #10162b;
  --muted: #667085;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #e3e8f1;
  --line-dark: #d4dbe8;
  --blue: #4b5ff4;
  --blue-dark: #3548db;
  --blue-soft: #edf0ff;
  --yellow: #c9f4de;
  --shadow: 0 18px 55px rgba(35, 48, 93, 0.09);
}

body {
  background: var(--paper);
}

.site-header {
  border-bottom-color: rgba(212, 219, 232, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 22px rgba(34, 48, 86, 0.04);
}

.site-header__inner {
  min-height: 78px;
}

.site-nav {
  color: #505b73;
}

.header-action,
.button--header {
  min-height: 44px;
  padding-inline: 22px;
  border: 0;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(16, 22, 43, 0.13);
}

.header-action:hover,
.button--header:hover {
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 83% 14%, rgba(75, 95, 244, 0.14), transparent 29%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero::after {
  content: "";
  width: 340px;
  height: 340px;
  position: absolute;
  z-index: 0;
  right: -190px;
  bottom: -190px;
  border: 55px solid rgba(75, 95, 244, 0.06);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__top {
  grid-template-columns: minmax(0, 1.48fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 78px;
}

.eyebrow {
  width: max-content;
  padding: 9px 13px;
  border: 1px solid #dce2ff;
  border-radius: 999px;
  color: #3e50d6;
  background: rgba(237, 240, 255, 0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  box-shadow: none;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
}

.hero__aside {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(46, 57, 99, 0.08);
  backdrop-filter: blur(14px);
}

.hero__aside > p {
  margin-bottom: 23px;
  color: #4f5b73;
  font-size: 16px;
}

.hero__facts {
  gap: 8px;
}

.hero__facts span {
  padding: 11px 8px;
  border: 0;
  border-radius: 12px;
  text-align: center;
  background: #f5f7fc;
  font-size: 10px;
}

.hero__facts b {
  font-size: 17px;
}

.finder {
  margin-top: 38px;
  overflow: visible;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(38, 52, 99, 0.13);
}

.finder__field,
.finder__result {
  min-height: 108px;
  padding: 23px 25px 19px;
  border-right-color: var(--line);
}

.finder__field:first-child {
  border-radius: 24px 0 0 24px;
}

.finder__field label {
  color: #667085;
}

.finder input[type="range"] {
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 var(--range-progress, 20%), #e8ebf2 var(--range-progress, 20%) 100%);
}

.finder__result b {
  color: var(--blue);
}

.finder__button {
  min-width: 232px;
  margin: 10px;
  min-height: 88px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(75, 95, 244, 0.22);
}

.hero__note {
  margin-top: 16px;
}

.offers-section {
  padding: 88px 0 104px;
  background: var(--paper);
}

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

.section-kicker {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.section-heading h2,
.how-intro h2,
.faq-layout h2,
.policy-hero h1 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.03;
}

.offer-list-head {
  display: none;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.offer-row {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(37, 50, 91, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-row:hover {
  border-color: #cfd6ff;
  background: var(--white);
  box-shadow: 0 22px 48px rgba(40, 54, 98, 0.11);
  transform: translateY(-3px);
}

.offer-row--top {
  border-color: #d5dcff;
}

.offer-row__main {
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  padding: 22px;
}

.offer-row__company {
  grid-column: 1 / -1;
  grid-template-columns: 34px 112px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 8px;
}

.offer-row__number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #778096;
  background: #f1f4f9;
  font-size: 11px;
}

.offer-row--top .offer-row__number {
  color: var(--white);
  background: var(--blue);
}

.offer-row__logo {
  width: 112px;
  height: 62px;
  padding: 9px;
  border-color: #edf0f5;
  border-radius: 14px;
  background: #fbfcfe;
}

.offer-row__logo img {
  max-height: 40px;
}

.offer-row__company h3 {
  font-size: 19px;
}

.offer-row__company div > span {
  color: #8991a3;
}

.offer-stat {
  padding: 13px 12px;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: #f8faff;
}

.offer-stat > span {
  display: block;
  margin-bottom: 6px;
  color: #8a93a8;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-stat strong {
  color: #202840;
  font-size: 14px;
}

.offer-cta {
  grid-column: 1 / -1;
  min-height: 56px;
  margin-top: 2px;
  padding: 9px 12px 9px 21px;
  border-radius: 15px;
  box-shadow: 0 10px 22px rgba(75, 95, 244, 0.18);
  font-size: 15px;
}

.offer-row__legal {
  min-height: 92px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 15px 22px 18px;
  border-top-color: #edf0f5;
  background: #fbfcff;
}

.apr {
  width: 100%;
  justify-content: space-between;
}

.apr strong {
  color: #27304b;
}

.legal-links {
  justify-content: flex-start;
  gap: 7px 16px;
}

.legal-links a {
  color: #626d86;
  text-decoration-color: #b6bfd0;
}

.how-section {
  padding: 104px 0;
  border-radius: 36px 36px 0 0;
  background: #11182d;
}

.how-intro .section-kicker {
  color: #9ba8ff;
}

.steps li {
  border-color: #333c53;
}

.steps li > span {
  color: #a8b5ff;
}

.steps h3 {
  font-size: 26px;
}

.faq-section {
  padding: 104px 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  border: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.faq-list summary {
  padding: 21px 54px 21px 22px;
  font-size: 17px;
}

.faq-list summary::before,
.faq-list summary::after {
  top: 31px;
  right: 22px;
}

.faq-list details p {
  padding: 0 54px 21px 22px;
}

.responsible-card {
  grid-template-columns: 56px 1fr auto;
  padding: 28px 32px;
  border: 0;
  border-radius: 22px;
  background: #c9f4de;
  box-shadow: 0 14px 38px rgba(47, 99, 76, 0.09);
}

.responsible-card__mark {
  border: 0;
  background: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: #0c1224;
}

.site-footer__logo {
  border-radius: 12px;
}

.policy-hero {
  padding-top: 86px;
  background: linear-gradient(180deg, #ffffff, transparent);
}

.policy-hero__card {
  border-bottom: 0;
}

.policy-card {
  border-color: var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(37, 50, 91, 0.05);
}

@media (max-width: 1080px) {
  .hero__top {
    gap: 38px;
  }

  .finder {
    overflow: hidden;
  }

  .finder__field:first-child {
    border-radius: 24px 0 0 0;
  }

  .finder__button {
    min-height: 72px;
    margin: 8px;
    border-top: 0;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-row__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    background: rgba(255, 255, 255, 0.98);
  }

  .hero {
    padding-top: 52px;
  }

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

  .hero__aside {
    display: block;
  }

  .hero__aside > p {
    margin-bottom: 22px;
  }

  .offer-row__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-stat:nth-of-type(4) {
    grid-column: auto;
  }

  .offer-cta {
    grid-column: 1 / -1;
  }

  .responsible-card {
    grid-template-columns: 52px 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 38px 0 26px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .hero__aside {
    padding: 19px;
    border-radius: 20px;
  }

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

  .finder {
    margin-top: 24px;
    border-radius: 20px;
  }

  .finder__field:first-child {
    border-radius: 20px 20px 0 0;
  }

  .finder__button {
    min-height: 62px;
    margin: 8px;
    border-radius: 14px;
  }

  .offers-section,
  .faq-section {
    padding: 72px 0;
  }

  .offer-row {
    margin: 0;
    border-radius: 20px;
  }

  .offer-list {
    gap: 13px;
  }

  .offer-row__main {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 17px;
  }

  .offer-row__company {
    grid-template-columns: 30px 96px minmax(0, 1fr);
    gap: 10px;
  }

  .offer-row__logo {
    width: 96px;
    height: 56px;
  }

  .offer-stat {
    padding: 11px;
  }

  .offer-stat:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .offer-cta {
    grid-column: 1 / -1;
  }

  .offer-row__legal {
    min-height: 0;
    padding: 14px 17px 17px;
  }

  .apr {
    flex-direction: column;
  }

  .how-section {
    padding: 72px 0;
    border-radius: 26px 26px 0 0;
  }

  .faq-list summary {
    padding-left: 18px;
  }

  .faq-list details p {
    padding-left: 18px;
  }

  .responsible-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
}

/* Visual edition: illustration-led composition with varied offer hierarchy. */
:root {
  --ink: #12172c;
  --muted: #677084;
  --paper: #f6f2ea;
  --white: #ffffff;
  --line: #e7e1d6;
  --line-dark: #d7d0c4;
  --blue: #3658eb;
  --blue-dark: #2444ce;
  --blue-soft: #e8edff;
  --yellow: #c8f45d;
  --coral: #ff7557;
}

body {
  background: var(--paper);
}

.site-header {
  border-bottom: 0;
  background: rgba(246, 242, 234, 0.92);
  box-shadow: none;
}

.site-header__inner {
  min-height: 82px;
}

.site-nav {
  padding: 7px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  padding: 7px 15px;
  border-radius: 999px;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--white);
}

.header-action {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: none;
}

.header-action:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  overflow: visible;
  padding: 54px 0 32px;
  background: var(--paper);
}

.hero::after {
  display: none;
}

.hero__top {
  min-height: 510px;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: 60px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  border-color: #d9d1c3;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.eyebrow span {
  background: var(--coral);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.4vw, 86px);
  line-height: 0.92;
}

.hero h1 em {
  color: var(--blue);
}

.hero__lead {
  max-width: 590px;
  margin: 27px 0 25px;
  color: #555e72;
  font-size: 18px;
  line-height: 1.5;
}

.hero__facts {
  max-width: 550px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero__facts span {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
  background: rgba(255, 255, 255, 0.58);
}

.hero__facts b {
  color: var(--ink);
}

.sprite-icon {
  display: block;
  flex: 0 0 auto;
  border-radius: inherit;
  background-image: url("../images/finance-visuals.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.sprite-icon--phone {
  background-position: 0 0;
}

.sprite-icon--card {
  background-position: 50% 0;
}

.sprite-icon--coins {
  background-position: 100% 0;
}

.sprite-icon--shield {
  background-position: 0 100%;
}

.sprite-icon--speed {
  background-position: 50% 100%;
}

.sprite-icon--compare {
  background-position: 100% 100%;
}

.hero-visual {
  height: 500px;
  position: relative;
  isolation: isolate;
}

.hero-visual__backdrop {
  width: 78%;
  height: 86%;
  position: absolute;
  z-index: -1;
  top: 4%;
  right: 5%;
  border-radius: 46% 46% 32% 32%;
  background: var(--yellow);
  transform: rotate(4deg);
}

.hero-visual__object {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(28, 34, 65, 0.2);
}

.hero-visual__object .sprite-icon {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.hero-visual__object--phone {
  width: 265px;
  height: 305px;
  z-index: 3;
  top: 64px;
  left: 66px;
  transform: rotate(-7deg);
}

.hero-visual__object--card {
  width: 215px;
  height: 190px;
  z-index: 4;
  top: 22px;
  right: 22px;
  transform: rotate(7deg);
}

.hero-visual__object--coins {
  width: 190px;
  height: 180px;
  z-index: 4;
  right: 16px;
  bottom: 18px;
  transform: rotate(-5deg);
}

.hero-visual__status {
  min-width: 205px;
  display: flex;
  z-index: 6;
  position: absolute;
  left: 4px;
  bottom: 36px;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 38px rgba(24, 30, 58, 0.14);
  backdrop-filter: blur(12px);
}

.hero-visual__status > span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.hero-visual__status b,
.hero-visual__status small {
  display: block;
}

.hero-visual__status b {
  font-size: 14px;
}

.hero-visual__status small {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual__tag {
  position: absolute;
  z-index: 7;
  top: 15px;
  left: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(255, 117, 87, 0.24);
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-6deg);
}

.finder {
  margin-top: 24px;
  border: 1px solid rgba(18, 23, 44, 0.1);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(36, 40, 65, 0.1);
}

.finder__button {
  background: var(--ink);
  box-shadow: none;
}

.finder__button:hover {
  background: var(--blue);
}

.finder input[type="range"] {
  background: linear-gradient(90deg, var(--coral) 0 var(--range-progress, 20%), #ebe8e1 var(--range-progress, 20%) 100%);
}

.finder input[type="range"]::-webkit-slider-thumb {
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}

.finder__result b {
  color: var(--coral);
}

.visual-benefits {
  padding: 30px 0 76px;
  background: var(--paper);
}

.visual-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-benefits article {
  min-height: 142px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 18px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.visual-benefits .sprite-icon {
  width: 88px;
  height: 88px;
  border: 4px solid var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(26, 32, 62, 0.13);
}

.visual-benefits h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.visual-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.offers-section {
  padding: 90px 0 105px;
  border-radius: 38px 38px 0 0;
  background: var(--white);
}

.offer-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-row {
  border-color: #e8eaf0;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(25, 31, 58, 0.055);
}

.offer-row:hover {
  border-color: #cfd6ff;
  box-shadow: 0 18px 42px rgba(25, 31, 58, 0.1);
}

.offer-row--lead,
.offer-row--compact {
  grid-column: 1 / -1;
}

.offer-row--lead {
  border: 0;
  background: var(--blue-soft);
  box-shadow: none;
}

.offer-row--lead:hover {
  background: var(--blue-soft);
}

.offer-row--lead .offer-row__main,
.offer-row--compact .offer-row__main {
  grid-template-columns: minmax(230px, 1.7fr) repeat(3, minmax(110px, 0.8fr)) minmax(180px, 0.85fr);
  align-items: center;
  gap: 12px;
}

.offer-row--lead .offer-row__company,
.offer-row--compact .offer-row__company {
  grid-column: auto;
  padding-bottom: 0;
}

.offer-row--lead .offer-cta,
.offer-row--compact .offer-cta {
  grid-column: auto;
  margin-top: 0;
}

.offer-row--lead .offer-row__number {
  color: var(--ink);
  background: var(--yellow);
}

.offer-row--lead .offer-stat {
  border-color: rgba(75, 95, 244, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.offer-row--lead .offer-row__legal {
  background: rgba(255, 255, 255, 0.42);
}

.offer-row--compact {
  border-radius: 18px;
  box-shadow: none;
}

.offer-row--compact .offer-row__main {
  padding-block: 15px;
}

.offer-row--compact .offer-row__logo {
  width: 96px;
  height: 54px;
}

.offer-row--compact .offer-row__company {
  grid-template-columns: 32px 96px minmax(0, 1fr);
}

.offer-row--compact .offer-stat {
  padding: 10px;
  border: 0;
  background: #f7f8fb;
}

.offer-row--compact .offer-row__legal {
  min-height: 0;
  padding-block: 11px 13px;
}

.offer-cta {
  background: var(--coral);
  box-shadow: none;
}

.offer-cta:hover {
  background: #eb5d40;
}

.how-section {
  border-radius: 0;
  background: var(--ink);
}

.steps li {
  grid-template-columns: 92px 1fr;
  align-items: center;
}

.steps .step-visual {
  width: 78px;
  height: 78px;
  border: 4px solid #2d344c;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.steps li > div small {
  display: block;
  margin-bottom: 5px;
  color: #8fa0d8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-section {
  background: #f5f7fb;
}

.responsible-section {
  background: #f5f7fb;
}

.responsible-card {
  background: var(--yellow);
}

@media (max-width: 1080px) {
  .hero__top {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
  }

  .hero-visual {
    height: 440px;
  }

  .hero-visual__object--phone {
    width: 225px;
    height: 270px;
    left: 42px;
  }

  .hero-visual__object--card {
    width: 178px;
    height: 165px;
  }

  .hero-visual__object--coins {
    width: 165px;
    height: 155px;
  }

  .visual-benefits article {
    grid-template-columns: 70px 1fr;
  }

  .visual-benefits .sprite-icon {
    width: 70px;
    height: 70px;
  }

  .offer-row--lead .offer-row__main,
  .offer-row--compact .offer-row__main {
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(96px, 0.8fr));
  }

  .offer-row--lead .offer-cta,
  .offer-row--compact .offer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-nav {
    width: 100%;
    padding: 8px 20px 18px;
    border: 0;
    border-radius: 0;
    background: rgba(246, 242, 234, 0.98);
  }

  .site-nav a {
    border-radius: 0;
  }

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

  .hero h1 {
    max-width: 700px;
  }

  .hero__lead,
  .hero__facts {
    max-width: 650px;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .visual-benefits__grid {
    grid-template-columns: 1fr;

  }

  .visual-benefits article {
    min-height: 118px;
  }

  .offer-row--lead .offer-row__main,
  .offer-row--compact .offer-row__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-row--lead .offer-row__company,
  .offer-row--compact .offer-row__company,
  .offer-row--lead .offer-cta,
  .offer-row--compact .offer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .visual-benefits {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 62px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__facts span {
    padding: 9px;
    font-size: 9px;
  }

  .hero__facts b {
    font-size: 15px;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-visual__backdrop {
    width: 82%;
    right: 7%;
  }

  .hero-visual__object {
    border-width: 5px;
    border-radius: 20px;
  }

  .hero-visual__object--phone {
    width: 176px;
    height: 210px;
    top: 64px;
    left: 25px;
  }

  .hero-visual__object--card {
    width: 142px;
    height: 130px;
    right: 8px;
  }

  .hero-visual__object--coins {
    width: 126px;
    height: 120px;
    right: 10px;
    bottom: 4px;
  }

  .hero-visual__status {
    min-width: 172px;
    left: 0;
    bottom: 10px;
    padding: 10px;
  }

  .hero-visual__tag {
    top: 4px;
    left: 3px;
  }

  .visual-benefits {
    padding-bottom: 62px;
  }

  .visual-benefits article {
    grid-template-columns: 68px 1fr;
    padding: 14px;
    border-radius: 18px;
  }

  .visual-benefits .sprite-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .offers-section {
    border-radius: 26px 26px 0 0;
  }

  .offer-row--lead .offer-row__main,
  .offer-row--compact .offer-row__main {
    grid-template-columns: 1fr 1fr;
  }

  .offer-row--lead .offer-row__company,
  .offer-row--compact .offer-row__company,
  .offer-row--lead .offer-cta,
  .offer-row--compact .offer-cta {
    grid-column: 1 / -1;
  }

  .offer-row--lead .offer-stat:nth-of-type(4),
  .offer-row--compact .offer-stat:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .steps li {
    grid-template-columns: 72px 1fr;
  }

  .steps .step-visual {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }
}

/* Requested refinement: new background, new typeface and uniform offer cards. */
:root {
  --paper: #eef3fb;
  --line: #dfe6f1;
  --line-dark: #ced8e7;
}

body,
button,
input {
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.offer-cta,
.primary-button,
.header-action {
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

.site-header {
  background: rgba(238, 243, 251, 0.92);
}

.hero {
  background:
    radial-gradient(circle at 8% 12%, rgba(200, 244, 93, 0.22), transparent 24%),
    radial-gradient(circle at 90% 16%, rgba(54, 88, 235, 0.12), transparent 27%),
    #eef3fb;
}

.hero h1,
.section-heading h2,
.how-intro h2,
.faq-layout h2,
.policy-hero h1 {
  font-weight: 750;
  letter-spacing: -0.045em;
}

.eyebrow,
.hero__facts span,
.visual-benefits article {
  background: rgba(255, 255, 255, 0.76);
}

.visual-benefits {
  background: #eef3fb;
}

.offers-section {
  background: #f8faff;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.offer-row,
.offer-row--lead,
.offer-row--top,
.offer-row--compact {
  grid-column: auto;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e0e6f0;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 9px 28px rgba(28, 39, 76, 0.06);
}

.offer-row:hover,
.offer-row--lead:hover,
.offer-row--top:hover,
.offer-row--compact:hover {
  border-color: #cdd6ef;
  background: var(--white);
  box-shadow: 0 17px 38px rgba(28, 39, 76, 0.1);
  transform: translateY(-2px);
}

.offer-row .offer-row__main,
.offer-row--lead .offer-row__main,
.offer-row--top .offer-row__main,
.offer-row--compact .offer-row__main {
  min-height: 318px;
  flex: 1 1 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  padding: 22px;
}

.offer-row .offer-row__company,
.offer-row--lead .offer-row__company,
.offer-row--top .offer-row__company,
.offer-row--compact .offer-row__company {
  grid-column: 1 / -1;
  grid-template-columns: 34px 112px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 8px;
}

.offer-row .offer-row__number,
.offer-row--lead .offer-row__number,
.offer-row--top .offer-row__number,
.offer-row--compact .offer-row__number {
  width: 32px;
  height: 32px;
  color: #68748b;
  background: #edf1f7;
}

.offer-row .offer-row__logo,
.offer-row--lead .offer-row__logo,
.offer-row--top .offer-row__logo,
.offer-row--compact .offer-row__logo {
  width: 112px;
  height: 62px;
}

.offer-row .offer-stat,
.offer-row--lead .offer-stat,
.offer-row--top .offer-stat,
.offer-row--compact .offer-stat {
  min-height: 68px;
  padding: 13px 12px;
  border: 1px solid #e8edf4;
  background: #f6f8fc;
}

.offer-row .offer-cta,
.offer-row--lead .offer-cta,
.offer-row--top .offer-cta,
.offer-row--compact .offer-cta {
  min-height: 56px;
  grid-column: 1 / -1;
  margin-top: 2px;
}

.offer-row .offer-row__legal,
.offer-row--lead .offer-row__legal,
.offer-row--top .offer-row__legal,
.offer-row--compact .offer-row__legal {
  min-height: 112px;
  flex: 0 0 auto;
  padding: 15px 22px 18px;
  background: #f8faff;
}

.faq-section,
.responsible-section {
  background: #eef3fb;
}

.policy-hero {
  background: linear-gradient(180deg, #f8faff, transparent);
}

@media (max-width: 1080px) {
  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-row .offer-row__main,
  .offer-row--lead .offer-row__main,
  .offer-row--top .offer-row__main,
  .offer-row--compact .offer-row__main {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-nav {
    background: rgba(238, 243, 251, 0.98);
  }

  .offer-row .offer-row__main,
  .offer-row--lead .offer-row__main,
  .offer-row--top .offer-row__main,
  .offer-row--compact .offer-row__main {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 17px;
  }

  .offer-row .offer-row__company,
  .offer-row--lead .offer-row__company,
  .offer-row--top .offer-row__company,
  .offer-row--compact .offer-row__company,
  .offer-row .offer-cta,
  .offer-row--lead .offer-cta,
  .offer-row--top .offer-cta,
  .offer-row--compact .offer-cta {
    grid-column: 1 / -1;
  }

  .offer-row .offer-stat:nth-of-type(4),
  .offer-row--lead .offer-stat:nth-of-type(4),
  .offer-row--top .offer-stat:nth-of-type(4),
  .offer-row--compact .offer-stat:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .offer-row .offer-row__legal,
  .offer-row--lead .offer-row__legal,
  .offer-row--top .offer-row__legal,
  .offer-row--compact .offer-row__legal {
    min-height: 0;
    padding: 14px 17px 17px;
  }
}

/* Rebuilt FAQ and home footer. */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  color: var(--white);
  background: #3658eb;
}

.faq-section::before {
  content: "";
  width: 430px;
  height: 430px;
  position: absolute;
  left: -250px;
  bottom: -270px;
  border: 74px solid rgba(200, 244, 93, 0.13);
  border-radius: 50%;
}

.faq-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: 82px;
}

.faq-intro {
  position: sticky;
  top: 116px;
}

.faq-intro .section-kicker {
  color: var(--yellow);
}

.faq-intro h2 {
  max-width: 490px;
  color: var(--white);
}

.faq-intro > p:not(.section-kicker) {
  max-width: 430px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.faq-visual {
  max-width: 390px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 15px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(20, 28, 67, 0.27);
}

.faq-visual .sprite-icon {
  width: 78px;
  height: 78px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 17px;
}

.faq-visual b,
.faq-visual small {
  display: block;
}

.faq-visual b {
  margin-bottom: 3px;
  font-size: 14px;
}

.faq-visual small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.faq-list {
  display: grid;
  gap: 12px;
  border: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 32px rgba(22, 33, 91, 0.13);
  transition: background 180ms ease, transform 180ms ease;
}

.faq-list details[open] {
  background: var(--white);
  transform: translateX(-6px);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 58px 20px 20px;
  font-size: 17px;
}

.faq-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #3658eb;
  background: #e9edff;
  font-size: 11px;
  font-weight: 750;
}

.faq-list details[open] .faq-number {
  color: var(--ink);
  background: var(--yellow);
}

.faq-list summary::before,
.faq-list summary::after {
  top: 38px;
  right: 23px;
  background: #44506a;
}

.faq-list details p {
  max-width: none;
  padding: 0 58px 22px 74px;
  color: #687187;
}

.site-footer--home {
  padding: 0 0 28px;
  color: var(--ink);
  background: #eef3fb;
}

.footer-cta-panel {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 52px 58px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(200, 244, 93, 0.2), transparent 24%),
    #12172c;
}

.footer-eyebrow {
  margin-bottom: 13px;
  color: #aab6df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-cta-panel h2 {
  margin-bottom: 15px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.footer-cta-panel > div > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: #aeb6cc;
  font-size: 16px;
}

.footer-main-action {
  min-width: 235px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 10px 9px 22px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 750;
  transition: transform 170ms ease, background 170ms ease;
}

.footer-main-action:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.footer-main-action span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(145px, 0.7fr));
  gap: 42px;
  padding: 54px 10px 42px;
}

.footer-brand__logo {
  margin-bottom: 19px;
}

.footer-brand__logo img {
  width: 165px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-column > strong {
  margin-bottom: 16px;
  color: #8993aa;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column nav a,
.footer-contact > a {
  font-size: 13px;
  font-weight: 650;
}

.footer-column nav a:hover,
.footer-contact > a:hover {
  color: var(--blue);
}

.footer-contact > a {
  margin-bottom: 12px;
  color: var(--blue);
}

.footer-contact span {
  color: var(--muted);
  font-size: 12px;
}

.footer-disclaimer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 24px 10px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #7a8499;
  font-size: 11px;
}

.footer-disclaimer p {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 10px 0;
  color: #8c95a8;
  font-size: 11px;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  .faq-section {
    padding: 72px 0;
  }

  .faq-visual {
    grid-template-columns: 68px 1fr;
  }

  .faq-visual .sprite-icon {
    width: 68px;
    height: 68px;
  }

  .faq-list details[open] {
    transform: none;
  }

  .faq-list summary {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 17px 50px 17px 15px;
    font-size: 15px;
  }

  .faq-number {
    width: 34px;
    height: 34px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    top: 33px;
    right: 17px;
  }

  .faq-list details p {
    padding: 0 20px 19px 61px;
    font-size: 14px;
  }

  .site-footer--home {
    padding-bottom: 22px;
  }

  .footer-cta-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 25px;
    border-radius: 24px;
  }

  .footer-cta-panel h2 {
    font-size: 42px;
  }

  .footer-main-action {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
    padding: 42px 4px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-inline: 4px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-inline: 4px;
  }
}

/* BestMoney — Ukraine localization and conversion layout. */
.bestmoney-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #10162b;
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.045em;
}

.bestmoney-logo em {
  color: var(--blue);
  font-style: normal;
}

.bestmoney-logo__mark {
  width: 37px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 7px 16px rgba(54, 88, 235, 0.2);
}

.hero {
  padding-bottom: 68px;
}

.hero__top {
  min-height: 540px;
}

.hero__lead {
  margin-bottom: 24px;
}

.hero__cta {
  width: max-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 9px 8px 21px;
  border-radius: 16px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(54, 88, 235, 0.22);
  font-size: 15px;
  font-weight: 750;
  transition: background 170ms ease, transform 170ms ease;
}

.hero__cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.hero__cta span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
}

.hero__disclaimer {
  max-width: 520px;
  margin: 13px 0 0;
  color: #7c879a;
  font-size: 11px;
}

.hero-visual__backdrop {
  animation: loanup-backdrop 7s ease-in-out infinite;
  will-change: transform;
}

.hero-visual__object--phone {
  animation: loanup-float-phone 5.6s ease-in-out infinite;
  will-change: transform;
}

.hero-visual__object--card {
  animation: loanup-float-card 4.8s ease-in-out .35s infinite;
  will-change: transform;
}

.hero-visual__object--coins {
  animation: loanup-float-coins 5.2s ease-in-out .7s infinite;
  will-change: transform;
}

.hero-visual__status {
  animation: loanup-status 4.5s ease-in-out 1s infinite;
  will-change: transform;
}

.hero-visual__tag {
  animation: loanup-tag 3.8s ease-in-out .5s infinite;
  will-change: transform;
}

@keyframes loanup-backdrop {
  0%,100% { transform: rotate(4deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.025); }
}

@keyframes loanup-float-phone {
  0%,100% { transform: translate3d(0,0,0) rotate(-7deg); }
  50% { transform: translate3d(0,-14px,0) rotate(-4deg); }
}

@keyframes loanup-float-card {
  0%,100% { transform: translate3d(0,0,0) rotate(7deg); }
  50% { transform: translate3d(7px,-11px,0) rotate(3deg); }
}

@keyframes loanup-float-coins {
  0%,100% { transform: translate3d(0,0,0) rotate(-5deg); }
  50% { transform: translate3d(-7px,-12px,0) rotate(-1deg); }
}

@keyframes loanup-status {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(7px,-7px,0); }
}

@keyframes loanup-tag {
  0%,100% { transform: translate3d(0,0,0) rotate(-6deg); }
  50% { transform: translate3d(0,-8px,0) rotate(-2deg); }
}

.offers-section {
  background: #f8faff;
}

.offer-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.offer-row {
  height: 100%;
}

.offer-row__main {
  min-height: 330px;
}

.offer-row__company {
  grid-template-columns: 31px 124px minmax(0, 1fr);
  gap: 12px;
}

.offer-row__logo {
  width: 124px;
  height: 70px;
  padding: 8px;
}

.offer-row__company h3 {
  font-size: 17px;
}

.offer-stat {
  padding-inline: 9px;
}

.offer-stat strong {
  font-size: 12px;
}

.offer-cta {
  padding-left: 16px;
}

.button-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0;
  transition: transform 160ms ease, background 160ms ease;
}

.button-icon::before,
.button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
}

.button-icon::before {
  left: 9px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.button-icon::after {
  right: 9px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.offer-cta:hover .button-icon {
  background: var(--white);
  transform: translateX(2px);
}

.offer-row__legal {
  min-height: 132px;
}

.apr {
  flex-direction: column;
}

.footer-brand__logo {
  width: max-content;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
}

@media (max-width: 1180px) {
  .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-row__company {
    grid-template-columns: 34px 142px minmax(0, 1fr);
  }

  .offer-row__logo {
    width: 142px;
    height: 76px;
  }

  .offer-stat strong {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .offer-list {
    grid-template-columns: 1fr;
  }

  .offer-row__main {
    min-height: 0;
  }

  .offer-row__legal {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .bestmoney-logo {
    font-size: 21px;
  }

  .bestmoney-logo__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero__top {
    min-height: 0;
  }

  .hero__cta {
    width: 100%;
    justify-content: space-between;
  }

  .offer-row__company {
    grid-template-columns: 30px 112px minmax(0, 1fr);
  }

  .offer-row__logo {
    width: 112px;
    height: 66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual__backdrop,
  .hero-visual__object--phone,
  .hero-visual__object--card,
  .hero-visual__object--coins,
  .hero-visual__status,
  .hero-visual__tag {
    animation: none !important;
  }
}
