:root {
  --bg: #06111f;
  --bg-soft: #0b1830;
  --panel: rgba(9, 18, 35, 0.82);
  --panel-border: rgba(120, 160, 255, 0.18);
  --text: #f6f8fc;
  --muted: #b2bdd2;
  --blue: #1f6bff;
  --blue-strong: #1154dd;
  --blue-glow: rgba(31, 107, 255, 0.25);
  --white-glow: rgba(255, 255, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #020814;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.landing-v2-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-v2-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  opacity: 0.26;
}

/* page-background eliminado — hero ahora es split layout */
.page-background {
  display: none;
}

/* ── References Section ── */
.references-section {
  padding: 64px 52px 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid #e8ecf2;
  border-bottom: 1px solid #e8ecf2;
  overflow: hidden;
}

.trust-conversion-shell {
  max-width: 1420px;
  margin: 0 auto;
}

.references-header {
  max-width: 1060px;
  margin: 0 0 30px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.references-header h2 {
  margin: 0;
  color: #0d1b2e;
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  white-space: nowrap;
}

.text-brand {
  color: #2563eb;
}

.trust-conversion-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.references-panel,
.benefits-panel {
  min-width: 0;
  border: 1px solid rgba(31, 107, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(15, 35, 75, 0.07);
}

.references-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 20px;
}

.references-panel-header,
.references-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.references-panel-header span {
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.references-panel-header strong {
  color: #66748b;
  font-size: 12px;
  font-weight: 800;
}

.references-carousel {
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.references-grid {
  --reference-index: 0;
  display: flex;
  height: 100%;
  transform: translateX(calc(var(--reference-index) * -100%));
  transition: transform 360ms ease;
}

.references-grid::-webkit-scrollbar {
  display: none;
}

.references-loading {
  flex: 0 0 100%;
  color: #64748b;
  font-size: 14px;
  text-align: left;
  padding: 18px 0;
  grid-column: 1 / -1;
}

/* Each column = one reference */
.reference-col {
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 0 0 100%;
  min-height: 280px;
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #ffffff;
}

.reference-col:first-child {
  padding-left: 22px;
}

.reference-col:last-child {
  border-right: 1px solid rgba(226, 232, 240, 0.9);
  padding-right: 22px;
}

/* Row 1: logo */
.ref-logo-cell {
  display: flex;
  align-items: center;
  min-height: 42px;
}

.ref-logo-cell img {
  max-height: 32px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.85;
}

.ref-logo-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Row 2: quote */
.ref-quote-cell {
  padding: 22px 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ref-quote-mark {
  color: #2563eb;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.ref-quote-cell p {
  margin: 0;
  color: #1e293b;
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

/* Row 3: área + empresa */
.ref-footer-cell {
  padding: 16px 0 0;
  border-top: 1px solid #e8ecf2;
}

.ref-footer-cell span {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.ref-footer-cell strong {
  display: block;
  color: #0d1b2e;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.references-controls {
  justify-content: center;
}

.references-nav,
.references-dot {
  border: 0;
  cursor: pointer;
}

.references-nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #1f6bff;
  background: rgba(31, 107, 255, 0.08);
  font-size: 17px;
  font-weight: 800;
}

.references-nav:hover {
  color: #ffffff;
  background: #1f6bff;
}

.references-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.references-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(31, 107, 255, 0.22);
}

.references-dot.active {
  width: 22px;
  background: #1f6bff;
}




/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100vh;
  width: 100%;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 122px 56px, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.72) 11%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(108deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.64) 22%, rgba(255, 255, 255, 0.44) 43%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0) 80%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.64) 74%, rgba(0, 0, 0, 0.18) 84%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.64) 74%, rgba(0, 0, 0, 0.18) 84%, transparent 92%);
  pointer-events: none;
  z-index: 0;
}

/* Only the hero background image is the absolutely-positioned full-bleed picture —
   scope by direct child so nested <picture> (e.g. the brand logo) isn't caught. */
.hero-section > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-top-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  width: 100%;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}


.hero-top-bar .brand {
  display: inline-flex;
  align-items: center;
}

.hero-top-bar .brand img {
  width: 150px;
  height: auto;
  display: block;
}

.hero-auth {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-auth-login {
  color: #0a1428;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.hero-auth-login:hover {
  color: #1a65ff;
}

.hero-auth-signup {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 10px;
  background: #1a65ff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(26, 101, 255, 0.7);
  transition: background 0.18s, transform 0.12s;
}

.hero-auth-signup:hover {
  background: #1050d4;
  transform: translateY(-1px);
}

.hero-copy-text {
  --hero-copy-left: clamp(40px, 9vw, 150px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  flex: 1;
  width: 100%;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(28px, 5vw, 72px) 64px var(--hero-copy-left);
}

.hero-copy-left {
  display: flex;
  flex-direction: column;
  max-width: 560px;
}

.hero-copy-right {
  display: flex;
  justify-content: flex-end;
}

.hero-copy-text::before {
  content: '';
  position: absolute;
  left: calc(var(--hero-copy-left) - 48px);
  top: 50%;
  width: min(640px, calc(100vw - 80px));
  height: min(460px, 58vh);
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0) 100%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-copy-text > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin: 0 0 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(26, 101, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1a65ff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a65ff;
  flex: 0 0 auto;
}

.hero-title-bar {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0a1428;
  max-width: 620px;
}

.hero-title-bar span,
.hero-accent {
  color: #1a65ff;
}

.hero-description {
  max-width: 470px;
  margin: 0 0 32px;
  color: #475569;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: 12px;
  background: #1a65ff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(26, 101, 255, 0.7);
  transition: background 0.18s, transform 0.12s, box-shadow 0.2s;
}

.hero-cta-primary:hover {
  background: #1050d4;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -8px rgba(26, 101, 255, 0.8);
}

.hero-cta-arr {
  display: inline-block;
  transition: transform 0.25s;
}

.hero-cta-primary:hover .hero-cta-arr {
  transform: translateX(3px);
}

.hero-cta-glass {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  color: #0a1428;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1.5px rgba(10, 20, 40, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
}

.hero-cta-glass:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1.5px rgba(10, 20, 40, 0.62);
  transform: translateY(-1px);
}

/* ── Hero glass live-feed card ── */
.hero-feedcard {
  width: 100%;
  max-width: 340px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px) saturate(1.15);
  -webkit-backdrop-filter: blur(5px) saturate(1.15);
  box-shadow: 0 18px 44px -26px rgba(11, 18, 32, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.hero-feedcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-feedcard-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0a1428;
}

.hero-livedot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #15a66a;
}

.hero-livedot-dotwrap {
  position: relative;
  width: 9px;
  height: 9px;
}

.hero-livedot-core,
.hero-livedot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #15a66a;
}

.hero-livedot-pulse {
  animation: hero-pulsering 1.8s ease-out infinite;
}

@keyframes hero-pulsering {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* Demo badge — neutral (this is an illustrative example, not a live feed) */
.hero-livedot--demo { color: #64748b; }
.hero-livedot--demo .hero-livedot-core { background: #94a3b8; }

.hero-feedcard-sub {
  margin-top: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16, 33, 64, 0.12);
  font-size: 12.5px;
  color: #475569;
}

.hero-feedcard-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.hero-feedcard-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #1a65ff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}

.hero-feedcard-all:hover .hero-cta-arr {
  transform: translateX(3px);
}

.hero-fcard {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.25s;
}

.hero-fcard:hover {
  box-shadow: inset 0 0 0 1px rgba(45, 107, 255, 0.3), 0 12px 24px -12px rgba(11, 18, 32, 0.3);
}

.hero-fcard--fresh {
  box-shadow: inset 0 0 0 1.5px #1a65ff, 0 12px 28px -10px rgba(45, 107, 255, 0.5);
  animation: hero-cardin 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes hero-cardin {
  0% { opacity: 0; transform: translateY(-14px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}

.hero-fcard-tile {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  padding: 10px;
  border-radius: 11px;
}

.hero-fcard-tile svg {
  width: 100%;
  height: 100%;
}

.hero-fcard-body {
  flex: 1;
  min-width: 0;
}

.hero-fcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.hero-fcard-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0a1428;
}

.hero-fcard-match {
  flex: none;
  text-align: center;
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 1.05;
}

.hero-fcard-match-val {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.hero-fcard-match-lbl {
  display: block;
  margin-top: 1px;
  font-size: 8px;
  font-weight: 600;
  opacity: 0.7;
}

.hero-fcard-match--hi { background: #e7f7ee; color: #0e8c58; }
.hero-fcard-match--mid { background: #eaf1ff; color: #1f55cc; }
.hero-fcard-match--lo { background: #f2f4f8; color: #5a6b82; }

.hero-fcard-buyer {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
}

.hero-fcard-verif {
  width: 13px;
  height: 13px;
  color: #1a65ff;
}

.hero-fcard-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 11.5px;
  color: #8593a6;
  white-space: nowrap;
  overflow: hidden;
}

.hero-fcard-meta svg {
  width: 12px;
  height: 12px;
  flex: none;
}

.hero-fcard-meta .sep { opacity: 0.5; }

.hero-fcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
}

.hero-fcard-tag {
  overflow: hidden;
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-fcard-age {
  flex: none;
  font-size: 11px;
  color: #8593a6;
}

.hero-search-card {
  width: min(100%, 690px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 0;
  margin-bottom: 16px;
  padding: 7px;
  border-radius: 16px;
  background: rgba(8, 18, 37, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.search-field {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.search-field-main {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.field-icon {
  width: 18px;
  height: 18px;
  color: #dbe6ff;
  flex: 0 0 auto;
}

.field-icon svg {
  width: 100%;
  height: 100%;
}

.hero-search-card input,
.hero-search-card select {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 14px;
}

.hero-search-card select option {
  color: #0c1426;
}

.hero-search-card input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.hero-search-card select {
  appearance: none;
  cursor: pointer;
}

.search-submit {
  margin-left: 6px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.search-submit:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.search-submit-muted {
  min-height: 44px;
  letter-spacing: -0.01em;
}

.category-block {
  margin-bottom: 22px;
}

.category-block p {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 19, 38, 0.68);
  color: #f3f7ff;
  font-size: 11px;
  font-weight: 500;
}

.pill-icon {
  width: 15px;
  height: 15px;
  color: rgba(232, 240, 255, 0.92);
  flex: 0 0 auto;
}

.pill-icon svg {
  width: 100%;
  height: 100%;
}

.category-pill:hover {
  border-color: rgba(58, 128, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(58, 128, 255, 0.15) inset;
}

.trust-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 620px);
  margin-bottom: 16px;
  padding: 4px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
  width: 34px;
  height: 34px;
  color: #2f79ff;
  flex: 0 0 auto;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.trust-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 560px);
}

.stats-row article {
  padding-right: 14px;
  border-right: 1px solid rgba(10, 20, 40, 0.12);
}

.stats-row article:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  margin-bottom: 6px;
  color: #1a65ff;
  font-size: 16px;
  font-weight: 700;
}

.stats-row span {
  display: block;
  color: #3a4f6e;
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 100%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-network {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  background:
    radial-gradient(circle at 70% 70%, rgba(36, 117, 255, 0.18), transparent 18%),
    radial-gradient(circle at 86% 86%, rgba(36, 117, 255, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(2, 6, 14, 0) 0%, rgba(2, 7, 18, 0.55) 24%, rgba(2, 7, 18, 0.94) 100%);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 54% 100%, 35% 60%);
  opacity: 0.98;
}

.hero-network::before,
.hero-network::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hero-network::before {
  background-image:
    radial-gradient(circle at 72% 58%, rgba(64, 145, 255, 0.95) 0 1px, transparent 1.6px),
    radial-gradient(circle at 80% 70%, rgba(64, 145, 255, 0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle at 90% 48%, rgba(64, 145, 255, 0.75) 0 1px, transparent 1.6px),
    radial-gradient(circle at 60% 72%, rgba(64, 145, 255, 0.75) 0 1px, transparent 1.6px),
    linear-gradient(120deg, transparent 0 46%, rgba(54, 132, 255, 0.35) 46.2%, transparent 46.6%),
    linear-gradient(155deg, transparent 0 58%, rgba(54, 132, 255, 0.28) 58.2%, transparent 58.6%),
    linear-gradient(92deg, transparent 0 68%, rgba(54, 132, 255, 0.2) 68.2%, transparent 68.6%),
    linear-gradient(35deg, transparent 0 78%, rgba(54, 132, 255, 0.24) 78.2%, transparent 78.6%);
  opacity: 0.8;
}

.hero-network::after {
  background-image:
    linear-gradient(90deg, rgba(45, 126, 255, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(45, 126, 255, 0.15) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 38%, #000 100%);
  opacity: 0.22;
}

.hero-network-glow {
  display: none;
  position: absolute;
  right: 21%;
  bottom: 6%;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(35, 116, 255, 0.95) 0%, rgba(35, 116, 255, 0.32) 26%, rgba(35, 116, 255, 0) 70%);
  filter: blur(4px);
}

.hero-network-pin {
  display: none;
  position: absolute;
  right: 25.5%;
  bottom: 11%;
  width: 24px;
  height: 24px;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  background: linear-gradient(180deg, #65a3ff 0%, #1f6bff 100%);
  box-shadow: 0 0 0 8px rgba(31, 107, 255, 0.14), 0 0 22px rgba(31, 107, 255, 0.48);
}

.hero-network-pin::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #eef5ff;
}

.hero-map-chip {
  display: none;
  position: absolute;
  right: 18px;
  bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(8, 18, 37, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.problems-section {
  position: relative;
  z-index: 4;
  padding: 44px 52px 68px;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 107, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f7fbff 100%);
  color: #0c1730;
}

.problems-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 107, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.problems-section > * {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 8px;
  color: #101a33;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: #53627b;
  font-size: 15px;
  font-weight: 500;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.problem-card {
  position: relative;
  min-height: 178px;
  padding: 24px 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.06);
}

.problem-card-negative {
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.problem-card-positive {
  border: 1px solid rgba(39, 174, 96, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 252, 248, 0.86));
}

.problem-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: #ef2f2f;
}

.problem-card-positive .problem-icon {
  color: #27ae60;
}

.problem-icon svg,
.problem-icon .lucide,
.problem-icon .fa-brands {
  width: 100%;
  height: 100%;
  stroke-width: 1.8;
}

.problem-icon .fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
}

.problem-card h3 {
  margin: 0 0 12px;
  color: #13203a;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.problem-card p {
  margin: 0;
  color: #3f4f68;
  font-size: 12.5px;
  line-height: 1.55;
}

.card-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.card-status-negative {
  color: #ef2f2f;
}

.card-status .lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.business-flow-section {
  padding: 42px 52px 58px;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 107, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 48%, #f8fbff 100%);
}

.business-flow-section::before {
  background-image: none;
}

.business-flow-shell {
  width: min(100%, 1320px);
}

.business-flow-title {
  max-width: 980px;
  margin: 0 0 34px;
  color: #070d25;
  font-size: clamp(1.7rem, 2.65vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.business-flow-title span {
  color: #0b6dff;
}

.business-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  padding: 4px 0 36px;
  border-bottom: 1px solid rgba(8, 18, 42, 0.12);
}

.business-step-card {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(31, 107, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(15, 35, 75, 0.06);
}

.business-step-card:not(:last-of-type)::after {
  display: none;
}

.business-step-card:not(:last-of-type)::before {
  content: '→';
  position: absolute;
  z-index: 3;
  top: 38px;
  right: -18px;
  color: #0b6dff;
  font-size: 28px;
  line-height: 1;
}

.business-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: #0b6dff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  border-radius: 999px;
  background: rgba(11, 109, 255, 0.08);
  border: 1px solid rgba(11, 109, 255, 0.14);
}

.business-step-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.business-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2f7ff 0%, #eaf2ff 100%);
}

.business-icon svg,
.business-icon .lucide {
  width: 27px;
  height: 27px;
  stroke-width: 1.8;
}

.business-icon-blue {
  color: #0b6dff;
  background: linear-gradient(180deg, #f1f6ff 0%, #e7f0ff 100%);
}

.business-icon-green {
  color: #08a843;
  background: linear-gradient(180deg, #eefbf2 0%, #e3f6ea 100%);
}

.business-icon-amber {
  color: #f2a900;
  background: linear-gradient(180deg, #fff8e8 0%, #fff1d5 100%);
}

.business-step-body h3,
.business-audience-panel h3,
.business-activity-header h3 {
  margin: 0;
  color: #070d25;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.business-step-body h3 {
  max-width: 300px;
  font-size: 15.5px;
  line-height: 1.28;
}

.business-step-body p {
  max-width: 290px;
  margin: 12px 0 0;
  color: #1d2948;
  font-size: 13px;
  line-height: 1.58;
}

.business-arrow {
  display: none;
}

.business-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  padding: 38px 0 42px;
}

.business-audience-panel,
.business-activity-panel {
  min-width: 0;
}

.business-audience-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  padding: 10px 30px 4px 0;
}

.business-audience-providers,
.business-activity-panel {
  padding-left: 30px;
  border-left: 1px solid rgba(8, 18, 42, 0.12);
}

.business-kicker {
  margin: 20px 0 16px;
  color: #0b6dff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-kicker-green {
  color: #08a843;
}

.business-audience-panel h3 {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.25rem, 1.75vw, 1.6rem);
  line-height: 1.14;
}

.business-audience-panel ul {
  display: grid;
  justify-self: center;
  gap: 14px;
  margin: 32px 0 30px;
  padding: 0;
  color: #172342;
  list-style: none;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
}

.business-audience-panel li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.business-audience-panel li svg,
.business-audience-panel li .lucide {
  width: 18px;
  height: 18px;
  color: #0b6dff;
  stroke-width: 2.2;
}

.business-audience-providers li svg,
.business-audience-providers li .lucide {
  color: #08a843;
}

.business-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: center;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.business-link-blue {
  color: #0b6dff;
}

.business-link-green {
  color: #08a843;
}

.business-activity-panel {
  padding-top: 16px;
}

.business-activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.business-activity-header h3 {
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
}

.business-activity-header a {
  display: inline-flex;
  gap: 8px;
  color: #0b6dff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.business-activity-list {
  display: grid;
  overflow: hidden;
}

.business-activity-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 7px;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(8, 18, 42, 0.12);
}

.business-activity-item:last-child {
  border-bottom: 0;
}

.business-activity-item strong {
  display: block;
  margin-bottom: 7px;
  color: #070d25;
  font-size: 13px;
  font-weight: 800;
}

.business-activity-item p,
.business-activity-item time {
  margin: 0;
  color: #1d2948;
  font-size: 12px;
  line-height: 1.35;
}

.business-activity-item time {
  white-space: nowrap;
}

.activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 8px;
}

.activity-dot-blue { background: #0b6dff; }
.activity-dot-amber { background: #f2a900; }
.activity-dot-green { background: #08a843; }

.section-heading-process {
  margin-top: 18px;
  margin-bottom: -58px;
  z-index: 2;
}

.section-heading-process h2 {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.process-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 360px;
  padding: 84px 56px 34px;
  overflow: hidden;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(37, 128, 255, 0.22), transparent 38%),
    radial-gradient(circle at 22% 82%, rgba(37, 128, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(4, 17, 33, 0.98) 0%, rgba(2, 10, 22, 0.98) 100%);
  box-shadow: 0 30px 80px rgba(4, 17, 33, 0.18);
}

.section-heading-process,
.process-showcase {
  width: min(100%, 1320px);
}

.process-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 128, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 128, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  min-height: 240px;
  padding: 0 34px;
}

.process-step:not(:last-child) {
  border-right: 1px solid rgba(92, 133, 190, 0.22);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  right: -28px;
  width: 56px;
  border-top: 2px dotted rgba(31, 107, 255, 0.72);
}

.process-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.6);
  color: #1f6bff;
  background: rgba(2, 10, 22, 0.64);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(31, 107, 255, 0.14);
}

.step-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.22);
  color: #1f6bff;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 14px 34px rgba(31, 107, 255, 0.08);
}

.step-icon svg,
.step-icon .lucide {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
}

.process-step h3 {
  max-width: 250px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.process-step p {
  max-width: 255px;
  margin: 0;
  color: rgba(226, 235, 248, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.process-visual {
  align-self: end;
}

.process-request-card {
  width: min(100%, 248px);
  padding: 16px;
  border-radius: 7px;
  color: #1a2434;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.process-request-card strong,
.process-opportunity-card strong {
  display: block;
}

.process-request-card dl {
  margin: 12px 0 10px;
}

.process-request-card dl div {
  padding: 8px 0;
  border-bottom: 1px solid rgba(18, 31, 51, 0.12);
}

.process-request-card dt {
  color: #526071;
  font-size: 10px;
}

.process-request-card dd {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 700;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.process-tags span {
  padding: 3px 7px;
  border-radius: 5px;
  color: #ffffff;
  background: #26364a;
  font-size: 9px;
  font-weight: 700;
}

.process-opportunity-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  width: min(100%, 280px);
  margin: 38px auto 0;
  padding: 18px;
  border-radius: 10px;
  color: #1a2434;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.process-avatar,
.process-bell,
.chat-bubble span,
.chat-bubble b {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.process-avatar {
  width: 34px;
  height: 34px;
  color: #111b2c;
  background: #eef3f8;
}

.process-opportunity-card small {
  color: #59687b;
  font-size: 11px;
}

.process-opportunity-card p {
  color: #4b5b70;
  font-size: 11px;
}

.process-opportunity-card button {
  margin-top: 8px;
  padding: 8px 22px;
  border: 0;
  border-radius: 6px;
  background: #f3f6f9;
  color: #374153;
  font-size: 11px;
  font-weight: 700;
}

.process-bell {
  position: absolute;
  top: -28px;
  right: -20px;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: #202b3d;
  border: 3px solid rgba(255, 255, 255, 0.24);
}

.process-chat-card {
  display: grid;
  gap: 12px;
  width: min(100%, 330px);
}

.chat-bubble {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(114, 149, 190, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.chat-bubble-provider {
  position: relative;
  margin-left: 28px;
}

.chat-bubble span {
  width: 30px;
  height: 30px;
  color: #dce8f6;
  background: rgba(255, 255, 255, 0.1);
}

.chat-bubble strong {
  display: flex;
  justify-content: space-between;
  color: rgba(226, 235, 248, 0.72);
  font-size: 11px;
  font-style: normal;
}

.chat-bubble em {
  color: rgba(226, 235, 248, 0.36);
  font-style: normal;
}

.chat-bubble p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.chat-bubble b {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: #1f6bff;
}

/* Wrapper que unifica el mapa de fondo entre ambas secciones */
.map-backdrop {
  position: relative;
  background:
    url('/images/mapavm.png') 15% -49% / auto 70% no-repeat,
    linear-gradient(180deg, #06111f 0%, #071828 50%, #04101e 100%);
  border-top: 1px solid rgba(37, 128, 255, 0.12);
}

/* Fade superior: integra con la sección anterior */
.map-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Fade desde arriba — oscurece el top para unir con hero */
    linear-gradient(180deg, rgba(4, 10, 22, 0.55) 0%, transparent 30%),
    /* Fade desde abajo — desvanece el mapa hacia las cards */
    linear-gradient(0deg, rgba(4, 16, 30, 0.92) 0%, transparent 40%),
    /* Oscurecer laterales para que el contenido sea legible */
    linear-gradient(90deg, rgba(2, 8, 20, 0.7) 0%, transparent 22%, transparent 78%, rgba(2, 8, 20, 0.7) 100%),
    /* Grid neural sutil */
    linear-gradient(rgba(37, 128, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 128, 255, 0.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.map-backdrop > * {
  position: relative;
  z-index: 1;
}

.directory-network-section {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 330px minmax(300px, 0.46fr);
  align-items: center;
  justify-content: space-between;
  gap: min(28vw, 460px);
  min-height: 520px;
  padding: 82px 92px 100px;
  overflow: hidden;
  color: #ffffff;
  background: none;
  border-top: none;
  border-bottom: 0;
}

.directory-network-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 128, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 128, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.65;
  pointer-events: none;
}

.directory-network-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: radial-gradient(ellipse at 54% 18%, rgba(37, 128, 255, 0.14), transparent 50%);
  pointer-events: none;
}

.directory-network-section > * {
  position: relative;
  z-index: 1;
}

.directory-network-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.directory-network-copy p {
  max-width: 270px;
  margin: 0 0 24px;
  color: rgba(226, 235, 248, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.directory-network-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: rgba(3, 10, 22, 0.36);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.directory-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 34px;
  justify-self: end;
  max-width: 360px;
}

.directory-services-grid article {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.directory-services-grid .lucide {
  width: 22px;
  height: 22px;
  color: rgba(225, 235, 248, 0.72);
  stroke-width: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.audience-section {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding: 80px 52px 72px;
  color: #ffffff;
  /* Overlay semitransparente para que el mapa del wrapper sea visible pero el contenido legible */
  background:
    radial-gradient(circle at 18% 8%, rgba(31, 107, 255, 0.14), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(20, 184, 166, 0.06), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(4, 16, 30, 0.55) 35%, rgba(4, 16, 30, 0.88) 65%, #04101e 100%);
  overflow: hidden;
}

/* Neural grid — continuidad visual sin duplicar el mapa */
.audience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(37, 128, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 128, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
  pointer-events: none;
}

/* Partículas y conexiones neurales — glow sutil que continúa la red del mapa */
.audience-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Nodos/partículas: puntos brillantes en posiciones distribuidas */
    radial-gradient(circle 2px at 12% 22%, rgba(109, 168, 255, 0.7), transparent 2px),
    radial-gradient(circle 1.5px at 28% 55%, rgba(109, 168, 255, 0.5), transparent 2px),
    radial-gradient(circle 2px at 47% 18%, rgba(56, 189, 248, 0.65), transparent 2px),
    radial-gradient(circle 1.5px at 63% 72%, rgba(109, 168, 255, 0.55), transparent 2px),
    radial-gradient(circle 2px at 81% 31%, rgba(20, 184, 166, 0.6), transparent 2px),
    radial-gradient(circle 1.5px at 91% 64%, rgba(109, 168, 255, 0.45), transparent 2px),
    radial-gradient(circle 1.5px at 34% 83%, rgba(56, 189, 248, 0.4), transparent 2px),
    radial-gradient(circle 2px at 72% 47%, rgba(20, 184, 166, 0.5), transparent 2px),
    /* Glow halos difusos alrededor de los nodos */
    radial-gradient(ellipse 60px 40px at 12% 22%, rgba(37, 128, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 50px 35px at 47% 18%, rgba(56, 189, 248, 0.09), transparent 70%),
    radial-gradient(ellipse 55px 38px at 81% 31%, rgba(20, 184, 166, 0.08), transparent 70%),
    radial-gradient(ellipse 48px 32px at 63% 72%, rgba(37, 128, 255, 0.08), transparent 70%),
    /* Conexiones neurales: líneas diagonales muy sutiles */
    linear-gradient(118deg, transparent 11.8%, rgba(37,128,255,0.06) 12%, transparent 12.4%),
    linear-gradient(118deg, transparent 44.6%, rgba(37,128,255,0.045) 44.8%, transparent 45.2%),
    linear-gradient(67deg, transparent 28%, rgba(20,184,166,0.04) 28.2%, transparent 28.6%),
    linear-gradient(67deg, transparent 71%, rgba(56,189,248,0.04) 71.2%, transparent 71.6%),
    /* Glow ambiental grande */
    radial-gradient(ellipse 55% 40% at 22% 50%, rgba(37, 128, 255, 0.055), transparent 70%),
    radial-gradient(ellipse 40% 35% at 78% 55%, rgba(20, 184, 166, 0.045), transparent 70%);
  pointer-events: none;
}

.audience-section > * {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 40px;
  min-height: 330px;
  padding: 40px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(226, 235, 248, 0.14);
  background: rgba(8, 20, 38, 0.58);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 68%);
  pointer-events: none;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-card-buyers {
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 107, 255, 0.28), transparent 48%),
    radial-gradient(circle at 88% 100%, rgba(37, 128, 255, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(9, 32, 72, 0.72), rgba(5, 17, 34, 0.66));
}

.audience-card-providers {
  background:
    radial-gradient(circle at 18% 0%, rgba(20, 184, 166, 0.14), transparent 48%),
    radial-gradient(circle at 92% 100%, rgba(31, 107, 255, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(8, 31, 48, 0.74), rgba(5, 17, 34, 0.68));
}

.audience-copy h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.audience-copy p {
  max-width: 330px;
  margin: 0 0 28px;
  color: rgba(235, 242, 252, 0.85);
  font-size: 14px;
  line-height: 1.45;
}

.audience-copy ul {
  display: grid;
  gap: 15px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.audience-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.audience-copy li .lucide {
  width: 15px;
  height: 15px;
  color: #68d8ff;
  stroke-width: 2.4;
}

.audience-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.audience-button-blue {
  background: linear-gradient(180deg, #2b74ff, #1558df);
}

.audience-button-green {
  background: linear-gradient(180deg, #168ea1, #0d5f75);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.16);
}

.audience-panel {
  align-self: center;
  padding: 18px;
  border-radius: 8px;
  color: #142032;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
}

.panel-title {
  margin-bottom: 12px;
  color: #607086;
  font-size: 11px;
  font-weight: 800;
}

.panel-search,
.panel-filter-row span {
  padding: 9px 10px;
  border-radius: 5px;
  color: #8a98aa;
  background: #eef3f8;
  font-size: 10px;
}

.panel-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 12px;
}

.provider-mini-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(20, 32, 50, 0.08);
}

.provider-mini-row b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #dfe7ef;
  color: #40516a;
  font-size: 9px;
}

.provider-mini-row strong,
.opportunity-mini strong {
  display: block;
  color: #192538;
  font-size: 11px;
}

.provider-mini-row small,
.opportunity-mini span {
  color: #607086;
  font-size: 10px;
}

.provider-mini-row em {
  padding: 4px 7px;
  border-radius: 999px;
  color: #0f9460;
  background: rgba(16, 185, 129, 0.12);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.audience-provider-panel {
  color: rgba(235, 242, 252, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.audience-provider-panel .panel-title,
.audience-provider-panel .opportunity-mini strong {
  color: rgba(255, 255, 255, 0.88);
}

.panel-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-stat span {
  color: rgba(235, 242, 252, 0.78);
  font-size: 11px;
}

.panel-stat strong {
  grid-row: span 2;
  font-size: 28px;
}

.panel-stat em {
  color: #68d8ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.opportunity-mini {
  margin-top: 10px;
  padding: 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.audience-provider-panel .opportunity-mini span {
  color: rgba(235, 242, 252, 0.62);
}

.activity-strip {
  display: grid;
  grid-template-columns: 250px repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  align-items: end;
}

.activity-copy h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.activity-copy p {
  margin: 0;
  color: rgba(235, 242, 252, 0.72);
  font-size: 13px;
}

.activity-strip article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-height: 104px;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 29, 52, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.activity-strip article::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #68d8ff;
  box-shadow: 0 0 16px rgba(104, 216, 255, 0.38);
}

.activity-strip article span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #2f79ff;
  background: rgba(47, 121, 255, 0.12);
}

.activity-strip article:nth-child(4) span,
.activity-strip article:nth-child(5) span {
  color: #53c9d5;
  background: rgba(20, 184, 166, 0.1);
}

.activity-strip strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 12px;
}

.activity-strip article p,
.activity-strip small {
  margin: 0;
  color: rgba(235, 242, 252, 0.66);
  font-size: 11px;
  line-height: 1.35;
}

.activity-strip small {
  display: block;
  margin-top: 9px;
}

.presence-section {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(330px, 0.86fr);
  gap: 52px;
  padding: 48px 56px 58px;
  color: #070d25;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 107, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.presence-main,
.presence-services {
  min-width: 0;
}

.presence-services {
  padding-left: 52px;
  border-left: 1px solid rgba(8, 18, 42, 0.12);
}

.presence-kicker {
  display: block;
  margin-bottom: 16px;
  color: #0b6dff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.presence-copy h2,
.presence-services h3 {
  margin: 0;
  color: #070d25;
  font-weight: 850;
  letter-spacing: -0.055em;
}

.presence-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.04;
}

.presence-copy p,
.presence-services p {
  margin: 18px 0 0;
  color: #22304e;
  font-size: 14px;
  line-height: 1.55;
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 32px 0 0;
  padding: 24px 0;
  border-top: 1px solid rgba(8, 18, 42, 0.1);
  border-bottom: 1px solid rgba(8, 18, 42, 0.1);
}

.presence-stats article {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 0 24px;
}

.presence-stats article:first-child {
  padding-left: 0;
}

.presence-stats article:not(:first-child) {
  border-left: 1px solid rgba(8, 18, 42, 0.12);
}

.presence-stats svg,
.presence-stats .lucide {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: #0b6dff;
  stroke-width: 1.7;
}

.presence-stats strong,
.presence-stats span {
  display: block;
}

.presence-stats strong {
  color: #070d25;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.presence-stats span {
  margin-top: 7px;
  color: #263452;
  font-size: 12px;
  font-weight: 500;
}

.presence-map-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  background: #06111f;
  box-shadow: 0 28px 70px rgba(6, 18, 38, 0.12);
}

.presence-mapbox {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 400px;
  min-height: 100%;
}

.presence-mapbox::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 50%, rgba(11, 109, 255, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(1, 7, 18, 0.5) 0%, transparent 48%, rgba(1, 7, 18, 0.22) 100%);
  pointer-events: none;
}

.presence-mapbox .mapboxgl-ctrl-bottom-right {
  opacity: 0.62;
}

.presence-mapbox .mapboxgl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(91, 163, 245, 0.24);
  background: rgba(6, 13, 26, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.presence-mapbox .mapboxgl-ctrl button {
  filter: invert(1) hue-rotate(180deg);
}



.vm-tooltip {
  position: absolute;
  z-index: 20;
  display: none;
  max-width: 220px;
  padding: 0.875rem 1rem;
  border: 1px solid #1e3a5f;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(6, 13, 26, 0.95);
  font-family: inherit;
  pointer-events: none;
}

.vm-tooltip .tt-name {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.vm-tooltip .tt-op {
  margin-bottom: 2px;
  color: #5ba3f5;
  font-size: 12px;
}

.vm-tooltip .tt-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.presence-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 36% 55%, rgba(11, 109, 255, 0.12), transparent 32%);
  pointer-events: none;
}

/* ── Map expand button ── */
.vm-expand-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(4, 10, 22, 0.78);
  color: #a8c4e0;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.15s, color 0.15s;
}

.vm-expand-btn:hover {
  background: rgba(37, 99, 235, 0.82);
  color: #fff;
}

/* ── Map fullscreen modal ── */
.vm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(2, 6, 14, 0.92);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vm-modal.is-open {
  display: flex;
}

.vm-modal-map {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
}

.vm-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(4, 10, 22, 0.88);
  color: #e2e8f0;
  cursor: pointer;
  transition: background 0.15s;
}

.vm-modal-close:hover {
  background: rgba(37, 99, 235, 0.9);
  color: #fff;
}

/* ── KPI bar (top-right) ── */
.vm-overlay {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 3;
  pointer-events: none;
}

.vm-overlay-kpis {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 14px;
  border: 1px solid rgba(91, 163, 245, 0.25);
  border-radius: 8px;
  background: rgba(4, 10, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
}

.vm-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 62px;
  padding: 0 12px;
}

.vm-kpi-val {
  color: #5ba3f5;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.vm-kpi-lbl {
  margin-top: 4px;
  color: #6b8aaa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.vm-kpi-divider {
  width: 1px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(91, 163, 245, 0.18);
}

.presence-services h3 {
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.08;
}

.presence-services p {
  max-width: 330px;
  margin-bottom: 32px;
  font-size: 14px;
}

.presence-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.presence-services-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(8, 18, 42, 0.12);
}

.presence-services-grid svg,
.presence-services-grid .lucide {
  width: 25px;
  height: 25px;
  color: #0b6dff;
  stroke-width: 1.65;
}

.presence-services-grid span {
  color: #0b1328;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.presence-directory-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
  color: #0b6dff;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.portal-section {
  position: relative;
  z-index: 4;
  padding: 56px 52px 72px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #ffffff;
}

.portal-shell {
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  gap: 34px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 107, 255, 0.28), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(28, 130, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #071525 0%, #020814 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(6, 18, 38, 0.22);
  overflow: hidden;
}

.portal-copy {
  padding: 28px 0 18px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #4d90ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-copy h2 {
  max-width: 260px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.portal-copy p {
  max-width: 300px;
  margin: 0 0 26px;
  color: #c3d0e3;
  font-size: 15px;
  line-height: 1.55;
}

.portal-nav {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.portal-nav-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.portal-nav-item:hover,
.portal-nav-item.is-active {
  color: #ffffff;
  transform: translateX(2px);
}

.portal-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.65);
  color: #58a0ff;
  background: rgba(31, 107, 255, 0.08);
}

.portal-nav-item.is-active .portal-check,
.portal-nav-item.is-complete .portal-check {
  color: #ffffff;
  background: #1f6bff;
  border-color: #1f6bff;
  box-shadow: 0 0 0 5px rgba(31, 107, 255, 0.12);
}

.portal-check .lucide {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.portal-demo-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 9px;
  color: #ffffff;
  background: linear-gradient(180deg, #2b7cff 0%, #0d61f2 100%);
  box-shadow: 0 14px 34px rgba(31, 107, 255, 0.34);
  font-size: 14px;
  font-weight: 700;
}

.portal-demo-button .lucide {
  width: 18px;
  height: 18px;
}

.portal-showcase {
  min-width: 0;
  display: flex;
  align-items: center;
}

.portal-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 12, 24, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.portal-slides {
  position: relative;
  min-height: 520px;
}

.portal-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 34px;
  padding: 42px;
  opacity: 0;
  transform: translateX(24px) scale(0.985);
  transition: opacity 360ms ease, transform 360ms ease;
  pointer-events: none;
}

.portal-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.portal-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.portal-slide-copy span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #4d90ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.portal-slide-copy h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.portal-slide-copy h3 strong {
  display: block;
  color: #1f6bff;
  font-weight: 800;
}

.portal-feature-list {
  display: grid;
  gap: 28px;
}

.portal-feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
}

.portal-feature-item .lucide {
  width: 44px;
  height: 44px;
  color: #1f8bff;
  stroke-width: 1.55;
}

.portal-feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.growth-section {
  position: relative;
  z-index: 4;
  padding: 18px 52px 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  color: #0c1730;
}

.growth-section > * {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-block {
  padding: 22px 0 32px;
}

.benefits-panel {
  padding: 28px;
}

.benefits-panel h3 {
  margin: 0 0 20px;
  color: #101a33;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px;
  border: 1px solid rgba(19, 32, 58, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.benefit-card:last-child {
  border-right: 1px solid rgba(19, 32, 58, 0.08);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  color: #1f6bff;
  border-radius: 12px;
  background: rgba(31, 107, 255, 0.08);
}

.benefit-icon .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

.benefit-card h3,
.benefit-card h4 {
  margin: 0 0 8px;
  color: #1f6bff;
  font-size: 15px;
}

.benefit-card p {
  margin: 0;
  color: #42516a;
  font-size: 12.5px;
  line-height: 1.5;
}

.ecosystem-band {
  padding: 30px 36px 32px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.94), rgba(2, 8, 20, 0.68)),
    url('/images/banner.png') center 58% / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 18px 56px rgba(5, 17, 36, 0.12);
}

.ecosystem-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ecosystem-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ecosystem-stats article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ecosystem-stats article:last-child {
  border-right: 0;
}

.ecosystem-stats .lucide {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: #2f79ff;
  stroke-width: 1.55;
}

.ecosystem-stats strong {
  display: block;
  color: #2f79ff;
  font-size: 24px;
  line-height: 1;
}

.ecosystem-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.hit-badge-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 20px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #071a42 0%, #082f7a 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 44px rgba(8, 47, 122, 0.18);
}

.hit-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 48px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hit-badge-card span {
  display: block;
  margin-bottom: 6px;
  color: #7db5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hit-badge-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.hit-badge-card strong {
  color: #ffffff;
}

.join-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 22px;
  padding: 56px;
  border-radius: 28px;
  background: radial-gradient(130% 130% at 80% 10%, #123059 0%, #0a1a33 55%, #070f1e 100%);
  box-shadow: 0 40px 80px -40px rgba(8, 16, 30, 0.6);
}

.join-card::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(45, 107, 255, 0.35), transparent 60%);
  pointer-events: none;
}

.join-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.join-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #5a8cff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.join-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.join-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 24px;
}

.join-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.join-check {
  color: #34d399;
  font-weight: 800;
  flex: 0 0 auto;
}

.join-action {
  position: relative;
  z-index: 1;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 13px;
  color: #ffffff;
  background: #2d6bff;
  box-shadow: 0 14px 34px -8px rgba(45, 107, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.18s, transform 0.12s, box-shadow 0.2s;
}

.join-button:hover {
  background: #205cf0;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -8px rgba(45, 107, 255, 0.8);
}

.join-button .lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
  transition: transform 0.25s;
}

.join-button:hover .lucide {
  transform: translateX(3px);
}

.join-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-final-section {
  position: relative;
  z-index: 4;
  padding: 64px 52px 64px;
  color: #0d1b2e;
  background:
    radial-gradient(circle at 14% 8%, rgba(31, 107, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(31, 107, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #f8fbff 100%);
  border-top: 1px solid rgba(31, 107, 255, 0.12);
}

.trust-final-section > * {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.trust-final-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1fr;
  gap: 34px;
  align-items: center;
  padding: 0 0 24px;
}

.trust-final-copy h2 {
  margin: 0 0 8px;
  color: #0d1b2e;
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.trust-final-copy p {
  margin: 0;
  color: #42516a;
  font-size: 15px;
  line-height: 1.5;
}

.operator-placeholders {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.operator-placeholders span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 10px;
  border: 1px dashed rgba(31, 107, 255, 0.18);
  color: rgba(66, 81, 106, 0.46);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.operator-placeholders span::before {
  content: '';
  width: 68%;
  height: 14px;
  border-radius: 999px;
  background: rgba(31, 107, 255, 0.14);
}

.trust-final-proof {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  padding: 0 0 24px;
}

.trust-final-proof article {
  min-height: 70px;
  padding: 20px 22px;
  border: 1px solid rgba(31, 107, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(15, 35, 75, 0.06);
}

.trust-final-proof span {
  display: block;
  margin-bottom: 8px;
  color: #66748b;
  font-size: 11px;
}

.trust-final-proof strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #0d1b2e;
  font-size: 15px;
  line-height: 1.35;
}

.endeavor-wordmark {
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.endeavor-wordmark .endeavor-hit {
  color: #12c7c0;
}

.endeavor-by {
  font-size: 17px;
  font-weight: 700;
  color: #12c7c0;
  letter-spacing: 0.01em;
}

.trust-final-proof .lucide {
  width: 22px;
  height: 22px;
  color: #2f79ff;
}

.landing-footer {
  position: relative;
  z-index: 4;
  background: #0a1422;
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 52px 36px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(120px, 1fr));
  align-items: start;
  gap: 26px 36px;
  max-width: 1420px;
  margin: 0 auto;
}

.landing-footer::before {
  display: none;
}

.footer-logo img {
  display: block;
  width: 118px;
  height: auto;
}

.landing-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-brand-block p {
  max-width: 240px;
  margin: 16px 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .lucide {
  width: 14px;
  height: 14px;
}

.footer-whatsapp {
  color: #25d366 !important;
}
.footer-whatsapp svg {
  flex-shrink: 0;
}
.footer-whatsapp:hover {
  color: #1ebe5d !important;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.footer-links a {
  color: #2f79ff;
  font-size: 12px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #6fa5ff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
  border-left: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 17px;
}

.footer-social a:hover {
  color: #ffffff;
  background: #1a65ff;
  border-color: #1a65ff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 42px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Banner mobile — oculto en desktop */
.hero-mobile-banner {
  display: none;
}

.hero-mobile-glass {
  display: none;
}

.hero-mobile-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 560px);
  margin: 0 0 16px;
}

.hero-mobile-benefits article {
  min-width: 0;
  color: #ffffff;
}

.hero-mobile-benefits article:not(:last-child) {
  padding-right: 14px;
  border-right: 1px solid rgba(76, 144, 255, 0.16);
}

.hero-benefit-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2580ff;
  border: 1px solid rgba(37, 128, 255, 0.62);
  background: rgba(2, 8, 20, 0.22);
  box-shadow: 0 0 18px rgba(37, 128, 255, 0.12);
}

.hero-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.hero-mobile-benefits strong {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-mobile-benefits p {
  margin: 5px 0 0;
  color: #c9d2df;
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 1280px) {
  .page-background {
    width: 100%;
  }

  .site-header,
  .hero-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .business-step-card:not(:last-of-type)::before,
  .business-step-card:not(:last-of-type)::after {
    display: none;
  }

  .business-arrow {
    display: none;
  }

  .business-step-card {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(8, 18, 42, 0.1);
  }

  .business-step-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .business-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-activity-panel {
    grid-column: 1 / -1;
    margin-top: 36px;
    padding-left: 0;
    padding-top: 36px;
    border-left: 0;
    border-top: 1px solid rgba(8, 18, 42, 0.12);
  }

  .process-row {
    gap: 24px;
  }

  .process-showcase {
    padding-left: 30px;
    padding-right: 30px;
  }

  .process-step {
    padding: 0 24px;
  }

  .process-step:not(:last-child)::after {
    left: calc(50% + 52px);
    width: calc(100% - 48px);
  }

  .portal-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .portal-slides {
    min-height: 420px;
  }

  .portal-slide {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    padding: 28px;
  }

  .join-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 44px 40px;
  }

  .join-action {
    align-items: flex-start;
  }

  .directory-network-section {
    grid-template-columns: 300px minmax(260px, 0.54fr);
    gap: min(18vw, 220px);
    padding-left: 28px;
    padding-right: 28px;
    background:
      linear-gradient(90deg, rgba(2, 8, 20, 0.88) 0%, rgba(2, 8, 20, 0.3) 28%, rgba(2, 8, 20, 0.08) 52%, rgba(2, 8, 20, 0.62) 100%),
      url('/images/mapavm.png') 43% center / auto 76% no-repeat,
      linear-gradient(90deg, #06111f 0%, #07172b 46%, #071b31 100%);
  }

  .directory-services-grid {
    gap: 18px 20px;
  }

  .presence-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .presence-services {
    padding-left: 0;
    padding-top: 38px;
    border-left: 0;
    border-top: 1px solid rgba(8, 18, 42, 0.12);
  }

  .audience-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .activity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .references-section {
    padding: 52px 28px 56px;
  }

  .references-header {
    max-width: none;
  }

  .references-header h2 {
    white-space: normal;
  }

  .trust-conversion-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .references-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .references-left h2 {
    font-size: 1.85rem;
  }

  .reference-card {
    flex: 0 0 min(80vw, 280px);
  }

  .page-background {
    width: 100%;
  }

  .site-header {
    padding-top: 20px;
  }

  .nav-actions {
    gap: 12px;
  }

  .hero-copy::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.66) 48%, rgba(255, 255, 255, 0.28) 78%, rgba(255, 255, 255, 0) 100%);
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-copy-text {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .hero-copy-right {
    display: none;
  }

  .hero-description {
    font-size: 16px;
    white-space: normal;
  }

  .page-background img {
    object-fit: contain;
  }

  .hero-search-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .search-field-main,
  .search-field-region {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
  }

  .search-field-region {
    border-bottom: 0;
  }

  .search-submit {
    min-height: 58px;
    margin-left: 0;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row article:nth-child(2) {
    border-right: 0;
  }

  .hero-network,
  .hero-network-glow,
  .hero-network-pin {
    display: none;
  }

  .problems-section {
    padding: 40px 28px 56px;
  }

  .business-flow-section {
    padding: 44px 28px 58px;
  }

  .business-flow-title {
    margin-bottom: 34px;
  }

  .business-step-body {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
  }

  .business-icon {
    width: 60px;
    height: 60px;
  }

  .business-icon svg,
  .business-icon .lucide {
    width: 28px;
    height: 28px;
  }

  .business-panels {
    grid-template-columns: 1fr;
    padding: 34px 0 38px;
  }

  .business-audience-panel,
  .business-audience-providers,
  .business-activity-panel {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .business-audience-providers,
  .business-activity-panel {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid rgba(8, 18, 42, 0.12);
  }

  .business-audience-panel ul {
    margin: 30px 0 28px;
  }

  .problem-grid,
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-showcase {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 84px 28px 34px;
  }

  .process-step {
    padding: 0 0 30px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(92, 133, 190, 0.22);
  }

  .process-step:last-child {
    padding-bottom: 0;
    border-bottom: 0 !important;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-visual {
    justify-self: start;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    left: calc(50% - 84px);
  }

  .portal-section {
    padding: 44px 28px 60px;
  }

  .portal-shell {
    grid-template-columns: 1fr;
  }

  .portal-copy,
  .portal-copy h2,
  .portal-copy p {
    max-width: none;
  }

  .portal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-slides {
    min-height: 720px;
  }

  .portal-slide {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .growth-section {
    padding: 16px 28px 56px;
  }

  .ecosystem-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ecosystem-stats article {
    border-right: 0;
  }

  .join-points {
    flex-direction: column;
    gap: 12px;
  }

  .landing-footer {
    padding: 56px 28px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    text-align: left;
    gap: 28px 24px;
  }

  /* Brand block ocupa todo el ancho */
  .footer-brand-block {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand-block p {
    max-width: 100%;
    margin: 0;
  }

  /* Contact ocupa todo el ancho también */
  .footer-contact {
    grid-column: auto;
    align-items: start;
    text-align: left;
  }

  .footer-contact a,
  .footer-contact span {
    justify-content: flex-start;
  }

  /* Bottom ocupa todo el ancho */
  .footer-bottom {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .directory-network-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 28px;
    background:
      linear-gradient(180deg, rgba(2, 8, 20, 0.78) 0%, rgba(2, 8, 20, 0.38) 48%, rgba(2, 8, 20, 0.88) 100%),
      url('/images/mapavm.png') center 44% / 92% auto no-repeat,
      linear-gradient(90deg, #06111f 0%, #07172b 46%, #071b31 100%);
  }

  .directory-network-copy {
    max-width: 520px;
  }

  .directory-network-copy p {
    max-width: 420px;
  }

  .directory-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .presence-section {
    padding: 46px 28px 52px;
  }

  .presence-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .presence-stats article,
  .presence-stats article:not(:first-child) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

  .presence-map-card {
    min-height: 420px;
  }

  .presence-services-grid {
    grid-template-columns: 1fr;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .activity-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px), (max-width: 960px) and (orientation: landscape) {
  .site-header,
  .hero-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding-top: 28px;
    padding-bottom: 0;
  }

  .brand img {
    width: min(34vw, 150px);
  }

  .nav-actions {
    display: none;
  }

  .link-button,
  .primary-button {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hero-section {
    width: 100%;
    min-height: 100svh;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: stretch;
  }

  .hero-section::before {
    display: none;
  }

  .hero-section::after {
    display: none;
  }

  .hero-bg {
    object-fit: cover;
  }

  /* Hero: ocultar la parte visual desktop (mapa/red), usar banner vertical mobile */
  .hero-visual {
    display: none;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: auto;
    padding: 112px 24px 28px;
    display: flex;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-top-bar {
    padding: 24px 20px;
  }

  .hero-top-bar .brand img {
    width: 110px;
  }

  .hero-auth {
    gap: 12px;
  }

  /* Save room on phones: drop the text "Iniciar sesión", keep the prominent CTA. */
  .hero-auth-login {
    display: none;
  }

  .hero-auth-signup {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero-copy-text {
    padding: 0 20px 40px;
  }

  .hero-copy-text::before {
    display: block;
    left: 0px;
    top: 45%;
    width: min(80vw, 390px);
    height: min(50vh, 360px);
    transform: translateY(-50%);
    background:
      radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.64) 38%, rgba(255, 255, 255, 0.24) 68%, rgba(255, 255, 255, 0) 100%);
    filter: blur(12px);
  }

  .hero-cta-primary,
  .hero-cta-glass {
    padding: 14px 22px;
    min-height: 44px;
    font-size: 14px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .hero-title-bar {
    font-size: clamp(1.7rem, 7.2vw, 2.3rem);
  }

  .eyebrow {
    max-width: min(100%, 340px);
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(2, 8, 20, 0.36);
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.18em;
    white-space: normal;
  }

  .hero-copy h1 {
    max-width: 330px;
    margin: 24px 0 0;
    font-size: clamp(2.72rem, 12.4vw, 4.15rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .hero-copy .hero-title-bar {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-description {
    max-width: 310px;
    color: #34445f;
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.35;
    letter-spacing: 0;
    white-space: normal;
    margin-top: 22px;
  }

  .hero-description span {
    display: block;
  }

  /* Search card: compacto en mobile */
  .hero-search-card {
    display: none;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    border-radius: 12px;
    background: rgba(2, 8, 20, 0.72);
  }

  .hero-search-card input,
  .hero-search-card select,
  .search-submit {
    font-size: 14px;
  }

  .search-field-main {
    padding: 12px 14px;
  }

  .search-submit {
    display: none;
  }

  /* Category pills: 2 columnas en mobile */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-pill {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
  }

  /* page-background original: oculto en mobile */
  .page-background {
    display: none;
  }

  /* Pills y stats: ocultos en mobile para priorizar mensaje + búsqueda */
  .category-block,
  .stats-row {
    display: none;
  }

  /* Banner mobile: fondo vertical específico para evitar recortes raros del desktop */
  .hero-mobile-banner {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('/images/banner_mobile.png') center top / cover no-repeat;
  }

  .hero-mobile-banner img {
    display: none;
  }

  /* Trust panel */
  .trust-panel {
    display: none;
  }

  .hero-mobile-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
  }

  .hero-mobile-benefits article {
    min-width: 0;
    color: #ffffff;
  }

  .hero-mobile-benefits article:not(:last-child) {
    padding-right: 12px;
    border-right: 1px solid rgba(76, 144, 255, 0.22);
  }

  .hero-benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #2580ff;
    border: 1px solid rgba(37, 128, 255, 0.84);
    background: radial-gradient(circle at 50% 25%, rgba(37, 128, 255, 0.28), rgba(2, 8, 20, 0.34) 62%);
    box-shadow: 0 0 26px rgba(37, 128, 255, 0.2);
  }

  .hero-benefit-icon svg {
    width: 27px;
    height: 27px;
  }

  .hero-mobile-benefits strong {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .hero-mobile-benefits p {
    margin: 6px 0 0;
    color: #c9d2df;
    font-size: 11px;
    line-height: 1.35;
  }


  .stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .stats-row article {
    border-right: 0;
    padding-right: 0;
  }

  .hero-map-chip {
    display: none;
  }

  .problems-section {
    padding: 36px 18px 48px;
  }

  .business-flow-section {
    padding: 36px 18px 46px;
  }

  .business-flow-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .business-steps {
    padding-bottom: 34px;
  }

  .business-step-number {
    margin-bottom: 16px;
  }

  .business-step-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-step-body p {
    margin-top: 12px;
    font-size: 15px;
  }

  .business-activity-header {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 12px;
  }

  .business-activity-item {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
  }

  .business-activity-item time {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    padding-top: 3px;
    color: #66748b;
    font-size: 12px;
  }

  .business-activity-item .activity-dot {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    margin-bottom: 4px;
    display: none;
  }

  .business-activity-item strong {
    margin-bottom: 4px;
  }

  .business-activity-item p {
    font-size: 13px;
  }

  .problem-grid,
  .process-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    min-height: auto;
  }

  .process-row {
    gap: 28px;
  }

  .section-heading-process {
    margin-bottom: -54px;
  }

  .process-showcase {
    padding: 78px 18px 28px;
    border-radius: 16px;
  }

  .process-copy {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .process-step h3 {
    font-size: 17px;
  }

  .process-request-card,
  .process-opportunity-card,
  .process-chat-card {
    width: 100%;
    max-width: 330px;
  }

  .portal-section {
    padding: 36px 18px 48px;
  }

  .directory-network-section {
    padding: 36px 18px;
  }

  .directory-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }

  .directory-services-grid article {
    font-size: 11px;
  }

  .presence-section {
    padding: 38px 18px 44px;
  }

  .presence-copy h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .presence-copy p,
  .presence-services p {
    font-size: 14px;
  }

  .presence-map-card {
    min-height: 340px;
  }

  .vm-overlay {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .vm-overlay-kpis {
    justify-content: space-between;
    overflow-x: auto;
    padding: 8px 9px;
    max-width: 100%;
  }

  .vm-kpi {
    min-width: 52px;
    padding: 0 7px;
  }

  .vm-kpi-val {
    font-size: 13px;
  }

  .vm-kpi-lbl {
    font-size: 8px;
  }



  .audience-section {
    padding: 34px 18px 42px;
  }

  .audience-card {
    padding: 22px;
  }

  .audience-panel {
    display: none;
  }

  .activity-strip {
    grid-template-columns: 1fr;
  }

  .portal-shell {
    border-radius: 16px;
  }

  .portal-nav {
    grid-template-columns: 1fr;
  }

  .portal-slides {
    min-height: 660px;
  }

  .portal-slide {
    padding: 22px;
    gap: 22px;
  }

  .portal-slide-copy h3 {
    font-size: 1.65rem;
  }

  .portal-feature-item p {
    font-size: 14px;
  }

  .portal-feature-list {
    gap: 20px;
  }

  .portal-feature-item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .portal-feature-item .lucide {
    width: 36px;
    height: 36px;
  }

  .growth-section {
    padding: 10px 18px 48px;
  }

  .ecosystem-stats {
    grid-template-columns: 1fr;
  }

  .references-section {
    padding: 42px 18px 46px;
  }

  .trust-final-section {
    padding: 42px 18px 44px;
    overflow: hidden;
  }

  .trust-final-top {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .trust-final-proof {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-final-proof article {
    min-height: auto;
    text-align: center;
  }

  .trust-final-proof strong {
    justify-content: center;
  }

  .operator-placeholders {
    display: none;
  }

  .references-panel,
  .benefits-panel,
  .reference-col {
    border-radius: 16px;
  }

  .references-panel,
  .benefits-panel {
    padding: 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 14px;
    border-bottom: 1px solid rgba(19, 32, 58, 0.08);
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .ecosystem-band,
  .join-card {
    padding: 24px 22px;
  }

  /* Tall narrow card: recenter the navy gradient to the top and enlarge/soften the blue
     glow so its circular edge doesn't read as a hard "cut". */
  .join-card {
    background: radial-gradient(150% 100% at 50% -10%, #123059 0%, #0a1a33 58%, #070f1e 100%);
  }

  .join-card::after {
    right: -45%;
    bottom: -30%;
    width: 100%;
    height: 75%;
    background: radial-gradient(circle, rgba(45, 107, 255, 0.28), transparent 68%);
  }

  .ecosystem-stats article {
    padding-right: 0;
  }

  .hit-badge-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }
}

/* ── Activity feed animations ────────────────────────────────────────────── */

@keyframes activity-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes activity-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.7); opacity: 0.6; }
}

.business-activity-item--entering {
  animation: activity-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.business-activity-item--new .activity-dot {
  animation: activity-dot-pulse 1.2s ease-in-out 3;
}

.activity-ver-todo {
  display: inline-flex;
  gap: 8px;
  color: #0b6dff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.activity-ver-todo:hover { opacity: 0.75; }
