:root {
  --ink: #111315;
  --muted: #626a73;
  --paper: #f6f8fc;
  --surface: #ffffff;
  --line: #e6eaf0;
  --teal: #0057ff;
  --teal-dark: #0046d8;
  --amber: #f5a623;
  --coral: #e97058;
  --sky: #d9eef2;
  --shadow: 0 18px 60px rgba(23, 32, 29, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 228, 223, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.brand__name {
  font-size: 19px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  color: #34433f;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--teal);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 143, 122, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: var(--teal-dark);
  box-shadow: 0 14px 34px rgba(11, 143, 122, 0.28);
}

.btn--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.26);
}

.btn--ghost-dark {
  background: #fff;
  color: var(--teal);
  border: 1px solid #dbe6ff;
  box-shadow: 0 14px 34px rgba(0, 87, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 82vh, 780px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  background-image: url("assets/payments-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 29, 26, 0.88) 0%, rgba(10, 29, 26, 0.7) 39%, rgba(10, 29, 26, 0.18) 72%),
    linear-gradient(0deg, rgba(10, 29, 26, 0.42), rgba(10, 29, 26, 0.04) 38%);
}

.hero__inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb076;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 178px));
  gap: 12px;
  margin: 0;
}

.hero-metrics div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  margin-bottom: 8px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.35;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band__item {
  min-height: 120px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #fff;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
}

.subhero {
  padding: clamp(86px, 10vw, 140px) clamp(18px, 4vw, 56px) clamp(70px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.96), rgba(23, 32, 29, 0.78)),
    url("assets/payments-hero.png") center right / cover;
  color: #fff;
}

.subhero--compact {
  padding-bottom: clamp(56px, 7vw, 86px);
}

.subhero__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.subhero h1 {
  max-width: 900px;
  margin-bottom: 22px;
}

.subhero p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.breadcrumbs a {
  color: #ffb076;
}

.breadcrumbs span::before,
.breadcrumbs a + a::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.35);
}

.page-section .signal-card {
  min-height: 260px;
}

.contact-page {
  padding-top: clamp(64px, 7vw, 92px);
}

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

.contact-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.03);
}

.contact-card span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card a,
.contact-card strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section--tint {
  background: #edf7f4;
}

.section__head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section__head--wide {
  max-width: 980px;
}

.section__head p:not(.eyebrow),
.split p,
.lead-section__content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.intro-grid,
.service-grid,
.tariff-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

.signal-card,
.service-card,
.tariff-card,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(23, 32, 29, 0.03);
}

.signal-card {
  min-height: 236px;
  padding: 30px;
}

.signal-card__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--teal-dark);
  font-weight: 900;
}

.signal-card p,
.service-card p,
.service-card li,
.tariff-card p,
.proof-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 392px;
  padding: 26px;
}

.service-card__badge {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.17);
  color: #8a5500;
  font-size: 13px;
  font-weight: 850;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #34433f;
  font-weight: 700;
}

.timeline-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.timeline-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.timeline-panel__top strong {
  color: #fff;
}

.mini-timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.mini-timeline li {
  position: relative;
  min-height: 56px;
  padding-left: 54px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.mini-timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--amber);
  color: #251600;
  font-weight: 900;
}

label,
fieldset {
  display: grid;
  gap: 10px;
  color: #34433f;
  font-weight: 760;
}

fieldset {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 143, 122, 0.12);
}

.radio-row,
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 14px;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  background: #fff;
}

.radio-row input,
.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

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

.process article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.process span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.process p {
  color: var(--muted);
  line-height: 1.5;
}

.tariffs {
  background: #fff;
}

.tariff-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tariff-card {
  display: grid;
  gap: 18px;
  min-height: 292px;
  padding: 30px;
}

.tariff-card strong {
  align-self: end;
  font-size: 30px;
}

.tariff-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.tariff-card--accent {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
}

.tariff-card--accent p,
.tariff-card--accent a {
  color: rgba(255, 255, 255, 0.82);
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
  min-height: 252px;
  padding: 28px;
}

.proof-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(940px, 100%);
  max-width: 940px;
  margin: 0 auto;
}

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

.faq-item button {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: var(--teal-dark);
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq-item__body {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-item--extra {
  display: none;
}

.faq.is-expanded .faq-item--extra {
  display: block;
}

.faq .btn {
  display: flex;
  width: fit-content;
  min-width: 210px;
  margin: 32px auto 0;
  color: #fff;
  background: linear-gradient(135deg, #0057ff, #0046d8);
  border: 0;
  box-shadow: 0 18px 44px rgba(0, 87, 255, 0.28);
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.blog-tabs a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.blog-tabs a.is-active,
.blog-tabs a:hover {
  background: #fff;
  color: var(--ink);
}

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

.blog-card {
  display: grid;
  gap: 16px;
  min-height: 318px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.blog-card span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 850;
}

.blog-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  align-self: end;
  color: var(--teal-dark);
  font-weight: 850;
}

.article {
  background: #fff;
}

.article__header {
  padding: clamp(76px, 10vw, 130px) clamp(18px, 4vw, 56px) clamp(52px, 7vw, 90px);
  background: var(--ink);
  color: #fff;
}

.article__header > * {
  width: min(920px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.article__header h1 {
  margin-bottom: 22px;
}

.article__header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.article__body {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.article__body p,
.article__body li {
  color: #3d4945;
  font-size: 19px;
  line-height: 1.74;
}

.article__body h2 {
  margin-top: 44px;
  font-size: clamp(28px, 4vw, 40px);
}

.article__body ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.subhero--legal .subhero__inner {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.legal-document {
  background: #f5f8f7;
}

.legal-document__body {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 24px) 0;
}

.legal-section {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}

.legal-section:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.legal-section h2 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-section p {
  color: #46534f;
  font-size: 17px;
  line-height: 1.72;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--ink);
  color: #fff;
}

.legal-contact a {
  color: #9ce7dc;
  font-weight: 800;
}

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

.route-list a {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #34433f;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.route-list a:hover {
  border-color: rgba(0, 151, 136, 0.36);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  transform: translateY(-1px);
}

.route-list__title {
  color: #24332f;
  font-weight: 800;
  line-height: 1.28;
}

.route-list__group {
  color: #75817d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
}

.lead-section h2 {
  max-width: 760px;
}

.lead-section__content p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.lead-form .btn {
  width: 100%;
}

.check-row span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.check-row a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.form-message.is-error {
  color: #b33a2b;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 38px clamp(18px, 4vw, 56px);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.brand--footer .brand__mark {
  background: var(--teal-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  gap: 16px 24px;
  min-width: 0;
  color: #34433f;
  font-weight: 750;
}

.footer-links a {
  white-space: nowrap;
}

.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: min(540px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie.is-visible {
  display: flex;
}

.cookie p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 25;
  display: none;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(233, 112, 88, 0.32);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    right: 18px;
    left: 18px;
    z-index: 36;
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav {
    top: 84px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
  }

  .main-nav a {
    padding: 14px;
  }

  .header-actions {
    top: 380px;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .menu-open .main-nav,
  .menu-open .header-actions {
    display: flex;
  }

  .service-grid,
  .process,
  .blog-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process article:last-child {
    grid-column: 1 / -1;
  }
}

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

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 29, 26, 0.92), rgba(10, 29, 26, 0.64)),
      linear-gradient(0deg, rgba(10, 29, 26, 0.52), rgba(10, 29, 26, 0.12));
  }

  .hero-metrics,
  .trust-band,
  .intro-grid,
  .split,
  .tariff-grid,
  .proof-grid,
  .lead-section,
  .site-footer,
  .route-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand__name {
    font-size: 17px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__actions,
  .cookie {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics div {
    min-height: 92px;
  }

  .service-grid,
  .process,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process article:last-child {
    grid-column: auto;
  }

  .cookie {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Showcase redesign */
.eyebrow,
.route-list__group,
.contact-card span {
  letter-spacing: 0;
}

.site-header {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8ebf1;
  box-shadow: 0 1px 0 rgba(17, 19, 21, 0.03);
}

.brand__mark {
  background: #111315;
}

.main-nav {
  color: #181b20;
  font-weight: 760;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: #111315;
}

.btn {
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 14px 32px rgba(0, 87, 255, 0.2);
}

.btn:hover,
.btn:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 18px 42px rgba(0, 87, 255, 0.26);
}

.btn--small {
  min-height: 40px;
}

.btn--soft {
  background: #eef4ff;
  color: var(--teal);
  border: 1px solid #dbe6ff;
  box-shadow: none;
}

.btn--soft:hover,
.btn--soft:focus-visible,
.btn--ghost-dark:hover,
.btn--ghost-dark:focus-visible {
  background: #e4edff;
  color: var(--teal-dark);
}

.faq .btn:hover,
.faq .btn:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #004be4, #003bb8);
  box-shadow: 0 22px 54px rgba(0, 87, 255, 0.34);
}

.hero.hero--showcase {
  min-height: clamp(620px, 74vh, 760px);
  padding: clamp(76px, 7vw, 112px) clamp(18px, 4vw, 56px) clamp(66px, 7vw, 104px);
  background:
    radial-gradient(circle at 20% 16%, rgba(0, 87, 255, 0.08), transparent 24%),
    radial-gradient(circle at 83% 24%, rgba(233, 112, 88, 0.12), transparent 22%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 72%);
}

.hero--showcase .hero__inner {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 36px));
  color: var(--ink);
  text-align: center;
}

.hero--showcase .eyebrow {
  color: var(--teal);
  font-size: 16px;
  text-transform: none;
}

.hero--showcase h1 {
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--teal);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1;
}

.hero--showcase .hero__lead {
  max-width: 760px;
  margin: 0 auto;
  color: #2f363d;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.48;
}

.hero--showcase .hero__actions {
  justify-content: center;
  margin-top: 34px;
}

.showcase-tile {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.08);
  overflow: hidden;
}

.showcase-tile span,
.showcase-tile strong {
  position: relative;
  z-index: 1;
}

.showcase-tile--photo {
  left: clamp(14px, 6vw, 118px);
  top: 25%;
  width: clamp(124px, 12vw, 172px);
  aspect-ratio: 1;
  background: url("assets/payments-hero.png") center / cover;
}

.showcase-tile--invoice {
  left: clamp(18px, 5vw, 96px);
  top: auto;
  bottom: 17%;
  width: clamp(152px, 13vw, 220px);
  aspect-ratio: 1.46;
  align-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(124, 228, 203, 0.24)),
    #fff;
  color: #111315;
  font-weight: 850;
}

.showcase-tile--invoice span {
  color: var(--muted);
}

.showcase-tile--invoice strong {
  color: var(--teal);
  font-size: clamp(24px, 3vw, 42px);
}

.showcase-tile--route {
  right: clamp(18px, 5vw, 112px);
  top: 28%;
  width: clamp(160px, 15vw, 238px);
  aspect-ratio: 1.55;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 26px;
  background: #111315;
  color: #fff;
  font-weight: 900;
}

.showcase-tile--route i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), #7ce4cb, var(--teal));
}

.showcase-tile--status {
  right: clamp(120px, 15vw, 310px);
  bottom: 18%;
  width: clamp(120px, 11vw, 168px);
  aspect-ratio: 1;
  gap: 4px;
  background: linear-gradient(145deg, #ffe5d9, #f7faff);
  color: #111315;
}

.showcase-tile--status span {
  color: var(--coral);
  font-weight: 900;
}

.showcase-tile--status strong {
  font-size: 23px;
}

.showcase-tile--docs {
  left: clamp(22px, 3vw, 78px);
  bottom: 15%;
  width: clamp(132px, 12vw, 190px);
  aspect-ratio: 1.22;
  align-content: center;
  gap: 8px;
  background: #f1f5f9;
}

.showcase-tile--docs span {
  min-width: 72px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  color: #20252b;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.showcase-tile--currency {
  right: clamp(12px, 3vw, 76px);
  bottom: 7%;
  width: clamp(132px, 12vw, 184px);
  aspect-ratio: 0.88;
  align-content: center;
  gap: 10px;
  background:
    linear-gradient(145deg, rgba(0, 87, 255, 0.88), rgba(0, 87, 255, 0.5)),
    #0057ff;
  color: #fff;
}

.showcase-tile--currency strong {
  font-size: 36px;
}

.showcase-tile--currency span {
  opacity: 0.78;
  font-weight: 850;
}

.discovery {
  padding: 0 clamp(18px, 4vw, 56px) 28px;
  background: #fff;
}

.discovery-bar {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 12px;
  width: min(1440px, 100%);
  margin: -36px auto 22px;
  padding: 10px;
  border: 1px solid #e6eaf0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(17, 19, 21, 0.08);
  backdrop-filter: blur(18px);
}

.filter-button,
.discovery-search,
.discovery-tabs a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 850;
}

.filter-button {
  gap: 10px;
  padding: 0 22px;
  border: 1px solid #e6eaf0;
  background: #fff;
}

.filter-button span {
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.discovery-search {
  padding: 0 22px;
  color: #6c7480;
  background: #f6f8fc;
}

.discovery-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid #e6eaf0;
  border-radius: 999px;
  background: #fff;
}

.discovery-tabs a {
  padding: 0 18px;
  color: #5f6872;
}

.discovery-tabs a:first-child {
  color: #111315;
  background: #f6f8fc;
  box-shadow: 0 1px 0 rgba(17, 19, 21, 0.06);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 10px;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.category-strip a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.68), rgba(17, 19, 21, 0.3)),
    url("assets/payments-hero.png") center / cover;
  color: #fff;
  font-weight: 900;
}

.category-strip a:nth-child(2n) {
  background:
    linear-gradient(90deg, rgba(0, 87, 255, 0.82), rgba(0, 87, 255, 0.42)),
    url("assets/payments-hero.png") center / cover;
}

.trust-band--light {
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 22px clamp(18px, 4vw, 56px);
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
  background: #fff;
}

.trust-band--light .trust-band__item {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.advantage-board {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 87, 255, 0.08), transparent 26%),
    radial-gradient(circle at 84% 76%, rgba(255, 90, 0, 0.08), transparent 24%),
    #fff;
}

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

.advantage-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.06);
}

.advantage-card--large {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(124, 228, 203, 0.18)),
    #fff;
}

.advantage-card--dark {
  background: #111315;
  color: #fff;
}

.advantage-card span {
  color: #ff5a00;
  font-weight: 950;
}

.advantage-card h3,
.advantage-card p {
  margin: 0;
}

.advantage-card h3 {
  color: #0b1f5f;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.04;
}

.advantage-card p {
  color: #606b82;
  line-height: 1.56;
}

.advantage-card--dark h3,
.advantage-card--dark p {
  color: #fff;
}

.advantage-card--dark p {
  opacity: 0.72;
}

.section__head--center {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-board {
  background: #fff;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 330px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.06);
}

.feature-card--wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(124, 228, 203, 0.18)),
    #fff;
}

.feature-card--accent {
  background: #111315;
  color: #fff;
}

.feature-card span {
  color: var(--teal);
  font-weight: 900;
}

.feature-card--accent span,
.feature-card--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.04;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.feature-card__links a,
.feature-card .text-link {
  color: var(--teal);
  font-weight: 900;
}

.feature-card__links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
}

.flow-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  background: #111315;
  color: #fff;
}

.flow-panel__media {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.04), rgba(17, 19, 21, 0.56)),
    url("assets/payments-hero.png") center / cover;
}

.flow-panel__content {
  align-self: center;
}

.flow-panel__content .eyebrow {
  color: #7ce4cb;
}

.flow-panel h2 {
  max-width: 760px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.flow-steps article {
  min-height: 210px;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-steps span {
  color: #7ce4cb;
  font-weight: 900;
}

.flow-steps h3,
.flow-steps p {
  margin: 0;
}

.flow-steps p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.lead-section--showcase {
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 228, 203, 0.24), transparent 28%),
    #111315;
}

.lead-section--showcase .eyebrow {
  color: #7ce4cb;
}

.lead-section--showcase .lead-form {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.subhero--business {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 87, 255, 0.44), transparent 28%),
    radial-gradient(circle at 18% 92%, rgba(124, 228, 203, 0.18), transparent 24%),
    #111315;
}

.subhero--partners {
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 176, 118, 0.28), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(0, 87, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #111315 0%, #17223a 100%);
}

.subhero--clean {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 87, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
  color: var(--ink);
}

.subhero--clean h1 {
  color: #0b1f5f;
}

.subhero--clean p:not(.eyebrow) {
  color: #606b82;
}

.subhero--clean .breadcrumbs {
  color: #111315;
}

.subhero--clean .breadcrumbs a {
  color: #0b1f5f;
}

.subhero--clean .breadcrumbs span::before,
.subhero--clean .breadcrumbs a + a::before {
  color: #ff5a00;
}

.subhero--personal {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 90, 0, 0.12), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(0, 87, 255, 0.1), transparent 32%),
    #fff;
}

.subhero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 470px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.subhero__copy {
  min-width: 0;
}

.subhero__inner--split h1 {
  max-width: 740px;
}

.subhero-visual {
  position: relative;
  min-height: 420px;
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.visual-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-card strong {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
}

.visual-card--dark {
  top: 12px;
  right: 0;
  width: min(100%, 360px);
  min-height: 184px;
  background: #05070a;
}

.visual-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.visual-route span {
  color: #fff;
}

.visual-route i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7ce4cb, #0057ff, #ffb076);
}

.visual-card--docs {
  left: 0;
  top: 178px;
  width: min(72%, 300px);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.9), rgba(0, 87, 255, 0.48));
}

.visual-card--status {
  right: 28px;
  bottom: 30px;
  width: min(64%, 260px);
  background: linear-gradient(135deg, rgba(124, 228, 203, 0.2), rgba(255, 255, 255, 0.12));
}

.partner-orbit {
  position: absolute;
  top: 16px;
  right: 0;
  width: min(100%, 390px);
  min-height: 270px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(0, 87, 255, 0.28), transparent 46%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.partner-orbit strong {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 20px;
}

.partner-orbit span {
  position: absolute;
  min-width: 100px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.partner-orbit span:nth-child(1) {
  top: 34px;
  left: 34px;
}

.partner-orbit span:nth-child(2) {
  right: 28px;
  top: 70px;
}

.partner-orbit span:nth-child(3) {
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}

.visual-card--lead {
  left: 0;
  bottom: 72px;
  width: min(72%, 300px);
  background: linear-gradient(135deg, rgba(255, 176, 118, 0.26), rgba(255, 255, 255, 0.12));
}

.visual-card--reward {
  right: 24px;
  bottom: 0;
  width: min(64%, 260px);
  background: #0057ff;
}

.personal-visual {
  min-height: 430px;
}

.personal-wallet,
.personal-note {
  position: absolute;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.1);
}

.personal-wallet {
  top: 20px;
  right: 0;
  width: min(100%, 380px);
  min-height: 248px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(0, 87, 255, 0.14), rgba(255, 255, 255, 0.92)),
    #fff;
}

.personal-wallet > span,
.personal-note span {
  color: #ff5a00;
  font-weight: 900;
}

.personal-wallet strong {
  color: #0b1f5f;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.personal-wallet div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--teal);
}

.personal-wallet i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #ff5a00);
}

.personal-note {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #fff;
}

.personal-note strong {
  color: #111315;
  font-size: 22px;
  line-height: 1.12;
}

.personal-note--top {
  left: 0;
  top: 196px;
  width: min(74%, 310px);
}

.personal-note--bottom {
  right: 30px;
  bottom: 20px;
  width: min(68%, 280px);
  background: #111315;
}

.personal-note--bottom strong {
  color: #fff;
}

.contact-page--list {
  padding-top: clamp(48px, 6vw, 76px);
  background: #fff;
}

.contact-list-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.contact-list-shell h2 {
  color: #0b1f5f;
  font-size: clamp(24px, 2.4vw, 30px);
}

.contact-list-shell > p {
  max-width: 680px;
  color: #606b82;
  font-size: 16px;
  line-height: 1.58;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #f7f9fd;
}

.contact-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  transition: background 0.18s ease, transform 0.18s ease;
}

.contact-row + .contact-row {
  margin-top: 8px;
}

.contact-row:hover {
  background: #fbfcff;
  transform: translateY(-1px);
}

.contact-row h3 {
  margin: 0 0 5px;
  color: #0b1f5f;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.12;
}

.contact-row a,
.contact-row strong {
  display: inline-block;
  color: #6b7595;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 560;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-row p {
  max-width: 620px;
  margin: 6px 0 0;
  color: #7a8498;
  font-size: 14px;
  line-height: 1.5;
}

.contact-row__icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  color: #ff5a00;
  transform: scale(0.82);
  transform-origin: 0 0;
}

.contact-row__icon::before,
.contact-row__icon::after {
  content: "";
  position: absolute;
  display: block;
}

.contact-row__icon--address::before {
  top: 4px;
  left: 7px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-row__icon--address::after {
  top: 12px;
  left: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.contact-row__icon--phone::before {
  top: 8px;
  left: 7px;
  width: 20px;
  height: 17px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 0 16px;
  transform: rotate(-38deg);
}

.contact-row__icon--phone::after {
  top: 19px;
  left: 21px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(28deg);
}

.contact-row__icon--email::before {
  top: 8px;
  left: 3px;
  width: 26px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.contact-row__icon--email::after {
  top: 10px;
  left: 8px;
  width: 16px;
  height: 16px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.contact-row__icon--clock::before {
  top: 5px;
  left: 5px;
  width: 23px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.contact-row__icon--clock::after {
  top: 12px;
  left: 17px;
  width: 8px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.contact-row__icon--company::before {
  top: 6px;
  left: 6px;
  width: 22px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.contact-row__icon--company::after {
  top: 12px;
  left: 12px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
}

.contact-row__icon--chat::before {
  top: 7px;
  left: 4px;
  width: 24px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 9px;
}

.contact-row__icon--chat::after {
  left: 11px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-25deg);
}

.personal-page {
  background: #fff;
}

.personal-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: clamp(26px, 6vw, 80px);
  align-items: end;
  margin-bottom: 36px;
}

.personal-overview__copy {
  max-width: 820px;
}

.personal-overview__copy p:not(.eyebrow) {
  color: #606b82;
  font-size: 19px;
  line-height: 1.62;
}

.personal-summary {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(255, 90, 0, 0.08)),
    #fff;
  box-shadow: 0 18px 44px rgba(17, 19, 21, 0.06);
}

.personal-summary span {
  color: #ff5a00;
  font-weight: 900;
}

.personal-summary strong {
  color: #0b1f5f;
  font-size: 28px;
  line-height: 1.1;
}

.personal-lanes {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #e6eaf0;
}

.personal-lanes article {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  min-height: 128px;
  padding: 24px clamp(20px, 4vw, 36px);
  background: #fff;
}

.personal-lanes article:nth-child(even) {
  background: #f7f9fd;
}

.personal-lanes span {
  color: var(--teal);
  font-size: 24px;
  font-weight: 950;
}

.personal-lanes h3,
.personal-lanes p {
  margin: 0;
}

.personal-lanes h3 {
  color: #0b1f5f;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.08;
}

.personal-lanes p {
  color: #606b82;
  line-height: 1.56;
}

.personal-route-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border-radius: 999px;
  background: #f7f9fd;
}

.personal-route-list > span {
  color: #0b1f5f;
  font-weight: 900;
  white-space: nowrap;
}

.personal-route-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.personal-route-list a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #4f5c78;
  font-weight: 800;
}

.business-desk {
  background: #fff;
}

.business-desk__intro {
  max-width: 850px;
  margin-bottom: 38px;
}

.business-desk__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.business-console {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.business-console__panel {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 87, 255, 0.34), transparent 56%),
    #111315;
  color: #fff;
}

.business-console__panel > span,
.business-console__grid span,
.partner-flow span,
.partner-types span {
  color: var(--teal);
  font-weight: 900;
}

.business-console__panel strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.business-console__panel dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.business-console__panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.business-console__panel dt {
  color: rgba(255, 255, 255, 0.64);
}

.business-console__panel dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.business-console__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.business-console__grid article {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.06);
}

.business-console__grid article:nth-child(2) {
  background: #f6f8fc;
}

.business-console__grid article:nth-child(3) {
  background: linear-gradient(180deg, #fff7ee, #fff);
}

.business-console__grid h3,
.business-console__grid p {
  margin: 0;
}

.business-console__grid h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
}

.business-console__grid p {
  color: var(--muted);
  line-height: 1.55;
}

.business-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #fff;
}

.business-strip div {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
  background: #111315;
  color: #fff;
}

.business-strip div:nth-child(2) {
  background: #0057ff;
}

.business-strip div:nth-child(3) {
  background: #eef4ff;
  color: #111315;
}

.business-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.business-strip div:nth-child(3) span {
  color: var(--teal);
}

.business-strip strong {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}

.partner-hub {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 20% 24%, rgba(0, 87, 255, 0.08), transparent 24%),
    #fff;
}

.partner-hub__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.partner-flow {
  display: grid;
  gap: 14px;
}

.partner-flow article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 130px;
  padding: 22px;
  border: 1px solid #e6eaf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 19, 21, 0.06);
}

.partner-flow article:nth-child(2) {
  transform: translateX(-34px);
  background: #f6f8fc;
}

.partner-flow article:nth-child(3) {
  transform: translateX(24px);
  background: #111315;
  color: #fff;
}

.partner-flow article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.68);
}

.partner-flow span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eef4ff;
}

.partner-flow h3,
.partner-flow p {
  margin: 0;
}

.partner-flow p {
  color: var(--muted);
  line-height: 1.48;
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
  background: #fff;
}

.partner-types article {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 19, 21, 0.05), rgba(17, 19, 21, 0.68)),
    url("assets/payments-hero.png") center / cover;
  color: #fff;
  overflow: hidden;
}

.partner-types article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 87, 255, 0.08), rgba(0, 87, 255, 0.78)),
    url("assets/payments-hero.png") center / cover;
}

.partner-types article:nth-child(3) {
  background: linear-gradient(145deg, #111315, #253048);
}

.partner-types article:nth-child(4) {
  background: linear-gradient(145deg, #fff7ee, #eef4ff);
  color: #111315;
}

.partner-types h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.06;
}

@media (max-width: 1320px) {
  .showcase-tile--photo,
  .showcase-tile--route {
    display: none;
  }

  .hero--showcase h1 {
    font-size: clamp(44px, 5.2vw, 64px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 1120px) {
  .showcase-tile--invoice,
  .showcase-tile--status {
    display: none;
  }

  .discovery-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .discovery-tabs {
    justify-content: center;
    overflow-x: auto;
  }

  .category-strip,
  .service-showcase,
  .advantage-grid,
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card--wide,
  .advantage-card--large {
    grid-column: span 2;
  }

  .flow-panel {
    grid-template-columns: 1fr;
  }

  .subhero__inner--split,
  .business-console,
  .partner-hub,
  .personal-overview {
    grid-template-columns: 1fr;
  }

  .business-console__grid,
  .partner-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-flow article,
  .partner-flow article:nth-child(2),
  .partner-flow article:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero.hero--showcase {
    min-height: auto;
    padding-top: 98px;
    padding-bottom: 80px;
  }

  .hero--showcase h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: 1;
  }

  .showcase-tile {
    opacity: 0.38;
  }

  .showcase-tile--route,
  .showcase-tile--docs,
  .showcase-tile--currency {
    display: none;
  }

  .discovery {
    padding-right: 14px;
    padding-left: 14px;
  }

  .discovery-bar {
    margin-top: -24px;
  }

  .discovery-tabs,
  .category-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-strip a {
    min-width: 152px;
  }

  .trust-band--light,
  .service-showcase,
  .advantage-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .feature-card--wide,
  .advantage-card--large {
    grid-column: auto;
  }

  .flow-panel__media {
    min-height: 260px;
  }

  .subhero-visual {
    min-height: 300px;
  }

  .visual-card--dark,
  .partner-orbit {
    width: 100%;
  }

  .visual-card--docs,
  .visual-card--lead {
    width: 72%;
  }

  .visual-card--status,
  .visual-card--reward {
    width: 66%;
  }

  .business-console__grid,
  .business-strip,
  .partner-flow article,
  .partner-types,
  .contact-list,
  .personal-lanes article,
  .personal-route-list {
    grid-template-columns: 1fr;
  }

  .contact-row:first-child {
    grid-column: auto;
  }

  .contact-row {
    gap: 14px;
  }

  .personal-route-list {
    border-radius: 18px;
  }

  .business-console__panel,
  .business-console__grid article {
    min-height: auto;
  }
}
