:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --blue: #0a0a0a;
  --blue-hover: #333333;
  --bg: #ffffff;
  --muted: #f5f5f5;
  --text: #0a0a0a;
  --text-secondary: #6b6b6b;
  --border: #e5e5e5;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 24px);
}

/* Accent text in headings (i18n uses class name text-blue) */
.text-blue {
  color: #3a3a3a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

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

/* Anchors need explicit color so .mobile-nav > a / other link rules cannot win via higher specificity */
a.btn-primary {
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: rgba(10, 10, 10, 0.06);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Header — in document flow: scrolls away with the page (not sticky/fixed) */
.header {
  position: relative;
  z-index: 100;
  height: var(--header-h);
  background: #fdfdfd;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
}

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

@media (max-width: 400px) {
  .logo-img {
    height: 28px;
    max-width: 160px;
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: var(--muted);
  color: var(--blue);
}

/* “SOON” badge next to VCC (decorative; link has aria-label via i18n) */
.nav-vcc-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--gray-light);
  flex-shrink: 0;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--text-secondary);
}

.mobile-nav > a.nav-link--inert {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-auth-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

a.nav-auth-btn {
  gap: 8px;
}

.nav-auth-btn .nav-auth-icon {
  flex-shrink: 0;
  opacity: 0.92;
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  .nav-auth-desktop {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 24px;
  z-index: 99;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
}

/* Only top-level nav rows — not CTA buttons inside .mobile-nav-auth */
.mobile-nav > a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.mobile-nav-auth .btn {
  justify-content: center;
  text-align: center;
}

/* Sections */
section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

.payment-showcase-section {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f0f0f0 0%, #fafafa 55%, #ffffff 100%);
  width: 100%;
}

.payment-showcase-section .payment-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 75px;
  align-items: start;
  width: 100%;
}

.payment-showcase-section .payment-showcase-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .payment-showcase-section {
    padding: 40px 0 56px;
  }
}

@media (max-width: 900px) {
  .payment-showcase-section .payment-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.payment-showcase-section .payment-showcase-row {
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.payment-showcase-section .pay-split-visual {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 901px) {
  .payment-showcase-section .pay-split-visual {
    justify-content: flex-start;
  }
}

.payment-showcase-section .payment-showcase-visual-col {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
  justify-content: flex-start;
  min-width: 0;
}

@media (min-width: 901px) {
  .payment-showcase-section .payment-showcase-visual-col {
    align-items: stretch;
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 28px;
}

.payment-showcase-left .pay-showcase-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  max-width: 420px;
}

.payment-showcase-left .pay-showcase-hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.payment-showcase-left .pay-showcase-hl-ic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.payment-showcase-left .pay-showcase-hl-ic svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* Hero — below header in flow; top padding = space before title */
.hero {
  margin-top: 0;
  padding-top: 68px;
  padding-bottom: 100px;
  background-color: #fdfdfd;
  background-image: linear-gradient(180deg, #fdfdfd 60%, #f0f0f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 40px;
  align-items: center;
}

.hero-grid > div:first-child {
  min-width: 0;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0 0 20px;
  max-width: 480px;
}

.hero .btn-primary {
  margin-bottom: 0;
}

.hero-perks {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px clamp(14px, 2.2vw, 28px);
  margin: 20px 0 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
  list-style: none;
  box-sizing: border-box;
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero-perk-label {
    font-size: 0.8125rem;
  }

  .hero-perk-icon svg {
    width: 17px;
    height: 17px;
  }
}

.hero-perk {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
}

.hero-perk-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.hero-perk-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-perks {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 24px;
  }

  .hero-perk-label {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .hero-perks {
    margin-top: 18px;
  }
}

.hero-visual {
  position: relative;
  min-height: 200px;
  min-width: 0;
  justify-self: end;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  .hero-visual {
    justify-self: stretch;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero ramp mockup (replaces raster hero image) */
.ramp-hero-scene {
  position: relative;
  width: 100%;
  max-width: min(440px, 100%);
  min-height: 380px;
  margin: 0 auto;
  padding: 10px 4px 24px;
}

@media (min-width: 901px) {
  .hero-visual .ramp-hero-scene {
    margin-right: 0;
    margin-left: auto;
  }
}

.ramp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.ramp-hero-blob-dark {
  position: absolute;
  left: -6%;
  bottom: -10%;
  width: 92%;
  height: 78%;
  background: #111827;
  border-radius: 28px;
  transform: rotate(-2.5deg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.14);
}

.ramp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.5;
}

.ramp-hero-glow--1 {
  width: 200px;
  height: 200px;
  background: #2563eb;
  right: 4%;
  top: 2%;
}

.ramp-hero-glow--2 {
  width: 160px;
  height: 160px;
  background: #3b82f6;
  right: 0;
  bottom: 18%;
  opacity: 0.35;
}

.ramp-hero-accent-orange {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  opacity: 0.4;
  right: -12px;
  bottom: 32%;
  filter: blur(8px);
}

.ramp-hero-accent-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #2563eb;
  right: 14%;
  top: 6%;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.35));
}

.ramp-hero-cards {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 24px 4px 0;
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.ramp-checkout-card {
  flex: 1 1 58%;
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ececec;
  padding: 14px 14px 12px;
  font-size: 12px;
  color: #374151;
}

.ramp-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.ramp-tab {
  position: relative;
  padding-bottom: 6px;
  cursor: default;
}

.ramp-tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: #22c55e;
  border-radius: 2px;
}

.ramp-price-box {
  background: #f3f4f6;
  border-radius: 12px;
  padding: 12px 12px 10px;
  margin-bottom: 12px;
}

.ramp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.ramp-lbl {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 2px;
}

.ramp-price-main {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1.1;
}

.ramp-price-sub {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 4px;
}

.ramp-pill-curr {
  flex-shrink: 0;
  align-self: center;
  padding: 6px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.ramp-order-title {
  font-weight: 600;
  font-size: 12px;
  color: #111;
  margin-bottom: 2px;
}

.ramp-order-id {
  font-size: 10px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.ramp-row-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-bottom: 8px;
  color: #4b5563;
}

.ramp-row-line strong {
  color: #111;
  font-weight: 700;
}

.ramp-select {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.ramp-select svg {
  flex-shrink: 0;
  color: #6b7280;
}

.ramp-select span {
  flex: 1;
  font-weight: 600;
  font-size: 12px;
  color: #111;
}

.ramp-icon-chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.45;
}

.ramp-btn-pay {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  cursor: default;
  margin-bottom: 10px;
}

.ramp-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: #9ca3af;
}

.ramp-powered-mark {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.ramp-side-stack {
  flex: 0 0 38%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 4px;
}

.ramp-glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.ramp-glass-lbl {
  font-size: 10px;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 4px;
}

.ramp-glass-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ramp-glass-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1;
}

.ramp-curr-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 5px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  color: #111;
  cursor: default;
}

.ramp-curr-pill .ramp-icon-chev {
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  opacity: 0.35;
}

@media (max-width: 520px) {
  .ramp-hero-scene {
    min-height: auto;
    padding-bottom: 16px;
  }

  .ramp-hero-cards {
    flex-direction: column;
    align-items: stretch;
    padding-top: 16px;
  }

  .ramp-side-stack {
    flex-direction: row;
    flex: 1 1 auto;
  }

  .ramp-glass-card {
    flex: 1;
  }

  .ramp-glass-val {
    font-size: 18px;
  }

  .ramp-price-main {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ramp-hero-cards {
    transition: none;
  }
}

/* Customer checkout flow (#products) */
.checkout-flow-section .checkout-flow-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.checkout-flow-section .checkout-flow-header .section-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.checkout-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem 0.5rem;
}

.checkout-flow-step {
  flex: 1 1 15rem;
  max-width: 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.checkout-flow-slot {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}

.checkout-flow-step:not(.checkout-flow-step--provider) .checkout-flow-slot > * {
  flex: 0 1 17.5rem;
  width: 100%;
  max-width: 17.5rem;
}

.checkout-flow-step--provider .checkout-flow-slot > * {
  flex: 0 1 20.5rem;
  width: 100%;
  max-width: 20.5rem;
}

.checkout-flow-ramp-scene {
  width: 100%;
  max-width: 17.5rem;
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-flow-hero-cards.ramp-hero-cards {
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  transform: none !important;
}

.checkout-flow-hero-cards .ramp-checkout-card {
  flex: 1 1 auto;
  width: 100%;
}

.checkout-flow-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  padding: 0 0.15rem;
}

.checkout-flow-arrow svg {
  width: 1.75rem;
  height: 1.75rem;
}

.checkout-flow-step--provider {
  max-width: 21.5rem;
}

.checkout-flow-provider-card {
  width: 100%;
  max-width: 20.5rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ececec;
  padding: 12px 14px 14px;
  font-size: 11px;
  color: #1f2937;
  --cfp-blue: #2563eb;
  --cfp-blue-soft: #e8f0fe;
  --cfp-sheet: #f3f4f6;
}

.cfp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cfp-ico-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #374151;
  cursor: default;
}

.cfp-ico-btn svg {
  width: 20px;
  height: 20px;
}

.cfp-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cfp-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
}

.cfp-progress {
  display: flex;
  gap: 4px;
  flex: 1;
  max-width: 132px;
  justify-content: flex-end;
}

.cfp-progress i {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  list-style: none;
  font-style: normal;
}

.cfp-progress i.is-on {
  background: var(--cfp-blue);
}

.cfp-sheet {
  background: var(--cfp-sheet);
  border-radius: 14px;
  padding: 12px 10px 12px;
  margin-bottom: 12px;
}

.cfp-pick {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.cfp-pick-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.cfp-pick-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.cfp-pick-ico svg {
  width: 20px;
  height: 20px;
}

.cfp-pick-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.cfp-pick-title-row strong {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

.cfp-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--cfp-blue-soft);
  color: var(--cfp-blue);
  font-size: 10px;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  cursor: default;
}

.cfp-instant {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
}

.cfp-instant svg {
  width: 12px;
  height: 12px;
  color: #ca8a04;
  flex-shrink: 0;
}

.cfp-pick-brands {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.cfp-pick-brands .cfp-brand {
  display: block;
  border-radius: 3px;
}

.cfp-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--cfp-blue);
  color: #fff;
  margin-left: 2px;
}

.cfp-check svg {
  width: 12px;
  height: 12px;
}

.cfp-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cfp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cfp-fld {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 10px 8px;
  min-height: 40px;
}

.cfp-fld--full {
  grid-column: 1 / -1;
}

.cfp-fld-lbl {
  position: absolute;
  top: 0;
  left: 8px;
  transform: translateY(-50%);
  padding: 0 4px;
  background: var(--cfp-sheet);
  font-size: 9px;
  font-weight: 600;
  color: #9ca3af;
  line-height: 1;
  max-width: calc(100% - 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cfp-fld-val {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  line-height: 1.35;
}

.cfp-exp-ico {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-40%);
  color: #9ca3af;
}

.cfp-fld--exp {
  padding-right: 28px;
}

.cfp-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: default;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

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

.cfp-foot {
  margin: 10px 0 0;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: #6b7280;
}

.checkout-flow-success-wrap {
  width: 100%;
  max-width: 17.5rem;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
}

.checkout-flow-success-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ececec;
  padding: 0;
  font-size: 12px;
  color: #374151;
}

.checkout-flow-success-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 14px 22px;
  min-height: 12rem;
}

.checkout-flow-success-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.28);
}

.checkout-flow-success-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.checkout-flow-success-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.checkout-flow-success-sub {
  margin: 0 0 6px;
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  line-height: 1.45;
}

.checkout-flow-success-sub--2 {
  margin-bottom: 12px;
}

.checkout-flow-usdc {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* Horizontal slider: equal-height steps, ~3.35 panels visible (4th peeks) */
.checkout-flow-slider-outer {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 6px 44px 10px;
  box-sizing: border-box;
  background: transparent;
}

.checkout-flow-section .checkout-flow.checkout-flow--slider {
  background: transparent;
  box-shadow: none;
}

.checkout-flow-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease, background 0.15s ease;
}

.checkout-flow-slider-nav:hover:not(:disabled) {
  background: #f9fafb;
}

.checkout-flow-slider-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.checkout-flow-slider-nav svg {
  width: 20px;
  height: 20px;
}

.checkout-flow-slider-nav--prev {
  left: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.checkout-flow-slider-outer.checkout-flow-slider-outer--show-prev .checkout-flow-slider-nav--prev {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-flow-slider-nav--next {
  right: 2px;
}

.checkout-flow-slider-outer.checkout-flow-slider-outer--no-overflow .checkout-flow-slider-nav {
  display: none;
}

.checkout-flow-section .checkout-flow--slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: transparent;
}

.checkout-flow-section .checkout-flow--slider::-webkit-scrollbar {
  display: none;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-step {
  flex: 0 0 calc((100% - 3 * 1.35rem - 6 * 0.45rem) / 3.35);
  max-width: none;
  min-width: 12rem;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-step--provider {
  max-width: none;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-arrow {
  flex: 0 0 1.35rem;
  min-width: 1.35rem;
  min-height: 0;
  align-self: center;
  padding: 0;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-slot {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-slot > * {
  width: 100% !important;
  max-width: none !important;
  flex: 1 1 auto;
  min-height: 0;
  align-self: stretch;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-ramp-scene {
  max-width: none;
  align-items: stretch;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-hero-cards {
  width: 100%;
  min-height: 100%;
}

.checkout-flow-section .checkout-flow--slider .ramp-checkout-card {
  flex: 1 1 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-provider-card {
  min-height: 100%;
  height: 100%;
  justify-content: flex-start;
  box-sizing: border-box;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-provider-card .cfp-sheet {
  flex: 1 1 auto;
  min-height: 0;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-provider-card .cfp-foot {
  margin-top: auto;
}

.checkout-flow-section .checkout-flow--slider .ramp-checkout-card .ramp-powered {
  margin-top: auto;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-success-wrap {
  max-width: none;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-success-card {
  min-height: 100%;
  height: 100%;
}

.checkout-flow-section .checkout-flow--slider .checkout-flow-success-body {
  flex: 1 1 auto;
  min-height: 0;
}

@media (min-width: 901px) {
  .checkout-flow {
    align-items: stretch;
  }

  .checkout-flow-step {
    min-height: 0;
  }

  .checkout-flow-provider-card {
    min-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .checkout-flow-arrow {
    align-self: center;
    min-height: 8rem;
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-arrow {
    min-height: 0;
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-provider-card {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .checkout-flow:not(.checkout-flow--slider) {
    flex-direction: column;
    align-items: center;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-step {
    max-width: 20rem;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-step--provider {
    max-width: 21.5rem;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-slot {
    flex: 0 1 auto;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-success-wrap,
  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-success-card {
    min-height: 0;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-success-card {
    min-height: auto;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-success-body {
    min-height: 11rem;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-arrow {
    min-height: auto;
    padding: 0.35rem 0;
  }

  .checkout-flow:not(.checkout-flow--slider) .checkout-flow-arrow svg {
    transform: rotate(90deg);
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-step {
    flex: 0 0 calc((100% - 3 * 1.35rem - 6 * 0.4rem) / 2.35);
    min-width: 10.5rem;
  }

  .checkout-flow-slider-outer {
    padding: 6px 38px 10px;
  }

  .checkout-flow-slider-nav {
    width: 34px;
    height: 34px;
  }

  .checkout-flow-slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-arrow svg {
    transform: none;
  }
}

/* Slider: one full step per screen on mobile — swipe or use prev/next */
@media (max-width: 768px) {
  .checkout-flow-section .checkout-flow--slider {
    gap: 0;
    overscroll-behavior-x: contain;
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-step {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .checkout-flow-section .checkout-flow--slider .checkout-flow-arrow {
    display: none;
  }
}

.asset-payment-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Payment showcase: row layout — widget column + visual column (see .payment-showcase-row) */
.pay-split-visual {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.pay-showcase-widget-wrap {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  z-index: 4;
}

@media (min-width: 901px) {
  .pay-showcase-widget-wrap {
    justify-content: flex-end;
    padding-right: 0;
  }

  .payment-showcase-section .pay-showcase-widget-wrap {
    justify-content: flex-start;
  }
}

.pay-showcase-visual {
  position: relative;
  min-height: 440px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  isolation: isolate;
}

@media (min-width: 901px) {
  .payment-showcase-section .pay-showcase-visual {
    max-width: 380px;
    margin: 0 auto;
    min-height: 460px;
    z-index: 1;
  }
}

.pay-vis-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pay-vis-fold {
  position: absolute;
  left: -6%;
  top: 32%;
  width: 48px;
  height: 56px;
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 50%, #0d9488 100%);
  clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 75%);
  opacity: 0.85;
  filter: drop-shadow(0 6px 14px rgba(20, 184, 166, 0.35));
  transform: rotate(-8deg);
}

.pay-vis-arc {
  position: absolute;
  right: -4%;
  bottom: 6%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fde047 0%, #facc15 45%, #eab308 100%);
  opacity: 0.55;
  clip-path: inset(50% 0 0 50%);
  transform: rotate(-15deg);
  filter: blur(0.5px);
}

.pay-vis-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1;
  font-weight: 800;
  line-height: 1;
}

.pay-vis-bubble--wide {
  border-radius: 16px;
  width: auto;
  height: 48px;
  min-width: 0;
  padding: 0 13px;
  box-sizing: border-box;
}

.pay-vis-brand-img {
  display: block;
  height: 35px;
  width: auto;
  max-height: 35px;
  max-width: 140px;
  object-fit: contain;
}

.pay-vis-bubble--wide .pay-vis-brand-img {
  height: 35px;
  max-height: 35px;
  max-width: 140px;
}

.pay-vis-bubble--apple.pay-vis-bubble--wide .pay-vis-brand-img {
  height: 35px;
  max-height: 35px;
  max-width: 140px;
}

/* Arc layout: spread around ramp card — no crowding top-right */
.pay-vis-bubble--sepa.pay-vis-bubble--wide {
  top: 6%;
  left: 2%;
  right: auto;
}

.pay-vis-bubble--visa.pay-vis-bubble--wide {
  top: 5%;
  right: 2%;
  left: auto;
}

.pay-vis-bubble--apple.pay-vis-bubble--wide {
  top: 36%;
  left: -6%;
  right: auto;
}

.pay-vis-bubble--mc {
  width: 58px;
  height: 58px;
  top: 44%;
  right: 0;
  left: auto;
}

.pay-vis-bubble--mc .pay-vis-brand-img {
  height: 35px;
  max-height: 35px;
  max-width: 56px;
}

.pay-vis-bubble--pix.pay-vis-bubble--wide {
  top: 70%;
  right: 4%;
  left: auto;
  height: auto;
  min-height: 50px;
  padding: 7px 12px;
}

.pay-vis-bubble--pix .pay-vis-brand-img {
  height: 35px;
  max-height: 35px;
  max-width: 120px;
}

.pay-vis-bubble--sepa.pay-vis-bubble--wide .pay-vis-brand-img {
  height: 35px;
  max-height: 35px;
  max-width: 130px;
}

.pay-vis-ramp {
  position: absolute;
  left: -18%;
  bottom: 8%;
  width: 92%;
  max-width: 220px;
  padding: 16px 14px 14px;
  background: #111111;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

@media (max-width: 900px) {
  .pay-vis-ramp {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    width: 88%;
    max-width: 240px;
  }
}

.pay-vis-ramp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f5f5;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pay-vis-ramp-row:last-child {
  margin-bottom: 0;
}

.pay-vis-ramp-check {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pay-vis-ramp-check svg {
  width: 16px;
  height: 13px;
  display: block;
}

.pay-vis-ramp-ic {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  color: #f5f5f5;
  opacity: 0.95;
}

.pay-vis-ramp-ic svg {
  width: 35px;
  height: 35px;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .pay-vis-bubble {
    animation: pay-vis-float 5s ease-in-out infinite;
  }

  .pay-vis-bubble--sepa {
    animation-delay: 0s;
  }
  .pay-vis-bubble--visa {
    animation-delay: -0.8s;
  }
  .pay-vis-bubble--apple {
    animation-delay: -1.6s;
  }
  .pay-vis-bubble--mc {
    animation-delay: -2.4s;
  }
  .pay-vis-bubble--pix {
    animation-delay: -3.2s;
  }
}

@keyframes pay-vis-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pay-vis-bubble {
    animation: none;
  }
}

.pay-method-widget {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pay-method-widget.is-dismissed {
  opacity: 0.55;
  transform: scale(0.98);
  pointer-events: none;
}

.pay-method-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.pay-method-widget-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.pay-method-widget-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.15s, background 0.15s;
}

.pay-method-widget-close:hover {
  color: #374151;
  background: #f3f4f6;
}

.pay-method-list {
  list-style: none;
  margin: 0;
  padding: 4px 0 8px;
}

.pay-method-list > li {
  margin: 0;
  padding: 0;
}

.pay-method-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #111827;
  transition: background 0.15s;
}

.pay-method-row:hover {
  background: #f9fafb;
}

.pay-method-row:focus {
  outline: none;
}

.pay-method-row:focus-visible {
  outline: 2px solid #111827;
  outline-offset: -2px;
}

.pay-method-row--selected {
  background: #f0fdf4;
}

.pay-method-row--selected:hover {
  background: #ecfdf5;
}

.pay-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pay-method-icon--card {
  background: #f3f4f6;
}

.pay-method-icon--apple {
  background: #000;
  color: #fff;
}

.pay-method-icon--google {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.pay-method-icon--google svg {
  display: block;
  width: 22px;
  height: 22px;
}

.pay-method-icon--paypal {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #0070ba;
}

.pay-method-icon--paypal .pay-method-icon-svg--paypal,
.pay-method-icon--paypal svg {
  display: block;
  width: 22px;
  height: 22px;
}

.pay-method-label {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  min-width: 0;
}

.pay-method-trailing {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-method-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.15s, transform 0.15s;
}

.pay-method-row--selected .pay-method-check {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .pay-method-widget,
  .pay-method-check {
    transition: none;
  }
}

.phone-mock {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 400px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-radius: 28px;
  border: 4px solid #334155;
  box-shadow: var(--shadow), 0 24px 48px rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.phone-screen {
  height: 100%;
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-screen .pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}

.phone-screen .big {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(2) {
  left: 0;
  top: 12%;
  animation-delay: -1s;
}

.float-card:nth-child(3) {
  right: 0;
  top: 35%;
  animation-delay: -2.5s;
}

.float-card:nth-child(4) {
  left: 5%;
  bottom: 15%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse-mobile .split-visual {
    order: -1;
  }
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 24px;
}

@media (max-width: 500px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.check-icon.check-icon-img-wrap {
  background: transparent;
  padding: 0;
}

.check-icon.check-icon-img-wrap img {
  width: 22px;
  height: 22px;
  display: block;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.visual-panel {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.visual-panel .row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pay-badge {
  padding: 10px 18px;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* Map section */
.map-section {
  background: #ffffff;
  padding: 64px 0 56px;
}

.logo-map {
  width: 100%;
}

.logo-map-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 24px;
  box-sizing: border-box;
}

/* World map: inline SVG per-country fills; hover tooltip only on active countries */
.world-map-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: visible;
  aspect-ratio: 950 / 620;
}

.world-map-host {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-map-host .world-map-svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

.world-map-host .map-land--inactive {
  fill: #e4e6eb;
  stroke: #ffffff;
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
}

.world-map-host .map-land--active {
  fill: #3a3f47;
  stroke: #ffffff;
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
  transition: fill 0.12s ease;
}

.world-map-host .map-land--active:hover {
  fill: #2d3238;
}

.world-map-host .map-land--muted {
  fill: #eceef2;
  stroke: #ffffff;
  stroke-width: 0.35;
  vector-effect: non-scaling-stroke;
}

.world-map-host .map-ornament {
  fill: #ffffff;
  stroke: none;
  pointer-events: none;
}

.map-region-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
  width: max-content;
  max-width: min(300px, calc(100vw - 48px));
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.map-region-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

.map-region-tooltip-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.map-region-tooltip-methods {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: #5c5f66;
}

@media (max-width: 1029px) {
  .world-map-stage {
    max-height: 320px;
  }
}

/* Highlight box */
.highlight-box {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .highlight-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.highlight-box h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}

.highlight-box p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Features grid */
.section-head-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head-center h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(10, 10, 10, 0.12);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.feature-card .icon.icon-img {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.feature-card .icon.icon-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature-card .icon.feature-icon-light {
  background: #ececee;
  color: #2a2a2a;
}

.feature-card .icon.feature-icon-light svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Code section */
.code-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .code-split {
    grid-template-columns: 1fr;
  }
}

.code-split .code-editor,
.code-split > .reveal {
  min-width: 0;
}

.code-editor {
  background: #1e1e1e;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.code-editor .bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #2d2d2d;
}

.code-editor .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-editor .dot:nth-child(1) {
  background: #888888;
}

.code-editor .dot:nth-child(2) {
  background: #b0b0b0;
}

.code-editor .dot:nth-child(3) {
  background: #d0d0d0;
}

.code-editor pre {
  margin: 0;
  padding: 20px;
  font-family: "SF Mono", "Consolas", monospace;
  font-size: 12px;
  line-height: 1.58;
  overflow-x: auto;
  color: #d4d4d4;
}

.code-editor.code-editor--preview pre {
  overflow-x: hidden;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 11px;
  line-height: 1.55;
}

.code-docs-btn {
  margin-top: 14px;
}

.code-editor .code-php-open {
  color: #569cd6;
}

.code-editor .code-comment {
  color: #6a9955;
}

.code-editor .code-php-var {
  color: #9cdcfe;
}

.code-editor .code-php-kw {
  color: #c586c0;
}

.code-editor .code-php-str {
  color: #ce9178;
}

.code-editor .code-php-fn {
  color: #dcdcaa;
}

.code-tag {
  color: #b0b0b0;
}

.code-attr {
  color: #d4d4d4;
}

.code-val {
  color: #a3a3a3;
}

.code-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.code-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.code-list .li-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-light);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.code-list .li-icon--code {
  background: transparent;
  border-radius: 0;
  color: #111827;
}

.code-list .li-icon--code .code-list-svg {
  display: block;
}

.code-list h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.code-list p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

/* CTA banner */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  max-width: calc(var(--container) + 48px);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 42%, #404040 100%);
  background-size: 200% 200%;
  animation: gradient-shift 14s ease infinite;
  color: #fff;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.cta-banner p {
  margin: 0 0 28px;
  opacity: 0.95;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Footer — dark band, top tagline + 4-column menus */
.footer {
  margin-top: 1px;
  padding: 72px 0 0;
  background: #0a0a0a;
  color: #fafafa;
  border-top: 1px solid #1a1a1a;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 48px;
  padding-bottom: 40px;
}

.footer-top-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.footer .footer-top-logo .logo-img {
  filter: brightness(0) invert(1);
}

.footer-top-intro {
  flex: 1 1 260px;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #9ca3af;
}

.footer-rule {
  display: block;
  height: 1px;
  margin: 0 0 48px;
  border: 0;
  background: #262626;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-menus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-menus {
    grid-template-columns: 1fr;
  }
}

.footer .footer-col h4,
.footer .footer-lang-wrap h4,
.footer .footer-meta-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  color: #fafafa;
}

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

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

.footer .footer-col a {
  font-size: 0.875rem;
  color: #a3a3a3;
  transition: color 0.2s;
}

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

.footer-email {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fafafa;
}

.footer-email:hover {
  color: #fff;
}

.footer > .container > .footer-lang-wrap {
  padding: 0 0 32px;
  border-bottom: 1px solid #262626;
}

.footer-col--meta .footer-meta-heading {
  margin: 0 0 12px;
}

.footer-col--meta .footer-meta-heading:first-child {
  margin-top: 0;
}

.footer-col--meta .footer-meta-contact {
  margin: 0 0 20px;
}

.footer .footer-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.footer .footer-lang-list button {
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #171717;
  color: #e5e5e5;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer .footer-lang-list button:hover {
  border-color: #525252;
  color: #fff;
}

.footer .footer-lang-list button.is-active {
  background: #fafafa;
  border-color: #fafafa;
  color: #0a0a0a;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 24px;
  padding: 28px 0 24px;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.footer-copy {
  flex: 1 1 280px;
  max-width: 42rem;
  margin: 0;
  text-align: left;
  line-height: 1.55;
  color: #9ca3af;
}

.compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
}

.compliance-partner-label {
  font-size: 0.75rem;
  color: #737373;
}

.compliance-mark-img {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .footer-bottom .compliance {
    margin-left: 0;
  }
}

.footer-disclaimer {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 20px 0 40px;
  border-top: 1px solid #262626;
}

.footer-disclaimer p {
  margin: 0;
  max-width: none;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #737373;
  text-align: left;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legal / terms page */
.legal-page {
  padding: 40px 0 80px;
}

.legal-doc {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-doc h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.legal-doc .legal-updated {
  margin: 0 0 32px;
  font-size: 14px;
  color: var(--text-secondary);
}

.legal-doc h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}

.legal-doc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.legal-doc p {
  margin: 0 0 14px;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  opacity: 0.85;
}

.legal-doc .legal-contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}

.legal-doc .legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.legal-table-wrap {
  margin: 16px 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-doc .legal-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.legal-doc .legal-table th,
.legal-doc .legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-doc .legal-table th {
  background: var(--gray-light);
  font-weight: 700;
}

/* PSP landing — Corefy-inspired long-form layout (payblis.com/psp.html) */
.psp-landing {
  overflow-x: hidden;
}

.psp-hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .psp-hero {
    padding: 72px 0 80px;
  }
}

.psp-kicker {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.psp-hero-title {
  margin: 0 0 20px;
  max-width: 22rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

@media (min-width: 900px) {
  .psp-hero-title {
    max-width: min(48rem, 100%);
  }
}

.psp-hero-lead {
  margin: 0 0 28px;
  max-width: 52rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.psp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 28px;
}

.psp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.psp-hero-pills li {
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.psp-section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .psp-section {
    padding: 72px 0;
  }
}

.psp-section--muted {
  background: #fafafa;
}

.psp-section--dark {
  background: var(--black);
  color: #fafafa;
}

.psp-section-kicker {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.psp-section-kicker--on-dark {
  color: #a3a3a3;
}

.psp-section-title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.psp-section-title--on-dark {
  color: #fafafa;
}

.psp-section-lead {
  margin: 0 0 36px;
  max-width: 46rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.psp-section-lead--on-dark {
  color: #a3a3a3;
}

.psp-card-grid {
  display: grid;
  gap: 20px;
}

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

@media (min-width: 640px) {
  .psp-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (min-width: 640px) {
  .psp-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .psp-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.psp-card {
  padding: 22px 22px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.psp-section--muted .psp-card {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.psp-card--bordered {
  box-shadow: none;
  border: 1px solid var(--border);
  background: var(--white);
}

.psp-card--lift {
  box-shadow: var(--shadow-sm);
}

.psp-card-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.psp-card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.psp-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 900px) {
  .psp-steps {
    gap: 32px;
  }
}

.psp-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px 18px;
  align-items: start;
}

.psp-step-head {
  display: contents;
}

.psp-step-num {
  grid-row: 1 / 3;
  grid-column: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
}

.psp-step-head > div {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.psp-step-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.psp-step-meta {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.psp-step-body {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.psp-feature-cols {
  display: grid;
  gap: 28px 32px;
}

@media (min-width: 768px) {
  .psp-feature-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .psp-feature-cols {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.psp-feature-col {
  padding-top: 8px;
  border-top: 1px solid #333;
}

.psp-feature-col-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fafafa;
}

.psp-feature-col-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #a3a3a3;
}

.psp-compare {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .psp-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }
}

.psp-compare-card {
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.psp-compare-card--pro {
  border-color: var(--text);
  box-shadow: var(--shadow-sm);
}

.psp-compare-card-title {
  margin: 0 0 18px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.psp-compare-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.psp-compare-list li {
  margin-bottom: 10px;
}

.psp-compare-list li:last-child {
  margin-bottom: 0;
}

.psp-cta-band {
  padding: 56px 0;
  background: linear-gradient(160deg, #141414 0%, #0a0a0a 100%);
  color: #fafafa;
}

@media (min-width: 768px) {
  .psp-cta-band {
    padding: 72px 0;
  }
}

.psp-cta-band-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.psp-cta-band-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fafafa;
}

.psp-cta-band-text {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #a3a3a3;
}

.psp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
}

.psp-btn-solid-light {
  background: #fafafa;
  color: var(--black);
  border: 1.5px solid #fafafa;
}

.psp-btn-solid-light:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
}

a.psp-btn-solid-light {
  color: var(--black);
}

/* Merchants checkout landing — Corefy /checkout-inspired layout (merchants.html) */
.mch-landing {
  overflow-x: hidden;
}

.mch-hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .mch-hero {
    padding: 64px 0 72px;
  }
}

.mch-hero-grid {
  display: grid;
  gap: 40px 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .mch-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }
}

.mch-hero-title {
  margin: 0 0 18px;
  max-width: min(40rem, 100%);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.mch-hero-lead {
  margin: 0 0 26px;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mch-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.mch-hero-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .mch-hero-visual {
    justify-content: flex-end;
  }
}

.mch-phone {
  width: 100%;
  max-width: 300px;
  padding: 12px 12px 16px;
  background: linear-gradient(165deg, #f4f4f5 0%, #e4e4e7 100%);
  border-radius: 36px;
  box-shadow: var(--shadow), 0 24px 48px rgba(0, 0, 0, 0.08);
}

.mch-phone-inner {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mch-phone-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.mch-phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.mch-phone-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.mch-phone-body {
  padding: 20px 18px 22px;
}

.mch-phone-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f4f4f5;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mch-phone-line--ok {
  color: var(--text);
}

.mch-phone-line--ok .mch-phone-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #22c55e;
  vertical-align: middle;
}

.mch-phone-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: mch-pulse 1.2s ease-in-out infinite;
}

@keyframes mch-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mch-phone-pulse {
    animation: none;
    opacity: 0.8;
  }
}

.mch-phone-card {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0a0a0a 0%, #262626 100%);
  color: #fafafa;
}

.mch-phone-card-amount {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mch-phone-card-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a3a3a3;
}

.mch-how-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 720px) {
  .mch-how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.mch-how-card {
  position: relative;
  padding: 24px 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.psp-section--muted .mch-how-card {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.mch-how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
  background: var(--muted);
  border-radius: 50%;
}

.mch-how-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.mch-how-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.mch-tools-grid {
  margin-top: 4px;
}

@media (min-width: 900px) {
  .mch-tools-grid.psp-card-grid--2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mch-method-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 8px;
}

.mch-chip {
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.mch-growth-lead {
  max-width: 46rem;
}

.mch-integ-cols.psp-feature-cols {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .mch-integ-cols.psp-feature-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* About page — Corefy /about-us-inspired layout (about.html) */
.abt-landing {
  overflow-x: hidden;
}

.abt-hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .abt-hero {
    padding: 64px 0 80px;
  }
}

.abt-hero-grid {
  display: grid;
  gap: 40px 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .abt-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 380px);
  }
}

.abt-hero-title {
  margin: 0 0 20px;
  max-width: min(44rem, 100%);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
}

.abt-hero-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.abt-hero-visual {
  display: flex;
  justify-content: center;
  min-height: 220px;
}

@media (min-width: 960px) {
  .abt-hero-visual {
    justify-content: flex-end;
  }
}

.abt-orb {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #e4e4e7, #fafafa, #d4d4d8, #fafafa, #e4e4e7);
  opacity: 0.95;
  animation: abt-orbit 18s linear infinite;
}

@keyframes abt-orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .abt-orb-ring {
    animation: none;
  }
}

.abt-orb-core {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fafafa 0%, #e5e5e5 45%, #0a0a0a 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.abt-prose {
  max-width: 46rem;
}

.abt-prose p {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.abt-prose p:last-child {
  margin-bottom: 0;
}

.abt-history-lead {
  max-width: 40rem;
}

.abt-timeline {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--border);
  margin-left: 11px;
  padding-left: 28px;
}

.abt-timeline-item {
  position: relative;
  padding: 0 0 32px;
}

.abt-timeline-item:last-child {
  padding-bottom: 0;
}

.abt-timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--text);
}

.abt-timeline-date {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.abt-timeline-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.abt-timeline-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.abt-media-card {
  margin-top: 8px;
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 42rem;
}

.abt-media-text {
  margin: 0 0 20px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.abt-media-btn {
  display: inline-flex;
}

.abt-team-band {
  padding: 56px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.abt-team-inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.abt-team-title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.abt-team-lead {
  margin: 0 0 24px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.abt-values-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 720px) {
  .abt-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.abt-value-card {
  padding: 22px 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.abt-value-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.abt-value-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.abt-careers-card {
  max-width: 44rem;
  margin: 0 auto;
  padding: 32px 28px 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.abt-careers-title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.abt-careers-text {
  margin: 0 0 22px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.abt-future-grid {
  display: grid;
  gap: 24px 32px;
  margin-top: 12px;
}

@media (min-width: 720px) {
  .abt-future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.abt-future-item-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fafafa;
}

.abt-future-item-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #a3a3a3;
}

.abt-future-cta-wrap {
  margin: 32px 0 0;
  text-align: center;
}

/* Contact landing — light theme (aligned with about / PSP pages) */
/* No padding-bottom: dark .psp-cta-band is last; extra space would show as white above footer */
.ctc-landing {
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

.ctc-hero {
  margin: 0 0 40px;
  padding: 40px 0 48px;
  border-bottom: 1px solid var(--border);
}

.ctc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 40px;
  align-items: start;
}

.ctc-hero-main {
  min-width: 0;
}

.ctc-page-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.ctc-subhead {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #262626;
}

.ctc-intro {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.ctc-checklist {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctc-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.ctc-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.12em;
  font-size: 0.95em;
  line-height: 1;
  font-weight: 700;
  color: #16a34a;
}

.ctc-partner {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ctc-partner a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ctc-partner a:hover {
  opacity: 0.85;
}

.ctc-aside {
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm), 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ctc-aside-title {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ctc-aside-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
}

.ctc-aside-actions .btn {
  width: 100%;
  justify-content: center;
}

.ctc-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 16px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.ctc-channel-label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ctc-channel-note {
  margin: 0 0 6px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.ctc-channel-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  word-break: break-word;
}

.ctc-channel-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ctc-legal-mini {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.ctc-legal-mini a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ctc-legal-mini a:hover {
  opacity: 0.85;
}

.ctc-faq-list {
  margin: 0 0 48px;
  max-width: 720px;
}

.ctc-faq-item {
  border-bottom: 1px solid var(--border);
}

.ctc-faq-q {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

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

.ctc-faq-q::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: 0.35em;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.ctc-faq-item[open] .ctc-faq-q::after {
  transform: rotate(-135deg);
}

.ctc-faq-a {
  margin: 0;
  padding: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .ctc-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ctc-aside {
    order: -1;
  }
}

/* Fixed bottom cookie consent — body padding ≈ banner height to avoid overlap */
body.cookie-banner-open {
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 12px 0 max(12px, env(safe-area-inset-bottom, 0px));
  background: #000;
  color: #fff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.cookie-banner.cookie-banner--visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
}

.cookie-banner-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 280px;
  min-width: 0;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
}

.cookie-banner-text {
  min-width: 0;
}

.cookie-banner-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.cookie-banner-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.cookie-banner-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.cookie-banner-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner-btn--accept {
  background: #fff;
  color: #0a0a0a;
}

.cookie-banner-btn--accept:hover {
  background: #f0f0f0;
  color: #0a0a0a;
}

@media (max-width: 640px) {
  body.cookie-banner-open {
    padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner {
    padding: 10px 0 max(10px, env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px 12px;
  }

  .cookie-banner-copy {
    gap: 10px;
    flex: 1 1 auto;
  }

  .cookie-banner-icon {
    width: 36px;
    height: 36px;
  }

  .cookie-banner-title {
    margin: 0 0 4px;
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .cookie-banner-desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .cookie-banner-btn {
    min-width: 0;
    width: 100%;
    padding: 9px 12px;
    font-size: 0.8125rem;
    border-radius: 8px;
  }
}

/* --------------------------------------------------------------------------
   Mobile & small screens — typography, spacing, grids, imagery
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-size: 15px;
    line-height: 1.58;
  }

  :root {
    --header-h: 68px;
  }

  .btn {
    padding: 11px 22px;
    font-size: 14px;
    border-radius: 9px;
  }

  .nav-auth-desktop .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.2vw, 2.65rem);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .ramp-hero-scene {
    min-height: 320px;
    max-width: min(400px, 100%);
    padding-bottom: 16px;
  }

  .payment-showcase-section .payment-showcase-grid {
    gap: 40px 24px;
  }

  .payment-showcase-section .payment-showcase-visual-col {
    flex-direction: column;
    gap: 20px;
  }

  .pay-showcase-visual {
    min-height: 360px;
    max-width: min(320px, 100%);
  }

  .section-head-center {
    margin-bottom: 36px;
    padding: 0 2px;
  }

  .section-lead {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .feature-card {
    padding: 20px 18px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .highlight-box {
    padding: 28px 20px;
    gap: 28px;
  }

  .code-split {
    gap: 28px;
  }

  .code-editor pre {
    padding: 16px 14px;
    font-size: 12px;
    line-height: 1.5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .map-section {
    padding: 48px 0 40px;
  }

  .logo-map-content {
    padding: 0 clamp(14px, 4vw, 24px) 18px;
  }

  .cta-banner {
    margin-left: clamp(10px, 3vw, 24px);
    margin-right: clamp(10px, 3vw, 24px);
    padding: 52px clamp(16px, 5vw, 24px);
  }

  .cta-banner p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .legal-page {
    padding: 28px 0 56px;
  }

  .legal-doc h2 {
    margin-top: 26px;
  }

  .footer {
    padding-top: 56px;
  }

  .footer-top {
    gap: 20px 28px;
    padding-bottom: 32px;
  }

  .footer-rule {
    margin-bottom: 36px;
  }

  .footer-menus {
    gap: 28px 24px;
    margin-bottom: 36px;
  }

  .footer-bottom {
    padding: 22px 0 20px;
  }

  .footer-disclaimer {
    padding: 16px 0 32px;
  }

  .psp-hero,
  .mch-hero,
  .abt-hero {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .psp-hero-title,
  .mch-hero-title,
  .abt-hero-title {
    font-size: clamp(1.65rem, 6vw, 2.5rem);
  }

  .psp-hero-lead,
  .mch-hero-lead {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .psp-section {
    padding: 44px 0;
  }

  .psp-section-lead {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .psp-card {
    padding: 18px 18px 20px;
  }

  .psp-cta-band {
    padding: 44px 0;
  }

  .psp-cta-band-text {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .mch-hero-grid {
    gap: 28px 24px;
  }

  .mch-how-card {
    padding: 20px 18px 22px;
  }

  .abt-hero-grid {
    gap: 28px 24px;
  }

  .abt-prose p {
    font-size: 1rem;
  }

  .ctc-hero {
    padding: 32px 0 40px;
  }

  .ctc-page-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .ctc-subhead {
    font-size: 1.05rem;
  }

  .ctc-aside {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
    line-height: 1.55;
  }

  :root {
    --header-h: 64px;
  }

  section {
    padding: 40px 0;
  }

  .payment-showcase-section {
    padding: 32px 0 44px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7.5vw, 2.1rem);
  }

  .hero p {
    font-size: 0.9375rem;
  }

  .hero-perk-label {
    font-size: 0.8125rem;
  }

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

  .ramp-hero-scene {
    min-height: 280px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    padding: 18px clamp(14px, 4vw, 24px);
  }

  .mobile-nav > a {
    padding: 12px 0;
    font-size: 15px;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    margin-bottom: 12px;
  }

  .payment-showcase-section .payment-showcase-grid {
    gap: 28px;
  }

  .pay-showcase-visual {
    min-height: 300px;
  }

  .asset-payment-img {
    max-width: 100%;
  }

  .checkout-flow-slider-outer {
    padding: 6px 32px 10px;
  }

  .highlight-box {
    padding: 22px 16px;
    gap: 22px;
    border-radius: 18px;
  }

  .highlight-box h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .feature-card {
    padding: 18px 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .code-editor pre {
    padding: 14px 12px;
    font-size: 11px;
  }

  .map-section {
    padding: 36px 0 32px;
  }

  .world-map-stage {
    max-height: 240px;
    border-radius: 10px;
  }

  .cta-banner {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    border-radius: 16px;
    padding: 40px clamp(14px, 4vw, 20px);
  }

  .cta-banner h2 {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }

  .legal-page {
    padding: 20px 0 44px;
  }

  .legal-doc h1 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 14px;
  }

  .legal-doc h2 {
    font-size: 1rem;
    margin-top: 22px;
  }

  .footer {
    padding-top: 44px;
  }

  .footer-top-intro {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-menus {
    gap: 24px;
    margin-bottom: 28px;
  }

  .footer .footer-col h4,
  .footer .footer-meta-heading {
    margin-bottom: 14px;
  }

  .compliance-mark-img {
    max-height: 36px;
    max-width: min(180px, 70vw);
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  .psp-hero,
  .mch-hero,
  .abt-hero {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .psp-kicker,
  .psp-section-kicker {
    font-size: 0.75rem;
  }

  .psp-hero-pills li {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .psp-section {
    padding: 36px 0;
  }

  .psp-section-title {
    font-size: clamp(1.25rem, 4.5vw, 1.65rem);
  }

  .psp-card {
    padding: 16px 14px 18px;
  }

  .psp-cta-band {
    padding: 36px 0;
  }

  .mch-phone {
    max-width: min(280px, 88vw);
    padding: 10px 10px 14px;
    border-radius: 32px;
  }

  .mch-how-card {
    padding: 18px 16px;
  }

  .mch-chip {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .abt-hero-visual {
    min-height: 180px;
  }

  .abt-orb {
    width: min(100%, 240px);
  }

  .abt-timeline {
    padding-left: 22px;
    margin-left: 8px;
  }

  .abt-timeline-item {
    padding-bottom: 26px;
  }

  .ctc-hero {
    padding: 24px 0 32px;
  }

  .ctc-intro {
    font-size: 0.9375rem;
  }

  .ctc-checklist li {
    font-size: 0.875rem;
    padding-left: 26px;
  }

  .ctc-faq-q {
    padding: 14px 0;
    font-size: 0.9375rem;
  }

  .ctc-faq-a {
    font-size: 0.875rem;
    padding-bottom: 14px;
  }
}

@media (max-width: 380px) {
  body.cookie-banner-open {
    padding-bottom: calc(148px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner-icon {
    width: 32px;
    height: 32px;
  }

  .cookie-banner-title {
    font-size: 0.78rem;
  }

  .cookie-banner-desc {
    font-size: 0.7rem;
  }

  .cookie-banner-btn {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .hero-perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-perk {
    width: 100%;
  }
}
