:root {
  --pink: #ff0054;
  --pink-dark: #e6004c;
  --pink-soft: #ffe8f0;
  --ink: #0d0d0f;
  --text: #404047;
  --muted: #76767f;
  --line: #e8e8ec;
  --soft: #f6f6f8;
  --soft-2: #fafafd;
  --white: #ffffff;
  --footer: #111116;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shell: 1280px;
  --shadow: 0 20px 55px rgba(26, 13, 22, 0.08);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}

.page-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

/* ---------- top bar ---------- */
.announcement {
  min-height: 34px;
  background: #f0f0f2;
  border-bottom: 1px solid #e3e3e6;
  font-size: 12px;
  color: #33343a;
}
.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.announcement a {
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- header ---------- */
.header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ededf0;
}
.header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo__image {
  display: block;
  width: auto;
  height: 30px;
  max-width: 190px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 18px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: #25262b;
  white-space: nowrap;
}
.nav a span {
  margin-left: 3px;
  color: #73747b;
}
.nav a:hover,
.login:hover {
  color: var(--pink);
}
.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.locale {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 12px;
  cursor: pointer;
}
.locale__globe {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #dadbe0;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.login {
  font-size: 13px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

/* ---------- buttons ---------- */
.button {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--pink-dark);
  box-shadow: 0 12px 25px rgba(255, 0, 84, 0.22);
}
.button--small {
  min-height: 38px;
  padding-inline: 20px;
  font-size: 12px;
}
.button--hero {
  min-height: 52px;
  padding-inline: 31px;
}
.button--dark {
  background: var(--ink);
}
.button--dark:hover {
  background: #25252a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}
.button--white {
  background: white;
  color: var(--ink);
}
.button--white:hover {
  background: #f7f7f7;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
}
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 594px;
  overflow: hidden;
  display: flex;
  padding-bottom: 30px;
  align-items: flex-start;
  background:
    radial-gradient(
      70% 42% at 50% 105%,
      rgba(255, 0, 84, 0.98) 0%,
      rgba(255, 39, 109, 0.77) 28%,
      rgba(255, 141, 176, 0.36) 54%,
      rgba(255, 255, 255, 0) 77%
    ),
    linear-gradient(180deg, #f7f7fa 0%, #f8f8fa 55%, #fff3f7 80%, #ffc1d6 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 116px;
}
.hero h1 {
  margin: 0 auto;
  max-width: 980px;
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.056em;
  font-weight: 760;
}
.hero h1 span {
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    94.88deg,
    #ff0051 38.92%,
    #79003d 77.48%,
    #13002d 98.13%
  );
}
.hero p {
  max-width: 760px;
  margin: 24px auto 30px;
  color: #4f5057;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.hero__coin {
  position: absolute;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 32px;
  color: #7f6e3d;
  background: radial-gradient(
    circle at 32% 28%,
    #fff5cf 0%,
    #eedca0 42%,
    #cbb473 100%
  );
  border: 7px solid #d8c17a;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.45),
    0 18px 35px rgba(70, 44, 12, 0.16);
}
.hero__coin::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px dashed rgba(90, 70, 26, 0.25);
  border-radius: 50%;
}
.hero__coin--left {
  left: -33px;
  bottom: 93px;
  transform: rotate(-17deg);
}
.hero__coin--right {
  right: -37px;
  bottom: 43px;
  transform: scale(1.17) rotate(12deg);
  background: radial-gradient(
    circle at 32% 28%,
    #f8f7ff 0%,
    #d8d5ec 45%,
    #ada8ce 100%
  );
  color: #625b86;
  border-color: #c2bedb;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.52;
}
.hero__orb--one {
  width: 34px;
  height: 34px;
  background: #ff477e;
  left: 16%;
  top: 35%;
}
.hero__orb--two {
  width: 24px;
  height: 24px;
  background: #ffb3cd;
  right: 17%;
  top: 29%;
}

/* ---------- trusted ---------- */
.trusted {
  padding: 70px 0 76px;
  background: white;
}
.trusted h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-logo {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.partner-logo img {
  width: auto;
  height: 44px;
  max-width: 112px;
  object-fit: contain;
}
.partner-logo:last-child {
  border-right: 0;
}

/* ---------- generic sections ---------- */
.section {
  padding: 110px 0;
}
.section--soft {
  background: #f7f7f9;
}
.section-title {
  text-align: center;
  margin-bottom: 54px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.052em;
}
.section-title--wide h2 {
  max-width: 900px;
  margin-inline: auto;
}
.section-title--left {
  text-align: left;
}
.kicker {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink);
}
.center-action {
  text-align: center;
  margin-top: 42px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.arrow-link span {
  color: var(--pink);
  font-size: 18px;
  transition: transform 0.16s ease;
}
.arrow-link:hover span {
  transform: translateX(4px);
}

/* ---------- benefits ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.benefit-card {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid #ececf0;
  overflow: hidden;
  min-height: 456px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.benefit-card:nth-child(4) {
  grid-column: span 3;
}
.benefit-card--wide {
  grid-column: span 3;
}
.benefit-card__media {
  margin: 12px;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f2f4;
  aspect-ratio: 1.53 / 1;
}
.benefit-card__media img {
  width: 100%;
  height: 134px;
  object-fit: cover;
  object-position: center;
}
.benefit-card__body {
  padding: 14px 26px 28px;
}
.benefit-card h3 {
  margin: 0 0 11px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.benefit-card p {
  margin: 0;
  color: #62636b;
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- card offer ---------- */
.card-offer {
  padding: 0 0 110px;
  background: #f7f7f9;
}
.card-offer__panel {
  min-height: 540px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(125deg, #ff165f 0%, #ff0054 52%, #db003f 100%);
  color: white;
}
.card-offer__panel::after {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  right: -135px;
  top: -150px;
}
.card-offer__copy {
  position: relative;
  z-index: 2;
  padding: 70px 0 70px 74px;
  max-width: 590px;
}
.card-offer .kicker {
  color: rgba(255, 255, 255, 0.72);
}
.card-offer h2 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.card-offer__copy > p:not(.kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-size: 15px;
  max-width: 510px;
}
.offer-points {
  display: flex;
  gap: 50px;
  margin: 38px 0;
}
.offer-points div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.offer-points strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}
.offer-points span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.terms {
  margin-left: 15px;
  font-size: 11px;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}
.card-offer__visual {
  position: relative;
  z-index: 2;
  min-height: 500px;
}
.pink-card {
  position: absolute;
  width: 325px;
  height: 204px;
  border-radius: 22px;
  box-shadow: 0 35px 60px rgba(77, 0, 26, 0.3);
}
.pink-card--back {
  background: linear-gradient(135deg, #3c0d2b, #7b113f);
  right: 74px;
  top: 120px;
  transform: rotate(12deg);
  opacity: 0.8;
}
.pink-card--front {
  right: 116px;
  top: 188px;
  transform: rotate(-7deg);
  background: linear-gradient(135deg, #ff80a9, #ff2d71 42%, #ce003e);
  padding: 25px;
}
.pink-card__brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.pink-card__chip {
  width: 44px;
  height: 33px;
  border-radius: 9px;
  background: linear-gradient(135deg, #f6df9f, #cba95b);
  margin-top: 30px;
}
.pink-card__number {
  margin-top: 31px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.pink-card__footer {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* ---------- solutions ---------- */
.solutions {
  background: white;
}
.solution-row {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 84px;
  padding: 50px 0;
}
.solution-row + .solution-row {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 92px;
}
.solution-row--reverse .solution-media {
  order: 2;
}
.solution-row--reverse .solution-copy {
  order: 1;
}
.solution-media {
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
}
.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(20, 20, 22, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12),
    rgba(0, 0, 0, 0.02)
  );
}
.photo-placeholder span {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 15px;
  border-radius: 999px;
}
.photo-placeholder--one {
  background: linear-gradient(135deg, #efe4df, #d8c8c0 48%, #e9d7cd);
}
.photo-placeholder--two {
  background: linear-gradient(135deg, #d6dce2, #b8c3cb 48%, #e2e7e8);
}
.photo-placeholder--portrait {
  background: linear-gradient(135deg, #f1d9d0, #d2a895);
}
.solution-copy {
  max-width: 520px;
}
.solution-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.solution-copy > p:not(.kicker) {
  color: #5d5e65;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 17px;
}
.solution-copy .arrow-link {
  margin-top: 14px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
}
.check-list li {
  font-size: 13px;
  color: #4c4d54;
}
.check-list li::before {
  content: "✓";
  color: var(--pink);
  margin-right: 8px;
  font-weight: 800;
}

/* ---------- about ---------- */
.about {
  padding: 110px 0;
  background: #111116;
  color: white;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 95px;
  align-items: end;
}
.about .kicker {
  color: #ff6d9e;
}
.about__headline h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.about__headline > p:not(.kicker) {
  color: #b6b6be;
  line-height: 1.65;
  max-width: 500px;
  margin: 24px 0;
}
.about .arrow-link {
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #33333b;
  border-left: 1px solid #33333b;
}
.stat {
  padding: 34px;
  border-right: 1px solid #33333b;
  border-bottom: 1px solid #33333b;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.stat strong {
  font-size: 38px;
  letter-spacing: -0.04em;
}
.stat span {
  font-size: 12px;
  color: #9d9da5;
}

.security-strip {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.security-strip__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.security-strip p {
  max-width: 390px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #65666d;
}
.bank-logos {
  margin-left: auto;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bank-logos span {
  height: 60px;
  display: grid;
  place-items: center;
  color: #96979d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  border-left: 1px solid var(--line);
}

/* ---------- support ---------- */
.support {
  background: #fbfbfc;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.support-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  min-height: 270px;
}
.support-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.support-card h3 {
  margin: 36px 0 13px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.support-card p {
  margin: 0;
  color: #67686f;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- testimonials ---------- */
.testimonials {
  padding: 110px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 20px;
  align-items: stretch;
}
.testimonial {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
}
.testimonial--feature {
  padding: 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
}
.testimonial__photo {
  min-height: 100%;
  border-radius: 0;
}
.testimonial__content {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.testimonial--feature .quote {
  font-size: 26px;
}
.person {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 35px;
}
.person strong {
  font-size: 13px;
}
.person span {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- reviews ---------- */
.reviews {
  padding: 92px 0 110px;
  background: #f6f6f8;
}
.reviews__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}
.reviews__top > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 13px;
  align-items: center;
}
.reviews__top .stars {
  grid-column: 1 / -1;
}
.reviews__top strong {
  font-size: 22px;
}
.reviews__top span {
  color: var(--muted);
  font-size: 12px;
}
.stars {
  color: #00b67a;
  letter-spacing: 3px;
  font-size: 18px;
}
.stars--small {
  font-size: 14px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #ececef;
  padding: 28px;
  min-height: 220px;
}
.review-card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}
.review-card p {
  color: #5f6066;
  font-size: 13px;
  line-height: 1.55;
}
.review-card small {
  color: #94959b;
}

/* ---------- CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--pink);
  color: white;
  padding: 100px 0;
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(46px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.final-cta p {
  max-width: 620px;
  margin: 25px auto 34px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.final-cta__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.final-cta__orb--one {
  width: 480px;
  height: 480px;
  left: -210px;
  top: -160px;
}
.final-cta__orb--two {
  width: 620px;
  height: 620px;
  right: -280px;
  bottom: -430px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--footer);
  color: white;
  padding: 70px 0 30px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 45px;
  border-bottom: 1px solid #2f2f35;
}
.logo--footer .logo__image {
  max-height: 32px;
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #3a3a41;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c5c5ca;
  font-size: 12px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 58px 0;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col h3 {
  margin: 0 0 8px;
  font-size: 13px;
}
.footer__col a {
  color: #9b9ba2;
  font-size: 12px;
}
.footer__col a:hover {
  color: white;
}
.footer__legal {
  border-top: 1px solid #2f2f35;
  border-bottom: 1px solid #2f2f35;
  padding: 28px 0;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.footer__legal p {
  max-width: 650px;
  color: #77777f;
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
}
.footer__legal div {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}
.footer__legal a {
  font-size: 10px;
  color: #9b9ba2;
}
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: #6d6d74;
  font-size: 10px;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .page-shell {
    width: min(var(--shell), calc(100% - 42px));
  }
  .nav {
    gap: 18px;
    margin-left: 8px;
  }
  .nav a {
    font-size: 12px;
  }
  .locale__label {
    display: none;
  }
  .header__actions {
    gap: 12px;
  }
  .hero {
    min-height: 550px;
  }
  .hero__content {
    padding-top: 100px;
  }
  .logo-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-logo:nth-child(4n) {
    border-right: 0;
  }
  .partner-logo:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .card-offer__copy {
    padding-left: 52px;
  }
  .pink-card {
    width: 280px;
    height: 177px;
  }
  .pink-card--back {
    right: 42px;
  }
  .pink-card--front {
    right: 72px;
  }
  .solution-row {
    gap: 52px;
  }
  .solution-media {
    min-height: 430px;
  }
  .about__inner {
    gap: 55px;
  }
  .testimonial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .testimonial-grid .testimonial:last-child {
    display: none;
  }
}

@media (max-width: 880px) {
  .header__inner {
    height: 66px;
  }
  .nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 25px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  .nav a {
    width: 100%;
    padding: 11px 0;
    font-size: 14px;
  }
  .nav-toggle:checked ~ .nav {
    display: flex;
  }
  .menu-button {
    display: flex;
  }
  .locale,
  .login {
    display: none;
  }
  .hero {
    min-height: 520px;
  }
  .hero__content {
    padding-top: 88px;
  }
  .hero p {
    font-size: 15px;
    max-width: 620px;
  }
  .hero__coin {
    width: 78px;
    height: 78px;
  }
  .hero__coin--left {
    bottom: 57px;
  }
  .hero__coin--right {
    bottom: 33px;
  }
  .section {
    padding: 88px 0;
  }
  .benefit-card {
    grid-column: span 3;
  }
  .benefit-card:nth-child(4),
  .benefit-card--wide {
    grid-column: span 3;
  }
  .card-offer__panel {
    grid-template-columns: 1fr;
  }
  .card-offer__copy {
    padding: 58px 52px 20px;
  }
  .card-offer__visual {
    min-height: 360px;
  }
  .pink-card--back {
    right: 16%;
    top: 70px;
  }
  .pink-card--front {
    right: 28%;
    top: 130px;
  }
  .solution-row,
  .solution-row--reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .solution-row--reverse .solution-media,
  .solution-row--reverse .solution-copy {
    order: initial;
  }
  .solution-media {
    min-height: 470px;
  }
  .solution-copy {
    max-width: 680px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    margin-top: 10px;
  }
  .security-strip__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .security-strip p {
    max-width: 600px;
  }
  .bank-logos {
    margin-left: 0;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-card {
    min-height: auto;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid .testimonial:last-child {
    display: flex;
  }
  .testimonial--feature {
    min-height: 420px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 32px);
  }
  .announcement {
    min-height: 38px;
  }
  .announcement__inner {
    min-height: 38px;
    gap: 10px;
    font-size: 10px;
    justify-content: space-between;
  }
  .announcement__inner span {
    max-width: 70%;
  }
  .header__inner {
    height: 62px;
  }
  .logo__image {
    height: 27px;
    max-width: 160px;
  }
  .button--small {
    display: none;
  }
  .nav {
    top: 62px;
  }
  .hero {
    min-height: 475px;
  }
  .hero__content {
    padding-top: 74px;
  }
  .hero h1 {
    font-size: 35px;
    line-height: 1.01;
  }
  .hero p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.55;
  }
  .button--hero {
    min-height: 48px;
    padding-inline: 26px;
    font-size: 13px;
  }
  .hero__coin {
    width: 62px;
    height: 62px;
    border-width: 5px;
    font-size: 22px;
  }
  .hero__coin--left {
    left: -26px;
    bottom: 60px;
  }
  .hero__coin--right {
    right: -27px;
    bottom: 35px;
  }
  .hero__orb {
    display: none;
  }
  .trusted {
    padding: 56px 0 62px;
  }
  .trusted h2 {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-logo {
    min-height: 70px;
    border-bottom: 1px solid var(--line) !important;
  }
  .partner-logo:nth-child(2n) {
    border-right: 0;
  }
  .partner-logo:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }
  .section {
    padding: 76px 0;
  }
  .section-title {
    margin-bottom: 38px;
  }
  .section-title h2 {
    font-size: 38px;
  }
  .benefit-grid {
    display: block;
  }
  .benefit-card {
    min-height: 0;
    margin-bottom: 16px;
  }
  .benefit-card__media {
    aspect-ratio: 1.48 / 1;
  }
  .benefit-card__body {
    padding: 12px 22px 26px;
  }
  .card-offer {
    padding-bottom: 76px;
  }
  .card-offer__panel {
    border-radius: 28px;
  }
  .card-offer__copy {
    padding: 42px 28px 5px;
  }
  .card-offer h2 {
    font-size: 39px;
  }
  .offer-points {
    gap: 28px;
  }
  .offer-points strong {
    font-size: 28px;
  }
  .card-offer__visual {
    min-height: 300px;
  }
  .pink-card {
    width: 235px;
    height: 150px;
  }
  .pink-card--back {
    right: 8%;
    top: 60px;
  }
  .pink-card--front {
    right: 20%;
    top: 105px;
    padding: 20px;
  }
  .pink-card__chip {
    margin-top: 18px;
    width: 38px;
    height: 28px;
  }
  .pink-card__number {
    margin-top: 20px;
    font-size: 10px;
  }
  .pink-card__footer {
    margin-top: 18px;
  }
  .solution-row {
    padding: 20px 0;
  }
  .solution-row + .solution-row {
    padding-top: 66px;
    margin-top: 44px;
  }
  .solution-media {
    min-height: 330px;
    border-radius: 25px;
  }
  .solution-copy h3 {
    font-size: 38px;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 76px 0;
  }
  .about__headline h2 {
    font-size: 42px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    min-height: 120px;
  }
  .bank-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .bank-logos span {
    border-left: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .bank-logos span:nth-child(2n) {
    border-right: 0;
  }
  .support-card {
    padding: 28px;
  }
  .support-card h3 {
    margin-top: 26px;
  }
  .testimonials {
    padding: 76px 0;
  }
  .testimonial--feature {
    grid-template-columns: 1fr;
  }
  .testimonial__photo {
    min-height: 260px;
  }
  .testimonial__content {
    padding: 28px;
  }
  .testimonial {
    min-height: 300px;
  }
  .quote,
  .testimonial--feature .quote {
    font-size: 21px;
  }
  .reviews {
    padding: 70px 0;
  }
  .reviews__top {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
  .final-cta {
    padding: 82px 0;
  }
  .final-cta h2 {
    font-size: 48px;
  }
  .final-cta p {
    font-size: 14px;
  }
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
    margin-inline: auto;
  }
  .footer {
    padding-top: 52px;
  }
  .footer__top {
    align-items: flex-start;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    padding: 45px 0;
  }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__legal div {
    flex-wrap: wrap;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   FINAL IMAGE + MOBILE MENU FIXES
   ========================================================= */

/* Mobile-only account actions live inside the dropdown. */
.mobile-nav-actions {
  display: none;
}

/* Why WorldFirst cards: the uploaded artwork fills the media panel.
   The old fixed 134px image height was causing the broken/cropped layout. */
.benefit-card__media {
  flex: 0 0 auto;
}

.benefit-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* The bottom two cards are wider, matching the reference layout. */
.benefit-card:nth-child(4) .benefit-card__media,
.benefit-card--wide .benefit-card__media {
  aspect-ratio: 2.36 / 1;
}

.benefit-card:nth-child(4),
.benefit-card--wide {
  min-height: 390px;
}

/* Real image for the business-card promo. */
.card-offer__visual {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 58px 48px 20px;
}

.card-offer__image {
  display: block;
  width: min(100%, 520px);
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

/* Real images for solution blocks instead of YOUR IMAGE pills. */
.solution-media {
  overflow: hidden;
  background: #f2f2f4;
}

.solution-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Real image for the featured testimonial. */
.testimonial__photo {
  overflow: hidden;
  background: #f2f2f4;
}

.testimonial__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 880px) {
  /* Lock the page while the fullscreen navigation is open. */
  body:has(.nav-toggle:checked) {
    overflow: hidden;
  }

  /* 34px announcement + 66px header = 100px. */
  .nav {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    width: 100%;
    height: calc(100dvh - 100px);
    min-height: calc(100vh - 100px);
    padding: 20px 27px 28px;
    margin: 0;
    background: #fff;
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: none;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav > a {
    width: 100%;
    min-height: 62px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #292a2f;
  }

  .nav > a span {
    margin-left: auto;
    color: var(--pink);
    font-size: 16px;
    line-height: 1;
  }

  .mobile-nav-actions {
    width: 100%;
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav .mobile-login,
  .nav .mobile-signup {
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
  }

  .nav .mobile-login {
    color: var(--pink);
    background: #fff;
    border: 1px solid var(--pink);
  }

  .nav .mobile-signup {
    color: #fff;
    background: var(--pink);
    border: 1px solid var(--pink);
  }

  .menu-button {
    position: relative;
    z-index: 60;
  }

  .menu-button span {
    transition:
      transform 0.18s ease,
      opacity 0.18s ease;
  }

  .nav-toggle:checked ~ .header__actions .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .header__actions .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .header__actions .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .card-offer__visual {
    min-height: 360px;
    padding: 20px 42px 46px;
  }

  .card-offer__image {
    width: min(100%, 480px);
    max-height: 330px;
  }

  .solution-media,
  .solution-media img {
    min-height: 470px;
  }
}

@media (max-width: 640px) {
  /* 38px announcement + 62px header = 100px. */
  .nav {
    top: 100px;
    height: calc(100dvh - 100px);
    min-height: calc(100vh - 100px);
  }

  .nav > a {
    min-height: 62px;
    font-size: 16px;
  }

  .nav .mobile-login,
  .nav .mobile-signup {
    min-height: 64px;
  }

  .benefit-card:nth-child(4) .benefit-card__media,
  .benefit-card--wide .benefit-card__media {
    aspect-ratio: 1.75 / 1;
  }

  .benefit-card:nth-child(4),
  .benefit-card--wide {
    min-height: 0;
  }

  .card-offer__visual {
    min-height: 280px;
    padding: 18px 24px 36px;
  }

  .card-offer__image {
    width: min(100%, 380px);
    max-height: 250px;
  }

  .solution-media,
  .solution-media img {
    min-height: 330px;
  }

  .testimonial__photo,
  .testimonial__photo img {
    min-height: 260px;
  }
}

/* =========================================================
   WHY WORLDFIRST — SCREENSHOT MATCH V4
   Cards intentionally use contained artwork, not full-bleed images.
   ========================================================= */
.section--soft {
  background: #fff;
}

#why.section {
  padding-top: 72px;
  padding-bottom: 110px;
}

#why .section-title {
  margin-bottom: 58px;
}

#why .section-title h2 {
  font-size: clamp(46px, 4vw, 60px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.055em;
}

#why .benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 26px;
}

#why .benefit-card,
#why .benefit-card:nth-child(4),
#why .benefit-card--wide {
  grid-column: auto;
  min-width: 0;
  min-height: 435px;
  margin: 0;
  padding: 28px 28px 30px;
  background: #f5f5f5;
  border: 0;
  border-radius: 40px;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#why .benefit-card__media,
#why .benefit-card:nth-child(4) .benefit-card__media,
#why .benefit-card--wide .benefit-card__media {
  width: 100%;
  height: 150px;
  aspect-ratio: auto;
  flex: 0 0 150px;
  margin: 0;
  padding: 0 12px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#why .benefit-card__media img {
  display: block;
  width: 100%;
  max-width: 282px;
  height: 150px;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
}

#why .benefit-card__body {
  flex: 1;
  min-height: 0;
  padding: 26px 0 0;
  display: flex;
  flex-direction: column;
}

#why .benefit-card h3 {
  margin: 0 0 24px;
  font-size: clamp(23px, 1.7vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #252629;
}

#why .benefit-card p {
  margin: 0;
  max-width: 100%;
  color: #74777f;
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: -0.012em;
  font-weight: 400;
}

#why .benefit-card__arrow {
  width: 39px;
  height: 39px;
  margin-top: auto;
  margin-left: auto;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 39px;
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

#why .benefit-card__arrow:hover {
  transform: translateX(2px);
  background: var(--pink-dark);
}

@media (max-width: 1100px) {
  #why .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  #why.section {
    padding-top: 58px;
    padding-bottom: 74px;
  }

  #why .section-title {
    margin-bottom: 34px;
  }

  #why .section-title h2 {
    font-size: 38px;
  }

  #why .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #why .benefit-card,
  #why .benefit-card:nth-child(4),
  #why .benefit-card--wide {
    min-height: 405px;
    padding: 24px 24px 26px;
    border-radius: 30px;
  }

  #why .benefit-card__media,
  #why .benefit-card:nth-child(4) .benefit-card__media,
  #why .benefit-card--wide .benefit-card__media {
    height: 140px;
    flex-basis: 140px;
  }

  #why .benefit-card__media img {
    height: 140px;
    max-width: 260px;
  }

  #why .benefit-card__body {
    padding-top: 22px;
  }

  #why .benefit-card h3 {
    margin-bottom: 16px;
    font-size: 24px;
  }

  #why .benefit-card p {
    font-size: 16px;
    line-height: 1.22;
  }
}

/* =========================================================
   Hero product video (V5)
   Put your file at: images/hero-video.mp4
   ========================================================= */
.hero__video-wrap {
  position: relative;
  z-index: 4;
  width: min(100%, 1040px);
  margin: 76px auto 0;
  padding: 8px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 28px 65px rgba(83, 15, 45, 0.14),
    0 0 0 1px rgba(13, 13, 15, 0.045);
  backdrop-filter: blur(3px);
}

.hero__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 22px;
  background: #fff;
  object-fit: cover;
}

/* Let the hero grow naturally to contain the video. */
.hero {
  min-height: 0;
}

.hero__content {
  padding-bottom: 0;
}

@media (max-width: 880px) {
  .hero {
    min-height: 0;
  }

  .hero__video-wrap {
    width: min(100%, 760px);
    margin-top: 72px;
    padding: 7px;
    border-radius: 25px;
  }

  .hero__video {
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
  }

  .hero__content {
    padding-top: 74px;
  }

  .hero__video-wrap {
    width: calc(100% + 4px);
    margin-left: -2px;
    margin-right: -2px;
    margin-top: 92px;
    padding: 6px;
    border-radius: 20px;
    box-shadow:
      0 22px 48px rgba(93, 13, 48, 0.16),
      0 0 0 1px rgba(13, 13, 15, 0.04);
  }

  .hero__video {
    aspect-ratio: 1.62 / 1;
    border-radius: 15px;
  }

  /* Keep the decorative coins floating between the CTA and video,
     like the reference mobile layout. */
  .hero__coin--left {
    left: 12%;
    bottom: auto;
    top: 455px;
  }

  .hero__coin--right {
    right: 8%;
    bottom: auto;
    top: 380px;
  }
}

/* =========================================================
   CUSTOMER TESTIMONIALS + BANK LOGOS — REFERENCE MATCH V6
   Scoped overrides only. Everything else above remains intact.
   ========================================================= */

/* ---------- bank / safeguarding strip ---------- */
.security-strip {
  padding: 58px 0;
  background: #fff;
  border-bottom: 1px solid #eeeeef;
}

.security-strip__inner {
  display: grid;
  grid-template-columns: minmax(330px, 1.6fr) minmax(0, 4fr);
  align-items: stretch;
  gap: 0;
}

.security-strip p {
  max-width: 510px;
  margin: 0;
  padding: 18px 42px 18px 0;
  display: flex;
  align-items: center;
  color: #666972;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.bank-logos {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.bank-logo {
  min-width: 0;
  height: 84px;
  padding: 16px 24px;
  border-left: 1px solid #e5e5e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 128px;
  max-height: 42px;
  object-fit: contain;
  object-position: center;
}

/* ---------- testimonials ---------- */
.testimonials {
  padding: 96px 0 116px;
  background: #f7f7f7;
}

.testimonials__shell {
  width: min(100%, calc(100% - 44px));
  max-width: 1825px;
}

.testimonials__heading {
  text-align: center;
  margin-bottom: 88px;
}

.testimonials__heading h2 {
  margin: 0;
  color: #050507;
  font-size: clamp(48px, 4.45vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.testimonials__heading h2 span {
  color: var(--pink);
}

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

.testimonial-card {
  min-width: 0;
  min-height: 470px;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  border: 0;
  border-radius: 46px;
  background: #fff;
}

.testimonial-card__media {
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  background: #e9e9e9;
}

.testimonial-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.testimonial-card__content {
  min-width: 0;
  padding: 39px 47px 42px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.testimonial-card__quote-mark {
  height: 61px;
  margin: -9px 0 8px;
  color: #aeb0b2;
  font-family: Arial, sans-serif;
  font-size: 61px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.1em;
}

.testimonial-card__quote {
  margin: 0;
  max-width: 560px;
  color: #050507;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.032em;
  font-weight: 500;
}

.testimonial-card__footer {
  width: 100%;
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.testimonial-card__person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #050507;
}

.testimonial-card__person strong {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.testimonial-card__person span {
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.testimonial-card__company-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 132px;
  max-height: 92px;
  object-fit: contain;
  object-position: right bottom;
}

/* Tablet */
@media (max-width: 1180px) {
  .testimonials {
    padding: 82px 0 96px;
  }

  .testimonials__heading {
    margin-bottom: 62px;
  }

  .testimonials .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .testimonial-card {
    min-height: 430px;
    grid-template-columns: 34% 66%;
  }

  .testimonial-card__media,
  .testimonial-card__media img {
    min-height: 430px;
  }

  .security-strip__inner {
    grid-template-columns: 1fr;
  }

  .security-strip p {
    max-width: 620px;
    padding: 0 0 32px;
  }

  .bank-logo:first-child {
    border-left: 0;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .testimonials {
    padding: 66px 0 76px;
  }

  .testimonials__shell {
    width: calc(100% - 32px);
  }

  .testimonials__heading {
    margin-bottom: 42px;
  }

  .testimonials__heading h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .testimonials .testimonial-grid {
    gap: 22px;
  }

  .testimonial-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

  .testimonial-card__media,
  .testimonial-card__media img {
    width: 100%;
    min-height: 0;
    height: 360px;
  }

  .testimonial-card__content {
    min-height: 350px;
    padding: 28px 26px 30px;
  }

  .testimonial-card__quote-mark {
    height: 48px;
    margin-top: -7px;
    margin-bottom: 6px;
    font-size: 61px;
  }

  .testimonial-card__quote {
    max-width: none;
    font-size: 16px;
    line-height: 1.28;
  }

  .testimonial-card__footer {
    padding-top: 18px;
    gap: 18px;
  }

  .testimonial-card__person strong {
    margin-bottom: 13px;
    font-size: 16px;
  }

  .testimonial-card__person span {
    font-size: 15px;
  }

  .testimonial-card__company-logo {
    max-width: 105px;
    max-height: 72px;
  }

  .security-strip {
    padding: 46px 0;
  }

  .security-strip p {
    padding-bottom: 28px;
    font-size: 15px;
  }

  .bank-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #e5e5e8;
  }

  .bank-logo {
    height: 82px;
    padding: 15px;
    border-left: 0;
    border-right: 1px solid #e5e5e8;
    border-bottom: 1px solid #e5e5e8;
  }

  .bank-logo:nth-child(2n) {
    border-right: 0;
  }

  .bank-logo:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .bank-logo img {
    max-width: 118px;
    max-height: 38px;
  }
}
