@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080809;
  --ink: #0E0E10;
  --surface: #141416;
  --surface2: #1A1A1C;
  --border: rgba(255, 255, 255, 0.06);
  --border-m: rgba(255, 255, 255, 0.1);
  --gray: #5A5A60;
  --gray-l: #F3F3F1;
  --white: #F8F8F6;
  --cyan: #2CB1BC;
  --cyan-2: rgba(44, 177, 188, 0.1);
  --yellow: #F2D53C;
  --blue: #3F5FA8;
  --muted: rgba(255, 255, 255, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cur,
#cur-r {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  border-radius: 50%;
}

#cur {
  width: 8px;
  height: 8px;
  background: var(--cyan);
}

#cur-r {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(44, 177, 188, 0.4);
  transition: width 0.25s, height 0.25s, border-color 0.25s, transform 0.18s ease;
}

body.hovering #cur {
  transform: translate(-50%, -50%) scale(3);
}

body.hovering #cur-r {
  width: 56px;
  height: 56px;
  border-color: rgba(44, 177, 188, 0.7);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(8, 8, 9, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  /* Ajusta este valor para cambiar el tamaño del logo */
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

.nav-pill {
  color: var(--black) !important;
  background: var(--cyan);
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: opacity 0.2s !important;
}

.nav-pill:hover {
  opacity: 0.82 !important;
}

/* ── HERO ── */
.hero {
  height: 100svh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 64px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orb */
.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(44, 177, 188, 0.06) 0%, transparent 65%);
  top: -200px;
  right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 40px) scale(1.05);
  }
}

/* Noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.hero-tag {
  position: absolute;
  top: 108px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

/* BIG hero text */
.hero-h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(64px, 10.5vw, 152px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}

.hero-h1 .row2 {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.hero-h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
}

.hero-h1 .cyan {
  color: var(--cyan);
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.75s forwards;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 420px;
  border-left: 2px solid var(--cyan);
  padding-left: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cyan);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.85;
}

.btn-cta-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.btn-ghost {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
}

.hero-stats {
  position: absolute;
  bottom: 64px;
  right: 60px;
  z-index: 1;
  display: flex;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.stat-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
}

.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  align-self: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── MARQUEE ── */
.ticker {
  background: var(--cyan);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 22s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.ticker-star {
  opacity: 0.3;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── SECCIÓN BASE ── */
.s {
  padding: 120px 60px;
}

.s-dark {
  background: var(--black);
}

.s-ink {
  background: var(--ink);
}

.s-surface {
  background: var(--surface);
}

.s-light {
  background: var(--gray-l);
  color: var(--black);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 28px;
}

.kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

.s-light .kicker {
  color: var(--blue);
}

.s-light .kicker::before {
  background: var(--blue);
}

.heading {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--white);
}

.heading em {
  font-style: normal;
  color: var(--cyan);
}

.heading .out {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
}

.s-light .heading {
  color: var(--black);
}

.s-light .heading em {
  color: var(--blue);
}

/* ── PROBLEMA ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 0;
}

.problem-left .heading {
  margin-bottom: 32px;
}

.problem-left p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.p-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.p-card:hover {
  border-color: rgba(44, 177, 188, 0.25);
}

.p-card:hover::after {
  transform: scaleY(1);
}

.p-n {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.p-t {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.p-s {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
}

.problem-desc {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 32px;
}

/* ── INSIGHT STATEMENT ── */
.insight-wrap {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.insight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.insight-q {
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
}

.insight-big {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

.insight-big em {
  font-style: normal;
  color: var(--cyan);
}

.insight-r {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.insight-r strong {
  color: var(--white);
  font-weight: 500;
}

/* ── MODELO C3 ── */
.c3-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.c3-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c3-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: center;
  transition: border-color 0.25s;
}

.c3-item:hover {
  border-color: var(--border-m);
}

.c3-letter {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.c3-item:nth-child(1) .c3-letter {
  color: var(--cyan);
}

.c3-item:nth-child(2) .c3-letter {
  color: var(--blue);
}

.c3-item:nth-child(3) .c3-letter {
  color: var(--yellow);
}

.c3-body-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.c3-body-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.c3-warning {
  margin-top: 2px;
  padding: 28px 36px;
  background: rgba(44, 177, 188, 0.06);
  border: 1px solid rgba(44, 177, 188, 0.18);
  font-size: 15px;
  color: var(--white);
  line-height: 1.55;
}

.c3-warning em {
  font-style: normal;
  color: var(--cyan);
}

.c3-right-text {
  padding-top: 8px;
}

.c3-right-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px;
}

.c3-right-text strong {
  color: var(--white);
  font-weight: 500;
}

/* ── SERVICIOS LISTA ── */
.sv-list {
  margin-top: 64px;
  border-top: 1px solid var(--border);
}

.sv-row {
  display: grid;
  grid-template-columns: 56px 1fr 220px 48px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
  position: relative;
}

.sv-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.sv-row:hover {
  padding-left: 16px;
}

.sv-row:hover::before {
  width: 3px;
}

.sv-num {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.sv-name {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 0.2s;
}

.sv-row:hover .sv-name {
  color: var(--cyan);
}

.sv-tag {
  font-size: 11px;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.06em;
}

.sv-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sv-row:hover .sv-ico {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
}

/* ── PROCESO ── */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.pr-step {
  background: var(--ink);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.pr-step:hover {
  background: var(--surface);
}

.pr-bg-n {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s;
}

.pr-step:hover .pr-bg-n {
  color: rgba(44, 177, 188, 0.08);
}

.pr-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.pr-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.pr-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pr-step:hover .pr-bar {
  transform: scaleX(1);
}

.proceso-bottom {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.pb-big {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
}

.pb-stmt {
  padding-left: 32px;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
}

.pb-stmt em {
  font-style: normal;
  color: var(--cyan);
}

/* ── NACIDOS EN BQ ── */
.bq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.bq-left {
  padding: 80px 60px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bq-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
}

.bq-headline span {
  color: var(--cyan);
  display: block;
}

.bq-city {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.bq-city::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--cyan);
}

.bq-right {
  padding: 80px 60px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bq-body {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.bq-body strong {
  color: var(--white);
  font-weight: 600;
}

.bq-body em {
  font-style: normal;
  color: var(--cyan);
}

/* ── CLIENTES LOGOS ── */
.logos-section {
  padding: 100px 60px;
  background: var(--ink);
  text-align: center;
}

.logos-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 56px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.logo-cell {
  width: calc(100% / 5);
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.logo-cell:hover {
  background: var(--surface);
}

.logo-cell:nth-child(5n) {
  border-right: none;
}

.logo-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.18);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  transition: color 0.25s;
  text-align: center;
}

.logo-cell:hover .logo-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* ── TESTIMONIOS ── */
.test-slider {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
  scroll-padding-left: 4vw;
}

.test-slider::-webkit-scrollbar {
  height: 6px;
}

.test-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 0 4vw;
}

.test-slider::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 4px;
}

.test-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 12px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.test-slider .test-card:first-child {
  margin-left: 0;
}

.test-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.test-quote::before {
  content: "“";
  display: block;
  font-size: 64px;
  color: var(--cyan);
  line-height: 0.5;
  margin-bottom: 16px;
  margin-left: -8px;
  opacity: 0.8;
  font-family: Georgia, serif;
  z-index: -1;
}

.test-author {
  border-top: 1px dashed var(--border);
  padding-top: 24px;
}

.test-name {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.test-company {
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .test-card {
    flex: 0 0 85vw;
    padding: 32px 24px;
  }
}

/* ── FILOSOFÍA ── */
.filo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.filo-block {
  padding: 44px 48px;
  border: 1px solid var(--border);
}

.filo-block.active {
  background: var(--surface);
}

.filo-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.filo-block.active .filo-head {
  color: var(--cyan);
}

.filo-block.passive .filo-head {
  color: var(--gray);
}

.filo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.filo-block.active .filo-text {
  color: var(--white);
}

.filo-block.passive .filo-text {
  color: rgba(255, 255, 255, 0.15);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.08);
}

/* ── PARA QUIÉN ── */
.pq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.pq-col {
  padding: 80px 60px;
}

.pq-col.dark {
  background: var(--surface);
}

.pq-col.light {
  background: var(--gray-l);
  color: var(--black);
}

.pq-col.light .kicker {
  color: #333;
}

.pq-col.light .kicker::before {
  background: #333;
}

.pq-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
}

.pq-col.light .pq-item {
  border-bottom-color: rgba(0, 0, 0, 0.07);
  color: var(--black);
}

.pq-chk {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.pq-chk.yes {
  background: var(--cyan);
  color: var(--black);
}

.pq-chk.no {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray);
}

.pq-col.light .pq-chk.no {
  background: rgba(0, 0, 0, 0.08);
}

/* ── CTA ── */
.cta-s {
  padding: 160px 60px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-s::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 110%, rgba(44, 177, 188, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.cta-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}

.cta-big {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 40px;
}

.cta-big span {
  display: block;
}

.cta-big .line-solid {
  color: var(--white);
}

.cta-big .line-out {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
}

.cta-big .line-cyan {
  color: var(--cyan);
}

.cta-p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 52px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-m);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  background: rgba(44, 177, 188, 0.05);
}

.cta-mail {
  font-size: 14px;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
}

.cta-mail a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 177, 188, 0.25);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 64px 60px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 62px;
  /* Ajusta este valor para cambiar el tamaño del logo en el footer */
  width: auto;
  display: block;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
}

.footer-tagline {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-nav a {
  color: var(--gray);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.12);
  font-family: 'Poppins', sans-serif;
}

/* ── REVEAL ANIMATION ── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rev.on {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s
}

.d2 {
  transition-delay: 0.2s
}

.d3 {
  transition-delay: 0.3s
}

.d4 {
  transition-delay: 0.4s
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 18px 32px;
  }

  .hero,
  .s,
  .logos-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-stats {
    right: 32px;
  }

  .hero-tag {
    right: 32px;
  }

  .problem-grid,
  .insight-inner,
  .c3-layout,
  .bq-layout,
  .pq-wrap,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bq-right {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sv-row {
    grid-template-columns: 44px 1fr 44px;
  }

  .sv-tag {
    display: none;
  }

  .logos-grid .logo-cell {
    width: calc(100%/3);
  }

  .logos-grid .logo-cell:nth-child(5n) {
    border-right: 1px solid var(--border);
  }

  .logos-grid .logo-cell:nth-child(3n) {
    border-right: none;
  }

  .cta-s,
  .bq-left,
  .bq-right,
  .pq-col {
    padding: 60px 32px;
  }

  footer {
    padding: 48px 32px 28px;
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(48px, 14vw, 80px);
  }

  .hero-h1 .row2 {
    display: block;
  }

  .hero-h1 .cyan {
    display: block;
  }

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

  .hero-actions {
    align-items: flex-start;
  }

  .hero-stats {
    display: none;
  }

  .logos-grid .logo-cell {
    width: 50%;
  }

  .logos-grid .logo-cell:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .logos-grid .logo-cell:nth-child(2n) {
    border-right: none;
  }

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

/* ── INTERNAL PAGES ── */
.hero-page {
  padding: 180px 60px 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 240px;
  background-color: var(--surface2);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.blog-card-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card:hover {
  border-color: var(--cyan);
  background: var(--surface);
  transform: translateY(-4px);
}

.blog-date {
  font-size: 11px;
  color: var(--cyan);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

.blog-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

.blog-card:hover .blog-link {
  color: var(--cyan);
}

.calendly-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── BLOG POST ── */
.blog-post {
  padding: 180px 60px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-meta {
  font-size: 13px;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.05em;
  margin-top: 24px;
}

.blog-post-cover {
  width: 100%;
  height: 500px;
  background-color: var(--surface2);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 60px;
}

.blog-post-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--white);
}

.blog-post-body p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.blog-post-body h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 48px 0 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.blog-post-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  color: var(--white);
}

.blog-post-body blockquote {
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  border-left: 2px solid var(--cyan);
  padding-left: 32px;
  margin: 40px 0;
  color: var(--white);
}

.blog-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 32px 0;
}

.blog-post-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.blog-post-body li {
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .hero-page {
    padding: 140px 32px 60px;
  }

  .blog-card-content {
    padding: 24px;
  }

  .blog-post {
    padding: 120px 32px 60px;
  }

  .blog-post-cover {
    height: 300px;
  }

  .blog-post-body {
    font-size: 16px;
  }

  .blog-post-body h2 {
    font-size: 28px;
  }

  .blog-post-body blockquote {
    font-size: 20px;
    padding-left: 20px;
  }
}

/* ── MODALS (POP-UPS) ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 9, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.modal-content {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
  color: var(--white);
  transform: scale(1.1);
}

.modal-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.modal-body {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body strong {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
  margin-top: 24px;
}

.modal-body p:first-child strong {
  margin-top: 0;
}

.modal-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style-type: none;
}

.modal-body ul li {
  margin-bottom: 8px;
  position: relative;
}

.modal-body ul li::before {
  content: "→";
  position: absolute;
  left: -20px;
  color: var(--cyan);
}

.modal-cta-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.modal-cta-wrap p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

/* ── MODAL ARROWS ── */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.modal-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.modal-arrow.prev {
  left: -80px;
}

.modal-arrow.next {
  right: -80px;
}

@media (max-width: 800px) {
  .modal-wrapper {
    width: 95%;
  }

  .modal-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .modal-arrow.prev {
    left: -12px;
    z-index: 20;
  }

  .modal-arrow.next {
    right: -12px;
    z-index: 20;
  }

  .modal-content {
    padding: 40px 32px;
  }
}