:root {
  --green: #c8f135;
  --green-bright: #d4ff4a;
  --green-soft: #eef9c8;
  --green-mid: #b8e62e;
  --text: #0a0a0a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --surface-muted: #f8f9fb;
  --border: #eceff3;
  --header-height: 80px;
  --logo-width: 120px;
  --nav-gap: 80px;
  --logo-to-content: 40px;
  --header-brand-offset: calc(var(--logo-width) + var(--logo-to-content));
  --stat-col-left: 655px;
  --stat-col-mid: 313px;
  --stat-col-right: 312px;
  --stat-row-height: 220px;
  --stat-gap: 30px;
  --stat-grid-width: 1340px;
  --stat-grid-ratio: 1340 / 470;
  --container: 1340px;
  --page-gutter: clamp(24px, 15.1042vw, 290px);
  --pay-phone-width: clamp(240px, 22.9167vw, 440px);
  --card-promo-width: clamp(280px, 69.5833vw, 1336px);
  --testimonials-orbit-size: min(64vw, 820px);
  --testimonial-card-width: clamp(280px, 48.9583vw, 940px);
  --card-type-panel-width: clamp(280px, 34.1146vw, 655px);
  --card-type-gap: 30px;
  --card-security-item-height: 301px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --motion-duration: 0.95s;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.06);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - calc(var(--page-gutter) * 2), var(--container));
  max-width: 100%;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  transition: box-shadow 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--motion-ease-soft), backdrop-filter 0.35s var(--motion-ease-soft);
  backdrop-filter: saturate(180%) blur(0);
  -webkit-backdrop-filter: saturate(180%) blur(0);
}

.site-header.is-scrolled::before {
  opacity: 1;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(236, 239, 243, 0.5);
}

.header-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: calc(-1 * var(--header-brand-offset));
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  z-index: 2;
}

.logo-img {
  display: block;
  width: var(--logo-width);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--nav-gap);
  min-width: 0;
  flex: 1;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: #000000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: calc(-1 * var(--header-brand-offset));
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.lang-flag-img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lang-label {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  color: #717784;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 108px;
  list-style: none;
  padding: 6px;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li + li {
  margin-top: 2px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 32px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  line-height: 1;
}

.lang-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lang-option:hover,
.lang-option.is-active {
  background: #f0f2f5;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #eceff3;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.app-btn-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.app-btn:hover {
  opacity: 0.88;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 72vh, 720px);
  margin: 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  background-color: #eef2e1;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  background-color: #eef2e1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.6s var(--motion-ease-soft), transform 1.15s var(--motion-ease-out);
}

.hero-image.is-loaded {
  opacity: 1;
  transform: scale(1);
  animation: motionHeroImageIn 1.15s var(--motion-ease-out) forwards;
}

@keyframes motionHeroImageIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image.is-error {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: block;
  padding: calc(var(--header-height) + 72px) 0 96px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 18px;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.875rem, 3.0208vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 150px;
  width: 100%;
}

.hero-cta {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 28px;
  height: 68px;
  padding: 6px 6px 6px 36px;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-text {
  display: block;
  padding-top: 1px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

/* Apple-style scroll motion */
.motion-reveal,
.motion-reveal--scale {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity var(--motion-duration) var(--motion-ease-out),
    transform var(--motion-duration) var(--motion-ease-out);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-reveal--scale {
  transform: translate3d(0, 36px, 0) scale(0.96);
}

.motion-reveal.is-inview,
.motion-reveal--scale.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-enter {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  animation: motionFadeUp 0.95s var(--motion-ease-out) forwards;
  animation-delay: var(--motion-delay, 0ms);
}

@keyframes motionFadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal,
  .motion-reveal--scale,
  .motion-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .hero-image.is-loaded {
    transform: none;
    animation: none;
  }
}

.hero-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #000000;
  flex-shrink: 0;
}

.hero-cta-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.hero-cta-sm {
  font-size: 15px;
}

.hero-cta-sm .hero-cta-icon {
  width: 38px;
  height: 38px;
}

.hero-desc {
  max-width: 560px;
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.hero--product .hero-title {
  margin-bottom: 24px;
}

/* Partners */
.partners {
  padding: 200px 0 0px;
  background: #ffffff;
}

.partners-layout {
  display: block;
}

.partners-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6.25vw, 120px);
}

.partner-logo-img {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-logo-img--visa {
  height: 26px;
}

.partner-logo-img--mastercard {
  height: 30px;
}

/* Trusted / Stats */
.trusted {
  padding: 200px 0 88px;
}

.trusted-layout {
  display: block;
  margin-bottom: 48px;
}

.trusted-header {
  text-align: left;
  margin: 0;
}

.trusted-header h2 {
  max-width: 573px;
  font-size: clamp(1.75rem, 2.0833vw, 40px);
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.trusted-header p {
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.stats-layout {
  display: block;
  min-width: 0;
}

.stats-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 655fr) minmax(0, 313fr) minmax(0, 312fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: clamp(12px, 2.2vw, var(--stat-gap));
  aspect-ratio: var(--stat-grid-ratio);
  min-height: clamp(360px, 24.479vw, 470px);
}

.stat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f3f5ef;
  min-height: 0;
}

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

.stat-card-body {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.stat-card-label {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  color: #000000;
  line-height: 1.35;
}

.stat-card-value {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card-value--green {
  color: #9ad400;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
}

.stat-card-value--inline {
  font-size: clamp(22px, 2.4vw, 34px);
}

.stat-card-value--large {
  font-size: clamp(30px, 3.4vw, 46px);
}

.stat-card-body--scenes {
  inset: auto;
  top: clamp(10px, 5%, 18px);
  left: 10%;
  bottom: auto;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(4px, 0.6vw, 8px);
  white-space: nowrap;
}

.stat-card-body--scenes .stat-card-label {
  margin-bottom: 0;
}

.stat-card-body--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  padding: clamp(14px, 2vw, 22px) 12px 0;
}

.stat-card-body--regions .stat-card-label {
  margin-bottom: clamp(6px, 1vw, 10px);
}

.stat-card-body--volume {
  justify-content: flex-start;
  align-items: center;
  padding-top: calc(clamp(28px, 16%, 72px) + 80px);
}

.stat-card-body--volume .stat-card-label {
  margin-bottom: clamp(8px, 1.2vw, 12px);
}

.stat-card-body--users {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  inset: 0 0 46% 0;
  height: auto;
  padding: clamp(14px, 3%, 24px) 20px 0;
}

.stat-card-body--users .stat-card-label {
  margin-bottom: clamp(8px, 1.2vw, 12px);
}

.stat-avatars {
  display: block;
  width: clamp(88px, 9.3vw, 125px);
  height: auto;
  margin-bottom: clamp(6px, 1vw, 10px);
}

.stat-card-body--users .stat-card-value {
  margin-top: 0;
  line-height: 1;
}

.stat-users {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.stat-scenes {
  grid-column: 2;
  grid-row: 1;
}

.stat-regions {
  grid-column: 2;
  grid-row: 2;
}

.stat-volume {
  grid-column: 3;
  grid-row: 1 / span 2;
}

/* Pay showcase */
.pay-showcase {
  padding: 80px 0 38px;
  background: #f7f8fa;
}

.pay-showcase-layout {
  display: block;
}

.pay-showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.pay-showcase-content {
  margin-top: -80px;
}

.pay-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.pay-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #ffffff;
  backdrop-filter: blur(18.9px);
  -webkit-backdrop-filter: blur(18.9px);
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}

.pay-tag img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.pay-showcase-title {
  font-size: clamp(2rem, 4vw, 50px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pay-showcase-desc {
  max-width: 560px;
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.pay-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #000000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-nav-btn svg {
  width: 20px;
  height: 20px;
}

.pay-nav-btn:hover {
  transform: translateY(-2px);
}

.pay-nav-btn--prev {
  background: #eceef2;
}

.pay-nav-btn--next {
  background: linear-gradient(135deg, #d4ff4a 0%, #b8e62e 45%, #6b9e00 100%);
  box-shadow: 0 8px 24px rgba(154, 212, 0, 0.28);
}

.pay-showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--pay-phone-width);
  max-width: 100%;
  flex-shrink: 0;
}

.pay-showcase-phone {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Card promo */
.card-promo {
  padding: 200px 0 120px;
  background: #ffffff;
}

.card-promo-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(1.75rem, 2.0833vw, 40px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-promo-panel {
  position: relative;
  width: min(100%, var(--card-promo-width));
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0a0a0a;
}

.card-promo-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 2.8vw, 36px) clamp(16px, 2.5vw, 28px) clamp(24px, 3.5vw, 44px);
  pointer-events: none;
}

.card-promo-overlay > * {
  pointer-events: auto;
}

.card-promo-tagline {
  margin: 0;
  color: #ffffff;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.card-promo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.card-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 12vw, 156px);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.card-promo-btn:hover {
  transform: translateY(-2px);
}

.card-promo-btn--ghost {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.card-promo-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.card-promo-btn--primary {
  color: #000000;
  background: linear-gradient(90deg, #b8e62e 0%, #d4ff4a 55%, #e8ff8a 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(184, 230, 46, 0.35);
}

.card-promo-btn--primary:hover {
  box-shadow: 0 12px 28px rgba(184, 230, 46, 0.45);
}

/* Testimonials */
.testimonials {
  padding: 120px 0 0;
  background: #ffffff;
}

.testimonials-container {
  display: flex;
  justify-content: center;
}

.testimonials-stage {
  width: min(100%, var(--card-promo-width));
}

.testimonials-header {
  position: relative;
  z-index: 3;
  width: min(100%, 720px);
  margin: 0 auto 48px;
  padding: 0;
  text-align: center;
}

.testimonials-orbit-wrap {
  position: relative;
  width: var(--testimonials-orbit-size);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
}

.testimonials-rings,
.testimonials-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonials-ring {
  position: absolute;
  border: 1px solid #e8eaee;
  border-radius: 50%;
}

.testimonials-ring--outer {
  inset: 0;
}

.testimonials-ring--inner {
  inset: 22%;
}

.testimonials-orbit {
  z-index: 1;
}

.testimonials-title {
  margin: 0 0 20px;
  font-size: 50px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonials-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.testimonial-node {
  --radius: calc(var(--testimonials-orbit-size) / 2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    rotate(calc(var(--angle) - 90deg))
    translateX(var(--radius))
    rotate(calc(90deg - var(--angle)))
    translate(-50%, -50%);
}

.testimonials-orbit--inner .testimonial-node {
  --radius: calc(var(--testimonials-orbit-size) * 0.34);
}

.testimonial-node img {
  display: block;
  width: var(--avatar-size, 52px);
  height: var(--avatar-size, 52px);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

.testimonials-orbit--outer .testimonial-node img {
  --avatar-size: 56px;
}

.testimonials-orbit--inner .testimonial-node img {
  --avatar-size: 48px;
}

.testimonial-bubble {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef9c8;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}

.testimonial-bubble--above-left {
  right: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(8px);
}

.testimonial-bubble--above-right {
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-8px);
}

.testimonial-bubble--far-left {
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%);
}

.testimonial-bubble--far-right {
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
}

.testimonial-featured {
  position: relative;
  z-index: 2;
  width: min(100%, var(--testimonial-card-width));
  margin: calc(var(--testimonials-orbit-size) * -0.2) auto 0;
  padding: 64px clamp(28px, 4vw, 72px) 48px;
  border-radius: 32px;
  background: #f7f8fa;
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.04);
  text-align: center;
}

.testimonial-featured-avatar {
  display: block;
  width: 96px;
  height: 96px;
  margin: -112px auto 32px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  object-fit: cover;
}

.testimonial-featured-quote {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 400;
  color: #717784;
  line-height: 1.75;
}

.testimonial-featured-name {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  line-height: 1.3;
}

.testimonial-featured-role {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.4;
}

/* FAQ */
.faq {
  padding: 200px 0 140px;
  background: #ffffff;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  margin: 0 0 48px;
  font-size: 50px;
  font-weight: 500;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.faq-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.85s var(--motion-ease-out),
    transform 0.85s var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.faq-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-list {
  width: min(100%, var(--testimonial-card-width));
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.faq-item[open] {
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 16px;
  transition: background-color 0.25s ease;
}

.faq-item[open] .faq-question {
  border-radius: 16px 16px 0 0;
}

.faq-question:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(184, 230, 46, 0.55);
}

.faq-question:hover {
  background: #fafafa;
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #9ca3af;
  transition: transform 0.36s cubic-bezier(0.33, 1, 0.68, 1), color 0.36s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: #000000;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.36s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-answer-inner {
  padding: 12px 28px 24px;
}

.faq-answer-inner p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item,
  .faq-question,
  .faq-chevron,
  .faq-answer {
    transition: none;
  }

  .faq-answer {
    height: auto;
  }
}

/* Product page sections */
.product-payment {
  padding: 120px 0 160px;
  background: #ffffff;
}

.product-payment-layout {
  display: block;
}

.product-payment-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-width: 0;
}

.product-section-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.product-section-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.product-section-desc {
  max-width: 520px;
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.product-section-lead {
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.product-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
}

.product-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.product-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.product-account {
  padding: 0 0 200px;
  background: #ffffff;
}

.product-account-layout {
  display: block;
}

.product-account-panel {
  position: relative;
  background: #000000;
  border-radius: 40px;
  padding: clamp(56px, 6vw, 80px) clamp(24px, 3vw, 40px) clamp(180px, 18vw, 220px);
}

.product-account-header {
  text-align: center;
}

.product-account-title {
  font-size: clamp(2rem, 4vw, 50px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.product-account-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.6;
}

.product-account-cards {
  position: absolute;
  left: clamp(16px, 2vw, 32px);
  right: clamp(16px, 2vw, 32px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  transform: translateY(50%);
}

.product-account-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0;
  background: var(--surface-muted);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.product-account-card-visual {
  width: 100%;
}

.product-account-card-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-account-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--surface-muted);
  padding: clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 24px) clamp(24px, 3vw, 32px);
}

.product-account-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-account-card-desc {
  font-size: 14px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

/* Product global transfer */
.product-global {
  padding: 120px 0 160px;
  background: var(--bg);
}

.product-global-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.product-global-header .product-section-title {
  margin-bottom: 16px;
}

.product-global-header .product-section-lead {
  margin: 0 auto;
  max-width: 640px;
}

.product-global-stage {
  position: relative;
  min-height: clamp(520px, 52vw, 680px);
}

.product-global-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 1200px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.product-global-core {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 280px) minmax(220px, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  min-height: clamp(480px, 48vw, 620px);
}

.product-global-center-wrap {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.product-global-center {
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.product-global-card {
  max-width: 300px;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(154, 212, 0, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 249, 200, 0.72) 100%);
  box-shadow: 0 8px 32px rgba(154, 212, 0, 0.08);
}

.product-global-card--left {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.product-global-card--top {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.product-global-card--bottom {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.product-global-card-icon {
  margin-bottom: 16px;
}

.product-global-card-icon img {
  width: clamp(64px, 6vw, 88px);
  height: auto;
  object-fit: contain;
}

.product-global-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-global-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

/* Product fees */
.product-fees {
  padding: 0 0 160px;
  background: var(--bg);
}

.product-fees-layout {
  display: block;
}

.product-fees-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-width: 0;
}

.product-fees-content .product-section-title {
  margin-bottom: 16px;
}

.product-fees-content .product-section-lead {
  margin-bottom: 20px;
}

.product-fees-content .product-section-desc {
  max-width: 560px;
}

.product-fees-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-fees-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

/* Transfer page */
.transfer-capability {
  padding: 120px 0 160px;
  background: var(--bg);
}

.transfer-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-width: 0;
}

.transfer-split-content .product-section-desc {
  max-width: 520px;
}

.transfer-split-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.transfer-methods {
  padding: 0 0 160px;
  background: var(--bg);
}

.transfer-center-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.transfer-center-header .product-section-desc {
  max-width: none;
  margin: 0 auto;
}

.transfer-methods-visual {
  position: relative;
  width: 100%;
  max-width: 1321px;
  margin: 0 auto;
  aspect-ratio: 1321 / 430;
  background: var(--surface-muted);
  border-radius: 32px;
  overflow: hidden;
}

.transfer-methods-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.transfer-methods-foreground {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.transfer-regions {
  padding: 0 0 160px;
  background: var(--bg);
}

.transfer-stats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.transfer-stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
}

.transfer-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #000000;
  flex-shrink: 0;
}

.transfer-stat-icon img,
.transfer-stat-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.transfer-details {
  padding: 0 0 160px;
  background: var(--bg);
}

.transfer-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.transfer-detail-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.transfer-detail-card .product-section-title {
  margin-bottom: 16px;
}

.transfer-detail-card .product-section-desc {
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.transfer-detail-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  border-radius: 32px;
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  min-height: clamp(280px, 22vw, 430px);
}

.transfer-detail-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
}

/* Security page */
.security-core {
  padding: 120px 0 0;
  background: var(--bg);
}

.security-core-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.security-core-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.security-core-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.security-core-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.security-core-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 40px);
  min-height: 220px;
  padding: clamp(40px, 3vw, 56px);
  background: var(--surface-muted);
  border-radius: 40px;
}

.security-core-content {
  flex: 1;
  min-width: 0;
  max-width: 320px;
  padding: 0;
}

.security-core-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.security-core-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
  max-width: 280px;
}

.security-core-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}

.security-core-icon img {
  width: clamp(120px, 10vw, 180px);
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.security-core-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(20px, 2vw, 24px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  background: var(--surface-muted);
  border-radius: 40px;
}

.security-core-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.security-core-feature-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.security-faq {
  padding: 120px 0 80px;
  background: var(--bg);
}

.security-need-help {
  padding: 0 0 160px;
  background: var(--bg);
}

.need-help-panel {
  position: relative;
  height: clamp(200px, 13.5417vw, 260px);
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #f7fdf9 42%, #eef9e8 100%);
}

.need-help-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
}

.need-help-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(247, 253, 249, 0.45) 28%,
    rgba(238, 249, 232, 0.18) 48%,
    transparent 62%
  );
  pointer-events: none;
}

.need-help-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  max-width: min(52%, 520px);
  padding: clamp(24px, 3.33vw, 64px) clamp(24px, 3.75vw, 72px);
  pointer-events: none;
}

.need-help-content > * {
  pointer-events: auto;
}

.need-help-title {
  margin: 0;
  font-size: clamp(24px, 1.875vw, 36px);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.need-help-desc {
  margin: 0;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.need-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: clamp(14px, 0.833vw, 16px);
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.need-help-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* MaiPayCard page */
.card-types {
  padding: 120px 0 160px;
  background: var(--bg);
}

.card-types-layout {
  display: block;
}

.card-types-inner {
  min-width: 0;
}

.card-types-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.card-types-grid {
  display: grid;
  grid-template-columns: repeat(2, var(--card-type-panel-width));
  gap: var(--card-type-gap);
  justify-content: start;
}

.card-type-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: clamp(560px, 44vw, 640px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px) clamp(36px, 4vw, 48px);
  border-radius: 32px;
}

.card-type-panel--virtual {
  background: #000000;
  color: #ffffff;
}

.card-type-panel--physical {
  background: #eef9c8;
  color: #000000;
}

.card-type-header {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.card-type-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card-type-tagline {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.card-type-panel--virtual .card-type-tagline {
  color: rgba(255, 255, 255, 0.72);
}

.card-type-panel--physical .card-type-tagline {
  color: #717784;
}

.card-type-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.card-type-visual img {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.card-type-desc {
  max-width: 360px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: clamp(28px, 3vw, 36px);
}

.card-type-panel--virtual .card-type-desc {
  color: rgba(255, 255, 255, 0.72);
}

.card-type-panel--physical .card-type-desc {
  color: #717784;
}

.card-type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.card-type-btn:hover {
  transform: translateY(-2px);
}

.card-type-btn--ghost {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.card-type-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.card-type-btn--primary {
  color: #000000;
  background: linear-gradient(90deg, #b8e62e 0%, #d4ff4a 55%, #e8ff8a 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(184, 230, 46, 0.35);
}

.card-type-btn--primary:hover {
  box-shadow: 0 12px 28px rgba(184, 230, 46, 0.45);
}

.card-benefits {
  padding: 0 0 160px;
  background: var(--bg);
}

.card-benefits-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.card-benefits-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.card-benefits-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.card-benefits-layout {
  display: block;
}

.card-benefits-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-width: 0;
}

.card-benefits-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.card-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}

.card-benefits-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-benefits-item-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.card-security {
  padding: 0 0 160px;
  background: var(--bg);
}

.card-security-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.card-security-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.card-security-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.card-security-layout {
  display: block;
}

.card-security-inner {
  min-width: 0;
}

.card-security-panel {
  background: #eceef2;
  border-radius: 32px;
  padding: clamp(16px, 2vw, 20px);
}

.card-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 20px);
}

.card-security-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  height: var(--card-security-item-height);
  padding: 0 clamp(20px, 2.5vw, 28px);
  background: #ffffff;
  border-radius: 24px;
}

.card-security-content {
  flex: 1;
  min-width: 0;
  padding: clamp(20px, 2.5vw, 28px) 0;
}

.card-security-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-security-item-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.card-security-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 100%;
  padding: clamp(12px, 1.5vw, 16px) 0;
}

.card-security-icon img {
  width: clamp(96px, 8.75vw, 168px);
  height: auto;
  max-height: calc(var(--card-security-item-height) - 32px);
  object-fit: contain;
}

.card-apply {
  padding: 0 0 160px;
  background: var(--bg);
}

.card-apply-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.card-apply-title {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.card-apply-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

.card-apply-layout {
  display: block;
}

.card-apply-inner {
  min-width: 0;
}

.card-apply-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.card-apply-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: var(--card-security-item-height);
}

.card-apply-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.card-apply-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-apply-step-desc {
  font-size: 16px;
  font-weight: 400;
  color: #717784;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: calc(-1 * var(--header-brand-offset));
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  display: block;
  width: 138px;
  height: auto;
}

.footer-tagline {
  margin: 0 0 28px;
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-download {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 340px;
  padding: 18px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #1a1a1a;
}

.footer-qr {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

.footer-download-info {
  flex: 1;
  min-width: 0;
}

.footer-download-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-store-btn:hover {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-store-btn img,
.footer-store-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.footer-store-btn span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
}

.footer-store-btn small {
  font-size: 8px;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #ffffff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin-right: calc(-1 * var(--header-brand-offset));
}

.footer-col-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 14px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-disclaimer {
  margin: 0 auto;
  max-width: 920px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
}

/* Stats responsive */
@media (max-width: 1200px) {
  :root {
    --nav-gap: 56px;
  }

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

@media (max-width: 1024px) {
  :root {
    --page-gutter: clamp(16px, 4vw, 32px);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 16px;
  }

  .stat-users,
  .stat-volume {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 655 / 470;
    min-height: 0;
  }

  .stat-scenes,
  .stat-regions {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 313 / 220;
    min-height: 0;
  }

  .stat-volume {
    grid-column: 1 / -1;
    aspect-ratio: 312 / 470;
  }

  .product-payment-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-fees-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .transfer-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .security-core-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .transfer-details-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .product-global-core {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 24px;
  }

  .product-global-center-wrap {
    grid-column: 1;
    grid-row: auto;
    order: -1;
  }

  .product-global-card--left,
  .product-global-card--top,
  .product-global-card--bottom {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    max-width: 360px;
    width: 100%;
  }

  .card-benefits-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .card-types-grid {
    grid-template-columns: 1fr;
    max-width: var(--card-type-panel-width);
  }
}

@media (max-width: 1170px) {
  .logo {
    position: static;
    left: auto;
    transform: none;
    margin-right: var(--logo-to-content);
  }

  .main-nav {
    flex: 1;
  }

  .header-actions {
    margin-right: 0;
  }

  .footer-brand {
    margin-left: 0;
  }

  .footer-nav {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    gap: 0;
  }

  .logo {
    margin-right: 0;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 24px;
    gap: 8px;
    z-index: 99;
  }

  .header-actions.is-open {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    justify-content: center;
    z-index: 100;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    width: 100%;
    border-radius: 0 0 24px 24px;
    min-height: 480px;
  }

  .hero-layout {
    padding: calc(var(--header-height) + 40px) 0 72px;
  }

  .hero-content {
    max-width: 640px;
  }

  .partners {
    padding: 120px 0 48px;
  }

  .partners-inner {
    gap: 32px 40px;
  }

  .partner-logo-img {
    height: 26px;
  }

  .partner-logo-img--visa {
    height: 22px;
  }

  .partner-logo-img--mastercard {
    height: 24px;
  }

  .trusted {
    padding: 120px 0 64px;
  }

  .trusted-layout {
    margin-bottom: 32px;
  }

  .trusted-header h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .trusted-header p {
    max-width: none;
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-users,
  .stat-scenes,
  .stat-regions,
  .stat-volume {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .stat-users {
    aspect-ratio: 655 / 470;
  }

  .stat-scenes,
  .stat-regions {
    aspect-ratio: 313 / 220;
  }

  .stat-volume {
    aspect-ratio: 2.1 / 1;
  }

  .stat-volume .stat-card-img {
    object-position: center top;
  }

  .stat-card-body--volume {
    padding-top: clamp(16px, 4vw, 24px);
  }

  .pay-showcase {
    padding: 80px 0 96px;
  }

  .pay-showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pay-showcase-content {
    margin-top: 0;
  }

  .pay-showcase-title {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 72px);
  }

  .pay-showcase-desc {
    max-width: none;
    font-size: 18px;
  }

  .pay-showcase-visual {
    order: -1;
    width: 100%;
  }

  .pay-showcase-phone {
    width: min(100%, clamp(240px, 72vw, 360px));
    margin: 0 auto;
  }

  .card-promo {
    padding: 120px 0 80px;
  }

  .card-promo-title {
    margin-bottom: 32px;
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .card-promo-panel {
    border-radius: var(--radius-lg);
  }

  .card-promo-overlay {
    padding: 20px 16px 24px;
  }

  .card-promo-actions {
    width: 100%;
    gap: 12px;
  }

  .card-promo-btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 20px;
    font-size: 15px;
  }

  .testimonials {
    padding: 80px 0 0;
  }

  .testimonials-orbit-wrap {
    width: 100%;
    aspect-ratio: auto;
  }

  .testimonials-rings,
  .testimonials-orbit {
    display: none;
  }

  .testimonials-header {
    width: 100%;
    margin-bottom: 32px;
    padding: 0;
  }

  .testimonials-title {
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .testimonials-subtitle {
    font-size: 18px;
  }

  .testimonial-featured {
    width: 100%;
    margin-top: 32px;
    padding: 52px 24px 32px;
    border-radius: var(--radius-lg);
  }

  .testimonial-featured-avatar {
    width: 80px;
    height: 80px;
    margin: -92px auto 24px;
    border-width: 5px;
  }

  .faq {
    padding: 120px 0 96px;
  }

  .faq-list {
    width: 100%;
  }

  .faq-title {
    margin-bottom: 32px;
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 16px;
  }

  .faq-answer {
    height: auto;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }

  .faq-answer-inner p {
    font-size: 15px;
  }

  .product-payment {
    padding: 80px 0 96px;
  }

  .product-payment-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-section-title {
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .product-section-subtitle {
    font-size: 18px;
  }

  .product-account {
    padding-bottom: 80px;
  }

  .product-account-panel {
    border-radius: 28px;
    padding: 48px 20px 32px;
  }

  .product-account-cards {
    position: static;
    transform: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
  }

  .product-account-card {
    border-radius: 20px;
  }

  .product-global {
    padding: 80px 0 96px;
  }

  .product-global-stage {
    min-height: 0;
  }

  .product-global-bg {
    display: none;
  }

  .product-fees {
    padding-bottom: 96px;
  }

  .transfer-capability {
    padding: 80px 0 96px;
  }

  .transfer-methods,
  .transfer-regions,
  .transfer-details {
    padding-bottom: 96px;
  }

  .transfer-stats-item {
    font-size: 16px;
  }

  .security-core {
    padding-top: 80px;
  }

  .security-core-title {
    font-size: clamp(1.75rem, 7vw, 50px);
  }

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

  .security-core-card {
    min-height: 0;
  }

  .security-core-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .security-faq {
    padding: 80px 0 48px;
  }

  .security-need-help {
    padding: 0 0 96px;
  }

  .need-help-content {
    max-width: min(60%, 480px);
    padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 48px);
  }

  .card-types {
    padding: 80px 0 96px;
  }

  .card-types-title,
  .card-benefits-title,
  .card-security-title,
  .card-apply-title {
    font-size: clamp(1.75rem, 7vw, 50px);
  }

  .card-apply-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

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

  .card-security-item {
    height: auto;
    min-height: var(--card-security-item-height);
  }

  .card-type-panel {
    min-height: 0;
  }

  .card-benefits {
    padding-bottom: 96px;
  }

  .card-security {
    padding-bottom: 96px;
  }

  .card-apply {
    padding-bottom: 96px;
  }

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

  .card-apply-step {
    min-height: 0;
  }

  .site-footer {
    padding: 64px 0 32px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 40px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-download {
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding: 24px 20px;
    gap: 20px;
    text-align: center;
  }

  .footer-download-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-download-title {
    margin-bottom: 16px;
  }

  .footer-store-btns {
    width: 100%;
  }

  .footer-store-btn {
    width: 100%;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    width: 100%;
    margin-right: 0;
  }

  .footer-col-title {
    margin-bottom: 16px;
  }

  .footer-col li + li {
    margin-top: 12px;
  }

  .app-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

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

  .hero-layout {
    padding: calc(var(--header-height) + 24px) 0 56px;
  }

  .partners {
    padding: 64px 0 32px;
  }

  .partners-inner {
    gap: 20px 28px;
    justify-content: center;
  }

  .trusted {
    padding: 64px 0 40px;
  }

  .trusted-header p {
    font-size: 16px;
  }

  .stat-card-body {
    padding: 16px 18px;
  }

  .stat-card-value--large {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .product-account-cards {
    grid-template-columns: 1fr;
  }

  .product-account-card-body {
    padding: 16px;
  }

  .product-global-card {
    max-width: none;
  }

  .transfer-stats-list {
    gap: 12px;
  }

  .need-help-panel {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 24px;
  }

  .need-help-content {
    position: static;
    max-width: none;
    order: 1;
    padding: 28px 24px;
  }

  .need-help-panel::after {
    display: none;
  }

  .need-help-bg {
    position: static;
    order: 2;
    width: 100%;
    max-width: none;
    height: clamp(180px, 50vw, 220px);
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    width: 100%;
  }

  .footer-disclaimer {
    font-size: 13px;
    line-height: 1.6;
  }

  .card-benefits-item {
    padding: 20px 0;
  }

  .card-apply-step {
    text-align: center;
  }

  .card-apply-icon {
    margin: 0 auto 12px;
  }
}
/* H5 mobile enhancements */
@media (max-width: 900px) {
  :root {
    --page-gutter: 16px;
  }

  body {
    overflow-x: hidden;
  }

  .hero-title {
    margin-bottom: clamp(32px, 8vw, 56px);
    font-size: clamp(1.875rem, 8vw, 2.75rem);
  }

  .hero--product .hero-title {
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-eyebrow {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: none;
  }

  .hero-cta {
    height: 52px;
    padding: 4px 4px 4px 24px;
    column-gap: 16px;
    font-size: 16px;
  }

  .hero-cta-icon {
    width: 44px;
    height: 44px;
  }

  .hero-cta-icon svg {
    width: 16px;
    height: 16px;
  }

  .main-nav.is-open .nav-link {
    font-size: 18px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .header-actions.is-open .app-btn {
    width: 100%;
    justify-content: center;
  }

  .pay-showcase-tags {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pay-tag {
    font-size: 14px;
    padding: 8px 14px;
  }

  .product-global-stage {
    padding: 0;
  }

  .product-global-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .product-account-header {
    text-align: left;
  }

  .product-fees-visual img,
  .transfer-split-visual img,
  .card-benefits-visual img {
    width: 100%;
    height: auto;
  }

  .transfer-methods-visual {
    aspect-ratio: 16 / 10;
    min-height: 200px;
    border-radius: 24px;
  }

  .transfer-methods-foreground {
    width: min(88%, 320px);
  }

  .transfer-detail-visual {
    min-height: 180px;
    padding: 16px;
    border-radius: 24px;
  }

  .security-core-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .security-core-icon {
    align-self: flex-end;
  }

  .security-core-icon img {
    width: 100px;
    max-height: 120px;
  }

  .security-core-features {
    border-radius: 28px;
    padding: 28px 24px;
  }

  .card-type-panel {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .card-security-panel {
    border-radius: 28px;
    padding: 20px 16px;
  }

  .card-security-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
  }

  .card-security-icon {
    align-self: flex-end;
  }

  .need-help-content {
    max-width: 100%;
    padding: 28px 24px;
  }

  .need-help-panel {
    height: auto;
    min-height: 0;
  }

  .need-help-panel::after {
    display: none;
  }

  .need-help-bg {
    position: relative;
    height: clamp(160px, 42vw, 200px);
  }

  .need-help-content {
    position: relative;
    z-index: 1;
  }
}
