:root {
  --brand-blue: #002b73;
  --brand-blue-deep: #001a4a;
  --brand-blue-glow: #0759bf;
  --brand-green: #00bfa6;
  --brand-green-soft: #dffaf5;
  --brand-orange: #f57c00;
  --brand-white: #ffffff;
  --ink-900: #0c1e46;
  --ink-700: #2f4779;
  --ink-500: #6178a8;
  --surface: #f4f8ff;
  --surface-card: #ffffff;
  --border-soft: rgba(0, 43, 115, 0.1);
  --shadow-soft: 0 22px 70px rgba(0, 33, 87, 0.11);
  --shadow-strong: 0 30px 90px rgba(0, 33, 87, 0.22);
  --shadow-lift: 0 28px 80px rgba(0, 33, 87, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 84% 8%, rgba(0, 191, 166, 0.26), transparent 25rem),
    radial-gradient(circle at 4% 18%, rgba(0, 43, 115, 0.14), transparent 22rem),
    linear-gradient(180deg, #fbfdff 0%, #edf5ff 48%, #f7fbff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 43, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 43, 115, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 74%);
}

img {
  max-width: 100%;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 43, 115, 0.07);
  box-shadow: 0 12px 36px rgba(0, 33, 87, 0.055);
}

.site-header .navbar {
  transition: padding 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.brand-logo,
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 43, 115, 0.18);
}

.brand-name {
  display: block;
  color: var(--brand-blue);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle,
.footer-copy {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.brand-subtitle {
  max-width: 9rem;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  color: var(--ink-700);
  font-weight: 700;
  padding-inline: 0.9rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-blue);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 1.45rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #074a9f 100%);
  border-color: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 16px 34px rgba(0, 43, 115, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
  background: #003894;
  border-color: #003894;
  color: var(--brand-white);
}

.btn-accent {
  background: linear-gradient(135deg, #ff9b21 0%, var(--brand-orange) 100%);
  border: 0;
  color: var(--brand-white);
  box-shadow: 0 18px 38px rgba(245, 124, 0, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  background: linear-gradient(135deg, #ffa937 0%, #e87400 100%);
  color: var(--brand-white);
}

.btn-outline-brand {
  border: 1px solid rgba(0, 43, 115, 0.16);
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(0, 43, 115, 0.05);
}

.btn-soft {
  border: 1px solid rgba(0, 43, 115, 0.14);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(0, 33, 87, 0.06);
}

.btn-soft:hover,
.btn-soft:focus {
  background: rgba(0, 43, 115, 0.04);
  color: var(--brand-blue);
}

.section-heading {
  max-width: 920px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-shell::before {
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: 3rem;
  background: rgba(0, 191, 166, 0.14);
}

.hero-shell::after {
  width: 18rem;
  height: 18rem;
  left: -8rem;
  bottom: 0;
  background: rgba(0, 43, 115, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 191, 166, 0.18);
  background: rgba(0, 191, 166, 0.13);
  color: #0b8474;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--brand-blue-deep);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-wrap: balance;
}

.lead-copy,
.section-copy {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-700);
}

.audience-card {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35)),
    radial-gradient(circle at 86% 18%, rgba(0, 191, 166, 0.17), transparent 16rem);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 166, 0.2);
  box-shadow: var(--shadow-lift);
}

.audience-banner {
  display: block;
  width: 100%;
  height: auto;
  background: #e8f1ff;
  transition: transform 0.35s ease;
}

.audience-card:hover .audience-banner {
  transform: scale(1.015);
}

.audience-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem 1.75rem;
}

.audience-content h2,
.section-title {
  color: var(--brand-blue);
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.8rem 0;
}

.audience-content p,
.step-card p,
.feature-card li,
.cta-panel p {
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.payment-integration-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 255, 0.84)),
    radial-gradient(circle at 96% 8%, rgba(0, 191, 166, 0.18), transparent 18rem);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.payment-integration-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 24%, rgba(0, 43, 115, 0.12), transparent 16rem),
    radial-gradient(circle at 88% 78%, rgba(0, 191, 166, 0.2), transparent 18rem);
  opacity: 0.78;
}

.payment-integration-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #f7fbff, #eaf3ff);
  border: 1px solid rgba(0, 43, 115, 0.08);
  box-shadow: 0 22px 62px rgba(0, 43, 115, 0.14);
}

.payment-integration-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.payment-integration-copy {
  padding: clamp(0.4rem, 1.4vw, 1.2rem);
}

.payment-integration-copy h2 {
  margin: 0.9rem 0;
  color: var(--brand-blue-deep);
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.payment-integration-copy p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.03rem;
  line-height: 1.72;
}

.payment-integration-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.payment-integration-points article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(0, 43, 115, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(0, 43, 115, 0.07);
}

.payment-point-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-blue), #0b6de0);
  color: var(--brand-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 24px rgba(0, 43, 115, 0.2);
}

.payment-integration-points strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1rem;
}

.payment-integration-points small {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-500);
  line-height: 1.5;
}

.payment-integration-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.payment-integration-actions span {
  max-width: 18rem;
  color: var(--ink-500);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.pill-client {
  background: rgba(0, 43, 115, 0.08);
  color: var(--brand-blue);
}

.pill-business {
  background: rgba(245, 124, 0, 0.12);
  color: #b35c00;
}

.pill-download {
  background: rgba(255, 255, 255, 0.2);
  color: var(--brand-white);
}

.value-strip {
  position: relative;
}

.value-chip {
  height: 100%;
  padding: 1.2rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 43, 115, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 43, 115, 0.075);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 43, 115, 0.11);
}

.value-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-chip strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.value-chip small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.merchant-highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 191, 166, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 255, 0.82));
  box-shadow: var(--shadow-soft);
}

.merchant-highlight-card h2 {
  margin: 0.9rem 0;
  color: var(--brand-blue);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.merchant-highlight-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.75;
}

.merchant-highlight-grid {
  display: grid;
  gap: 0.8rem;
}

.merchant-highlight-grid div,
.support-chip {
  padding: 1rem;
  border: 1px solid rgba(0, 43, 115, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(0, 43, 115, 0.07);
}

.merchant-highlight-grid strong,
.support-chip strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1rem;
}

.merchant-highlight-grid span,
.support-chip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-500);
  line-height: 1.55;
}

.publish-modes-section,
.plans-section {
  position: relative;
}

.mode-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.mode-card::before,
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 92% 12%, rgba(0, 191, 166, 0.15), transparent 13rem);
}

.mode-card > *,
.pricing-card > * {
  position: relative;
  z-index: 1;
}

.mode-card-profile::before,
.pricing-card-soft::before {
  background: radial-gradient(circle at 92% 12%, rgba(245, 124, 0, 0.16), transparent 13rem);
}

.mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: rgba(0, 191, 166, 0.12);
  font-size: 1.65rem;
}

.mode-card h3,
.pricing-card h3 {
  color: var(--brand-blue);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mode-card p,
.plans-note {
  color: var(--ink-700);
  line-height: 1.7;
}

.mode-card ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.mode-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-700);
  line-height: 1.55;
}

.mode-card li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--brand-green);
}

.mode-card-profile li::before {
  background: var(--brand-orange);
}

.support-chip {
  margin-top: 1.3rem;
  background: rgba(0, 191, 166, 0.1);
}

.price-timeline {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 1.35rem;
}

.price-timeline div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(0, 43, 115, 0.08);
  border-radius: 18px;
  background: rgba(244, 248, 255, 0.78);
}

.price-timeline span {
  color: var(--ink-500);
  font-weight: 700;
}

.price-timeline strong {
  color: var(--brand-blue);
  text-align: right;
}

.plans-note {
  margin: 1rem 0 0;
  color: var(--ink-500);
  font-size: 0.93rem;
}

.feature-card,
.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 16px 42px rgba(0, 43, 115, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 43, 115, 0.12);
}

.feature-card::after,
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-card h3,
.step-card h3,
.cta-panel h3 {
  color: var(--brand-blue);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.85rem;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand-green);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.8rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.28), transparent 11rem),
    linear-gradient(135deg, var(--brand-blue-deep) 0%, #0f7eaf 56%, var(--brand-green) 100%);
  color: var(--brand-white);
  box-shadow: var(--shadow-strong);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.cta-panel h3 {
  color: var(--brand-white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.15), rgba(255, 255, 255, 0.72));
  color: var(--brand-orange);
  font-weight: 800;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(0, 43, 115, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.site-footer strong,
.footer-links a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
}

.cta-panel .btn-outline-brand {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.1);
}

.cta-panel .btn-outline-brand:hover,
.cta-panel .btn-outline-brand:focus {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.18);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--brand-orange);
}

.business-register-modal .modal-dialog {
  max-width: min(1040px, calc(100vw - 2rem));
}

.business-register-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 166, 0.26), transparent 32%),
    radial-gradient(circle at 0% 0%, rgba(0, 43, 115, 0.09), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 34px 110px rgba(0, 33, 87, 0.32);
}

.business-register-modal .modal-header {
  align-items: flex-start;
  gap: 1rem;
  padding: 1.45rem 1.65rem 1rem;
  border-bottom: 1px solid rgba(0, 43, 115, 0.08);
}

.business-register-modal-title {
  max-width: 760px;
}

.business-register-modal-title .eyebrow {
  margin-bottom: 0.7rem;
}

.business-register-modal-title h2 {
  color: var(--brand-blue);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.business-register-modal-title p {
  margin: 0.35rem 0 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.business-register-modal .btn-close {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(0, 43, 115, 0.12);
  opacity: 1;
}

.business-register-modal .modal-body {
  max-height: min(76vh, 820px);
  overflow-y: auto;
  padding: 1rem 1.35rem 1.35rem;
}

.business-register-form {
  display: grid;
  gap: 1rem;
}

.business-register-step,
.business-register-unavailable {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(0, 43, 115, 0.08);
}

.business-register-step {
  padding: 1.15rem;
}

.business-register-step-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.business-register-step-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 43, 115, 0.13), rgba(0, 191, 166, 0.2));
  color: var(--brand-blue);
  font-weight: 800;
}

.business-register-step h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.12rem;
  font-weight: 800;
}

.business-register-step p {
  margin: 0.2rem 0 0;
  color: var(--ink-500);
  line-height: 1.55;
}

.business-register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.business-register-grid label {
  display: grid;
  gap: 0.38rem;
}

.business-register-grid label > span,
.business-register-options label {
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.business-register-grid small {
  color: var(--ink-500);
}

.business-register-form .form-control,
.business-register-form .form-select {
  min-height: 3rem;
  border: 1px solid rgba(0, 43, 115, 0.14);
  border-radius: 16px;
  color: var(--ink-900);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.92);
}

.business-register-form textarea.form-control {
  min-height: 6rem;
}

.business-register-form .form-control:focus,
.business-register-form .form-select:focus {
  border-color: rgba(0, 191, 166, 0.8);
  box-shadow: 0 0 0 0.25rem rgba(0, 191, 166, 0.14);
}

.business-register-wide {
  grid-column: 1 / -1;
}

.business-register-publication-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.business-register-publication-options label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.15rem 0.6rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(0, 43, 115, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.business-register-publication-options input {
  margin-top: 0.25rem;
  accent-color: var(--brand-green);
}

.business-register-publication-options strong {
  color: var(--brand-blue);
  font-size: 0.95rem;
}

.business-register-publication-options small {
  grid-column: 2;
  color: var(--ink-500);
  line-height: 1.45;
}

.business-register-publication-options label:has(input:checked) {
  border-color: rgba(0, 191, 166, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, rgba(0, 191, 166, 0.11) 100%);
  box-shadow: 0 14px 28px rgba(0, 191, 166, 0.1);
}

.business-register-custom-vertical-toggle {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 191, 166, 0.22);
  border-radius: 18px;
  background: rgba(0, 191, 166, 0.08);
}

.business-register-checkbox-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--ink-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.business-register-checkbox-line input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--brand-teal);
  flex: 0 0 auto;
}

.business-register-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.95rem 0;
}

.business-register-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(0, 43, 115, 0.1);
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.08);
}

.business-register-submit {
  position: sticky;
  bottom: -1.25rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  padding: 1rem 0 0;
  background: linear-gradient(180deg, rgba(238, 246, 255, 0), #eef6ff 38%);
}

.business-register-submit .btn:disabled,
.business-register-submit .btn.is-submitting {
  cursor: wait;
  opacity: 0.78;
  pointer-events: none;
}

.business-register-wait-panel {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 191, 166, 0.36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 0%, rgba(0, 191, 166, 0.18), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 255, 250, 0.94));
  box-shadow: 0 18px 42px rgba(0, 43, 115, 0.1);
}

.business-register-wait-panel[hidden] {
  display: none;
}

.business-register-wait-panel strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1rem;
}

.business-register-wait-panel p {
  margin: 0.25rem 0 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.business-register-wait-spinner {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 4px solid rgba(0, 191, 166, 0.2);
  border-top-color: var(--brand-green);
  box-shadow: inset 0 0 0 0.35rem rgba(255, 255, 255, 0.88);
  animation: submitSpinnerRotate 0.8s linear infinite;
}

.submit-spinner {
  width: 1rem;
  height: 1rem;
  margin-right: 0.55rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  display: inline-block;
  animation: submitSpinnerRotate 0.75s linear infinite;
}

@keyframes submitSpinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.business-register-unavailable {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  color: var(--ink-700);
}

@media (max-width: 991.98px) {
  .merchant-highlight-card,
  .payment-integration-card {
    grid-template-columns: 1fr;
  }

  .payment-integration-media img {
    min-height: auto;
  }

  .navbar-collapse {
    padding-top: 1rem;
    margin-top: 0.7rem;
    border-top: 1px solid rgba(0, 43, 115, 0.08);
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link::after {
    left: 0;
    right: auto;
    width: 2rem;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    position: static;
  }

  body::before {
    background-size: 44px 44px;
  }

  .hero-shell {
    padding-top: 1.2rem !important;
  }

  .display-title {
    font-size: clamp(2rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .lead-copy,
  .section-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .brand-logo,
  .footer-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .audience-card,
  .payment-integration-card,
  .payment-integration-media,
  .cta-panel,
  .feature-card,
  .step-card,
  .value-chip {
    border-radius: 24px;
  }

  .audience-card:hover,
  .feature-card:hover,
  .step-card:hover,
  .value-chip:hover {
    transform: none;
  }

  .audience-content,
  .payment-integration-copy,
  .cta-panel,
  .feature-card,
  .step-card {
    padding: 1.2rem;
  }

  .audience-actions,
  .payment-integration-actions,
  .cta-panel .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .audience-actions .btn,
  .payment-integration-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .payment-integration-actions span {
    max-width: none;
    text-align: center;
  }

  .payment-integration-points article {
    align-items: flex-start;
  }

  .business-register-modal .modal-content {
    min-height: 100%;
    border-radius: 0;
  }

  .business-register-modal .modal-header {
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 4;
    background: rgba(246, 250, 255, 0.92);
    backdrop-filter: blur(14px);
  }

  .business-register-modal .modal-body {
    max-height: calc(100vh - 132px);
    padding: 0.75rem;
  }

  .business-register-modal-title h2 {
    font-size: 1.45rem;
  }

  .business-register-modal-title p {
    font-size: 0.92rem;
  }

  .business-register-step {
    padding: 1rem;
    border-radius: 22px;
  }

  .business-register-grid {
    grid-template-columns: 1fr;
  }

  .business-register-publication-options {
    grid-template-columns: 1fr;
  }

  .business-register-step-head {
    gap: 0.7rem;
  }

  .business-register-options {
    display: grid;
  }

  .business-register-options label {
    justify-content: flex-start;
    border-radius: 18px;
  }

  .business-register-submit {
    bottom: -0.75rem;
    display: grid;
    padding-bottom: 0.35rem;
  }

  .business-register-submit .btn {
    width: 100%;
  }

  .business-register-wait-panel {
    align-items: flex-start;
  }

  .price-timeline div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .price-timeline strong {
    text-align: left;
  }
}

.legal-main {
  padding: 2.5rem 0 4rem;
}

.legal-hero {
  max-width: 860px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.14);
  color: #008f7d;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-title {
  margin: 1rem 0 0.75rem;
  color: var(--brand-blue);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.legal-intro {
  color: var(--ink-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-meta {
  color: var(--ink-500);
  font-size: 0.94rem;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-section + .legal-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 43, 115, 0.08);
}

.legal-section h2 {
  margin-bottom: 0.85rem;
  color: var(--brand-blue);
  font-size: 1.35rem;
  font-weight: 800;
}

.legal-section p,
.legal-section li {
  color: var(--ink-700);
  line-height: 1.8;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(0, 43, 115, 0.04);
  color: var(--ink-700);
}

.legal-actions {
  max-width: 980px;
  margin: 1.5rem auto 0;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.95rem 0.72rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #23d366, #10b981);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(16, 185, 129, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(16, 185, 129, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.32) inset;
}

.whatsapp-float-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

@media (max-width: 767.98px) {
  .legal-main {
    padding-top: 1.5rem;
  }

  .legal-card {
    padding: 1.3rem;
    border-radius: 24px;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem;
  }

  .whatsapp-float-text {
    display: none;
  }
}
