.home-page {
  background: #eaf3ff;
  overflow-x: hidden;
}

.home-hero-panel {
  min-height: 898px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background:
    linear-gradient(180deg, rgba(10, 9, 35, 0.12) 0%, rgba(10, 9, 35, 0.02) 100%),
    url("../images/index-hero-bg.webp") center top / cover no-repeat;
  overflow: hidden;
}

.home-hero {
  display: grid;
  grid-template-columns: 602px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 796px;
  padding-top: 85px;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  color: #ffffff;
}

.home-hero-copy h1,
.home-heading h2,
.home-accept-copy h2,
.home-cta-banner h2,
.home-faq-heading h2 {
  margin: 0;
}

.home-hero-copy h1 {
  width: 100%;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
}

.home-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 555px;
}

.home-hero-text p,
.home-accept-copy p,
.home-trust-card p,
.home-step-card p,
.home-heading p,
.home-cta-banner p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-1px);
}

.home-button-muted {
  background: rgba(255, 255, 255, 0.3);
}

.home-button-muted:hover,
.home-button-muted:focus-visible {
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
}

.home-button-primary {
  min-width: 136px;
}

.home-hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  perspective: 1200px;
  filter: drop-shadow(6px 12px 8.9px rgba(0, 0, 0, 0.17));
}

.home-hero-media img {
  width: min(628px, 100%);
  height: auto;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: transform, filter;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 2%;
  width: min(440px, 72%);
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 92, 215, 0.28) 0%, rgba(0, 92, 215, 0) 72%);
  opacity: 0;
  transform: translateY(10px) scale(0.88);
  filter: blur(14px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-media:hover img {
  transform: translate3d(-8px, -14px, 0) rotate(-2deg) scale(1.03);
  filter: brightness(1.03) saturate(1.06);
}

.home-hero-media:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  body:not(.giftcard-force-motion) .home-hero-media img,
  body:not(.giftcard-force-motion) .home-hero-media::after {
    transition: none;
  }

  body:not(.giftcard-force-motion) .home-hero-media:hover img {
    transform: none;
    filter: none;
  }

  body:not(.giftcard-force-motion) .home-hero-media:hover::after {
    opacity: 0;
    transform: none;
  }
}

.home-stats-section {
  padding: 92px 0 138px;
  background: #ffffff;
}

.home-stats-intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(483px, calc(100% - 48px));
  margin: 0 auto 65px;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}

.home-stats-intro::before,
.home-stats-intro::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(119, 119, 119, 0.5);
}

.home-stats-intro::before {
  margin-right: 20px;
}

.home-stats-intro::after {
  margin-left: 20px;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  text-align: center;
}

.home-stat-card + .home-stat-card {
  border-left: 1px solid rgba(0, 92, 215, 0.18);
}

.home-stat-card strong {
  color: #005cd7;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
}

.home-stat-card span {
  color: #777777;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.home-accept-section {
  padding: 138px 0 104px;
}

.home-accept {
  position: relative;
  display: grid;
  grid-template-columns: 489px 575px;
  align-items: center;
  justify-content: center;
  gap: 105px;
  min-height: 315px;
  padding: 0 56px;
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(9, 7, 40, 0.15) 0%, rgba(9, 7, 40, 0.03) 100%),
    url("../images/index-accept-bg.webp") center center / cover no-repeat;
 
}

.home-accept-media {
  position: relative;
  height: 315px;
  perspective: 1200px;
  filter: drop-shadow(10px 6px 5.7px rgba(0, 0, 0, 0.14));
}

.home-accept-media img {
  position: absolute;
  top: -66px;
  left: -16px;
  width: 541px;
  height: auto;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
  will-change: transform, filter;
}

.home-accept-media::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 10px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 191, 255, 0.22) 0%, rgba(79, 191, 255, 0) 72%);
  opacity: 0;
  transform: translateY(12px) scale(0.88);
  filter: blur(16px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-accept-media:hover img {
  transform: translate3d(10px, -12px, 0) rotate(2deg) scale(1.035);
  filter: brightness(1.04) saturate(1.08);
}

.home-accept-media:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-accept-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  color: #ffffff;
}

.home-accept-copy h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}

.home-logo-strip {
  padding: 0 0 184px;
  overflow: hidden;
}

.home-logo-marquee {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: home-logo-scroll 28s linear infinite;
}

.home-logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
}

.home-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.home-logo-item img {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.home-logo-item.is-text {
  color: rgba(0, 0, 0, 0.45);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes home-logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-trust-section {
  position: relative;
  padding: 0 0 194px;
  overflow-x: hidden;
}

.home-trust-section::before {
  content: "";
  position: absolute;
  inset: -120px -240px auto;
  height: 880px;
  /* background:
    radial-gradient(circle at 20% 30%, rgba(79, 191, 255, 0.22), transparent 24%),
    radial-gradient(circle at 82% 8%, rgba(88, 76, 255, 0.2), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(79, 191, 255, 0.14), transparent 24%); */
  pointer-events: none;
}

.home-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: min(915px, calc(100% - 48px));
  margin: 0 auto 61px;
  text-align: center;
}

.home-heading h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.home-heading h2 span {
  color: #005cd7;
}

.home-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 80px;
  margin-bottom: 61px;
}

.home-trust-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 259px;
  padding: 30px 45px 30px 32px;
  border-radius: 20px;
  background: rgba(228, 228, 228, 0.6);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-trust-card:hover,
.home-trust-card:focus-within {
  background: linear-gradient(180deg, #4bacff 0%, #584cff 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(88, 76, 255, 0.22);
  transform: translateY(-4px);
}

.home-trust-icon-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-trust-icon-shell.is-light {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
}

.home-trust-card:hover .home-trust-icon-shell,
.home-trust-card:focus-within .home-trust-icon-shell {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.home-trust-icon-shell img {
  width: 34px;
  height: 34px;
  transition: filter 0.25s ease;
}

.home-trust-card:hover .home-trust-icon-shell img,
.home-trust-card:focus-within .home-trust-icon-shell img {
  filter: brightness(0) invert(1);
}

.home-trust-card h3,
.home-step-card h3,
.home-testimonial-card strong {
  margin: 0;
}

.home-trust-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.home-section-button {
  position: relative;
  z-index: 1;
  display: table;
  margin: 0 auto;
}

.home-steps-section {
  padding: 0 0 184px;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 303px));
  justify-content: center;
  gap: 110px;
  margin-bottom: 40px;
}

.home-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  text-align: center;
}

.home-step-number {
  width: 100%;
  background: linear-gradient(180deg, #4bacff 0%, #584cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 180px;
  font-weight: 400;
  line-height: 1;
}

.home-step-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.home-testimonials-section {
  padding: 0 0 139px;
}

.home-testimonials-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto 40px;
}

.home-testimonials-viewport {
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
}

.home-testimonials-viewport:focus-visible {
  outline: 2px solid rgba(88, 76, 255, 0.35);
  outline-offset: 8px;
}

.home-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.home-testimonial-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  min-height: 253px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(228, 228, 228, 0.6);
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.home-testimonial-card:hover,
.home-testimonial-card:focus-within {
  background: linear-gradient(180deg, #4bacff 0%, #584cff 100%);
  color: #ffffff;
  box-shadow: none;
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 27px;
}

.home-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #777777;
  font-size: 20px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}

.home-testimonial-card:hover .home-avatar,
.home-testimonial-card:focus-within .home-avatar {
  background: #ffffff;
  color: #005cd7;
}

.home-testimonial-card strong {
  color: #777777;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.home-testimonial-card:hover strong,
.home-testimonial-card:focus-within strong {
  color: #ffffff;
}

.home-testimonial-card p {
  margin: 0;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  transition: color 0.25s ease;
}

.home-testimonial-card:hover p,
.home-testimonial-card:focus-within p {
  color: #ffffff;
}

.home-testimonial-arrow {
  position: relative;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 33, 66, 0.12);
  color: #584cff;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-testimonial-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.home-testimonial-arrow.is-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.home-testimonial-arrow.is-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.home-testimonial-arrow:hover,
.home-testimonial-arrow:focus-visible {
  background: linear-gradient(180deg, #4bacff 0%, #584cff 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(88, 76, 255, 0.22);
  transform: translateY(-2px);
}

.home-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.home-testimonial-dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(88, 76, 255, 0.18);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-testimonial-dots button.is-active {
  background: #4bacff;
  transform: scale(1.12);
}

.home-showcase-section {
  position: relative;
  padding: 0 0 120px;
}

.home-showcase-section::before,
.home-showcase-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.home-showcase-section::before {
  top: 32px;
  left: 12%;
  width: 240px;
  height: 240px;
  background: rgba(79, 191, 255, 0.2);
}

.home-showcase-section::after {
  top: 96px;
  right: 18%;
  width: 280px;
  height: 280px;
  background: rgba(88, 76, 255, 0.18);
}

.home-showcase {
  position: relative;
  z-index: 1;
}

.home-showcase img {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: transform, filter;
}

.home-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(760px, 72%);
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 92, 215, 0.2) 0%, rgba(0, 92, 215, 0) 72%);
  opacity: 0;
  transform: translateX(-50%) translateY(16px) scale(0.9);
  filter: blur(22px);
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-showcase:hover img {
  
}

.home-showcase:hover::after {

}

@media (prefers-reduced-motion: reduce) {
  body:not(.giftcard-force-motion) .home-accept-media img,
  body:not(.giftcard-force-motion) .home-accept-media::after,
  body:not(.giftcard-force-motion) .home-showcase img,
  body:not(.giftcard-force-motion) .home-showcase::after {
    transition: none;
  }

  body:not(.giftcard-force-motion) .home-accept-media:hover img,
  body:not(.giftcard-force-motion) .home-showcase:hover img {
    transform: none;
    filter: none;
  }

  body:not(.giftcard-force-motion) .home-accept-media:hover::after,
  body:not(.giftcard-force-motion) .home-showcase:hover::after {
    opacity: 0;
    transform: none;
  }
}

.home-faq-section {
  padding: 0 0 132px;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 700px);
  justify-content: space-between;
  gap: 64px 80px;
  align-items: start;
}

.home-faq-heading {
  padding-top: 30px;
}

.home-faq-heading h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.home-faq-section .faq-item {
  transition: border-color 0.3s ease;
}

.home-faq-section .faq-trigger {
  position: relative;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-faq-section .faq-trigger span {
  display: inline-block;
  background-image: linear-gradient(#005cd7, #005cd7);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition:
    color 0.3s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background-size 0.32s ease;
}

.home-faq-section .faq-trigger:hover,
.home-faq-section .faq-trigger:focus-visible {
  transform: translateX(4px);
}

.home-faq-section .faq-trigger:hover span,
.home-faq-section .faq-trigger:focus-visible span {

  transform: translateX(2px);
 
}

.home-faq-section .faq-trigger:hover .faq-arrow,
.home-faq-section .faq-trigger:focus-visible .faq-arrow {
  transform: translateX(6px) scaleY(-1);
}

.home-faq-section .faq-item.is-open .faq-trigger:hover .faq-arrow,
.home-faq-section .faq-item.is-open .faq-trigger:focus-visible .faq-arrow {
  transform: translateX(6px) scaleY(1);
}

.home-faq-section .faq-item:hover,
.home-faq-section .faq-item:focus-within {
  border-color: rgba(0, 92, 215, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  body:not(.giftcard-force-motion) .home-faq-section .faq-item,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger span,
  body:not(.giftcard-force-motion) .home-faq-section .faq-arrow {
    transition: none;
  }

  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:hover,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:focus-visible,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:hover span,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:focus-visible span,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:hover .faq-arrow,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:focus-visible .faq-arrow,
  body:not(.giftcard-force-motion) .home-faq-section .faq-item.is-open .faq-trigger:hover .faq-arrow,
  body:not(.giftcard-force-motion) .home-faq-section .faq-item.is-open .faq-trigger:focus-visible .faq-arrow {
    transform: none;
  }

  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:hover span,
  body:not(.giftcard-force-motion) .home-faq-section .faq-trigger:focus-visible span {
    background-size: 0 2px;
  }
}

.home-cta-section {
  padding: 0 0 194px;
}

.home-cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  min-height: 243px;
  padding: 56px 48px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(14, 10, 110, 0.1) 0%, rgba(14, 10, 110, 0.02) 100%),
    url("../images/index-cta-bg.webp") center center / cover no-repeat;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

.home-cta-banner h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
}

@media (max-width: 1200px) {
  .home-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    justify-items: center;
    padding-top: 72px;
    padding-bottom: 104px;
  }

  .home-hero-copy,
  .home-hero-text {
    align-items: center;
    text-align: center;
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }

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

  .home-accept {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    min-height: auto;
    padding: 40px 32px;
  }

  .home-accept-media {
    width: min(489px, 100%);
    margin: 0 auto;
  }

  .home-accept-copy {
    align-items: center;
    text-align: center;
  }

  .home-trust-grid {
    gap: 32px;
  }

  .home-steps-grid {
    gap: 48px;
  }

  .home-testimonials-slider {
    width: 100%;
  }

  .home-testimonials-track {
    gap: 24px;
  }

  .home-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .home-faq-heading {
    padding-top: 0;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .home-hero-panel {
    min-height: auto;
  }

  .home-hero {
    width: min(var(--content-width), calc(100% - 32px));
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 88px;
  }

  .home-hero-copy h1 {
    font-size: 52px;
    line-height: 1.18;
  }

  .home-stats-section,
  .home-accept-section,
  .home-trust-section,
  .home-steps-section,
  .home-testimonials-section,
  .home-showcase-section,
  .home-faq-section,
  .home-cta-section {
    padding-bottom: 96px;
  }

 .home-trust-section::before {
    inset: -120px 0 auto;
  }
  .home-stats-section {
    padding-top: 72px;
  }

  .home-stats-intro {
    width: min(483px, calc(100% - 32px));
    margin-bottom: 48px;
  }

  .home-stat-card strong {
    font-size: 40px;
    line-height: 48px;
  }

  .home-stat-card span {
    font-size: 18px;
  }

  .home-heading {
    width: min(915px, calc(100% - 32px));
    margin-bottom: 48px;
  }

  .home-heading h2,
  .home-faq-heading h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .home-accept-copy h2,
  .home-cta-banner h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .home-trust-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 520px;
    margin-bottom: 48px;
  }

  .home-step-number {
    font-size: 120px;
  }

  .home-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }

  .home-step-card h3 {
    font-size: 18px;
  }

  .home-showcase img {
    width: min(100%, 900px);
  }

  .home-cta-banner {
    padding: 48px 28px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding-top: 36px;
    padding-bottom: 64px;
  }

  .home-hero-copy h1 {
    max-width: 320px;
    margin: 0 auto;
    font-size: 32px;
  }

  .home-hero-text p,
  .home-accept-copy p,
  .home-trust-card p,
  .home-step-card p,
  .home-heading p,
  .home-cta-banner p {
    font-size: 18px;
    line-height: 28px;
  }

  .home-hero-actions {
    justify-content: center;
    gap: 16px;
  }

  .home-hero-text p {
    max-width: 320px;
    margin: 0 auto;
  }

  .home-button,
  .home-button-primary {
    width: 100%;
  }

  .home-stats-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .home-stat-card + .home-stat-card,
  .home-stat-card:nth-child(3) {
    border-left: 0;
  }

  .home-stat-card {
    gap: 10px;
  }

  .home-accept {
    padding: 32px 20px 28px;
  }

  .home-accept-media {
    height: 220px;
  }

  .home-accept-media img {
    top: -46px;
    left: -10px;
    width: 410px;
  }

  .home-logo-track {
    gap: 28px;
    padding-right: 28px;
  }

  .home-logo-item {
    min-width: 108px;
    height: 46px;
    padding: 0 12px;
  }

  .home-logo-item img {
    max-width: 92px;
    max-height: 24px;
  }

  .home-logo-item.is-text {
    font-size: 14px;
  }

  .home-heading h2,
  .home-faq-heading h2 {
    font-size: 34px;
    line-height: 46px;
  }

  .home-trust-card {
    gap: 28px;
    min-height: auto;
    padding: 24px 20px;
  }

  .home-steps-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .home-step-number {
    font-size: 96px;
  }

  .home-testimonial-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .home-testimonial-card p {
    font-size: 15px;
    line-height: 24px;
  }

  .home-testimonials-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    width: calc(100% - 24px);
  }

  .home-testimonials-track {
    gap: 16px;
  }

  .home-testimonial-arrow {
    width: 44px;
    height: 44px;
  }

  .home-faq-heading {
    text-align: left;
  }

  .home-cta-banner h2 {
    font-size: 28px;
    line-height: 36px;
  }
}
