:root {
  --font-sans: "Söhne", "Soehne", "Soehne Buch", "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --type-heading-color: #132c59;
  --type-heading-track: -0.018em;
  --type-text-color: #4b5c7d;
  --bg: #f5f7fb;
  --bg-soft: #eaf0ff;
  --surface: #ffffff;
  --surface-2: #f8f9ff;
  --ink: #152038;
  --ink-soft: #4b5c7d;
  --brand: #0a5bff;
  --brand-deep: #003cb3;
  --line: #d7def0;
  --ok: #0f7f5f;
  --shadow: 0 24px 54px rgba(10, 25, 60, 0.12);
  --shadow-soft: 0 10px 28px rgba(10, 25, 60, 0.08);
  --shadow-card: 0 10px 30px rgba(11, 31, 74, 0.09);
  --radius: 18px;
  --btn-primary-bg: #635bff;
  --btn-primary-bg-hover: #524ae6;
  --btn-primary-fg: #ffffff;
  --btn-cloud-bg: #ffffff;
  --btn-cloud-bg-hover: #eef4ff;
  --btn-cloud-fg: #1a73e8;
  --btn-cloud-border: rgba(26, 115, 232, 0.34);
  --btn-outline-border: rgba(18, 50, 112, 0.22);
  --btn-outline-fg: #1f448a;
  --btn-outline-bg: rgba(255, 255, 255, 0.9);
}

body.theme-buttons-b {
  --btn-primary-bg: #1a73e8;
  --btn-primary-bg-hover: #155fc0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
}

body {
  --tx-line: rgba(23, 92, 198, 0.07);
  --tx-dot: rgba(26, 115, 232, 0.22);
  --tx-dot-glow: rgba(26, 115, 232, 0.05);
  --tx-side-x: 2%;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--type-heading-color);
  letter-spacing: var(--type-heading-track);
}

p,
li {
  color: var(--type-text-color);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    linear-gradient(var(--tx-line), var(--tx-line)) left var(--tx-side-x) top 0 / 1px 100% no-repeat,
    linear-gradient(var(--tx-line), var(--tx-line)) right var(--tx-side-x) top 0 / 1px 100% no-repeat;
}

body::after {
  z-index: -1;
  opacity: 0.72;
  background:
    radial-gradient(circle, var(--tx-dot) 0 1.1px, rgba(26, 115, 232, 0) 2px),
    radial-gradient(circle, var(--tx-dot-glow) 0 3.4px, rgba(26, 115, 232, 0) 4.2px),
    radial-gradient(circle, var(--tx-dot) 0 1.1px, rgba(26, 115, 232, 0) 2px),
    radial-gradient(circle, var(--tx-dot-glow) 0 3.4px, rgba(26, 115, 232, 0) 4.2px);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position:
    left calc(var(--tx-side-x) - 6px) top 22%,
    left calc(var(--tx-side-x) - 6px) top 22%,
    right calc(var(--tx-side-x) - 6px) top 78%,
    right calc(var(--tx-side-x) - 6px) top 78%;
  animation: txFlow 20s ease-in-out infinite;
}

@keyframes txFlow {
  0% {
    background-position:
      left calc(var(--tx-side-x) - 6px) top 22%,
      left calc(var(--tx-side-x) - 6px) top 22%,
      right calc(var(--tx-side-x) - 6px) top 78%,
      right calc(var(--tx-side-x) - 6px) top 78%;
  }
  35% {
    background-position:
      left calc(var(--tx-side-x) - 6px) top 74%,
      left calc(var(--tx-side-x) - 6px) top 74%,
      right calc(var(--tx-side-x) - 6px) top 36%,
      right calc(var(--tx-side-x) - 6px) top 36%;
  }
  70% {
    background-position:
      left calc(var(--tx-side-x) - 6px) top 42%,
      left calc(var(--tx-side-x) - 6px) top 42%,
      right calc(var(--tx-side-x) - 6px) top 84%,
      right calc(var(--tx-side-x) - 6px) top 84%;
  }
  100% {
    background-position:
      left calc(var(--tx-side-x) - 6px) top 22%,
      left calc(var(--tx-side-x) - 6px) top 22%,
      right calc(var(--tx-side-x) - 6px) top 78%,
      right calc(var(--tx-side-x) - 6px) top 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}

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

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(10, 91, 255, 0.1);
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  font-size: 0.96rem;
  font-weight: 800;
  color: #0b2f7b;
}

.brand img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.brand span {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  padding: 8px 12px;
  border-radius: 999px;
  color: #31476d;
  font-size: 0.86rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:not(.btn):hover {
  background: rgba(10, 91, 255, 0.08);
  color: #123d99;
}

.nav a:not(.btn).active {
  background: rgba(10, 91, 255, 0.12);
  color: #133b95;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  box-shadow: 0 10px 26px rgba(10, 91, 255, 0.25);
}

.btn-primary:hover {
  background: var(--btn-primary-bg-hover);
  box-shadow: 0 12px 28px rgba(10, 91, 255, 0.35);
}

.btn-outline {
  border-color: var(--btn-outline-border);
  color: var(--btn-outline-fg);
  background: var(--btn-outline-bg);
}

.btn-cloud {
  border-color: var(--btn-cloud-border);
  color: var(--btn-cloud-fg);
  background: var(--btn-cloud-bg);
  box-shadow: 0 8px 18px rgba(11, 50, 120, 0.1);
}

.btn-cloud:hover {
  color: var(--btn-cloud-fg);
  background: var(--btn-cloud-bg-hover);
  box-shadow: 0 10px 22px rgba(11, 50, 120, 0.14);
}

.hero {
  padding: 88px 0 52px;
}

.page-home .hero {
  position: relative;
  overflow: clip;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.84) 100%);
  border-radius: 22px;
}

.page-home .hero::before,
.page-home .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero::before {
  inset: 0;
  background:
    radial-gradient(520px 210px at 12% 10%, rgba(34, 107, 221, 0.08) 0%, rgba(34, 107, 221, 0) 72%),
    radial-gradient(460px 180px at 88% 6%, rgba(34, 107, 221, 0.06) 0%, rgba(34, 107, 221, 0) 74%);
}

.page-home .hero::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 101, 214, 0.03) 0%, rgba(31, 101, 214, 0) 44%),
    linear-gradient(90deg, rgba(31, 101, 214, 0.02) 0%, rgba(31, 101, 214, 0) 26%);
}

.page-home .hero-grid {
  position: relative;
  z-index: 1;
}

.page-home .hero > .container:last-child {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
}

.kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2f58a3;
  font-weight: 700;
}

h1 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: var(--type-heading-track);
  margin: 10px 0 18px;
  font-weight: 700;
}

.lead {
  margin: 0;
  max-width: 78ch;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 0.55vw + 0.86rem, 1.03rem);
  line-height: 1.62;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.95)),
    radial-gradient(300px 160px at 92% 4%, rgba(64, 126, 255, 0.18), rgba(64, 126, 255, 0));
  border: 1px solid #d6e3ff;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(11, 36, 90, 0.1);
  padding: 22px;
}

.proof-kicker {
  margin: 0 0 12px;
  color: #19438f;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

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

.proof-item {
  padding: 8px 14px;
  border-left: 1px solid #d8e5ff;
}

.proof-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
}

.proof-value {
  margin: 0;
  font-family: var(--font-sans);
  color: #17356f;
  font-size: clamp(1.2rem, 2.15vw, 1.7rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.proof-value span {
  display: block;
  color: #2b60bf;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 7px;
}

.proof-label {
  margin: 9px 0 0;
  color: #425b87;
  font-size: 0.88rem;
  line-height: 1.38;
}

.logo-carousel-wrap {
  --carousel-fade: #f2f6ff;
  position: relative;
  min-height: 104px;
  margin-top: 26px;
  border: 1px solid #d7e1f6;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.88));
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--carousel-fade) 0%, rgba(242, 246, 255, 0) 100%);
}

.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--carousel-fade) 0%, rgba(242, 246, 255, 0) 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  height: 74px;
  padding: 4px 16px 6px;
  animation: marquee 40s linear infinite;
}

.logo-carousel-wrap:hover .logo-carousel-track {
  animation-play-state: paused;
}

.logo-partner {
  flex: 0 0 auto;
  width: auto;
  height: 40px;
  max-width: 205px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.94;
}

.logo-partner[src*="visa-listing"],
.logo-partner[src*="visa-ready"] {
  height: 48px;
  max-width: 238px;
  opacity: 0.97;
}

.logo-partner[src*="mastercard-connect"],
.logo-partner[src*="amex"],
.logo-partner[src*="payway"],
.logo-partner[src*="fiserv"] {
  height: 42px;
}

.logo-partner[src*="fiserv"] {
  height: 13.5px;
}

.logo-partner[src*="camara-cessi"] {
  height: 34px;
}

.logo-partner[src*="pci-dss"],
.logo-partner[src*="tuv"] {
  height: 36px;
}

.logo-newpay {
  height: 10.5px;
  filter: grayscale(1) invert(1) brightness(0.44) contrast(1.1);
  opacity: 0.96;
}

.logo-gp {
  height: 45px;
  filter: grayscale(1) brightness(0.5) contrast(1.2);
  opacity: 0.98;
}

.logo-fintech {
  height: 48px;
  max-width: 240px;
  filter: grayscale(1) brightness(0.68) contrast(1.16);
  opacity: 0.98;
}

.industries-premium {
  margin-top: 26px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 30px;
  border: 1px solid #dbe5fb;
  background: #f6f8ff;
}

.industries-premium-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}

.industries-badge {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #5f78a8;
}

.industries-premium-copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.018em;
  color: #132c59;
  max-width: 24ch;
}

.industries-premium-copy .is-accent {
  color: #2067dd;
}

.industries-nav {
  display: inline-flex;
  gap: 10px;
}

.industries-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #cedaf5;
  background: #ffffff;
  color: #1a5ec8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.industries-nav-btn i {
  font-size: 20px;
}

.industries-nav-btn:hover {
  transform: translateY(-1px);
  border-color: #9eb9ee;
  box-shadow: 0 8px 16px rgba(14, 66, 160, 0.12);
}

.industries-premium-viewport {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.industries-premium-viewport::-webkit-scrollbar {
  display: none;
}

.industries-premium-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (6 * 12px)) / 7);
  gap: 16px;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #dfE7f9;
  border-radius: 24px;
  min-height: 142px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(18, 54, 122, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(17, 62, 148, 0.12);
  border-color: #acc6f8;
}

.industry-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf2ff;
  color: #1e69df;
}

.industry-card-icon i {
  font-size: 24px;
  line-height: 1;
}

.industry-card-name {
  color: #1a3970;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.28;
}

.industries-indicators {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.industry-indicator {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background: #d9e2f6;
  cursor: pointer;
}

.industry-indicator.is-active {
  background: #2b73df;
}

@media (max-width: 1024px) {
  .industries-premium-track {
    grid-auto-columns: calc((100% - (5 * 12px)) / 6);
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .industries-premium {
    border-radius: 22px;
    padding: 20px 16px 18px;
  }

  .industries-premium-head {
    align-items: center;
    margin-bottom: 14px;
  }

  .industries-premium-copy h2 {
    max-width: none;
  }

  .industries-nav {
    display: none;
  }

  .industries-premium-track {
    grid-auto-columns: minmax(180px, 76vw);
    gap: 12px;
  }

  .industry-card {
    min-height: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industries-nav-btn,
  .industry-card {
    transition: none;
  }

  .industry-card:hover,
  .industries-nav-btn:hover {
    transform: none;
  }
}

.section {
  padding: 58px 0;
}

.section h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  margin: 0 0 12px;
  letter-spacing: var(--type-heading-track);
  color: var(--type-heading-color);
  font-weight: 700;
}

.section > .container > h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  letter-spacing: 0.02em;
  color: #244c9c;
  font-weight: 700;
}

.section-intro {
  margin: 0 0 22px;
  color: var(--ink-soft);
  max-width: 72ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, #0f60ff, #49a3ff);
}

.page-home .card::before {
  top: 10px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 96, 255, 0.72), rgba(73, 163, 255, 0.72));
}

.page-unicos .card::before {
  top: 10px;
  left: 14px;
  right: 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 96, 255, 0.72), rgba(73, 163, 255, 0.72));
}

.card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(8, 24, 59, 0.12);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334a78;
}

.card.card-jump {
  cursor: pointer;
}

.value-card {
  overflow: hidden;
}

.value-motion {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin: 0 0 12px;
  align-items: center;
  justify-content: center;
  color: #2467d8;
}

.value-motion i {
  font-size: 24px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(36, 103, 216, 0.18));
  animation: valueIconBob 5.2s ease-in-out infinite;
}

.value-02 i,
.value-05 i {
  color: #0f7cc7;
}

.value-03 i,
.value-06 i {
  color: #355fd4;
}

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

@media (prefers-reduced-motion: reduce) {
  .value-motion i {
    animation: none;
  }
}

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

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}

.product-card h3 {
  margin: 0 0 10px;
}

.product-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #3b4f76;
}

.product-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, #eef5ff 0%, #e0ecff 100%);
  border: 1px solid #c6d8ff;
}

.featured-module-title {
  margin: 14px 0 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1b4da0;
}

.acceptance-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.acceptance-intro {
  grid-column: 1 / -1;
  margin: 22px 0 10px;
}

.acceptance-intro h3,
.protection-intro h3,
.cobranzas-intro h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  color: #16418f;
  letter-spacing: -0.01em;
}

.acceptance-intro p,
.protection-intro p,
.cobranzas-intro p {
  margin: 0;
  color: #3f557f;
  max-width: 98ch;
  line-height: 1.52;
}

.protection-intro {
  grid-column: 1 / -1;
  margin: 22px 0 10px;
}

.protection-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cobranzas-intro {
  grid-column: 1 / -1;
  margin: 22px 0 10px;
}

.cobranzas-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.impact-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 8px;
}

.impact-item {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #dbe7fb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}

.impact-value {
  margin: 0;
  color: #1d4c9a;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.impact-label {
  margin: 4px 0 0;
  color: #4b6189;
  font-size: 0.82rem;
  line-height: 1.38;
}

.protection-closing {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 12px;
}

.product-group-anchor {
  grid-column: 1 / -1;
  height: 0;
}

.acceptance-accordion {
  padding: 0;
  overflow: clip;
}

.acceptance-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acceptance-accordion summary::-webkit-details-marker {
  display: none;
}

.acceptance-title {
  font-size: 1rem;
  color: #1c4388;
  font-weight: 700;
  line-height: 1.35;
}

.acceptance-toggle {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  border: 1px solid #c8d9fb;
  color: #2f66c5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.acceptance-accordion[open] .acceptance-toggle {
  transform: rotate(45deg);
}

.acceptance-body {
  border-top: 1px solid #e2ebfb;
  padding: 14px 20px 18px;
}

.acceptance-body ul {
  margin: 0;
  padding-left: 17px;
  display: grid;
  gap: 7px;
}

.acceptance-body li {
  color: #3f557f;
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-productos .hero {
  padding: 88px 0 52px;
}

.page-productos .hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
}

.page-productos .hero .hero-cta {
  margin-top: 14px;
}

/* .page-productos .hero + .section {
  padding-top: 14px;
} */

.page-productos .hero + .section h2 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.page-productos .hero + .section .section-intro {
  margin-bottom: 10px;
}

.page-productos .hero > .container {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.page-productos .hero > .container::before {
  content: none;
}

.page-productos .hero .lead {
  max-width: 86ch;
}

.page-productos .section {
  padding: 52px 0;
}

.page-productos .product-grid {
  gap: 18px;
}

.page-productos .orchestra-main-diagram {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px;
  border-radius: 22px;
}

.page-productos .orchestra-main-diagram img {
  width: 100%;
  max-width: none;
  display: block;
  border-radius: 14px;
}

.page-productos .orchestra-summary-list {
  grid-column: 1 / -1;
  margin: 2px 0 8px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.page-productos .orchestra-summary-list li {
  color: #3f557f;
  line-height: 1.5;
}

.page-productos .product-card {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(12, 43, 98, 0.06);
}

.page-productos .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 43, 98, 0.1);
}

.page-productos .product-card.featured {
  background:
    linear-gradient(152deg, #f5f9ff 0%, #eaf2ff 60%, #f8fbff 100%);
  border: 1px solid #d6e4ff;
  box-shadow: 0 14px 30px rgba(20, 63, 139, 0.09);
}

.page-productos .badge {
  background: rgba(29, 96, 214, 0.14);
  color: #184899;
}

.page-productos .acceptance-intro,
.page-productos .protection-intro,
.page-productos .cobranzas-intro {
  border-left: 0;
  padding-left: 0;
  margin-top: 30px;
}

.page-productos .product-visual {
  position: relative;
  margin: 12px 0 14px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcfdff 0%, #f4f8ff 100%);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(214, 228, 252, 0.72);
}

.page-productos .product-visual img {
  width: min(78%, 500px);
  margin: 0 auto;
  padding: 12px 0 10px;
  display: block;
}

.page-productos .product-visual-compact {
  margin-top: 8px;
  margin-bottom: 10px;
}

.page-productos .axis-visual-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.page-productos .axis-visual-grid > .axis-visual:only-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 980px);
}

.page-productos .axis-visual {
  position: relative;
  margin: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfdff 0%, #f4f8ff 100%);
  box-shadow: inset 0 0 0 1px rgba(214, 228, 252, 0.74);
}

.page-productos .axis-visual img {
  width: min(78%, 460px);
  margin: 0 auto;
  padding-top: 12px;
  display: block;
}

.page-productos .axis-visual.checkout-pci-full {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-productos .axis-visual.checkout-pci-full .checkout-pci-full-image {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-productos .axis-visual.reconciliation-full {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-productos .axis-visual.reconciliation-full .reconciliation-full-image {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-productos .axis-visual.subscriptions-full {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-productos .axis-visual.subscriptions-full .subscriptions-full-image {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-productos .axis-visual figcaption {
  padding: 10px 12px 12px;
  color: #314f7e;
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid rgba(214, 228, 252, 0.78);
}

.page-productos #eje-3 {
  max-width: none;
  margin: 36px 0 0;
  text-align: left;
}

.page-productos #eje-2 {
  max-width: none;
  margin: 36px 0 0;
  text-align: left;
}

.page-productos #eje-2 h3 {
  margin-bottom: 10px;
}

.page-productos #eje-2 p {
  margin: 0;
  max-width: 92ch;
}

.page-productos .acceptance-inline-image-section {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe7fb;
  background: #f8fbff;
  box-shadow: 0 10px 22px rgba(12, 43, 98, 0.06);
}

.page-productos .acceptance-inline-image-section img {
  width: 100%;
  display: block;
}

.page-productos #eje-1 + .impact-strip + .acceptance-showcase {
  margin-top: 18px;
}

.page-productos #eje-2 + .impact-strip,
.page-productos #eje-3 + .impact-strip {
  margin-top: 18px;
  border: 1px solid #dde8fb;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 20px rgba(12, 43, 98, 0.05);
}

.page-productos .protection-inline-image,
.page-productos .cobranzas-inline-image {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe7fb;
  background: #f8fbff;
  box-shadow: 0 10px 22px rgba(12, 43, 98, 0.06);
}

.page-productos .protection-inline-image img,
.page-productos .cobranzas-inline-image img {
  width: 100%;
  display: block;
}

.page-productos #eje-2 + .impact-strip + .protection-inline-image + .protection-showcase {
  margin-top: 18px;
}

.page-productos .protection-inline-image {
  max-width: 760px;
  margin-left: auto;
}

.page-productos #eje-3 h3 {
  margin-bottom: 10px;
}

.page-productos #eje-3 p {
  margin: 0;
  max-width: 92ch;
}

.page-productos .acceptance-intro h3,
.page-productos .protection-intro h3,
.page-productos .cobranzas-intro h3 {
  font-size: clamp(1.22rem, 0.6vw + 1.06rem, 1.52rem);
  line-height: 1.2;
}

.page-productos .acceptance-intro p,
.page-productos .protection-intro p,
.page-productos .cobranzas-intro p {
  color: #415780;
  line-height: 1.62;
}

.page-productos #eje-3 + .impact-strip + .cobranzas-inline-image + .cobranzas-showcase {
  margin-top: 18px;
}

.page-productos .cobranzas-inline-image {
  max-width: 760px;
  margin-right: auto;
}

.page-productos .acceptance-accordion {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page-productos .acceptance-accordion summary {
  padding: 16px 18px;
  transition: background-color 0.18s ease;
}

.page-productos .acceptance-accordion[open] summary {
  background: #f7faff;
}

.page-productos .acceptance-title {
  color: #1a468f;
}

.page-productos .acceptance-body {
  border-top: 1px solid #e5eeff;
  padding: 14px 18px 18px;
}

.page-productos .acceptance-body li::marker {
  color: #3f71c8;
}

.page-productos .acceptance-inline-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe7fb;
  background: #f8fbff;
}

.page-productos .acceptance-inline-image img {
  width: 100%;
  display: block;
}

.page-productos .acceptance-showcase-static {
  border-radius: 20px;
  border: 1px solid #cfdef9;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.page-productos .acceptance-showcase-static .acceptance-accordion:nth-of-type(even) {
  background: rgba(243, 249, 255, 0.55);
}

.page-productos .acceptance-showcase-static .acceptance-accordion > summary {
  pointer-events: none;
  cursor: default;
  padding-top: 18px;
  padding-bottom: 12px;
}

.page-productos .acceptance-showcase-static .acceptance-toggle {
  display: none;
}

.page-productos .acceptance-showcase-static .acceptance-title {
  font-size: 1.06rem;
}

.page-productos .acceptance-showcase-static .acceptance-body {
  padding-top: 6px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
}

.page-productos .acceptance-showcase-static .acceptance-body ul {
  gap: 8px;
}

.page-productos .acceptance-showcase-static .acceptance-body li {
  font-size: 0.93rem;
  line-height: 1.56;
}

.page-productos .acceptance-showcase-static .acceptance-body .acceptance-inline-image {
  align-self: stretch;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-focus .acceptance-body {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 20px;
  align-items: center;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-focus .acceptance-body ul {
  max-width: none;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-focus .acceptance-body li {
  font-size: 0.96rem;
  line-height: 1.62;
}

.page-productos .acceptance-showcase-static .acceptance-checkout .acceptance-inline-image,
.page-productos .acceptance-showcase-static .acceptance-routing .acceptance-inline-image {
  max-width: none;
  margin: 0;
  border-radius: 16px;
  border: 1px solid #d5e4fb;
  box-shadow: 0 8px 18px rgba(12, 43, 98, 0.08);
  padding: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.page-productos .acceptance-showcase-static .acceptance-checkout .acceptance-inline-image img,
.page-productos .acceptance-showcase-static .acceptance-routing .acceptance-inline-image img {
  max-height: 460px;
  width: 100%;
  object-fit: contain;
  background: #ffffff;
}

.page-productos .acceptance-inline-image .zoomable-image {
  --zoom-scale: 1;
  --zoom-x: 0px;
  --zoom-y: 0px;
  cursor: zoom-in;
  transform: translate(var(--zoom-x), var(--zoom-y)) scale(var(--zoom-scale));
  transform-origin: center center;
  transition: transform 0.28s ease, filter 0.22s ease;
  will-change: transform;
}

.page-productos .acceptance-inline-image .zoomable-image:focus-visible {
  outline: 2px solid #2f66c5;
  outline-offset: -2px;
}

.page-productos .acceptance-inline-image .zoomable-image.is-zoomed {
  cursor: grab;
  filter: saturate(1.03);
  touch-action: none;
}

.page-productos .acceptance-inline-image .zoomable-image.is-panning {
  cursor: grabbing;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-focus {
  padding: 6px;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-routing .acceptance-body {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-routing .acceptance-body ul {
  order: 2;
}

.page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-routing .acceptance-body .acceptance-inline-image {
  order: 1;
}

.page-productos .protection-closing {
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
  border: 1px solid #e2ebfc;
  border-radius: 12px;
  padding: 12px 14px;
}

.page-productos #arquitectura .diagram-frame {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #dce8fb;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(12, 43, 98, 0.06);
}

.page-productos #arquitectura .diagram-frame img {
  border-radius: 14px;
}

.page-productos #arquitectura .cta-band {
  margin-top: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(16, 66, 186, 0.2);
}

.page-productos .acceptance-showcase,
.page-productos .protection-showcase,
.page-productos .cobranzas-showcase {
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #d9e6fb;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(12, 43, 98, 0.06);
  overflow: hidden;
}

.page-productos .acceptance-showcase .acceptance-accordion + .acceptance-accordion,
.page-productos .protection-showcase .acceptance-accordion + .acceptance-accordion,
.page-productos .cobranzas-showcase .acceptance-accordion + .acceptance-accordion {
  border-top: 1px solid #e2ebfb;
}

.page-productos .acceptance-showcase .acceptance-accordion summary,
.page-productos .protection-showcase .acceptance-accordion summary,
.page-productos .cobranzas-showcase .acceptance-accordion summary {
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-productos .impact-strip {
  gap: 0;
  margin: 14px 0 18px;
  padding: 8px 0;
  border-top: 1px solid #dde8fb;
  border-bottom: 1px solid #dde8fb;
}

.page-productos .impact-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 12px 18px;
}

.page-productos .impact-item + .impact-item {
  border-left: 1px solid #dde8fb;
}

.page-productos .impact-value {
  margin: 0;
  color: #153f8f;
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.page-productos .impact-label {
  margin: 6px 0 0;
  color: #4d638c;
  font-size: clamp(0.82rem, 0.28vw + 0.76rem, 0.92rem);
  line-height: 1.45;
}

.page-contacto .hero {
  /* padding-top: 76px; */
  padding-bottom: 40px;
}

.page-contacto .kicker {
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.page-contacto h1 {
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
  margin: 8px 0 10px;
  letter-spacing: -0.012em;
}

.page-contacto .lead {
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4d6083;
}

.page-contacto .section {
  padding-top: 44px;
}

.page-contacto .grid-2 {
  gap: 18px;
  align-items: stretch;
}

.page-contacto .card {
  padding: 24px 24px 22px;
  border-color: #dbe3f3;
  box-shadow: 0 8px 22px rgba(12, 36, 82, 0.08);
}

.page-contacto .card::before {
  height: 2px;
  background: linear-gradient(90deg, #2c6fda, #6aa0ef);
}

.page-contacto .card h2 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.page-contacto .contact-info-card h3 {
  margin: 20px 0 8px;
  font-size: 0.98rem;
  color: #244b8f;
  letter-spacing: 0;
}

.page-contacto .form {
  gap: 12px;
}

.page-contacto .form label {
  display: grid;
  gap: 5px;
  color: #2f4468;
  font-size: 0.88rem;
  font-weight: 600;
}

.page-contacto .form input,
.page-contacto .form select,
.page-contacto .form textarea {
  font-size: 0.92rem;
}

.page-contacto .form input::placeholder,
.page-contacto .form textarea::placeholder {
  color: #97a4bb;
  font-weight: 400;
  opacity: 1;
}

.page-contacto .form textarea {
  min-height: 122px;
}

.page-contacto .contact-form-card .small {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.page-contacto .contact-info-card .muted {
  margin: 0 0 9px;
  color: #415a84;
  line-height: 1.56;
  font-size: 0.92rem;
}

.page-contacto .contact-info-card .muted strong {
  font-weight: 600;
  color: #334f7e;
}

.page-contacto .contact-info-card a {
  color: #1757b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-seguridad .security-wrap {
  display: grid;
  gap: 14px;
}

.page-seguridad .security-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.page-seguridad .security-head h2 {
  margin: 0;
}

.page-seguridad .pci-mark {
  gap: 6px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #4d6d97;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.page-seguridad .pci-mark img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.page-seguridad .security-intro {
  max-width: none;
  margin-bottom: 4px;
}

.page-seguridad .security-flow,
.page-seguridad .security-qa {
  padding-top: 12px;
  border-top: 1px solid #dce8ff;
}

.page-seguridad .security-flow h3,
.page-seguridad .security-qa h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: #1a468f;
}

.page-seguridad .security-flow p,
.page-seguridad .qa-answer {
  margin: 0;
  color: #3f557f;
  line-height: 1.58;
}

.page-seguridad .security-flow p + p,
.page-seguridad .security-flow h3 + p,
.page-seguridad .security-flow p + h3 {
  margin-top: 10px;
}

.page-seguridad .security-qa {
  display: grid;
  gap: 10px;
}

.page-seguridad .qa-item {
  padding: 10px 0;
  border-bottom: 1px solid #e7eefb;
}

.page-seguridad .qa-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-seguridad .qa-question {
  margin: 0 0 4px;
  font-weight: 700;
  color: #223f73;
}

.page-seguridad .qa-answer a {
  color: #1f63cc;
  text-decoration: underline;
}

.axis {
  grid-column: 1 / -1;
  margin: 22px 0 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #16418f;
  font-size: 0.98rem;
}

.note {
  background: var(--surface-2);
  border: 1px dashed #a7c2f0;
  border-radius: 14px;
  padding: 18px;
  color: #37517f;
}

.diagram-frame {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 7px 24px rgba(8, 24, 59, 0.06);
}

.diagram-frame img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.pci-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #eef6ff;
  border: 1px solid #cde0ff;
  border-radius: 999px;
  color: #20508f;
  font-weight: 700;
}

.pci-mark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cta-band {
  margin-top: 18px;
  background: linear-gradient(130deg, #0c49cc, #2a74ff);
  color: #fff;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 16px 36px rgba(16, 66, 186, 0.24);
}

.cta-band h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.page-home .hero-grid {
  grid-template-columns: 1fr;
  text-align: left;
  gap: 20px;
}

.page-home .lead {
  margin: 0;
}

.page-home .hero-cta {
  justify-content: flex-start;
}

.page-home .hero-proof {
  text-align: left;
  backdrop-filter: blur(6px);
}

.page-home .section h2,
.page-home .section > .container > h3,
.page-home .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-home .value-kicker {
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #315a9f;
  margin-bottom: 4px;
}

.page-home .value-main {
  font-size: clamp(1.48rem, 2.4vw, 2.05rem);
  letter-spacing: -0.014em;
  color: #153f88;
  margin-bottom: 10px;
}

.page-unicos .value-manifesto {
  position: relative;
  background:
    radial-gradient(180px 80px at 88% 18%, rgba(80, 143, 245, 0.14) 0%, rgba(80, 143, 245, 0) 75%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #d4e3fb;
  border-left: 4px solid #2f74de;
  border-radius: 14px;
  padding: 16px 18px 16px 20px;
  color: #2e476f;
  font-size: 0.96rem;
  line-height: 1.62;
  box-shadow: 0 10px 24px rgba(10, 45, 106, 0.08);
}

.page-unicos .value-manifesto::before {
  content: "Declaracion de valor";
  display: inline-block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3963a8;
}

.page-unicos .value-manifesto .manifesto-title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1d4f9e;
}

.page-unicos .value-manifesto p {
  margin: 0;
}

.page-unicos .value-manifesto strong {
  color: #1b3f7d;
  font-weight: 700;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1025px) {
  .page-home .orchestra-highlight {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: start;
  }

  .page-home .orchestra-highlight .cta-band {
    margin-top: 0;
    padding: 22px;
  }

  .page-home .orchestra-highlight .diagram-frame {
    margin-top: 0;
    padding: 10px;
  }
}

.site-footer {
  margin-top: 26px;
  padding: 0;
  border-top: 1px solid #d6e0f4;
  background: #f7faff;
}

.footer-cta {
  padding: 28px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #dbe5f8;
  flex-wrap: wrap;
}

.footer-cta h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  letter-spacing: -0.01em;
  color: #102e6c;
}

.footer-cta p {
  margin: 0;
  color: #47608c;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 34px;
  padding: 24px 0 22px;
}

.footer-about {
  max-width: 44ch;
}

.footer-about .brand {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-about .brand img {
  width: auto;
  height: 46px;
}

.footer-about p {
  margin: 0;
  color: #4a618b;
  line-height: 1.62;
  font-size: 0.9rem;
}

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

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #34569d;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-address {
  color: #425985;
  font-size: 0.87rem;
  line-height: 1.45;
}

.footer-links a:hover {
  color: #1a4fb4;
}

.footer-address {
  margin: 0;
  max-width: 100%;
}

.footer-bottom {
  border-top: 1px solid #d5e1fa;
  padding: 14px 0 20px;
  color: #5b739f;
  font-size: 0.8rem;
}

.timeline {
  border-left: 2px solid #9ebcf4;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.timeline-item strong {
  color: #163f90;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 91, 255, 0.12);
  color: #0f3f9a;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c9d5f0;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.small {
  font-size: 0.9rem;
  color: #536d97;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 961px) {
  h1 {
    font-size: clamp(1.85rem, 3.9vw, 3.1rem);
  }

  .lead {
    font-size: 0.92rem;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .product-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .acceptance-showcase {
    grid-template-columns: 1fr;
  }

  .page-seguridad .security-head {
    align-items: flex-start;
    gap: 4px 10px;
  }

  .page-contacto .hero {
    padding-top: 64px;
    padding-bottom: 34px;
  }

  .page-contacto .card {
    padding: 20px;
  }

  .protection-showcase {
    grid-template-columns: 1fr;
  }

  .cobranzas-showcase {
    grid-template-columns: 1fr;
  }

  .page-productos .axis-visual-grid {
    grid-template-columns: 1fr;
  }

  .page-productos .product-visual img,
  .page-productos .axis-visual img {
    width: 84%;
    padding-top: 6px;
    padding-bottom: 0;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .page-productos .impact-item {
    padding: 12px 0;
  }

  .page-productos .impact-item + .impact-item {
    border-left: 0;
    border-top: 1px solid #dde8fb;
  }

  .logo-carousel-track img {
    height: calc(2cm - 8px);
    max-height: calc(2cm - 8px);
    width: auto;
  }

  .logo-carousel-track .logo-partner[src*="visa-listing"],
  .logo-carousel-track .logo-partner[src*="visa-ready"] {
    height: calc(2cm - 2px);
    max-height: calc(2cm - 2px);
  }

  .logo-carousel-track .logo-newpay {
    height: calc((2cm - 8px) * 0.35);
    max-height: calc((2cm - 8px) * 0.35);
  }

  .logo-carousel-track .logo-partner[src*="fiserv"] {
    height: calc((2cm - 8px) * 0.35);
    max-height: calc((2cm - 8px) * 0.35);
  }

  h1 {
    line-height: 1.08;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    border-left: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #dce7ff;
    border-radius: 14px;
  }

  .hero {
    padding-top: 58px;
  }

  .topbar-inner {
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

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

  .footer-cta {
    align-items: flex-start;
  }

  .footer-about {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .brand img {
    height: 44px;
  }

  .hero-cta .btn,
  .cta-band .btn {
    width: 100%;
    justify-content: center;
  }

  .topbar .nav {
    width: 100%;
    gap: 10px;
  }

  .topbar .nav .btn-cloud {
    min-height: 38px;
    max-width: 172px;
    padding: 8px 10px;
    font-size: 0.84rem;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }

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

  .page-productos .hero {
    padding-top: 34px;
  }

  .page-productos .hero > .container {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .page-productos .acceptance-intro,
  .page-productos .protection-intro,
  .page-productos .cobranzas-intro {
    padding-left: 0;
  }

  .page-productos #eje-3 {
    margin-top: 28px;
    text-align: left;
  }

  .page-productos #eje-2 {
    margin-top: 28px;
    text-align: left;
  }

  .page-productos #eje-2 p {
    max-width: none;
  }

  .page-productos #eje-3 p {
    max-width: none;
  }

  .page-productos .acceptance-showcase-static .acceptance-body {
    grid-template-columns: 1fr;
  }

  .page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-focus .acceptance-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-routing .acceptance-body ul,
  .page-productos .acceptance-showcase-static .acceptance-accordion.acceptance-routing .acceptance-body .acceptance-inline-image {
    order: initial;
  }

  .page-productos .acceptance-accordion summary {
    padding: 15px 14px;
  }

  .page-productos .acceptance-body {
    padding: 12px 14px 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-cta {
    padding-top: 24px;
  }

  .page-home .hero::before,
  .page-home .hero::after {
    opacity: 0.72;
  }
}
