/* ─────────────────────────────
   VARIABLES
───────────────────────────── */
:root {
  --accent:    #0C5EE8;
  --accent-lt: #94B8FA;
  --accent-dk: #052B70;
  --bg:        #060C18;
  --bg-2:      #080F1E;
  --bg-card:   rgba(12,94,232,0.06);
  --border:    rgba(148,184,250,0.10);
  --border-a:  rgba(12,94,232,0.38);
  --text:      #EEF2FF;
  --text-m:    #92ABD6;
  --text-dim:  #4D6790;
  --r:         12px;
  --r-lg:      20px;
  --glow:      0 0 60px rgba(12,94,232,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-lt);
  border: 1px solid var(--border-a);
  border-radius: 100px; padding: 5px 14px;
  background: rgba(12,94,232,.08);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600; font-size: 15px;
  border-radius: 9px; padding: 13px 26px;
  cursor: pointer; transition: all .25s ease;
  border: none; text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 24px rgba(12,94,232,.35);
}
.btn-primary:hover {
  background: #1a6bf0;
  box-shadow: 0 6px 36px rgba(12,94,232,.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--accent-lt);
  border: 1.5px solid var(--border-a);
}
.btn-outline:hover {
  background: rgba(12,94,232,.1);
  border-color: var(--accent-lt);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #22C55E; color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,.3);
}
.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(34,197,94,.4);
}

.arrow { transition: transform .2s; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--accent-lt); text-decoration: none;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.btn-link:hover { color: var(--text); border-bottom-color: var(--accent-lt); }
.btn-link .arrow { transition: transform .2s; }
.btn-link:hover .arrow { transform: translateX(3px); }
.btn:hover .arrow { transform: translateX(4px); }

.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.02em;
  margin-top: 12px; margin-bottom: 16px;
}
.sec-header p {
  font-size: 16px; color: var(--text-m);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

section[id], footer { scroll-margin-top: 80px; }

.dot-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(148,184,250,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}

.fu { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }
.fu.d1 { transition-delay: .1s; }
.fu.d2 { transition-delay: .2s; }
.fu.d3 { transition-delay: .3s; }
.fu.d4 { transition-delay: .4s; }

.check-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-m); line-height: 1.6;
}
.check-item::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; background: rgba(12,94,232,.15);
  border: 1px solid var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5L9.5 3.5' stroke='%2394B8FA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; display: flex; align-items: center;
  padding: 0 24px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
nav.scrolled {
  background: rgba(6,12,24,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1140px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 34px; }
.nav-logotype {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}
.nav-logotype span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-m); padding: 8px 14px;
  border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6,12,24,.97);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column; gap: 4px;
  z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; color: var(--text-m);
  padding: 12px 16px; border-radius: 8px;
  transition: all .2s;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 60px;
}
#hero .container { width: 100%; }
.hero-orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(12,94,232,.16) 0%, transparent 65%);
  top: -180px; right: -200px;
}
.hero-orb2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(5,43,112,.22) 0%, transparent 65%);
  bottom: -80px; left: -120px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.45; transform:scale(1.5); }
}
.hero-eyebrow-txt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-lt);
}
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -.025em; margin-bottom: 22px;
}
.hero-h1 .hl { color: var(--accent-lt); }
.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--text-m); line-height: 1.78;
  margin-bottom: 36px; max-width: 470px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(8,16,38,.92);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 28px 60px;
  backdrop-filter: blur(10px);
  animation: float 5.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.hc-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 20px;
}
.hc-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.hc-step:last-child { border-bottom: none; padding-bottom: 0; }
.hc-step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 800; color: #fff;
}
.s1 { background: linear-gradient(135deg, var(--accent-dk), var(--accent)); }
.s2 { background: linear-gradient(135deg, #073298, #1a6bf0); }
.s3 { background: linear-gradient(135deg, var(--accent), var(--accent-lt)); }
.hc-step-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.hc-step-desc { font-size: 12px; color: var(--text-m); line-height: 1.5; }
.hero-mini-stat {
  position: absolute; top: -20px; right: -28px;
  background: rgba(5,43,112,.75);
  border: 1px solid var(--border-a);
  border-radius: 12px; padding: 14px 18px;
  backdrop-filter: blur(12px);
  animation: float 7s ease-in-out infinite reverse;
}
.hms-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--accent-lt); line-height: 1;
}
.hms-label { font-size: 12px; color: var(--text-m); margin-top: 2px; }

/* ─── ICON SYSTEM ─── */
.ico {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: var(--accent-lt); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.ico-sm { width: 18px; height: 18px; }
.ico-lg { width: 26px; height: 26px; }
.pain-list-item .ico { width: 20px; height: 20px; margin-top: 2px; }
.pain-icon .ico, .why-icon .ico { width: 22px; height: 22px; }
.svc-badge .ico { width: 13px; height: 13px; margin-right: 4px; vertical-align: -2px; stroke-width: 1.8; }
.svc-badge.badge-a .ico { stroke: #fff; }
.svc-badge.badge-b .ico { stroke: var(--accent-lt); }
.hc-label .ico { width: 13px; height: 13px; stroke: var(--text-dim); margin-right: 6px; vertical-align: -2px; stroke-width: 1.6; }
.why-icon .ico { width: 26px; height: 26px; }

/* ─── PAIN ─── */
#dolor { padding: 96px 0; position: relative; overflow: hidden; }
.pain-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 64px;
}
.pain-intro-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px,3.5vw,36px); font-weight: 800;
  line-height: 1.18; letter-spacing: -.02em;
  margin-top: 12px; margin-bottom: 16px;
}
.pain-intro-left p { font-size: 16px; color: var(--text-m); line-height: 1.75; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r); font-size: 15px;
  color: var(--text-m); line-height: 1.55;
  transition: border-color .25s;
}
.pain-list-item:hover { border-color: var(--border-a); color: var(--text); }
.pain-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pain-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px; transition: all .3s;
}
.pain-card:hover { border-color: var(--border-a); background: rgba(12,94,232,.08); transform: translateY(-4px); }
.pain-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(12,94,232,.12); border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 13px; color: var(--text-m); line-height: 1.65; }

/* ─── METHODOLOGY ─── */
#metodologia { padding: 96px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.method-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; margin-top: 48px; }
.method-connector {
  position: absolute; top: 36px;
  left: calc(33.33% / 2 + 36px); right: calc(33.33% / 2 + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(12,94,232,.2) 50%, var(--accent) 100%);
  pointer-events: none;
}
.m-step { text-align: center; padding: 0 32px 40px; }
.m-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dk), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: #fff;
  position: relative; z-index: 1;
  box-shadow: 0 0 32px rgba(12,94,232,.4);
}
.m-step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 21px; font-weight: 700; margin-bottom: 12px; }
.m-step p { font-size: 14px; color: var(--text-m); line-height: 1.72; max-width: 220px; margin: 0 auto; }

/* ─── SERVICES ─── */
#servicios { padding: 96px 0; position: relative; overflow: hidden; }
#servicios .container { overflow: visible; }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.svc-card {
  border-radius: 20px; padding: 32px 28px;
  position: relative; overflow: visible;
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); }
.svc-a { background: linear-gradient(145deg, rgba(12,94,232,.14) 0%, rgba(5,43,112,.08) 100%); border: 1px solid var(--border-a); }
.svc-b { background: linear-gradient(145deg, rgba(5,43,112,.16) 0%, rgba(12,94,232,.05) 100%); border: 1px solid var(--border); }
.svc-b:hover { border-color: var(--border-a); box-shadow: var(--glow); }
.svc-a:hover { box-shadow: 0 0 80px rgba(12,94,232,.22); }
.svc-badge {
  display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  border-radius: 5px; padding: 4px 10px; margin-bottom: 22px;
}
.badge-a { background: var(--accent); color: #fff; }
.badge-b { background: var(--accent-dk); color: var(--accent-lt); border: 1px solid var(--border-a); }
.svc-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.15; margin-bottom: 6px; }
.svc-sub { font-size: 13px; color: var(--accent-lt); font-weight: 600; margin-bottom: 14px; }
.svc-desc { font-size: 15px; color: var(--text-m); line-height: 1.72; margin-bottom: 28px; }
.svc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.svc-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 20px;}
.svc-featured { position: relative; border-color: var(--accent) !important; }
.svc-recommend {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 5px 11px; border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(12,94,232,.4);
  margin-bottom: 16px;
}
.phase-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.phase-pill {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 6px;
  background: rgba(12,94,232,.14); border: 1px solid var(--border-a); color: var(--accent-lt);
}

/* ─── DEPLOY PHASES ─── */
#fases { padding: 96px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.phases-wrap { display: flex; flex-direction: column; margin-top: 48px; gap: 0; }
.phase-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--border); position: relative;
}
.phase-item:last-child { border-bottom: none; }
.phase-col-left { display: flex; flex-direction: column; align-items: center; }
.phase-badge {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-dk), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800;
  color: #fff; letter-spacing: .02em;
  box-shadow: 0 0 20px rgba(12,94,232,.32);
}
.phase-line { flex: 1; width: 2px; margin-top: 12px; background: linear-gradient(to bottom, var(--border-a), transparent); }
.phase-item:last-child .phase-line { display: none; }
.phase-lbl { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-lt); margin-bottom: 6px; }
.phase-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.phase-desc { font-size: 15px; color: var(--text-m); line-height: 1.72; margin-bottom: 16px; }
.phase-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ptag { font-size: 12px; font-weight: 600; color: var(--text-m); background: rgba(148,184,250,.07); border: 1px solid var(--border); border-radius: 6px; padding: 4px 12px; }

/* ─── WHY US ─── */
#por-que { padding: 96px 0; position: relative; overflow: hidden; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center; transition: all .3s;
}
.why-card:hover { border-color: var(--border-a); box-shadow: var(--glow); transform: translateY(-4px); }
.why-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(12,94,232,.1); border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-m); line-height: 1.72; }

/* ─── TEAM ─── */
#equipo { padding: 96px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.team-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 24px; margin-top: 48px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center; transition: all .3s;
}
.team-card:hover { border-color: var(--border-a); transform: translateY(-4px); }
.team-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dk), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: #fff;
  box-shadow: 0 0 40px rgba(12,94,232,.35);
  overflow: hidden;
  border: 3px solid rgba(12,94,232,.3);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
}
.team-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent-lt); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--text-m); line-height: 1.68; }
.team-wa {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #22C55E; font-weight: 600;
  margin-top: 14px; border: 1px solid rgba(34,197,94,.3);
  padding: 5px 12px; border-radius: 100px;
  background: rgba(34,197,94,.08); transition: all .2s;
}
.team-wa:hover { background: rgba(34,197,94,.16); }

/* ─── CTA ─── */
#contacto { padding: 100px 0; position: relative; overflow: hidden; }
.cta-box {
  background: linear-gradient(140deg, rgba(5,43,112,.55) 0%, rgba(12,94,232,.12) 100%);
  border: 1px solid var(--border-a);
  border-radius: 24px; padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(12,94,232,.14) 0%, transparent 70%); top: -180px; right: -180px; pointer-events: none; }
.cta-orb2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(5,43,112,.2) 0%, transparent 70%); bottom: -100px; left: -80px; pointer-events: none; }
.cta-box h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(26px,4vw,46px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { font-size: 17px; color: var(--text-m); max-width: 480px; margin: 0 auto 40px; line-height: 1.75; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note { margin-top: 22px; font-size: 13px; color: var(--text-dim); display: flex; align-items: center; justify-content: center; gap: 6px; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer { background: #030810; border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 30px; }
.footer-logotype { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); }
.footer-logotype span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--text-m); line-height: 1.7; max-width: 270px; margin-bottom: 20px; }
.footer-email { font-size: 13px; color: var(--accent-lt); font-weight: 500; transition: opacity .2s; }
.footer-email:hover { opacity: .7; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-m); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-contacts { display: flex; gap: 20px; align-items: center; }
.footer-contacts a { font-size: 13px; color: var(--text-m); transition: color .2s; }
.footer-contacts a:hover { color: var(--accent-lt); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .pain-intro { grid-template-columns: 1fr; gap: 36px; }
  .pain-cards { grid-template-columns: 1fr; gap: 16px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-connector { display: none; }
  .svc-grid {
    display: flex !important; flex-wrap: nowrap !important;
    overflow-x: auto; overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px; padding-bottom: 16px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .svc-grid::-webkit-scrollbar { display: none; }
  .svc-card { flex: 0 0 80vw; max-width: 320px; scroll-snap-align: start; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .phase-item { grid-template-columns: 50px 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-contacts { flex-direction: column; gap: 8px; }
  .cta-box { padding: 48px 24px; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  nav.scrolled { backdrop-filter: none; background: rgba(6,12,24,.97); }
  .mobile-menu { backdrop-filter: none; background: rgba(6,12,24,.99); }
  .orb { filter: blur(60px); }
  .fu { transition: opacity .45s ease, transform .45s ease; }
  .fu.d1,.fu.d2,.fu.d3,.fu.d4 { transition-delay: 0s; }
}

@media (max-width: 580px) {
  .hero-h1 { font-size: 30px; }
  .sec-header h2 { font-size: 24px; }
  .svc-card { flex: 0 0 85vw; }
  .m-step { padding: 0 20px 36px; }
  #dolor, #metodologia, #servicios, #fases, #por-que, #equipo, #contacto { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero-card, .hero-mini-stat { animation: none !important; }
}

/* ═══════════════════════════════════════════
   MODAL — PRE-CALIFICACIÓN
════════════════════════════════════════════ */

/* Overlay */
.form-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.form-modal.open { display: flex; }

.form-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(2, 6, 20, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

/* Panel */
.form-modal-panel {
  position: relative; z-index: 1;
  background: #0A1224;
  border: 1px solid var(--border-a);
  border-radius: 20px;
  width: 100%; max-width: 680px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(12,94,232,.12);
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header fijo */
.form-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.form-modal-header-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.form-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2;
}
.form-modal-close {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(148,184,250,.06);
  border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  color: var(--text-m); font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.form-modal-close:hover {
  background: rgba(12,94,232,.15);
  border-color: var(--border-a); color: var(--text);
}
.form-modal-subtitle {
  font-size: 13px; color: var(--text-m);
  line-height: 1.6; margin-top: 8px;
}
.form-modal-warning {
  margin-top: 10px; padding: 10px 14px;
  background: rgba(248,197,80,.06);
  border: 1px solid rgba(248,197,80,.2);
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  color: #F8C550; letter-spacing: .04em; text-transform: uppercase;
}

/* Scrollable body */
.form-modal-body {
  overflow-y: auto; padding: 28px 32px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--border-a) transparent;
}
.form-modal-body::-webkit-scrollbar { width: 5px; }
.form-modal-body::-webkit-scrollbar-track { background: transparent; }
.form-modal-body::-webkit-scrollbar-thumb { background: var(--border-a); border-radius: 4px; }

/* Secciones del form */
.pf-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.pf-section:last-of-type { border-bottom: none; margin-bottom: 0; }
.pf-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800;
  margin-bottom: 20px; letter-spacing: -.01em;
}
.pf-section-desc {
  font-size: 13px; color: var(--text-m);
  line-height: 1.6; margin-top: -12px; margin-bottom: 20px;
}

/* Field group */
.pf-field {
  margin-bottom: 20px;
}
.pf-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
  line-height: 1.4;
}
.pf-label .req { color: var(--accent-lt); margin-left: 2px; }

/* Inputs & textareas */
.pf-input, .pf-textarea {
  width: 100%;
  background: rgba(148,184,250,.04);
  border: 1px solid var(--border);
  border-radius: 9px; padding: 11px 14px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px; color: var(--text);
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.pf-input::placeholder, .pf-textarea::placeholder { color: var(--text-dim); }
.pf-input:focus, .pf-textarea:focus {
  border-color: var(--accent);
  background: rgba(12,94,232,.06);
}
.pf-input.error, .pf-textarea.error { border-color: #F87171; }
.pf-textarea { resize: vertical; min-height: 90px; }

/* Radio / Checkbox groups */
.pf-options { display: flex; flex-direction: column; gap: 8px; }
.pf-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(148,184,250,.03);
  border: 1px solid var(--border);
  border-radius: 9px; cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 14px; color: var(--text-m);
  user-select: none;
}
.pf-option:hover {
  border-color: var(--border-a);
  background: rgba(12,94,232,.06);
  color: var(--text);
}
.pf-option input[type="radio"],
.pf-option input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--accent); cursor: pointer;
}
.pf-option.selected {
  border-color: var(--accent);
  background: rgba(12,94,232,.1);
  color: var(--text);
}
.pf-option-prefix {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent-dk); border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700; color: var(--accent-lt);
}

/* Error message */
.pf-error-msg {
  display: none;
  font-size: 12px; color: #F87171;
  margin-top: 5px;
}
.pf-error-msg.show { display: block; }

/* Conditional sections */
.pf-conditional { display: none; }
.pf-conditional.active { display: block; }

/* Inversión notice */
.pf-inversion {
  background: rgba(12,94,232,.07);
  border: 1px solid var(--border-a);
  border-radius: 10px; padding: 14px 16px;
  font-size: 13px; color: var(--text-m);
  line-height: 1.6; margin-bottom: 12px;
}
.pf-inversion strong { color: var(--accent-lt); }

/* Calendly section */
.pf-calendly { margin-top: 8px; }
.pf-calendly-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  margin-bottom: 14px;
}
.pf-calendly-note {
  font-size: 13px; color: var(--text-m);
  margin-bottom: 16px; line-height: 1.6;
}
.calendly-inline-widget {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}

/* Submit zone */
.pf-submit-zone {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}
.pf-submit-zone .btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 15px 32px;
}
.pf-submit-note {
  text-align: center; font-size: 12px;
  color: var(--text-dim); margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* Success state */
.pf-success {
  display: none; text-align: center;
  padding: 48px 24px;
}
.pf-success.show { display: block; }
.pf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dk), var(--accent));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: 0 0 32px rgba(12,94,232,.4);
}
.pf-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; margin-bottom: 12px;
}
.pf-success p { font-size: 15px; color: var(--text-m); line-height: 1.7; }

/* Loading state */
.btn-loading {
  opacity: .7; pointer-events: none;
  position: relative;
}
.btn-loading::after {
  content: '';
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive modal */
@media (max-width: 720px) {
  .form-modal { padding: 0; align-items: flex-end; }
  .form-modal-panel {
    max-width: 100%; max-height: 92vh;
    border-radius: 20px 20px 0 0;
    animation: modal-in-mobile .28s ease;
  }
  @keyframes modal-in-mobile {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .form-modal-header { padding: 22px 20px 16px; }
  .form-modal-body { padding: 20px 20px 28px; }
  .form-modal-title { font-size: 18px; }
}

/* ══════════════════════════════════════════
   DROPDOWN ACCORDION — pf-drop
══════════════════════════════════════════ */
.pf-drop { position: relative; }

.pf-drop-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 11px 14px;
  background: rgba(148,184,250,.04);
  border: 1px solid rgba(148,184,250,.10);
  border-radius: 9px;
  cursor: pointer; text-align: left;
  font-family: 'Figtree', sans-serif;
  transition: border-color .2s, background .2s;
  color: #EEF2FF;
}
.pf-drop-btn:hover { border-color: rgba(12,94,232,.38); background: rgba(12,94,232,.06); }
.pf-drop.open .pf-drop-btn { border-color: #0C5EE8; background: rgba(12,94,232,.08); border-radius: 9px 9px 0 0; }
.pf-drop.error .pf-drop-btn { border-color: #F87171; }

.pf-drop-val { font-size: 14px; flex: 1; margin-right: 8px; }
.pf-drop-val.placeholder { color: #4D6790; }

.pf-chev { width: 16px; height: 16px; flex-shrink: 0; stroke: #92ABD6; transition: transform .2s; }
.pf-drop.open .pf-chev { transform: rotate(180deg); }

.pf-drop-list {
  display: none;
  border: 1px solid rgba(12,94,232,.38); border-top: none;
  border-radius: 0 0 9px 9px;
  overflow: hidden;
  background: #0A1224;
}
.pf-drop.open .pf-drop-list { display: block; }

.pf-drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  cursor: pointer; font-size: 14px;
  color: #92ABD6;
  border-bottom: 1px solid rgba(148,184,250,.06);
  transition: background .15s, color .15s;
  user-select: none;
}
.pf-drop-item:last-child { border-bottom: none; }
.pf-drop-item:hover { background: rgba(12,94,232,.1); color: #EEF2FF; }
.pf-drop-item.selected { background: rgba(12,94,232,.15); color: #EEF2FF; }
.pf-drop-item input { display: none; }

.pf-drop-check {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1.5px solid rgba(148,184,250,.3);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.pf-drop-check.pf-radio { border-radius: 50%; }
.pf-drop-check.pf-checkbox { border-radius: 3px; }
.pf-drop-item.selected .pf-drop-check {
  background: #0C5EE8; border-color: #0C5EE8;
}
.pf-drop-item.selected .pf-drop-check::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
}
.pf-drop-item.selected .pf-drop-check.pf-checkbox::after {
  width: 8px; height: 5px; border-radius: 0;
  background: none;
  border-bottom: 2px solid #fff; border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.pf-drop-pfx {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: #052B70; border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700; color: #94B8FA;
}
.pf-drop-text { flex: 1; }

.pf-otro-box {
  padding: 8px 14px 12px;
  background: rgba(12,94,232,.06);
  border-top: 1px solid rgba(148,184,250,.06);
}
.pf-otro-box .pf-input { background: rgba(148,184,250,.08); }
/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker-wrap {
  width: 100%; overflow: hidden;
  background: transparent;
  border: none;
  padding: 8px 0;
}
.ticker-row {
  padding: 16px 0; overflow: hidden;
  border: none;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}
.ticker-row-reverse .ticker-track { animation-direction: reverse; }
.ticker-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px; font-weight: 800;
  color: rgba(148,184,250,.10);
  letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
  padding: 0 44px;
  transition: color .35s ease, text-shadow .35s ease;
  cursor: default;
}
.ticker-item:hover {
  color: #0C5EE8;
  text-shadow: 0 0 30px rgba(12,94,232,.5), 0 0 60px rgba(12,94,232,.2);
}
.ticker-item.accent { color: rgba(148,184,250,.15); }
.ticker-item.accent:hover {
  color: #0C5EE8;
  text-shadow: 0 0 30px rgba(12,94,232,.5), 0 0 60px rgba(12,94,232,.2);
}
.ticker-sep {
  color: rgba(148,184,250,.08); font-size: 20px;
  display: flex; align-items: center; flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   CUPOS LIMITADOS
═══════════════════════════════════════════ */
#cupos { padding: 80px 0; }
.cupos-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(12,94,232,.3);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(5,43,112,.2);
}
.cupos-left {
  padding: 52px 48px;
  border-right: 1px solid rgba(12,94,232,.2);
  display: flex; flex-direction: column; justify-content: center;
}
.cupos-right {
  padding: 52px 48px;
  background: rgba(12,94,232,.06);
  display: flex; flex-direction: column; justify-content: center;
}
.cupos-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px; padding: 5px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; color: #86efac;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px; width: fit-content;
}
.cupos-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,.7);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.4); }
}
.cupos-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800; letter-spacing: -.02em;
  line-height: 1.2; margin-bottom: 14px;
}
.cupos-desc {
  font-size: 14px; color: var(--text-m);
  line-height: 1.75; margin-bottom: 28px;
}
.cupos-desc strong { color: #EEF2FF; }
.cupos-cta { align-self: flex-start; }
.cupos-stats {
  display: flex; flex-direction: column; gap: 28px;
}
.cupos-stat-row {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(148,184,250,.08);
}
.cupos-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.cupos-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--accent-lt); line-height: 1;
  min-width: 72px;
}
.cupos-stat-text {}
.cupos-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #EEF2FF; margin-bottom: 3px;
}
.cupos-stat-sub { font-size: 12px; color: var(--text-m); }

@media (max-width: 860px) {
  .cupos-box { grid-template-columns: 1fr; }
  .cupos-left { border-right: none; border-bottom: 1px solid rgba(12,94,232,.2); padding: 36px 28px; }
  .cupos-right { padding: 36px 28px; }
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq { padding: 96px 0; position: relative; }
.faq-inner {
  display: grid !important;
  grid-template-columns: 320px 1fr !important;
  gap: 64px !important;
  align-items: start !important;
}
.faq-left {
  position: sticky !important;
  top: 100px !important;
}
.faq-left .tag { display: inline-block; margin-bottom: 16px; }
.faq-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800; letter-spacing: -.02em;
  line-height: 1.25; margin-bottom: 14px; margin-top: 0;
}
.faq-left p { font-size: 14px; color: var(--text-m); line-height: 1.7; margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(148,184,250,.03);
  border: 1px solid rgba(148,184,250,.10);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(12,94,232,.3); }
.faq-item.open { border-color: rgba(12,94,232,.38); background: rgba(12,94,232,.05); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700; color: #EEF2FF; line-height: 1.4;
}
.faq-btn:hover { color: #fff; }
.faq-chev {
  width: 17px; height: 17px; flex-shrink: 0;
  stroke: #92ABD6; fill: none; transition: transform .25s ease;
}
.faq-item.open .faq-chev { transform: rotate(180deg); stroke: #94B8FA; }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-body { max-height: 300px; padding: 0 22px 18px; }
.faq-body p { font-size: 13px; color: var(--text-m); line-height: 1.75; margin: 0; }
.faq-body p strong { color: #94B8FA; }
@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr !important; gap: 36px !important; }
  .faq-left { position: static !important; }
}

/* ═══════════════════════════════════════════
   CARDS DE OFERTA — EXPAND HÍBRIDO
═══════════════════════════════════════════ */
.svc-differentiators {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-differentiators li {
  font-size: 13px; color: var(--text-m);
  line-height: 1.5; padding-left: 2px;
}
.svc-expand-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #94B8FA; letter-spacing: .04em;
  text-transform: uppercase; padding: 0;
  margin-bottom: 0; transition: color .2s;
}
.svc-expand-btn:hover { color: #EEF2FF; }
.svc-chev {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: currentColor; fill: none;
  transition: transform .25s ease;
}
.svc-expand-btn[aria-expanded="true"] .svc-chev { transform: rotate(180deg); }
.svc-expand-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin .35s ease;
  margin-top: 0;
}
.svc-expand-body.open {
  max-height: 400px;
  margin-top: 16px;
}
.svc-expand-body .svc-features { margin: 0; }

/* ── Ticker: fallback cuando Reduce Motion está activo ── */
@media (prefers-reduced-motion: reduce) {
  /* Ocultar el ticker scroll completamente */
  .ticker-wrap {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .ticker-row { display: none !important; }
  /* Mostrar un bloque estático de pills en su lugar */
  .ticker-wrap::after {
    content: none;
  }
  .ticker-static {
    display: grid !important;
  }
}
/* Bloque estático de pills — solo visible con reduce motion */
.ticker-static {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 24px;
  background: rgba(12,94,232,.04);
  border-top: 1px solid rgba(12,94,232,.12);
  border-bottom: 1px solid rgba(12,94,232,.12);
}
.ticker-static-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #94B8FA;
  background: rgba(12,94,232,.1);
  border: 1px solid rgba(12,94,232,.25);
  border-radius: 100px;
  padding: 6px 16px;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-static { display: grid !important; }
}

/* ── Legal links en footer ── */
.footer-legal {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}
.footer-legal a {
  font-size: 12px; color: #4D6790;
  text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: #92ABD6; }