:root {
  --v2-blue: #0a5ed7;
  --v2-blue-deep: #083b8c;
  --v2-ink: #1f2937;
  --v2-muted: #667085;
  --v2-soft: #f5f7fa;
  --v2-card: #ffffff;
  --v2-line: #e6e6ef;
  --v2-green: #16a34a;
  --v2-orange: #ff6a00;
  --v2-shadow: 0 4px 16px rgba(10, 94, 215, 0.08);
  --v2-shadow-hover: 0 12px 28px rgba(10, 94, 215, 0.16);
  --v2-radius: 12px;
}

.merchant-library-launch {
  padding-top: 0;
}

.merchant-library-launch-card {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  color: #0a2854;
  background:
    radial-gradient(circle at 88% 10%, rgba(137, 224, 255, 0.72), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(225, 242, 255, 0.78));
  border: 1px solid rgba(166, 213, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(21, 91, 179, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px) saturate(145%);
}

.merchant-library-launch-card p {
  margin: 0 0 6px;
  color: #0a65ca;
  font-size: 13px;
  font-weight: 850;
}

.merchant-library-launch-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.16;
}

.merchant-library-launch-card span {
  display: block;
  max-width: 680px;
  margin-top: 9px;
  color: #52627f;
  line-height: 1.65;
}

.merchant-library-launch-btn {
  min-width: 190px;
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #0872f5, #08b9d7);
  border: 1px solid rgba(139, 224, 255, 0.92);
  border-radius: 15px;
  box-shadow: 0 12px 22px rgba(6, 96, 202, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 15px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.merchant-library-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 27px rgba(6, 96, 202, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.merchant-library-launch-btn:active {
  transform: translateY(1px) scale(0.985);
  box-shadow: inset 0 3px 8px rgba(0, 59, 141, 0.22), 0 7px 14px rgba(6, 96, 202, 0.18);
}

@media (max-width: 700px) {
  .merchant-library-launch-card {
    padding: 20px;
    display: grid;
    gap: 17px;
  }

  .merchant-library-launch-btn {
    width: 100%;
  }
}

body.v2-core-page {
  background: var(--v2-soft);
  color: var(--v2-ink);
}

.v2-page {
  padding-bottom: 36px;
}

.v2-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.v2-section {
  padding: 26px 0;
}

.v2-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.v2-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #0b2346;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.25;
}

.v2-section-title::before {
  content: "";
  width: 6px;
  height: 22px;
  border-radius: 99px;
  background: var(--v2-blue);
}

.v2-section-more {
  color: var(--v2-blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.v2-hero {
  padding: 20px 0 22px;
}

.v2-hero-card {
  position: relative;
  min-height: 304px;
  overflow: hidden;
  border-radius: 18px;
  background: #08264d;
  box-shadow: var(--v2-shadow);
}

.v2-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 30, 72, 0.92) 0%, rgba(10, 94, 215, 0.62) 48%, rgba(3, 30, 72, 0.18) 100%);
  z-index: 1;
}

.v2-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 54px 48px 46px;
  color: #fff;
}

.v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #dcecff;
  font-size: 14px;
  font-weight: 850;
}

.v2-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.v2-hero p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 760;
}

.v2-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(5px);
}

.v2-hero-contact {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 82px;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(3, 30, 72, 0.2);
}

/* Hero zones stay image-led and uncluttered. Contact details live in nav/footer/body CTAs. */
.v2-hero .v2-hero-contact {
  display: none;
}

.v2-hero-contact strong {
  display: block;
  color: var(--v2-blue);
  font-size: 15px;
  font-weight: 950;
}

.v2-hero-contact span {
  display: block;
  margin-top: 5px;
  color: #334155;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 760;
}

.v2-hero-contact img {
  position: static;
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: none;
  border-radius: 8px;
  background: #fff;
}

.v2-search-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
}

.v2-search-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(130px, 0.42fr)) auto;
  gap: 10px;
  align-items: center;
}

.v2-search-grid input,
.v2-search-grid select {
  width: 100%;
  height: 42px;
  border: 1px solid #dce5f0;
  border-radius: 9px;
  background: #fff;
  color: var(--v2-ink);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 760;
  outline: none;
}

.v2-search-grid input:focus,
.v2-search-grid select:focus {
  border-color: var(--v2-blue);
  box-shadow: 0 0 0 4px rgba(10, 94, 215, 0.1);
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: var(--v2-blue);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.v2-btn:hover,
.v2-btn:focus-visible {
  transform: translateY(-1px);
  background: #0b6ff6;
  box-shadow: 0 10px 22px rgba(10, 94, 215, 0.22);
  color: #fff;
  text-decoration: none;
  outline: none;
}

.v2-btn.ghost {
  border: 1px solid #b9cff0;
  background: #fff;
  color: var(--v2-blue);
}

.v2-btn.orange {
  background: var(--v2-orange);
}

.v2-hot-tags,
.v2-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.v2-hot-tags span,
.v2-filter-pills button,
.v2-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #dce5f0;
  border-radius: 999px;
  background: #fff;
  color: #17324d;
  font-size: 13px;
  font-weight: 850;
}

.v2-filter-pills button {
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border 200ms ease, transform 200ms ease;
}

.v2-filter-pills button.active,
.v2-filter-pills button:hover {
  border-color: var(--v2-blue);
  background: var(--v2-blue);
  color: #fff;
  transform: translateY(-1px);
}

.v2-table-card {
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
}

.v2-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.v2-price-table th {
  background: #f5f7fa;
  color: #344054;
  padding: 13px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.v2-price-table td {
  border-top: 1px solid #edf0f5;
  padding: 13px 12px;
  color: #1f2937;
  font-weight: 760;
}

.v2-price-table .price {
  color: #e60012;
  font-size: 15px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.v2-price-table .change-up {
  color: #e60012;
  font-weight: 950;
}

.v2-price-table .change-down {
  color: var(--v2-green);
  font-weight: 950;
}

.v2-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #bad0f4;
  border-radius: 7px;
  background: #f8fbff;
  color: var(--v2-blue);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.v2-mini-btn.primary {
  background: var(--v2-blue);
  color: #fff;
  border-color: var(--v2-blue);
}

.v2-service-strip,
.v2-icon-grid,
.v2-card-grid,
.v2-stat-grid {
  display: grid;
  gap: 14px;
}

.v2-service-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.v2-service-card,
.v2-icon-card,
.v2-stat-card,
.v2-market-card,
.v2-merchant-card {
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.v2-service-card:hover,
.v2-icon-card:hover,
.v2-stat-card:hover,
.v2-market-card:hover,
.v2-merchant-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-hover);
}

.v2-service-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
}

.v2-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: #edf5ff;
  color: var(--v2-blue);
  font-size: 24px;
  font-weight: 900;
}

.v2-service-card strong,
.v2-icon-card strong {
  display: block;
  color: #0b2346;
  font-size: 16px;
  font-weight: 950;
}

.v2-service-card span,
.v2-icon-card span,
.v2-stat-card span {
  display: block;
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.v2-icon-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.v2-icon-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  min-height: 120px;
  padding: 18px 10px;
}

.v2-map-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.v2-map-box {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background:
    linear-gradient(90deg, rgba(10,94,215,.08) 1px, transparent 1px),
    linear-gradient(rgba(10,94,215,.08) 1px, transparent 1px),
    #fff;
  background-size: 52px 52px;
  box-shadow: var(--v2-shadow);
}

.v2-map-line {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(10, 94, 215, 0.18);
  border-radius: 40% 55% 45% 50%;
}

.v2-map-pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px 999px 999px 0;
  background: var(--v2-blue);
  transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(10,94,215,.26);
}

.v2-map-pin::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.v2-map-pin span {
  position: absolute;
  left: 26px;
  top: -4px;
  display: block;
  min-width: 90px;
  transform: rotate(45deg);
  color: #0b2346;
  font-size: 12px;
  font-weight: 950;
}

.v2-map-pin.p1 { left: 24%; top: 32%; }
.v2-map-pin.p2 { left: 55%; top: 22%; }
.v2-map-pin.p3 { left: 68%; top: 52%; }
.v2-map-pin.p4 { left: 34%; top: 66%; }

.v2-market-list {
  display: grid;
  gap: 12px;
}

.v2-market-card {
  display: grid;
  grid-template-columns: 122px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.v2-market-card img,
.v2-merchant-card img,
.v2-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-market-card figure {
  height: 84px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.v2-market-card h3,
.v2-merchant-card h3 {
  margin: 0 0 6px;
  color: #0b2346;
  font-size: 16px;
  font-weight: 950;
}

.v2-market-card p,
.v2-merchant-card p {
  margin: 0;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

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

.v2-image-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: var(--v2-radius);
  background: #0d2b4d;
  box-shadow: var(--v2-shadow);
}

.v2-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(3, 19, 38, 0.78) 100%);
}

.v2-image-card strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

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

.v2-merchant-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  padding: 12px;
}

.v2-merchant-card figure {
  height: 112px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}

.v2-merchant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.v2-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-stat-card {
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 128px;
  padding: 22px 10px;
}

.v2-stat-card strong {
  color: var(--v2-blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.v2-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v2-flow-card {
  position: relative;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  padding: 20px 16px;
  box-shadow: var(--v2-shadow);
}

.v2-flow-card b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--v2-blue);
  color: #fff;
}

.v2-flow-card strong {
  display: block;
  color: #0b2346;
  font-size: 16px;
  font-weight: 950;
}

.v2-flow-card span {
  display: block;
  margin-top: 5px;
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.v2-cta {
  margin-top: 26px;
  border-radius: 14px;
  background: linear-gradient(100deg, #0a5ed7 0%, #083b8c 100%);
  color: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 34px rgba(10, 94, 215, 0.18);
}

.v2-cta h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.v2-cta p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-weight: 760;
}

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

.v2-faq-item {
  border: 1px solid var(--v2-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.v2-faq-question {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: #fff;
  color: #0b2346;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-weight: 950;
  cursor: pointer;
}

.v2-faq-answer {
  display: none;
  padding: 0 16px 14px;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.v2-faq-item.open .v2-faq-answer {
  display: block;
}

.v2-faq-item.open .v2-faq-question span {
  transform: rotate(180deg);
}

.v2-empty {
  padding: 24px;
  text-align: center;
  color: var(--v2-muted);
}

.v2-home-hero {
  padding: 18px 0 24px;
}

.v2-home-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 15%, rgba(10, 94, 215, 0.22), transparent 32%),
    linear-gradient(135deg, #08264d 0%, #0a5ed7 100%);
  box-shadow: var(--v2-shadow-hover);
}

.v2-home-hero-copy {
  padding: 54px 0 48px 44px;
  color: #fff;
}

.v2-home-hero-copy h1 {
  max-width: 660px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -0.8px;
  font-weight: 950;
}

.v2-home-hero-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 820;
}

.v2-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.v2-home-actions .v2-btn {
  min-height: 46px;
  padding: 0 22px;
}

.v2-home-actions .v2-btn.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.v2-home-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.v2-home-value {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.v2-home-value span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255,255,255,.14);
}

.v2-home-hero-media {
  position: relative;
  min-height: 430px;
}

.v2-home-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 38, 77, 0.45), rgba(8, 38, 77, 0.08));
}

.v2-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
}

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

.v2-entry-card {
  display: grid;
  min-height: 128px;
  gap: 10px;
  padding: 20px 18px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
  color: #0b2346;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border 200ms ease;
}

.v2-entry-card:hover {
  transform: translateY(-2px);
  border-color: #b9cff0;
  box-shadow: var(--v2-shadow-hover);
  color: #0b2346;
  text-decoration: none;
}

.v2-entry-card b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #edf5ff;
  color: var(--v2-blue);
  font-size: 22px;
}

.v2-entry-card strong {
  font-size: 17px;
  font-weight: 950;
}

.v2-entry-card span {
  color: var(--v2-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
}

.v2-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 18px;
  align-items: stretch;
}

.v2-home-split .v2-merchant-grid {
  grid-template-columns: 1fr;
}

.v2-home-split .v2-merchant-card {
  min-width: 0;
}

.v2-home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v2-home-service-card {
  min-height: 168px;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.v2-home-service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-hover);
}

.v2-home-service-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.v2-home-service-card div {
  padding: 12px;
}

.v2-home-service-card strong {
  display: block;
  color: #0b2346;
  font-size: 15px;
  font-weight: 950;
}

.v2-home-service-card span {
  display: block;
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 720;
}

.v2-home-knowledge-list {
  display: grid;
  gap: 10px;
}

.v2-home-knowledge-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
  color: #0b2346;
  text-decoration: none;
}

.v2-home-knowledge-item:hover {
  color: #0b2346;
  text-decoration: none;
  transform: translateY(-1px);
}

.v2-home-knowledge-item img {
  width: 112px;
  height: 72px;
  border-radius: 9px;
  object-fit: cover;
}

.v2-home-knowledge-item strong {
  display: block;
  font-weight: 950;
  line-height: 1.45;
}

.v2-home-knowledge-item span {
  display: block;
  margin-top: 6px;
  color: var(--v2-muted);
  font-size: 12px;
  font-weight: 720;
}

.v2-brand-strip {
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: #fff;
  box-shadow: var(--v2-shadow);
}

.v2-brand-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 14px;
  animation: v2BrandScroll 28s linear infinite;
}

.v2-brand-badge {
  display: grid;
  place-items: center;
  min-width: 142px;
  height: 56px;
  border: 1px solid #e4ebf5;
  border-radius: 12px;
  color: #0b2346;
  font-size: 17px;
  font-weight: 950;
  background: #fbfdff;
}

@keyframes v2BrandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Final polish: visual, interaction, readability and responsive tuning. */
.v2-core-page {
  font-variant-numeric: tabular-nums;
  text-rendering: optimizeLegibility;
}

.v2-core-page img {
  max-width: 100%;
}

.v2-core-page input:focus,
.v2-core-page select:focus,
.v2-core-page textarea:focus {
  border-color: var(--v2-blue) !important;
  box-shadow: 0 0 0 4px rgba(10, 94, 215, 0.11) !important;
  outline: none;
}

.v2-core-page .v2-btn,
.v2-core-page .v2-mini-btn,
.v2-core-page button,
.v2-core-page a[class*="btn"] {
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.v2-core-page .v2-btn:hover,
.v2-core-page .v2-mini-btn:hover,
.v2-core-page button:hover,
.v2-core-page a[class*="btn"]:hover {
  transform: translateY(-1px);
}

.v2-home-page .v2-home-hero-card {
  min-height: 452px;
}

.v2-home-page .v2-home-actions .v2-btn:not(.ghost) {
  filter: brightness(1.05);
}

.v2-home-page .v2-stat-card strong {
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.v2-home-page .v2-image-card img,
.v2-home-page .v2-home-service-card img,
.v2-home-page .v2-home-hero-media img {
  filter: saturate(1.06) contrast(1.05);
}

.v2-brand-strip:hover .v2-brand-track {
  animation-play-state: paused;
}

.v2-table-card {
  overflow-x: auto;
}

.v2-price-table {
  table-layout: fixed;
  font-variant-numeric: tabular-nums;
}

.v2-price-table th,
.v2-price-table td {
  vertical-align: middle;
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
}

.v2-price-table th:nth-child(1),
.v2-price-table td:nth-child(1),
.v2-price-table th:nth-child(4),
.v2-price-table td:nth-child(4) {
  text-align: left;
}

.v2-price-table th:nth-child(2),
.v2-price-table td:nth-child(2),
.v2-price-table th:nth-child(3),
.v2-price-table td:nth-child(3) {
  text-align: center;
}

.v2-price-table th:nth-child(5),
.v2-price-table td:nth-child(5),
.v2-price-table th:nth-child(6),
.v2-price-table td:nth-child(6) {
  text-align: right;
}

.v2-price-table td:nth-child(5),
.v2-price-table .price {
  color: #d90416;
  font-weight: 700;
}

.v2-price-table td:nth-child(6),
.v2-price-table .change-up,
.v2-price-table .change-down {
  font-weight: 700;
  white-space: nowrap;
}

.v2-price-table .change-up {
  color: #d92d20;
}

.v2-price-table .change-down {
  color: #079455;
}

.v2-price-table td:nth-child(7),
.v2-price-table td:nth-child(8),
.v2-price-table th:nth-child(7),
.v2-price-table th:nth-child(8) {
  text-align: center;
}

.v2-price-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fbff;
  color: #23405f;
  font-weight: 900;
}

.v2-faq-question span {
  transition: transform 200ms ease;
}

.v2-faq-answer {
  transition: max-height 200ms ease, opacity 200ms ease;
}

@media (max-width: 768px) {
  .v2-home-page .v2-home-hero-card {
    min-height: auto;
  }

  .v2-price-table {
    min-width: 760px;
  }

  .v2-table-card {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1080px) {
  .v2-container {
    width: min(100% - 28px, 760px);
  }

  .v2-search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-search-grid .v2-btn {
    grid-column: 1 / -1;
  }

  .v2-service-strip,
  .v2-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-home-hero-card,
  .v2-home-split {
    grid-template-columns: 1fr;
  }

  .v2-home-hero-copy {
    padding: 38px 28px 0;
  }

  .v2-home-hero-media {
    min-height: 300px;
  }

  .v2-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .v2-map-layout,
  .v2-merchant-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .v2-page {
    padding-bottom: 20px;
  }

  .v2-section {
    padding: 20px 0;
  }

  .v2-hero {
    padding: 12px 0 14px;
  }

  .v2-hero-card {
    min-height: 274px;
    border-radius: 14px;
  }

  .v2-hero-content {
    padding: 34px 20px 28px;
  }

  .v2-hero h1 {
    font-size: 28px;
  }

  .v2-hero p {
    font-size: 15px;
  }

  .v2-search-panel {
    padding: 14px;
  }

  .v2-search-grid {
    grid-template-columns: 1fr;
  }

  .v2-hot-tags,
  .v2-filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .v2-hot-tags::-webkit-scrollbar,
  .v2-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .v2-hot-tags span,
  .v2-filter-pills button {
    flex: 0 0 auto;
  }

  .v2-table-card {
    overflow-x: auto;
  }

  .v2-price-table {
    min-width: 720px;
  }

  .v2-service-strip,
  .v2-stat-grid,
  .v2-icon-grid,
  .v2-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-home-hero-card {
    min-height: auto;
  }

  .v2-home-hero-copy {
    padding: 30px 18px 0;
  }

  .v2-home-hero-copy h1 {
    font-size: 31px;
  }

  .v2-home-hero-copy p {
    font-size: 15px;
  }

  .v2-home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-home-value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v2-home-hero-media {
    min-height: 220px;
  }

  .v2-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v2-entry-card {
    min-height: 118px;
    padding: 15px 12px;
  }

  .v2-home-service-grid {
    grid-template-columns: 1fr;
  }

  .v2-home-knowledge-item {
    grid-template-columns: 96px 1fr;
  }

  .v2-home-knowledge-item img {
    width: 96px;
    height: 68px;
  }

  .v2-image-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
  }

  .v2-image-grid::-webkit-scrollbar {
    display: none;
  }

  .v2-image-card {
    flex: 0 0 148px;
    min-height: 126px;
  }

  .v2-map-box {
    min-height: 260px;
  }

  .v2-market-card {
    grid-template-columns: 96px 1fr;
  }

  .v2-market-card .v2-mini-btn {
    grid-column: 1 / -1;
  }

  .v2-merchant-card {
    grid-template-columns: 96px 1fr;
  }

  .v2-merchant-card figure {
    height: 100px;
  }

  .v2-cta {
    display: grid;
    padding: 22px 18px;
  }
}

/* Unified primary-page design language */
:root {
  --v3-blue: #0a5ed7;
  --v3-blue-deep: #082f73;
  --v3-navy: #061b36;
  --v3-ink: #10243a;
  --v3-muted: #667085;
  --v3-line: #e5edf7;
  --v3-soft: #f5f8fc;
  --v3-card: #ffffff;
  --v3-orange: #ff6a00;
  --v3-radius-lg: 22px;
  --v3-radius-md: 14px;
  --v3-shadow: 0 18px 46px rgba(8, 47, 115, .12);
  --v3-shadow-soft: 0 10px 28px rgba(8, 47, 115, .08);
}

body.v3-page,
body.v2-core-page {
  background: linear-gradient(180deg, #f7fbff 0%, #f5f8fc 38%, #fff 100%);
}

.v3-unified-hero,
.v2-core-page .v2-hero {
  padding: 30px 0 26px;
}

.v3-unified-hero .v2-container,
.v2-core-page .v2-hero > .v2-container {
  width: min(1320px, calc(100% - 40px));
}

.v3-unified-hero-card,
.v2-core-page .v2-hero-card {
  min-height: 372px;
  border-radius: var(--v3-radius-lg);
  background: var(--v3-navy);
  box-shadow: var(--v3-shadow);
  isolation: isolate;
}

.v3-unified-hero-card::before,
.v2-core-page .v2-hero-card::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(64, 144, 255, .35), transparent 32%),
    linear-gradient(90deg, rgba(4, 24, 55, .95) 0%, rgba(8, 47, 115, .78) 42%, rgba(8, 47, 115, .22) 100%);
}

.v2-home-page .v3-unified-hero-card::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(64, 144, 255, .34), transparent 32%),
    linear-gradient(90deg, rgba(4, 24, 55, .97) 0%, rgba(8, 47, 115, .82) 44%, rgba(8, 47, 115, .26) 100%);
}

.v3-unified-hero-card img,
.v2-core-page .v2-hero-card img {
  transform: scale(1.012);
}

.v3-unified-hero .v2-hero-content,
.v2-core-page .v2-hero-content {
  max-width: 760px;
  padding: 72px 58px 58px;
}

.v2-home-page .v3-unified-hero .v2-hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 58px 0 98px;
}

.v3-unified-hero .v2-eyebrow,
.v2-core-page .v2-eyebrow {
  margin-bottom: 14px;
  color: rgba(255,255,255,.78);
  letter-spacing: .08em;
}

.v3-unified-hero .v2-hero h1,
.v2-core-page .v2-hero h1,
.v3-unified-hero h1,
.v2-core-page .v2-hero-content h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.v3-unified-hero .v2-hero p,
.v2-core-page .v2-hero p,
.v3-unified-hero .v2-hero-content p {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
}

.v3-unified-hero .v2-hero-tags,
.v2-core-page .v2-hero-tags {
  gap: 12px;
}

.v3-unified-hero .v2-hero-tags span,
.v2-core-page .v2-hero-tags span {
  min-height: 36px;
  padding: 0 15px;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.v3-hero-actions,
.v2-home-actions.v3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.v3-hero-actions .v2-btn,
.v2-home-actions.v3-hero-actions .v2-btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.v3-hero-actions .v2-btn.ghost,
.v2-home-actions.v3-hero-actions .v2-btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.12);
}

.v2-search-panel,
.v3-hero-search {
  border-radius: 16px;
  border-color: var(--v3-line);
  box-shadow: var(--v3-shadow-soft);
}

.v3-search-section {
  position: relative;
  z-index: 8;
  margin: -10px 0 30px;
}

.v3-search-section > .v2-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.v3-search-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(215,226,239,.96);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13,43,77,.10);
  backdrop-filter: none;
}

.v3-search-card .v2-search-grid {
  gap: 12px;
}

.v3-search-card .v2-hot-tags,
.v3-search-card .knowledge-hot-tags {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eef3f8;
}

.v2-search-note,
.v2-section-desc {
  margin: 12px 0 0;
  color: #5f6f87;
  font-size: 14px;
  line-height: 1.8;
}

.v2-section-desc {
  margin: 8px 0 18px;
  max-width: 820px;
}

.v3-cta-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.v3-cta-card.v3-hero-actions {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
}

.v3-cta-card .v2-btn {
  min-height: 46px;
  min-width: 160px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(13,71,200,.12);
}

.v2-search-grid input,
.v2-search-grid select,
.knowledge-search-form input {
  height: 46px;
  border-radius: 12px;
}

.v2-btn,
.v2-mini-btn,
.knowledge-more,
.knowledge-search-form button,
.merchant-join-v2-hero-actions .btn {
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}

.v2-btn:hover,
.v2-mini-btn:hover,
.knowledge-more:hover,
.knowledge-search-form button:hover,
.merchant-join-v2-hero-actions .btn:hover {
  transform: translateY(-1px);
}

.v2-icon-card,
.v2-service-card,
.v2-stat-card,
.v2-merchant-card,
.v2-market-card,
.v2-image-card,
.knowledge-article-card,
.merchant-join-v2-benefit-grid article,
.merchant-join-v2-merchant-grid article,
.about-platform-card-grid article {
  border-radius: var(--v3-radius-md);
}

.knowledge-main,
.merchant-join-v2-main,
.about-platform-main {
  background: transparent;
}

.knowledge-main .container,
.merchant-join-v2-main .container,
.about-platform-main .container {
  width: min(1200px, calc(100% - 40px));
}

.knowledge-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 0;
}

.knowledge-search-form button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--v3-blue);
  color: #fff;
  padding: 0 22px;
  font-weight: 900;
}

.knowledge-hot-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.knowledge-hot-tags button,
.knowledge-hot-tags span {
  color: var(--v3-muted);
}

.knowledge-hot-tags button {
  border: 1px solid #dce7f4;
  border-radius: 999px;
  background: #f8fbff;
  min-height: 30px;
  padding: 0 12px;
  cursor: pointer;
}

.merchant-join-v2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .v3-unified-hero-card,
  .v2-core-page .v2-hero-card {
    min-height: 330px;
  }

  .v3-unified-hero .v2-hero-content,
  .v2-core-page .v2-hero-content {
    padding: 56px 38px 46px;
  }
}

@media (max-width: 720px) {
  .v3-unified-hero,
  .v2-core-page .v2-hero {
    padding: 14px 0 16px;
  }

  .v3-unified-hero .v2-container,
  .v2-core-page .v2-hero > .v2-container,
  .knowledge-main .container,
  .merchant-join-v2-main .container,
  .about-platform-main .container {
    width: min(100% - 28px, 430px);
  }

  .v3-unified-hero-card,
  .v2-core-page .v2-hero-card {
    min-height: 360px;
    border-radius: 18px;
  }

  .v3-unified-hero-card::before,
  .v2-core-page .v2-hero-card::before {
    background:
      radial-gradient(circle at 18% 10%, rgba(64,144,255,.28), transparent 36%),
      linear-gradient(180deg, rgba(4,24,55,.94) 0%, rgba(8,47,115,.72) 58%, rgba(8,47,115,.32) 100%);
  }

  .v3-unified-hero .v2-hero-content,
  .v2-core-page .v2-hero-content {
    padding: 38px 22px 30px;
  }

  .v2-home-page .v3-unified-hero .v2-hero-content {
    height: auto;
    padding: 42px 24px 34px;
  }

  .v3-unified-hero .v2-hero h1,
  .v2-core-page .v2-hero h1,
  .v3-unified-hero h1,
  .v2-core-page .v2-hero-content h1 {
    font-size: 30px;
    letter-spacing: -.4px;
  }

  .v3-unified-hero .v2-hero p,
  .v2-core-page .v2-hero p,
  .v3-unified-hero .v2-hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .v3-unified-hero .v2-hero-tags,
  .v2-core-page .v2-hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .v3-unified-hero .v2-hero-tags span,
  .v2-core-page .v2-hero-tags span {
    justify-content: center;
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .v3-hero-actions,
  .v2-home-actions.v3-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .v2-home-actions.v3-hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .v3-hero-actions .v2-btn,
  .v2-home-actions.v3-hero-actions .v2-btn {
    width: 100%;
  }

  .v2-home-actions.v3-hero-actions .v2-btn {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.2;
  }

  .v3-search-section {
    margin: 10px 0 22px;
  }

  .v3-search-section > .v2-container {
    width: min(100% - 28px, 430px);
  }

  .v3-search-card {
    padding: 14px;
    border-radius: 16px;
  }

  .v3-search-card .v2-search-grid,
  .v3-search-card .knowledge-search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .v3-search-card .v2-search-grid input,
  .v3-search-card .v2-search-grid select,
  .v3-search-card .v2-search-grid button,
  .v3-search-card .knowledge-search-form input,
  .v3-search-card .knowledge-search-form button {
    width: 100%;
    min-width: 0;
  }

  .v3-cta-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .knowledge-search-form {
    grid-template-columns: 1fr;
  }

  .knowledge-hot-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .knowledge-hot-tags::-webkit-scrollbar {
    display: none;
  }

  .knowledge-hot-tags > * {
    flex: 0 0 auto;
  }
}
