/* CALTEN — Company & product pages */

.company-hero {
  padding: 64px 24px 0;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 55%);
  position: relative;
  overflow: hidden;
}

.company-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 64, 238, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.company-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.company-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.08);
  color: #7540ee;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.company-hero-title {
  margin: 0 0 20px;
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #080808;
}

.company-hero-title span {
  color: #7540ee;
}

.company-hero-subtitle {
  max-width: 640px;
  margin: 0 auto 28px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #586174;
}

.company-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}

.hero-stats-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7540ee 0%, #642eff 100%);
  color: #fff;
  overflow: hidden;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-value {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  margin-top: 6px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.hero-stat-value-sm {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Credibility strip */
.credibility-strip {
  padding: 56px 24px;
  background: #fff;
}

.credibility-strip-label {
  margin: 0 0 32px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #818a9c;
}

.credibility-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credibility-logo {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #c2c8d4;
  user-select: none;
}

.credibility-logo-oracle {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credibility-logo-amazon {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.credibility-logo-zillow {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.credibility-logo-earnin {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.credibility-logo-dxc {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-section-compact {
  padding: 56px 24px;
}

.credibility-strip + .company-section {
  padding-top: 56px;
}

.company-section {
  padding: 80px 24px;
}

.company-section-alt {
  background: #faf8ff;
}

.company-container {
  max-width: 1100px;
  margin: 0 auto;
}

.company-section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.company-section-label {
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7540ee;
}

.company-section-title {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #080808;
}

.company-section-desc {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #586174;
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  border-color: rgba(117, 64, 238, 0.25);
  box-shadow: 0 16px 48px rgba(117, 64, 238, 0.12);
  transform: translateY(-4px);
}

.product-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.product-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  border-bottom: 1px solid rgba(117, 64, 238, 0.08);
}

.product-card-payments .product-card-visual {
  background: linear-gradient(160deg, #f0ebff 0%, #faf8ff 55%, #fff 100%);
}

.product-card-condos .product-card-visual {
  background: linear-gradient(160deg, #ebe4ff 0%, #f7f3ff 55%, #fff 100%);
}

.product-card-art {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 32px 32px;
}

.product-card-icon svg {
  width: 28px;
  height: 28px;
}

.product-card-title {
  margin: 0 0 8px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #080808;
}

.product-card-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #7540ee;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card-desc {
  flex: 1;
  margin: 0 0 24px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

.product-card-features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.product-card-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #586174;
}

.product-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7540ee;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.product-card-link:hover {
  color: #642eff;
}

.product-card-link svg {
  width: 16px;
  height: 16px;
}

/* Custom software CTA */
.custom-software-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7540ee 0%, #642eff 100%);
  color: #fff;
}

.custom-software-content {
  flex: 1;
  min-width: 280px;
}

.custom-software-title {
  margin: 0 0 12px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.custom-software-desc {
  margin: 0 0 20px;
  max-width: 520px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.92;
}

.custom-software-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.custom-software-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-software-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

.custom-software-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  opacity: 0.85;
}

.custom-software-actions {
  flex-shrink: 0;
}

.button-white {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: #fff;
  color: #7540ee;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button-white:hover {
  background: #f5f0ff;
  transform: translateY(-1px);
}

.button-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #7540ee;
  border-radius: 8px;
  background: transparent;
  color: #7540ee;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.button-outline:hover {
  background: #7540ee;
  color: #fff;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-outline-light:hover {
  background: #fff;
  color: #7540ee;
  border-color: #fff;
}

/* Value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 32px;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(117, 64, 238, 0.08);
}

.value-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.value-card-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #080808;
}

.value-card p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1033 0%, #2d1b69 50%, #7540ee 100%);
  color: #fff;
}

.cta-band-content {
  flex: 1;
  min-width: 0;
  max-width: 580px;
}

.cta-band-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.cta-band-content h2 {
  margin: 0 0 8px;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.cta-band-content p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  opacity: 0.85;
}

.product-hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

/* Pain points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pain-card {
  padding: 28px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4ebf3;
}

.pain-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.pain-card-icon svg {
  width: 22px;
  height: 22px;
}

.pain-card h3 {
  margin: 0 0 10px;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #080808;
}

.pain-card p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

/* Trust / infrastructure strip */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-card {
  padding: 24px;
  border: 1px solid #e4ebf3;
  border-radius: 14px;
  background: #fff;
}

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.trust-card-icon svg {
  width: 20px;
  height: 20px;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #080808;
}

.trust-card p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #586174;
}

/* Feature highlight */
.feature-block-highlight {
  border-color: rgba(117, 64, 238, 0.3);
  box-shadow: 0 8px 32px rgba(117, 64, 238, 0.08);
}

.feature-block {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-block:hover {
  box-shadow: 0 8px 32px rgba(117, 64, 238, 0.08);
  transform: translateY(-2px);
}

/* Audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  padding: 0;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.audience-card-body {
  padding: 28px 32px 32px;
}

.audience-card-chrome {
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.05) 0%, rgba(189, 129, 255, 0.1) 100%);
  border-bottom: 1px solid rgba(117, 64, 238, 0.08);
}

.audience-chrome-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.audience-chrome-sidebar {
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: #7540ee;
  flex-shrink: 0;
}

.audience-chrome-title {
  flex: 1;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #080808;
}

.audience-chrome-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7540ee, #bd81ff);
  flex-shrink: 0;
}

.audience-chrome-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.12);
  font-family: Poppins, sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: #7540ee;
}

.audience-chrome-status {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  font-family: Poppins, sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: #16a34a;
}

.audience-chrome-metrics {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.audience-chrome-metric {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: rgba(117, 64, 238, 0.1);
}

.audience-chrome-metric-accent {
  background: rgba(117, 64, 238, 0.2);
}

.audience-chrome-progress {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7540ee 0%, #7540ee 75%, rgba(117, 64, 238, 0.15) 75%);
}

.audience-chrome-balance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(117, 64, 238, 0.08);
}

.audience-chrome-balance-label {
  display: block;
  width: 60%;
  height: 6px;
  border-radius: 3px;
  background: rgba(117, 64, 238, 0.15);
}

.audience-chrome-balance-value {
  display: block;
  width: 45%;
  height: 10px;
  border-radius: 4px;
  background: rgba(117, 64, 238, 0.35);
}

.audience-chrome-btn {
  display: block;
  width: 52px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7540ee, #bd81ff);
}

.audience-chrome-row {
  display: flex;
  gap: 8px;
}

.audience-chrome-row-item {
  flex: 1;
  height: 14px;
  border-radius: 4px;
  background: rgba(117, 64, 238, 0.08);
  border: 1px solid rgba(117, 64, 238, 0.06);
}

.audience-chrome-guard-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(117, 64, 238, 0.1);
}

.audience-chrome-qr {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #7540ee 50%, transparent 50%) 0 0 / 8px 8px,
    linear-gradient(90deg, #7540ee 50%, transparent 50%) 4px 4px / 8px 8px,
    rgba(117, 64, 238, 0.12);
  flex-shrink: 0;
}

.audience-chrome-guard-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audience-chrome-guard-name {
  display: block;
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background: rgba(117, 64, 238, 0.25);
}

.audience-chrome-guard-meta {
  display: block;
  width: 50%;
  height: 6px;
  border-radius: 3px;
  background: rgba(117, 64, 238, 0.12);
}

.audience-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.audience-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.audience-card h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #080808;
}

.audience-card-body > p {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

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

.audience-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #586174;
}

.audience-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7540ee;
}

/* Steps / process flow */
.process-flow {
  max-width: 100%;
}

.process-flow-track {
  display: none;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 0 8px;
}

.process-flow-node {
  display: flex;
  justify-content: center;
}

.process-flow-line {
  height: 2px;
  min-width: 16px;
  background: linear-gradient(90deg, rgba(117, 64, 238, 0.15), rgba(117, 64, 238, 0.35), rgba(117, 64, 238, 0.15));
}

.process-flow-cards {
  margin-top: 0;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

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

.step-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
}

.step-number-mobile {
  display: inline-flex;
}

.process-flow-track .step-number {
  margin-bottom: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #7540ee;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #080808;
}

.step-card p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e4ebf3;
}

.faq-item summary {
  padding: 20px 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #080808;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 20px;
  padding-right: 44px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #586174;
}

/* Condo mockup illustration */
.condo-mockup {
  width: 100%;
  max-width: 360px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(117, 64, 238, 0.15);
  border: 1px solid rgba(117, 64, 238, 0.12);
}

.condo-mockup-bar {
  height: 10px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: linear-gradient(90deg, #7540ee, #bd81ff);
}

.condo-mockup-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.condo-mockup-row:last-child {
  margin-bottom: 0;
}

.condo-mockup-card {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: rgba(117, 64, 238, 0.08);
}

.condo-mockup-card-accent {
  background: rgba(117, 64, 238, 0.2);
}

.condo-mockup-card-wide {
  height: 64px;
}

/* Hero benefits banner (Condominios) */
.hero-benefits-banner .hero-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-benefits-banner .hero-benefit:last-child {
  border-right: none;
}

.hero-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-benefit-icon svg {
  width: 22px;
  height: 22px;
}

.hero-benefit-label {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  letter-spacing: -0.01em;
}

/* Condo dashboard hero mockup */
.condo-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.06) 0%, rgba(189, 129, 255, 0.12) 100%);
}

.condo-dashboard-frame {
  display: flex;
  width: 100%;
  max-width: 400px;
  min-height: 280px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(117, 64, 238, 0.18);
  border: 1px solid rgba(117, 64, 238, 0.12);
  overflow: hidden;
}

.condo-dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 44px;
  padding: 16px 0;
  background: rgba(117, 64, 238, 0.06);
  border-right: 1px solid rgba(117, 64, 238, 0.08);
}

.condo-dashboard-logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7540ee, #bd81ff);
}

.condo-dashboard-nav-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(117, 64, 238, 0.2);
}

.condo-dashboard-nav-item.is-active {
  width: 8px;
  height: 24px;
  border-radius: 4px;
  background: #7540ee;
}

.condo-dashboard-main {
  flex: 1;
  padding: 16px 18px;
  text-align: left;
}

.condo-dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.condo-dashboard-title {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #080808;
}

.condo-dashboard-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.condo-dashboard-bell {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(117, 64, 238, 0.15);
}

.condo-dashboard-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7540ee, #bd81ff);
  font-family: Poppins, sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
}

.condo-dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.condo-dashboard-metric {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(117, 64, 238, 0.06);
}

.condo-dashboard-metric-label {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #586174;
  margin-bottom: 4px;
}

.condo-dashboard-metric-value {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #7540ee;
  letter-spacing: -0.02em;
}

.condo-dashboard-progress {
  margin-bottom: 14px;
}

.condo-dashboard-progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #586174;
}

.condo-dashboard-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.12);
  overflow: hidden;
}

.condo-dashboard-progress-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7540ee, #bd81ff);
}

.condo-dashboard-panel {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(117, 64, 238, 0.1);
  background: #faf9fc;
}

.condo-dashboard-panel-title {
  display: block;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #080808;
}

.condo-dashboard-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  color: #080808;
  border-bottom: 1px solid rgba(117, 64, 238, 0.06);
}

.condo-dashboard-payment-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.condo-dashboard-payment-row.is-muted {
  color: #586174;
}

.condo-dashboard-payment-status {
  font-weight: 600;
  color: #16a34a;
}

.condo-dashboard-payment-status.pending {
  color: #d97706;
}

/* Feature showcases */
.feature-showcases {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-showcase-reverse .feature-showcase-content {
  order: 2;
}

.feature-showcase-reverse .feature-showcase-visual {
  order: 1;
}

.feature-showcase-content {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 12px;
  align-items: center;
}

.feature-showcase-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
  border-radius: 12px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.feature-showcase-icon svg {
  width: 24px;
  height: 24px;
}

.feature-showcase-content h3 {
  margin: 0;
  grid-column: 2;
  grid-row: 1;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #080808;
}

.feature-showcase-content p {
  margin: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #586174;
}

.feature-showcase-list {
  margin: 0;
  padding: 0;
  list-style: none;
  grid-column: 1 / -1;
  grid-row: 3;
}

.feature-showcase-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #586174;
}

.feature-showcase-list li:last-child {
  margin-bottom: 0;
}

.feature-showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7540ee;
}

.feature-showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.04) 0%, rgba(189, 129, 255, 0.1) 100%);
}

/* UI mockups (shared) */
.ui-mockup {
  width: 100%;
  max-width: 340px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(117, 64, 238, 0.14);
  border: 1px solid rgba(117, 64, 238, 0.1);
  text-align: left;
}

.ui-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ui-mockup-title {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #080808;
}

.ui-mockup-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.1);
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #7540ee;
}

.ui-mockup-badge.is-success {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.ui-mockup-balance {
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.06);
}

.ui-mockup-balance-label {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  color: #586174;
}

.ui-mockup-balance-value {
  display: block;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #7540ee;
  letter-spacing: -0.02em;
}

.ui-mockup-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7540ee, #bd81ff);
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.ui-mockup-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  color: #080808;
  border-bottom: 1px solid rgba(117, 64, 238, 0.08);
}

.ui-mockup-list-item:last-child {
  border-bottom: none;
}

.ui-mockup-list-item.is-paid span:last-child {
  font-weight: 600;
  color: #16a34a;
}

.ui-mockup-list-item.is-muted {
  color: #586174;
}

.ui-mockup-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #080808;
}

.ui-mockup-calendar-nav span:first-child,
.ui-mockup-calendar-nav span:last-child {
  color: #7540ee;
  font-size: 16px;
}

.ui-mockup-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.ui-mockup-cal-head {
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #586174;
  text-align: center;
  padding: 4px 0;
}

.ui-mockup-cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 6px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #080808;
}

.ui-mockup-cal-day.is-muted {
  color: #a0aec0;
}

.ui-mockup-cal-day.is-selected {
  background: linear-gradient(135deg, #7540ee, #bd81ff);
  color: #fff;
  font-weight: 700;
}

.ui-mockup-reservation {
  padding: 12px;
  border-radius: 8px;
  background: rgba(117, 64, 238, 0.06);
  border-left: 3px solid #7540ee;
}

.ui-mockup-reservation-time {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #080808;
}

.ui-mockup-reservation-unit {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  color: #586174;
}

.ui-mockup-visitor-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.04);
  border: 1px solid rgba(117, 64, 238, 0.1);
}

.ui-mockup-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(117, 64, 238, 0.15);
  flex-shrink: 0;
}

.ui-mockup-qr span {
  border-radius: 1px;
  background: rgba(117, 64, 238, 0.15);
}

.ui-mockup-qr span:nth-child(3n),
.ui-mockup-qr span:nth-child(5n),
.ui-mockup-qr span:nth-child(7n) {
  background: #7540ee;
}

.ui-mockup-visitor-name {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #080808;
}

.ui-mockup-visitor-meta {
  display: block;
  margin-bottom: 6px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  color: #586174;
}

.ui-mockup-visitor-code {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(117, 64, 238, 0.1);
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #7540ee;
}

/* Process flow — 3 steps */
.process-flow-track-three {
  grid-template-columns: auto 1fr auto 1fr auto;
  max-width: 680px;
}

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

/* Profile section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.profile-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.profile-header {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #f0f0f3;
}

.profile-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7540ee 0%, #bd81ff 100%);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 700;
  box-shadow: 0 0 0 4px #f0f0f3;
}

.profile-info {
  flex: 1;
  padding-bottom: 24px;
  text-align: center;
}

.profile-name {
  margin: 0 0 4px;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #080808;
}

.profile-title {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #7540ee;
}

.profile-bio {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #586174;
}

.profile-section {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 48px;
  border-top: 1px solid #f0f0f3;
}

.profile-section-label {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #818a9c;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #586174;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.profile-link:hover {
  background: #faf8ff;
  border-color: #7540ee;
  color: #7540ee;
}

.profile-link svg {
  width: 18px;
  height: 18px;
}

/* Product page hero */
.product-hero {
  padding: 60px 24px 64px;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 55%);
}

.product-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.product-hero-inner > .hero-stats-banner {
  margin-top: 44px;
  margin-bottom: 0;
}

.product-hero + .company-section {
  padding-top: 96px;
}

.product-breadcrumb {
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #818a9c;
}

.product-breadcrumb a {
  color: #7540ee;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}

.product-hero-content h1 {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #080808;
}

.product-hero-content h1 span {
  color: #7540ee;
}

.product-hero-content p {
  margin: 0 0 28px;
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #586174;
}

.product-hero-image {
  text-align: center;
}

.product-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Feature blocks for product pages */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-block {
  padding: 32px;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
}

.feature-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
}

.feature-block-icon svg {
  width: 24px;
  height: 24px;
}

.feature-block h3 {
  margin: 0 0 12px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #080808;
}

.feature-block p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #586174;
}

.feature-block ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.feature-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #586174;
}

.feature-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7540ee;
}

/* Condo placeholder illustration */
.condo-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.06) 0%, rgba(189, 129, 255, 0.12) 100%);
  color: #7540ee;
}

.condo-illustration svg {
  width: 120px;
  height: 120px;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .profile-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .profile-info {
    text-align: left;
  }

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

@media (min-width: 992px) {
  .process-flow-track {
    display: grid;
  }

  .step-number-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .steps-row-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row-three {
    grid-template-columns: 1fr;
  }

  .process-flow-track {
    display: none;
  }
}

@media (max-width: 767px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats-banner {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 22px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-stat-label {
    margin-top: 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-stat-value {
    font-size: 28px;
  }

  .hero-stat-value-sm {
    font-size: 14px;
    line-height: 1.35;
    max-width: 100%;
  }

  .hero-benefits-banner .hero-benefit {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-benefits-banner .hero-benefit:last-child {
    border-bottom: none;
  }

  .hero-benefit-label {
    text-align: left;
  }

  .feature-showcase,
  .feature-showcase-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-showcase-reverse .feature-showcase-content,
  .feature-showcase-reverse .feature-showcase-visual {
    order: unset;
  }

  .feature-showcases {
    gap: 48px;
  }

  .condo-dashboard {
    min-height: auto;
    padding: 24px 16px;
  }

  .condo-dashboard-frame {
    max-width: 100%;
  }

  .payments-flow {
    min-height: auto;
    padding: 24px 16px;
  }

  .feature-showcase-content h3 {
    font-size: 20px;
  }

  .feature-showcase-icon {
    width: 44px;
    height: 44px;
  }

  .credibility-strip {
    padding: 40px 20px;
  }

  .credibility-logos {
    gap: 24px 36px;
  }

  .steps-row-four {
    grid-template-columns: 1fr;
  }

  .custom-software-block {
    padding: 32px 24px;
    text-align: center;
  }

  .custom-software-actions {
    width: 100%;
  }

  .cta-band {
    flex-wrap: wrap;
    padding: 32px 24px;
    text-align: left;
  }

  .cta-band-content {
    max-width: none;
  }

  .cta-band-actions {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0;
  }

  .profile-card {
    padding: 28px 24px;
  }
}

/* Payments page */
.payments-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.06) 0%, rgba(189, 129, 255, 0.12) 100%);
}

.payments-flow-frame {
  width: 100%;
  max-width: 280px;
  padding: 24px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(117, 64, 238, 0.18);
  border: 1px solid rgba(117, 64, 238, 0.12);
  text-align: center;
}

.payments-flow-step {
  padding: 14px 12px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.05);
  border: 1px solid rgba(117, 64, 238, 0.08);
}

.payments-flow-label {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #586174;
}

.payments-flow-amount {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #7540ee;
  letter-spacing: -0.02em;
}

.payments-flow-merchant {
  display: block;
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  color: #586174;
}

.payments-flow-connector {
  width: 2px;
  height: 16px;
  margin: 6px auto;
  background: linear-gradient(180deg, rgba(117, 64, 238, 0.3), rgba(117, 64, 238, 0.1));
}

.payments-flow-step-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.payments-flow-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 56px;
  height: 56px;
  padding: 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(117, 64, 238, 0.15);
}

.payments-flow-qr span {
  border-radius: 1px;
  background: rgba(117, 64, 238, 0.15);
}

.payments-flow-qr span:nth-child(3n),
.payments-flow-qr span:nth-child(5n),
.payments-flow-qr span:nth-child(7n) {
  background: #7540ee;
}

.payments-flow-or {
  font-family: Poppins, sans-serif;
  font-size: 9px;
  color: #a0aec0;
}

.payments-flow-phone {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.1);
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #7540ee;
}

.payments-flow-step-success {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.15);
}

.payments-flow-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: #16a34a;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.payments-flow-success {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #080808;
}

.payments-flow-ref {
  display: block;
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  color: #586174;
}

/* Payments feature mockups */
.ui-mockup-qr-pay-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(117, 64, 238, 0.04);
}

.ui-mockup-qr-large {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(117, 64, 238, 0.12);
}

.ui-mockup-qr-large span {
  border-radius: 1px;
  background: rgba(117, 64, 238, 0.12);
}

.ui-mockup-qr-large span:nth-child(3n),
.ui-mockup-qr-large span:nth-child(7n),
.ui-mockup-qr-large span:nth-child(11n) {
  background: #7540ee;
}

.ui-mockup-qr-pay-info {
  text-align: center;
}

.ui-mockup-qr-pay-amount {
  display: block;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #7540ee;
}

.ui-mockup-qr-pay-label {
  display: block;
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  color: #586174;
}

.ui-mockup-qr-pay-ref {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.1);
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #7540ee;
}

.ui-mockup-push-phone {
  width: 200px;
  padding: 12px 10px 20px;
  border-radius: 24px;
  background: #080808;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.ui-mockup-push-notch {
  width: 48px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.ui-mockup-push-notification {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  text-align: left;
}

.ui-mockup-push-app {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #586174;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ui-mockup-push-title {
  display: block;
  margin-bottom: 4px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #080808;
}

.ui-mockup-push-body {
  display: block;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  color: #586174;
}

.ui-mockup-push-actions {
  display: flex;
  gap: 8px;
}

.ui-mockup-push-decline,
.ui-mockup-push-accept {
  flex: 1;
  padding: 6px;
  border-radius: 8px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.ui-mockup-push-decline {
  background: rgba(117, 64, 238, 0.08);
  color: #586174;
}

.ui-mockup-push-accept {
  background: linear-gradient(135deg, #7540ee, #bd81ff);
  color: #fff;
}

.ui-mockup-reconcile-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(117, 64, 238, 0.1);
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #080808;
}

.ui-mockup-reconcile-total span:last-child {
  color: #7540ee;
}

/* Developer integration section */
.dev-integration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-width: 0;
}

.dev-integration-content {
  min-width: 0;
}

.dev-integration-content .company-section-label {
  margin-bottom: 12px;
}

.dev-integration-content .company-section-title {
  margin-bottom: 12px;
  text-align: left;
}

.dev-integration-content .company-section-desc {
  margin-bottom: 20px;
  text-align: left;
}

.dev-integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.dev-integration-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(117, 64, 238, 0.08);
  border: 1px solid rgba(117, 64, 238, 0.12);
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #7540ee;
}

.dev-integration-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  .dev-integration {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dev-integration-visual {
    overflow: hidden;
  }

  .api-snippet-code {
    font-size: 11px;
    padding: 12px 14px;
  }

  .api-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px 12px;
  }

  .api-flow-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .api-flow-node {
    font-size: 11px;
    padding: 8px 12px;
    text-align: center;
  }
}

.api-snippet {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  background: #1a1a2e;
  box-shadow: 0 20px 48px rgba(117, 64, 238, 0.15);
  border: 1px solid rgba(117, 64, 238, 0.15);
}

.api-snippet-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.api-snippet-bar span:first-child,
.api-snippet-bar span:nth-child(2),
.api-snippet-bar span:nth-child(3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.api-snippet-bar span:first-child { background: #ff5f57; }
.api-snippet-bar span:nth-child(2) { background: #febc2e; }
.api-snippet-bar span:nth-child(3) { background: #28c840; }

.api-snippet-filename {
  margin-left: 8px;
  font-family: "SF Mono", Monaco, Consolas, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.api-snippet-code {
  margin: 0;
  padding: 16px 18px;
  font-family: "SF Mono", Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  overflow-x: auto;
}

.api-snippet-code .api-k { color: #bd81ff; }
.api-snippet-code .api-s { color: #86efac; }
.api-snippet-code .api-n { color: #fcd34d; }

.api-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(117, 64, 238, 0.04) 0%, rgba(189, 129, 255, 0.08) 100%);
  border: 1px solid rgba(117, 64, 238, 0.08);
}

.api-flow-node {
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(117, 64, 238, 0.12);
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #586174;
}

.api-flow-node-accent {
  background: rgba(117, 64, 238, 0.1);
  border-color: rgba(117, 64, 238, 0.2);
  color: #7540ee;
}

.api-flow-node-success {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.2);
  color: #16a34a;
}

.api-flow-arrow {
  font-size: 14px;
  color: rgba(117, 64, 238, 0.4);
}

.faq-links {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.faq-links a {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.faq-links a:hover {
  text-decoration: underline;
}

.faq-item ul.faq-links {
  padding-right: 44px;
}

.faq-follow-up {
  margin: 16px 0 0;
  padding-right: 44px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #586174;
}

.faq-follow-up a {
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.faq-follow-up a:hover {
  text-decoration: underline;
}

.faq-more-link {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #586174;
}

.faq-more-link a {
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.faq-more-link a:hover {
  text-decoration: underline;
}

/* Activar CoDi page */
.codi-page-hero {
  padding: 48px 24px 0;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
}

.codi-page-hero .company-section-header {
  margin-bottom: 0;
}

.codi-page-hero .product-breadcrumb {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}

.codi-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.codi-video-card {
  padding: 20px;
  border: 1px solid #e4ebf3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.codi-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #080808;
}

.codi-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.codi-video-card h2 {
  margin: 0 0 8px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #080808;
}

.codi-video-link {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.codi-video-link:hover {
  text-decoration: underline;
}

.codi-page-back {
  margin: 40px 0 0;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 15px;
}

.codi-page-back a {
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.codi-page-back a:hover {
  text-decoration: underline;
}

/* Legal / privacy policy page */
.footer-link-current {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  opacity: 0.65;
  cursor: default;
}

.legal-page {
  box-sizing: border-box;
  width: 100%;
  padding: 80px 5% 120px;
  background: linear-gradient(180deg, #faf8ff 0%, #fff 40%);
}

.legal-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.legal-breadcrumb {
  margin-bottom: 28px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  color: #818a9c;
}

.legal-breadcrumb a {
  color: #7540ee;
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  text-decoration: underline;
}

.legal-header {
  margin-bottom: 56px;
}

.legal-title {
  margin: 0 0 16px;
  font-family: Poppins, sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #080808;
}

.legal-updated {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #818a9c;
}

.legal-card {
  box-sizing: border-box;
  width: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 80px);
  border: 1px solid #e4ebf3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(117, 64, 238, 0.06);
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #f0f0f3;
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(117, 64, 238, 0.12);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #7540ee;
}

.legal-section p {
  margin: 0 0 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #586174;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-subheading {
  margin: 28px 0 14px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #080808;
}

.legal-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #586174;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7540ee;
}

.legal-numbered-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: legal-counter;
}

.legal-numbered-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #586174;
  counter-increment: legal-counter;
}

.legal-numbered-list li::before {
  content: counter(legal-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(117, 64, 238, 0.1);
  color: #7540ee;
  font-size: 12px;
  font-weight: 700;
}

.legal-numbered-list li strong {
  color: #080808;
}

.legal-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: #faf8ff;
  border: 1px solid rgba(117, 64, 238, 0.12);
}

.legal-contact a {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #7540ee;
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .legal-page {
    padding: 48px 6% 80px;
  }

  .legal-container {
    padding: 0;
  }

  .legal-header {
    margin-bottom: 40px;
  }

  .legal-card {
    padding: 32px 24px;
  }

  .legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
}
