:root {
  --blue-950: #04295d;
  --blue-900: #063a7a;
  --blue-800: #075ab5;
  --blue-700: #087bf0;
  --blue-650: #1994f0;
  --blue-600: #0a96fa;
  --blue-500: #21b7ff;
  --ink: #062451;
  --line: #d9ebff;
  --surface: #ffffff;
  --surface-soft: #f5faff;
  --shadow: 0 24px 64px rgba(0, 73, 156, .16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(2, 82, 178, .15), rgba(1, 34, 81, .26)),
    url("../assets/images/blue-flow-bg.png") center top / cover fixed;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(1440px, calc(100% - 36px));
  margin: 16px auto 24px;
}

.site-header {
  min-height: 112px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 42px rgba(0, 68, 146, .18);
  backdrop-filter: blur(18px);
}
.brand {
  width: min(720px, 74vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.main-layout {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.form-card,
.promo-card {
  padding: 28px 40px 30px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.form-card > *,
.promo-card > * {
  width: min(100%, 1080px);
  margin-left: auto;
  margin-right: auto;
}

.hero-banner {
  text-align: center;
  margin-bottom: 24px;
}
.hero-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #123161;
}
.hero-title strong { color: var(--blue-700); }
.hero-sub {
  margin: 6px 0 0;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 900;
  color: var(--blue-600);
}
.hero-sub strong { font-size: 1.12em; }
.progress-track {
  height: 4px;
  margin: 22px auto 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5f1ff;
}
.progress-track span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #087bf0, #3ad8ff);
}
body[data-stage="2"] .progress-track span { width: 67%; }
body[data-stage="3"] .progress-track span, body[data-stage="4"] .progress-track span { width: 100%; }

.verify-form { display: grid; gap: 12px; }
.field-row {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.field-row > label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.field-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #dceeff;
  border-radius: 13px;
  background: #f0f8ff;
}
.field-icon svg { width: 20px; fill: var(--blue-700); }
.field-row label > span:last-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}
.field-row label small {
  display: block;
  margin-top: 4px;
  color: #91a4bd;
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
}
.input-action {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 4px;
  overflow: hidden;
  border: 1px solid #bfdcff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(6, 86, 180, .06);
  transition: border-color .2s, box-shadow .2s;
}
.input-action:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(10,150,250,.11); }
.input-action.is-readonly { background: #f8fbff; }
.input-action input {
  min-width: 0;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: #0a3c77;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  outline: 0;
  background: transparent;
}
.input-action input::placeholder { color: #8fa8c4; font-weight: 600; }
.field-button, .copy-button {
  min-width: 122px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 8px 18px rgba(8,123,240,.24);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}
.copy-button { min-width: 115px; }
.field-button:hover, .copy-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 22px rgba(8,123,240,.28);
}
.field-button:active, .copy-button:active {
  transform: translateY(0);
  filter: brightness(.97);
}
.field-button:focus-visible, .copy-button:focus-visible {
  outline: 3px solid rgba(8,123,240,.22);
  outline-offset: 2px;
}
.field-button svg, .copy-button svg { width: 17px; fill: currentColor; }
.verified-mark { width: 34px; display: grid; place-items: center; opacity: 0; transition: opacity .25s; }
.verified-mark svg { width: 20px; fill: #1bb975; }
body[data-stage="2"] .verified-mark, body[data-stage="3"] .verified-mark, body[data-stage="4"] .verified-mark { opacity: 1; }

.flat-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.flat-btn {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  border-radius: 10px;
  background: linear-gradient(135deg, #078cec, #09a8e7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .15s ease, filter .15s ease;
}
.flat-btn:hover { filter: brightness(.98); transform: translateY(-1px); }
.flat-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
button.flat-btn:disabled { cursor: wait; opacity: .55; transform: none !important; }

.notice-steps {
  margin-top: 20px;
  border: 1px solid #cfe6ff;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3faff, #eaf6ff);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(13, 83, 173, .06);
}
.notice-steps-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px 7px;
}
.notice-steps-header svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--blue-700);
}
.notice-steps-header h3 {
  margin: 0;
  color: var(--blue-700);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .05em;
}
.notice-step-list { padding: 0; }
.notice-step-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 24px;
}
.step-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #36b9f7, #1387e9);
  justify-self: center;
}
.notice-step-item p {
  margin: 2px 0 0;
  color: #3d5a80;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
}
.notice-step-item strong { color: var(--blue-700); font-weight: 800; }

.section-divider {
  height: 5px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd34d, #f6b500, #ffd34d);
  box-shadow: 0 6px 18px rgba(246, 181, 0, .28);
}

.promo-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.director-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  grid-template-areas:
    "campaign campaign"
    "content photo";
  grid-column: 1 / -1;
  grid-row: 1;
  gap: 26px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d6e9ff;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 26px rgba(13, 83, 173, .08);
}
.campaign-strip {
  grid-area: campaign;
  display: flex;
  align-items: stretch;
  min-height: 36px;
  margin: -16px -16px 0;
  overflow: hidden;
  border-radius: 22px 22px 10px 10px;
  background: linear-gradient(90deg, #079ee8, #3bc7f2 68%, #dff7ff);
}
.campaign-new {
  min-width: 82px;
  padding: 5px 23px 5px 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  background: rgba(255,255,255,.25);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%);
}
.campaign-title {
  padding: 7px 12px;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
}
.director-photo-wrap {
  grid-area: photo;
  min-height: 0;
  aspect-ratio: 314 / 192;
  border-radius: 18px;
  overflow: hidden;
  background: #eadfc9;
}
.director-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.director-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.director-title {
  margin: 0 0 8px;
  color: #101317;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 900;
}
.director-name {
  margin: 0 0 10px;
  color: #1277ef;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
}
.director-desc {
  margin: 0;
  color: #24364f;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}
.director-quote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}
.director-quote {
  min-width: 0;
  max-width: none;
  flex: 1;
  padding: 10px 14px;
  color: #1675ef;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  border-radius: 14px;
  background: linear-gradient(180deg, #eef7ff, #e3f2ff);
}
.director-sign {
  color: #3159b9;
  font-size: 23px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 30fr);
  grid-column: 1 / -1;
  grid-row: 2;
  column-gap: 12%;
  align-items: stretch;
  position: relative;
}
.feature-card {
  position: relative;
  min-height: 236px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #d6e9ff;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(53,190,255,.13), transparent 38%),
    linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 8px 18px rgba(13, 83, 173, .05);
}
.feature-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #078cf0, #43d4ff);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.feature-badge {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.feature-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.feature-head h3 {
  margin: 0;
  color: #0f6fe2;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 900;
}

/* Tải app: dùng thanh tiêu đề cùng ngôn ngữ thị giác với thanh chiến dịch */
.app-card {
  padding: 0 16px 14px;
  grid-column: 1;
  grid-row: 1;
  border-radius: 24px;
}
.app-card::before { display: none; }
.app-strip {
  min-height: 40px;
  margin: 0 -16px 10px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  color: #fff;
  border-radius: 19px 19px 9px 9px;
  background: linear-gradient(90deg, #079ee8, #3bc7f2 68%, #dff7ff);
}
.app-strip-title {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}
.app-strip-sub {
  min-width: 0;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
}
.platform-grid {
  width: 70%;
  min-height: 176px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.platform-grid::after {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #88d9ff 10%, #66c8f5 90%, transparent);
  transform: translateX(-50%);
}
.platform-item {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.platform-logo-crop {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.platform-logo-crop img {
  width: 112px;
  height: auto;
  display: block;
  object-fit: contain;
}
.platform-store-crop {
  width: 108px;
  height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.platform-store-crop img {
  width: 108px;
  height: auto;
  display: block;
  object-fit: contain;
}
.platform-item:hover .platform-logo-crop img { transform: scale(1.03); }
.platform-logo-crop img { transition: transform .18s ease; }

.phone-sign-stage { display: contents; }
.mobile-director-sign { display: none; }

.phone-banner-card {
  position: absolute;
  z-index: 10;
  left: 58%;
  bottom: -5px;
  width: clamp(286px, 29.5%, 320px);
  height: auto;
  display: block;
  padding: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline-offset: 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-55%);
  transition: transform .18s ease;
}
.phone-banner-card img {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(8, 103, 188, .16));
  transition: transform .18s ease, filter .18s ease;
}
.phone-banner-card:hover {
  transform: translateX(-55%) translateY(-3px);
}
.phone-banner-card:hover img {
  transform: scale(1.015);
  filter: drop-shadow(0 14px 12px rgba(8, 103, 188, .2));
}
.phone-banner-card:focus-visible {
  outline: 3px solid #057cf0;
}

.pay-card {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  border-radius: 24px;
}
.pay-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px 10px;
  margin-top: 7px;
  padding: 4px 8px;
  align-items: start;
}
.pay-item {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  background: transparent;
  border: 0;
}
.compact-icons .pay-item span:last-child { display: none; }
.pay-item-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}
.payment-extra-banner {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-extra-banner img {
  width: 100%;
  max-width: 282px;
  max-height: 74px;
  display: block;
  object-fit: contain;
}

.swal2-popup { border-radius: 22px !important; font-family: inherit !important; }
.swal2-confirm { border-radius: 11px !important; background: #087bf0 !important; }

@media (max-width: 1200px) {
  .form-card, .promo-card { padding: 28px 28px 30px; }
  .director-panel { grid-template-columns: minmax(0, 1fr) 300px; }
  .platform-logo-crop { width: 104px; height: 104px; }
  .platform-logo-crop img { width: 104px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .phone-banner-card {
    width: clamp(210px, 27vw, 280px);
    transform: translateX(-58%);
  }
  .phone-banner-card:hover { transform: translateX(-58%) translateY(-3px); }
}

@media (max-width: 900px) {
  .page-shell { width: min(720px, calc(100% - 24px)); margin-top: 12px; }
  .site-header { min-height: auto; padding: 14px; }
  .brand { width: min(520px, 100%); }
  .form-card, .promo-card { padding: 24px 20px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 8px; }
  .promo-stack { grid-template-columns: 1fr; }
  .director-panel, .feature-grid { grid-column: 1; grid-row: auto; }
  .director-panel {
    grid-template-columns: 1fr;
    grid-template-areas: "campaign" "photo" "content";
  }
  .director-photo-wrap { min-height: 240px; }
  .director-quote-row { flex-direction: column; align-items: flex-start; }
  .director-quote { max-width: 100%; }
  .app-strip { gap: 8px; }
  .app-strip-title { font-size: 16px; }
  .app-strip-sub { font-size: 9px; }
  .platform-grid { gap: 10px; }
  .platform-logo-crop { width: 96px; height: 96px; }
  .platform-logo-crop img { width: 96px; }
  .platform-store-crop { width: 92px; height: 62px; }
  .platform-store-crop img { width: 92px; }
  .pay-item-icon { width: 27px; height: 27px; }
  .payment-extra-banner img { max-height: 58px; }
}

@media (max-width: 767px) {
  .notice-step-item { grid-template-columns: 38px 1fr; gap: 10px; padding: 14px 16px; }
  .step-num { width: 28px; height: 28px; font-size: 12px; }
  .notice-step-item p { font-size: 12.5px; line-height: 1.65; }
  .section-divider { margin: 20px 0 18px; height: 4px; }
  .page-shell { width: calc(100% - 16px); }
  .site-header { border-radius: 18px; }
  .form-card, .promo-card { padding: 20px 14px 18px; border-radius: 22px; }
  .hero-title { font-size: 18px; }
  .hero-sub { font-size: 16px; }
  .field-row label small { display: none; }
  .field-icon { width: 36px; height: 36px; }
  .input-action { min-height: 52px; }
  .field-button, .copy-button { min-width: 92px; padding: 0 12px; font-size: 12px; }
  .copy-button svg, .field-button svg { width: 19px; }
  .flat-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .flat-btn { min-height: 48px; padding: 9px 8px; font-size: 11px; letter-spacing: 0; }
  .flat-btn svg { width: 18px; height: 18px; }
  .promo-stack { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .feature-grid { display: contents; }
  .app-card { order: 1; grid-column: 1 / -1; grid-row: auto; }
  .director-panel { order: 2; grid-column: 1 / -1; }
  .phone-sign-stage {
    position: relative;
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    min-height: 190px;
    gap: 0;
  }
  .phone-sign-stage::after {
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 50%;
    width: 1px;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent, #88d9ff 12%, #66c8f5 88%, transparent);
    transform: translateX(-50%);
  }
  .phone-banner-card {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 1;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }
  .phone-banner-card:hover { transform: none; }
  .mobile-director-sign {
    position: relative;
    z-index: 1;
    grid-column: 2;
    min-width: 0;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
  .mobile-director-sign span {
    width: 100%;
    max-width: 220px;
    color: #1474dc;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .mobile-signature-image {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
  .director-sign { display: none; }
  .pay-card {
    position: relative;
    order: 4;
    grid-column: 1 / -1;
    grid-row: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
    min-height: 154px;
    column-gap: 12px;
  }
  .pay-card::after {
    position: absolute;
    z-index: 0;
    top: 16px;
    bottom: 16px;
    left: 50%;
    width: 1px;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent, #88d9ff 12%, #66c8f5 88%, transparent);
    transform: translateX(-50%);
  }
  .campaign-strip { min-height: 34px; margin: -17px -17px 2px; border-radius: 16px 16px 8px 8px; }
  .campaign-new { min-width: 70px; padding: 5px 20px 5px 11px; font-size: 17px; }
  .campaign-title { padding: 8px 8px; font-size: 12px; }
  .director-photo-wrap { min-height: 170px; }
  .director-title { font-size: 19px; }
  .director-name { font-size: 17px; }
  .director-desc { font-size: 14px; }
  .director-sign { font-size: 22px; }
  .feature-card { min-width: 0; padding: 12px; border-radius: 16px; }
  .app-card { padding: 0 12px 12px; }
  .app-strip { min-height: 36px; margin: 0 -12px 8px; padding: 7px 10px; border-radius: 15px 15px 8px 8px; }
  .app-strip-title { font-size: 15px; }
  .app-strip-sub { font-size: 9px; white-space: normal; }
  .platform-grid { width: 100%; min-height: 176px; gap: 0; }
  .platform-logo-crop { width: 92px; height: 92px; }
  .platform-logo-crop img { width: 92px; }
  .platform-store-crop { width: 82px; height: 56px; }
  .platform-store-crop img { width: 82px; }
  .phone-banner-card img { width: min(100%, 168px); max-height: none; }
  .pay-card .feature-head { position: relative; z-index: 1; grid-column: 1; grid-row: 1; gap: 5px; margin-bottom: 3px; }
  .pay-card .feature-badge { width: 28px; height: 28px; }
  .pay-card .feature-head h3 { font-size: 10px; line-height: 1.15; white-space: nowrap; }
  .pay-grid { z-index: 1; grid-column: 1; grid-row: 2; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px 2px; margin-top: 3px; padding: 3px 1px; }
  .pay-grid::after { display: none; }
  .pay-item-icon { width: 21px; height: 21px; }
  .payment-extra-banner { position: relative; z-index: 1; grid-column: 2; grid-row: 1 / 3; margin: 0; padding: 4px 0 0; }
  .payment-extra-banner img { width: 100%; max-width: 142px; max-height: 62px; }
}

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