/* ============================================================
   AIGENCI — LIQUID GLASS (whole-page treatment)
   Loaded last. Unifies the page on a deep-purple backdrop and
   floats frosted-glass cards across every section.
   ============================================================ */

/* ---- Unified backdrop ---------------------------------------------------- */
body { background: #221834; color: #fff; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1000px 680px at 10% 2%,  rgba(111,76,158,0.55), transparent 60%),
    radial-gradient(900px 640px at 92% 14%,  rgba(253,50,123,0.20), transparent 60%),
    radial-gradient(1000px 760px at 50% 60%, rgba(95,207,250,0.14), transparent 62%),
    radial-gradient(900px 700px at 18% 100%, rgba(111,76,158,0.42), transparent 60%),
    #201730;
}
/* faint grain/vignette for depth */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, transparent 60%, rgba(15,8,24,0.55) 100%);
}

/* glass token */
.glass, .glass-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.16), 0 30px 64px -34px rgba(0,0,0,0.6);
}

/* ---- Section backgrounds → transparent so backdrop shows ----------------- */
.hero, .hero-glass,
.problema, .guia, .proposito, .plan, .sistemas, .perfiles, .casos, .casos-real,
.exito, .galeria, .nosotros, .beneficios, .sabemos, .ayudarte, .contacto,
.section, .section-sm { background: transparent !important; }

/* kill per-section decorative color overlays → they clip into hard seams.
   The unified fixed body backdrop already provides all the glow/color. */
.hero-glass .glow { display: none !important; }
.hero::before, .hero-glass::before,
.sistemas::before, .casos::before, .beneficios::before { display: none !important; }

/* universal section heads on dark */
.sec-head h2 { color: #fff; }
.sec-head p { color: rgba(255,255,255,0.72); }
h2, h3, h4 { color: #fff; }
.pink { color: var(--pink) !important; }
.cyan { color: var(--cyan) !important; }

/* ---- Sabemos / Ayudarte -------------------------------------------------- */
/* ---- Sabemos / Ayudarte → stats en línea con gauge + countdown ---- */
.sabemos { color: #fff; position: relative; overflow: hidden; }
.sabemos-title { color: #fff; font-size: clamp(34px, 4vw, 52px); }
.sabemos-sub { color: rgba(255,255,255,0.76); max-width: 560px; margin: 14px auto 0; }

.diag-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.diag-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(95,207,250,0.22); }

.stat-head { text-align: center; max-width: 720px; margin: 0 auto; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 50px 0 34px; }
.stat-card {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 38px 26px 34px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
  transition: transform 220ms ease, border-color 220ms ease;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.24); }
.stat-gauge { position: relative; width: 128px; height: 128px; }
.stat-val { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-val b { font-family: var(--font-mono); font-size: 34px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.stat-val span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-top: 6px; }
.stat-title { font-size: 19px; font-weight: 900; color: #fff; line-height: 1.25; letter-spacing: -0.01em; max-width: 240px; }
.stat-close { text-align: center; font-size: 20px; color: rgba(255,255,255,0.9); max-width: 720px; margin: 0 auto; line-height: 1.5; }
.stat-close strong { color: #fff; font-weight: 800; }

/* brand stickers */
.sab-stk { position: absolute; z-index: 1; }
.sab-stk-1 { top: 12%; left: 4%; width: 50px; height: 50px; color: var(--pink); --r: -12deg; transform: rotate(-12deg); }
.sab-stk-2 { top: 16%; right: 6%; width: 38px; height: 38px; color: var(--cyan); }
.sab-stk-3 { bottom: 14%; left: 7%; width: 64px; height: 22px; color: var(--cyan); }
.sab-stk-4 { bottom: 20%; right: 5%; width: 40px; height: 40px; color: var(--pink); --r: 12deg; transform: rotate(12deg); }
@media (max-width: 980px) { .sab-stk-2, .sab-stk-3 { display: none; } }

@media (max-width: 900px) {
  .stat-row { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}



/* ---- Problema ------------------------------------------------------------ */
.problema-card { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.14); }
.problema-card.a { background: rgba(255,255,255,0.06); color: #fff; }
.problema-card.a h3 { color: #fff; }
.problema-card.a p { color: rgba(255,255,255,0.72); opacity: 1; }
.problema-card.a .num { color: var(--cyan); opacity: 1; }
.problema-card.b { background: rgba(253,50,123,0.22); border-color: rgba(253,151,188,0.35); color: #fff; }
.problema-card.b p { color: rgba(255,255,255,0.85); }
.problema-card.c { background: rgba(95,207,250,0.12); border-color: rgba(95,207,250,0.3); color: #fff; }
.problema-card.c p { color: rgba(255,255,255,0.78); }
.problema-card.c .num { color: var(--cyan); }

/* ---- Guía ---------------------------------------------------------------- */
.guia { position: relative; overflow: hidden; }
.guia-proof .p { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); backdrop-filter: blur(18px); }
.guia-photo { border: 1px solid rgba(255,255,255,0.12); box-shadow: inset 0 2px 4px rgba(255,255,255,0.12), 0 30px 64px -34px rgba(0,0,0,0.55); }

.guia-title { color: #fff; font-size: clamp(32px, 3.8vw, 52px); line-height: 1.05; }
.guia-title .pink { color: var(--pink); }
.guia-title .cyan { color: var(--cyan); }
.guia .lead { color: rgba(255,255,255,0.84); font-size: 16.5px; line-height: 1.6; margin-top: 20px; max-width: 560px; }
.guia .lead strong { color: #fff; font-weight: 800; }
.guia .lead-2 { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; margin-top: 14px; max-width: 560px; }
.guia .lead-2 strong { color: var(--cyan); font-weight: 800; }

.guia-feats { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.guia-feat {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 18px 20px;
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, border-color 200ms ease;
}
.guia-feat:hover { transform: translateX(4px); border-color: rgba(95,207,250,0.32); }
.guia-feat .gf-ic {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(95,207,250,0.16); border: 1px solid rgba(95,207,250,0.3); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.guia-feat h4 { font-size: 16px; font-weight: 900; color: #fff; margin: 0 0 3px; letter-spacing: -0.01em; }
.guia-feat p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; }

/* Embudo simulado — glass dashboard (matches hero) */
.funnel-dash {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-xl); padding: 26px 28px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.18), 0 40px 90px -36px rgba(0,0,0,0.6);
}
.fd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.fd-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: #fff; }
.fd-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 0 rgba(52,210,123,0.6), 0 0 10px 1px rgba(52,210,123,0.9); animation: fdPulse 1.8s ease-out infinite; }
@keyframes fdPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,210,123,0.55), 0 0 10px 1px rgba(52,210,123,0.9); }
  70%  { box-shadow: 0 0 0 7px rgba(52,210,123,0), 0 0 12px 2px rgba(52,210,123,1); }
  100% { box-shadow: 0 0 0 0 rgba(52,210,123,0), 0 0 10px 1px rgba(52,210,123,0.9); }
}
@media (prefers-reduced-motion: reduce) { .fd-dot { animation: none; } }
.fd-range { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.fd-stages { display: flex; flex-direction: column; gap: 20px; }
.fd-stage-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 9px; }
.fd-k { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.82); }
.fd-step {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55);
}
.fd-step svg { color: rgba(255,255,255,0.4); }
.fd-v { font-family: var(--font-mono); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-left: auto; }
.fd-bar { height: 14px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.fd-bar i { display: block; height: 100%; border-radius: 999px; box-shadow: 0 0 18px -2px currentColor, inset 0 1px 1px rgba(255,255,255,0.4); transition: width 60ms linear; }

.fd-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
}
.fd-conv { display: flex; flex-direction: column; gap: 4px; }
.fd-conv-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.fd-conv-val { font-family: var(--font-mono); font-size: 32px; font-weight: 700; color: var(--cyan); letter-spacing: -0.02em; line-height: 1; }
.fd-spark { width: 130px; height: 44px; flex-shrink: 0; display: flex; align-items: flex-end; gap: 6px; }
.fd-spark span { flex: 1; background: rgba(95,207,250,0.35); border-radius: 3px 3px 0 0; transition: height 60ms linear; }
.fd-spark span.up { background: var(--cyan); box-shadow: 0 0 12px -2px var(--cyan); }

/* integrated stats strip */
.guia-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.gs-item { text-align: center; }
.gs-v { font-family: var(--font-mono); font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.gs-item:nth-child(1) .gs-v { color: var(--cyan); }
.gs-item:nth-child(2) .gs-v { color: var(--violet); }
.gs-item:nth-child(3) .gs-v { color: var(--pink); }
.gs-k { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-top: 12px; }

.guia-stk { position: absolute; z-index: 1; }
.guia-stk-1 { top: 12%; right: 6%; width: 36px; height: 36px; color: var(--cyan); }
.guia-stk-2 { bottom: 26%; left: 3%; width: 38px; height: 38px; color: var(--pink); --r: -10deg; transform: rotate(-10deg); }

@media (max-width: 900px) {
  .guia-stats { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
}

/* ---- Propósito ----------------------------------------------------------- */
.feat-ic { background: rgba(95,207,250,0.16); border: 1px solid rgba(95,207,250,0.25); }
.laptop-frame { border-color: rgba(255,255,255,0.14); }

/* ---- Plan ---------------------------------------------------------------- */
.plan-step { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6); }
.plan-step h3 { color: #fff; }
.plan-step p { color: rgba(255,255,255,0.72); opacity: 1; }
.plan-step .tick { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.plan-step.b { background: rgba(253,50,123,0.22); border-color: rgba(253,151,188,0.35); }
.plan-step.b .tick { background: rgba(255,255,255,0.18); }

/* ---- Beneficios (keep pink presence as tint) ----------------------------- */
.beneficios { position: relative; }
.beneficios::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(700px 320px at 50% 30%, rgba(253,50,123,0.22), transparent 70%); }
.beneficios .wrap { position: relative; z-index: 1; }
.ben-head h2 { color: #fff; }
.ben-head h2 em { background: var(--pink); color: #fff; }
.ben { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(20px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.16), 0 30px 60px -34px rgba(0,0,0,0.5); }
.ben-n { color: #fff; }
.ben-l { color: rgba(255,255,255,0.82); }

/* ---- Sistemas ------------------------------------------------------------ */
.sistemas { position: relative; overflow: hidden; }
.sis-stk { position: absolute; z-index: 1; pointer-events: none; }
.sis-stk-1 { top: 7%; left: 4%; width: 46px; height: 46px; color: var(--pink); --r: -12deg; transform: rotate(-12deg); }
.sis-stk-2 { top: 10%; right: 5%; width: 36px; height: 36px; color: var(--cyan); }
.sis-stk-3 { bottom: 8%; left: 3%; width: 40px; height: 40px; color: var(--cyan); --r: 14deg; transform: rotate(14deg); }
@media (max-width: 820px) { .sis-stk-2 { display: none; } }
.sistema { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6); }
.sistema:hover { box-shadow: inset 0 2px 4px rgba(255,255,255,0.18), 0 40px 80px -34px rgba(0,0,0,0.7); }
.sistema .badge { background: rgba(95,207,250,0.14); color: var(--cyan); border: 1px solid rgba(95,207,250,0.22); }
.sistema h3 { color: #fff; }
.sistema h3 em { color: var(--cyan); }
.sistema .blurb { color: rgba(255,255,255,0.72); }
.sistema .price { color: #fff; border-top-color: rgba(255,255,255,0.18); }
.sistema .price small { color: rgba(255,255,255,0.55); }
.sistema ul li { color: rgba(255,255,255,0.9); }
.sistema.featured { background: rgba(253,50,123,0.16); border-color: rgba(253,151,188,0.32); }
.sistema.featured .badge { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.25); }

/* simplified card: price near top, outcome + segments footer */
.sistema .price { border-top: 0; padding-top: 0; font-size: 26px; }
.sistema .price small { display: inline; margin-top: 0; margin-left: 6px; font-size: 12px; letter-spacing: 0.04em; }
.sistema .blurb { font-size: 15px; margin-top: -2px; }
.sis-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 12px; }
.sis-line { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.82); }
.sis-line.muted { color: rgba(255,255,255,0.55); font-size: 12.5px; }
.sis-ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cyan); background: rgba(95,207,250,0.18); margin-top: 0; }
.sis-ic svg { width: 13px; height: 13px; }
.sistema.featured .sis-ic { color: var(--pink); background: rgba(253,50,123,0.22); }
.sistema.featured .sis-line { color: rgba(255,255,255,0.9); }
.sistema.featured .sis-line.muted { color: rgba(255,255,255,0.62); }
.sistema .cta { margin-top: auto; padding-top: 10px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.sis-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: #fff;
  padding: 13px 18px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4); background: transparent;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.sis-link:hover { background: rgba(255,255,255,0.08); }
.sis-link .arrow { transition: transform 180ms ease; }
.sis-link:hover .arrow { transform: translateX(3px); }
/* outline per tier accent */
.sis-link .sn { font-weight: 900; }
.sistemas-grid .sistema:nth-child(1) .sis-link { border-color: var(--cyan); color: #fff; }
.sistemas-grid .sistema:nth-child(1) .sis-link .sn { color: var(--cyan); }
.sistemas-grid .sistema:nth-child(1) .sis-link:hover { background: rgba(95,207,250,0.12); }
.sistemas-grid .sistema:nth-child(2) .sis-link { border-color: var(--pink); color: #fff; }
.sistemas-grid .sistema:nth-child(2) .sis-link .sn { color: var(--pink); }
.sistemas-grid .sistema:nth-child(2) .sis-link:hover { background: rgba(253,50,123,0.18); }
.sistemas-grid .sistema:nth-child(3) .sis-link { border-color: #B98BFF; color: #fff; }
.sistemas-grid .sistema:nth-child(3) .sis-link .sn { color: #C9A6FF; }
.sistemas-grid .sistema:nth-child(3) .sis-link:hover { background: rgba(155,92,240,0.18); }

/* distinct accent per tier */
.sistemas-grid .sistema { border-top-width: 3px; }
/* One — cyan */
.sistemas-grid .sistema:nth-child(1) { border-top-color: var(--cyan); }
.sistemas-grid .sistema:nth-child(1) .badge { background: rgba(95,207,250,0.16); color: var(--cyan); border-color: rgba(95,207,250,0.3); }
.sistemas-grid .sistema:nth-child(1) h3 em { color: var(--cyan); }
.sistemas-grid .sistema:nth-child(1) ul li::before { background: var(--cyan); }
.sistemas-grid .sistema:nth-child(1) .sis-ic { color: var(--cyan); background: rgba(95,207,250,0.18); }
/* Pro — pink (featured) */
.sistemas-grid .sistema:nth-child(2) { border-top-color: var(--pink); }
.sistemas-grid .sistema:nth-child(2) h3 em { color: var(--pink); }
.sistemas-grid .sistema:nth-child(2) ul li::before { background: var(--pink); }
/* Max — violet */
.sistemas-grid .sistema:nth-child(3) { background: rgba(123,63,224,0.14); border-color: rgba(155,92,240,0.3); border-top-color: #9B5CF0; }
.sistemas-grid .sistema:nth-child(3) .badge { background: rgba(155,92,240,0.2); color: #C9A6FF; border-color: rgba(155,92,240,0.36); }
.sistemas-grid .sistema:nth-child(3) h3 em { color: #C9A6FF; }
.sistemas-grid .sistema:nth-child(3) ul li::before { background: #B98BFF; }
.sistemas-grid .sistema:nth-child(3) .sis-ic { color: #C9A6FF; background: rgba(155,92,240,0.22); }
.sistemas-grid .sistema:nth-child(3) .btn-primary { background: #9B5CF0; }
.sistemas-grid .sistema:nth-child(3) .btn-primary:hover { background: #8A45E0; }

/* ---- Perfiles ------------------------------------------------------------ */
.perfiles-tabs { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(18px); }
.perfiles-tabs button { color: rgba(255,255,255,0.78); }
.perfiles-tabs button.active { background: var(--pink); color: #fff; }
.perfil-card h3 { color: #fff; }
.perfil-card h3 em { color: var(--cyan); }
.perfil-card p.pain { color: rgba(255,255,255,0.78); }
.perfil-card .tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.14); }
.perfil-visual { border: 1px solid rgba(255,255,255,0.16); box-shadow: inset 0 2px 6px rgba(255,255,255,0.2), 0 30px 64px -34px rgba(0,0,0,0.55); }
.perfil-visual .caption { background: rgba(255,255,255,0.85); }

/* ---- Casos --------------------------------------------------------------- */
.caso { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,0.14); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6); }
.caso.a { background: rgba(255,255,255,0.06); color: #fff; }
.caso.a .big { color: var(--cyan); }
.caso.b { background: rgba(253,50,123,0.22); border-color: rgba(253,151,188,0.32); color: #fff; }
.caso.c { background: rgba(95,207,250,0.12); border-color: rgba(95,207,250,0.28); color: #fff; }
.caso .ctype { color: rgba(255,255,255,0.7); opacity: 1; }
.caso h4 { color: #fff; }
.caso p.ps { color: rgba(255,255,255,0.78); opacity: 1; }
.caso .foot { border-top-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.7); opacity: 1; }

/* ---- Casos reales (estudios de caso / testimonios) ----------------------- */
.casos-real { position: relative; overflow: hidden; }
.cr-list { display: flex; flex-direction: column; gap: 36px; }
.cr-case {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 40px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.12), 0 40px 90px -44px rgba(0,0,0,0.6);
}
.cr-case.flip { grid-template-columns: 1.15fr 0.85fr; }
.cr-case.flip .cr-visual { order: 2; }

/* photo block — analytics scene behind a softly-lit figure */
.cr-visual { position: relative; }
.cr-photo-bg {
  position: relative; aspect-ratio: 1/1; border-radius: 22px;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0; overflow: hidden;
  background:
    radial-gradient(60% 50% at 82% 78%, color-mix(in srgb, var(--cr-line,#5FCFFA) 28%, transparent), transparent 70%),
    linear-gradient(150deg, #2b2142 0%, #241a38 45%, #1c1430 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.16), 0 30px 64px -34px rgba(0,0,0,0.6);
}
/* scene container */
.cr-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; border-radius: inherit; }
/* soft warm light bloom behind the figure → blends the cutout edges */
.cr-bloom { position: absolute; left: 50%; top: 44%; width: 80%; height: 82%; transform: translate(-50%,-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.34), rgba(255,255,255,0.08) 50%, transparent 70%);
  filter: blur(6px); }
/* climbing chart like reference */
.cr-chart { position: absolute; inset: 0; width: 100%; height: 100%; }
.cr-chart .cr-gl { stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.cr-chart .cr-line { fill: none; stroke: var(--cr-line,#5FCFFA); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--cr-line,#5FCFFA) 80%, transparent)); }
.cr-chart .cr-area { fill: url(#crAreaGrad); }
.cr-chart .cr-area { fill: color-mix(in srgb, var(--cr-line,#5FCFFA) 16%, transparent); }
.cr-chart .cr-node { fill: #fff; filter: drop-shadow(0 0 6px var(--cr-line,#5FCFFA)); }
.cr-chart .cr-node-glow { fill: color-mix(in srgb, var(--cr-line,#5FCFFA) 45%, transparent); }
/* animated "live" chart line + pulsing node */
@media (prefers-reduced-motion: no-preference) {
  .cr-chart .cr-line { stroke-dasharray: 46 14; animation: crLineFlow 2.6s linear infinite; }
  .cr-chart .cr-node-glow { transform-origin: 298px 116px; animation: crNodePulse 2.2s ease-in-out infinite; }
}
@keyframes crLineFlow { to { stroke-dashoffset: -60; } }
@keyframes crNodePulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.7); opacity: 0.15; }
}

.cr-ph-tag { position: absolute; bottom: 16px; left: 16px; z-index: 3; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600;
  border: 1px solid rgba(255,255,255,0.16); padding: 4px 10px; border-radius: 999px; background: rgba(0,0,0,0.28); }

/* per-case accent line color */
.cr-photo-bg.cyan { --cr-line: #5FCFFA; --cr-ink: #BfeaFF; }
.cr-photo-bg.violet { --cr-line: #9B5CF0; --cr-ink: #D9C6FF; }
.cr-photo-bg.pink { --cr-line: #FD327B; --cr-ink: #FFC2D8; }

.cr-photo-frame {
  position: absolute; inset: 0 6% 0 6%; overflow: visible;
  background: transparent; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.cr-photo-frame image-slot { width: 100%; height: 100%; }
/* hero metric chip overlapping the base */
.cr-ph-chip {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: rgba(31,24,41,0.62); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 10px 15px; backdrop-filter: blur(14px);
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.16), 0 16px 30px -14px rgba(0,0,0,0.6);
}
.cr-ph-chip .big { font-family: var(--font-mono); font-size: 24px; font-weight: 800; color: var(--cr-ink, #BfeaFF); line-height: 1; letter-spacing: -0.02em; }
.cr-ph-chip .lab { font-size: 11px; color: rgba(255,255,255,0.72); font-weight: 700; max-width: 96px; line-height: 1.25; }
.cr-ph-stk1 { position: absolute; top: 18px; right: 20px; width: 78px; height: 78px; color: var(--pink); z-index: 4; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35)); }
.cr-ph-stk2 { position: absolute; bottom: 22%; left: 22px; width: 58px; height: 58px; color: var(--cyan); z-index: 4; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35)); }
.cr-photo-bg.pink .cr-ph-stk1 { color: var(--cyan); }
.cr-photo-bg.violet .cr-ph-stk1 { color: var(--cyan); }
.cr-photo-bg.violet .cr-ph-stk2 { color: var(--pink); }
.cr-photo-bg.cyan .cr-ph-stk2 { color: var(--pink); }

/* content */
.cr-content { min-width: 0; }
.cr-sys {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan);
  background: rgba(95,207,250,0.14); border: 1px solid rgba(95,207,250,0.28);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.cr-sys-max { color: #9B5CF0; background: rgba(155,92,240,0.16); border-color: rgba(155,92,240,0.36); }
.cr-sys-pro { color: var(--pink); background: rgba(253,50,123,0.14); border-color: rgba(253,50,123,0.34); }
.cr-name { font-size: clamp(26px, 3vw, 36px); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
.cr-logo { font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.85); margin: 10px 0 0; }
.cr-logo-img { height: 50px; width: auto; max-width: 240px; object-fit: contain; object-position: left center; margin: 2px 0 0; display: block; }
.cr-cat { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 8px 0 18px; }
.cr-quote { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.86); margin: 0; font-style: italic; }
.cr-author { font-size: 14px; font-weight: 800; color: #fff; margin: 16px 0 0; }
.cr-author span { font-weight: 600; color: rgba(255,255,255,0.6); }

.cr-results { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }
.cr-results-label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.cr-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cr-metric {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.cr-metric-n { font-family: var(--font-mono); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--cyan); line-height: 1; }
.cr-metric:nth-child(2) .cr-metric-n { color: var(--pink); }
.cr-metric:nth-child(3) .cr-metric-n { color: #B98BFF; }
.cr-metric-t { font-size: 12px; color: rgba(255,255,255,0.66); line-height: 1.35; font-weight: 600; }

.cr-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 14px; font-weight: 800; color: #fff;
  padding: 12px 22px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4); background: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}
.cr-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.cr-link .arrow { transition: transform 180ms ease; }
.cr-link:hover .arrow { transform: translateX(3px); }

.cr-stk { position: absolute; z-index: 1; pointer-events: none; }
.cr-stk-a { top: 80px; right: 4%; width: 44px; height: 44px; color: var(--pink); }
.cr-stk-b { bottom: 8%; left: 3%; width: 40px; height: 40px; color: var(--cyan); }

@media (max-width: 860px) {
  .cr-case, .cr-case.flip { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .cr-case.flip .cr-visual { order: 0; }
  .cr-visual { width: 100%; max-width: 360px; margin: 0 auto; }
  .cr-metrics { grid-template-columns: 1fr; }
  .cr-metric { flex-direction: row; align-items: baseline; gap: 12px; }
}

/* ---- Galería ------------------------------------------------------------- */
.gal-card { border: 1px solid rgba(255,255,255,0.18); box-shadow: inset 0 2px 6px rgba(255,255,255,0.22), 0 30px 64px -34px rgba(0,0,0,0.55); }

/* ---- Éxito → dashboard split (Tu negocio hoy vs Con Aigenci) ---- */
.exito { position: relative; overflow: hidden; }
.ex-stk { position: absolute; z-index: 1; pointer-events: none; }
.ex-stk-1 { top: 10%; left: 4%; width: 46px; height: 46px; color: var(--pink); --r: -12deg; transform: rotate(-12deg); }
.ex-stk-2 { top: 14%; right: 5%; width: 36px; height: 36px; color: var(--cyan); }
.ex-stk-3 { bottom: 3%; left: 1.5%; width: 38px; height: 38px; color: var(--cyan); --r: 14deg; transform: rotate(14deg); }
.ex-stk-4 { bottom: 4%; right: 1.5%; width: 54px; height: 18px; color: var(--pink); }
@media (max-width: 820px) { .ex-stk-2, .ex-stk-4 { display: none; } }
.exito-dash { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; margin-top: 8px; }
.exito-dash .vs-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: 54px; height: 54px; border-radius: 50%; background: #221834;
  border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; font-size: 15px; color: #fff;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
}
.ex-panel { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.12), 0 30px 64px -34px rgba(0,0,0,0.6);
}
.ex-panel.on { background: rgba(95,207,250,0.08); border-color: rgba(95,207,250,0.26); }
.ex-ph { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ex-who { display: flex; flex-direction: column; }
.ex-who b { font-size: 16px; font-weight: 900; color: #fff; }
.ex-who small { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.ex-panel.off .ex-who small { color: var(--pink); }
.ex-panel.on .ex-who small { color: var(--cyan); }
.ex-pill { font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 5px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ex-panel.off .ex-pill { color: var(--pink); background: rgba(253,50,123,0.14); }
.ex-panel.on .ex-pill { color: var(--cyan); background: rgba(95,207,250,0.14); }
.ex-pill .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ex-kpis { padding: 10px 22px 18px; display: flex; flex-direction: column; flex: 1; }
.ex-kpi { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ex-kpi:last-child { border-bottom: 0; }
.ex-kpi .k { font-size: 13.5px; color: rgba(255,255,255,0.7); font-weight: 600; }
.ex-kpi .v { font-family: var(--font-mono); font-size: 23px; font-weight: 800; letter-spacing: -0.02em; text-align: right; }
.ex-panel.off .ex-kpi .v { color: rgba(255,255,255,0.45); }
.ex-panel.on .ex-kpi .v { color: var(--cyan); }
.ex-foot { margin-top: auto; padding: 16px 22px; font-size: 13.5px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.ex-panel.off .ex-foot { color: var(--pink); background: rgba(253,50,123,0.08); border-top: 1px solid rgba(253,50,123,0.18); }
.ex-panel.on .ex-foot { color: var(--cyan); background: rgba(95,207,250,0.08); border-top: 1px solid rgba(95,207,250,0.18); }
@media (max-width: 820px) {
  .exito-dash { grid-template-columns: 1fr; gap: 14px; }
  .exito-dash .vs-badge { display: none; }
}

/* ---- Éxito (legacy split, unused) ---- */
.exito-col.bad { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(20px); }
.exito-col.bad h4 { color: rgba(255,255,255,0.6); }
.exito-col.bad li { color: rgba(255,255,255,0.7); }
.exito-col.bad li::before { background: rgba(255,255,255,0.25); color: #221834; }
.exito-col.good { background: rgba(95,207,250,0.12); border: 1px solid rgba(95,207,250,0.28); backdrop-filter: blur(20px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.55); }

/* ---- Testimonios --------------------------------------------------------- */
.t-card { backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,0.14); box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6); }
.t-card.a { background: rgba(255,255,255,0.06); color: #fff; }
.t-card.a .av { background: rgba(255,255,255,0.16); color: #fff; }
.t-card.b { background: rgba(253,50,123,0.2); border-color: rgba(253,151,188,0.3); color: #fff; }
.t-card.c { background: rgba(95,207,250,0.14); border-color: rgba(95,207,250,0.3); color: #fff; }
.t-card .quote { color: #fff; }
.t-card .who span { color: rgba(255,255,255,0.7); opacity: 1; }
.t-card .by { border-top-color: rgba(255,255,255,0.16); }

/* ---- Nosotros ------------------------------------------------------------ */
.nosotros h2 { color: #fff; }
.nosotros p { color: rgba(255,255,255,0.78) !important; }
.nosotros-kpis { border-top-color: rgba(255,255,255,0.18); }
.nosotros-kpis .k { color: var(--cyan); }
.nosotros-kpis .l { color: rgba(255,255,255,0.72); }
.nosotros-photo { border: 1px solid rgba(255,255,255,0.16); box-shadow: inset 0 2px 6px rgba(255,255,255,0.2), 0 30px 64px -34px rgba(0,0,0,0.55); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq-sec { position: relative; overflow: hidden; }
.faq-stk { position: absolute; z-index: 0; pointer-events: none; }
.faq-stk-a { top: 8%; right: 6%; width: 58px; height: 58px; color: var(--pink); }
.faq-stk-b { top: 64%; left: 4%; width: 44px; height: 44px; color: var(--cyan); }
.faq-stk-c { bottom: 10%; right: 9%; width: 38px; height: 38px; color: var(--cyan); }
.faq-stk-d { top: 22%; left: 7%; width: 60px; height: 26px; color: var(--pink); }
.faq-sec .wrap-n { position: relative; z-index: 1; }
@media (max-width: 860px) { .faq-stk-b, .faq-stk-d { display: none; } }
.faq-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(20px); }
.faq-item.open { background: rgba(255,255,255,0.09); }
.faq-q { color: #fff; }
.faq-item.open .faq-q { color: #fff; }
.faq-q .plus { background: rgba(255,255,255,0.16); color: #fff; }
.faq-a p { color: rgba(255,255,255,0.75); }

/* ---- Contacto ------------------------------------------------------------ */
.contacto-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px); color: #fff; box-shadow: inset 0 2px 4px rgba(255,255,255,0.16), 0 40px 90px -30px rgba(0,0,0,0.6); }
.contacto-form .field label { color: rgba(255,255,255,0.75); }
.contacto-form input, .contacto-form select, .contacto-form textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff;
}
.contacto-form input::placeholder, .contacto-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contacto-form input:focus, .contacto-form select:focus, .contacto-form textarea:focus { border-color: var(--cyan); background: rgba(255,255,255,0.12); }
.contacto-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235FCFFA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); }
.contacto-form select option { background: #2a1f3d; color: #fff; }
.success-msg { background: rgba(95,207,250,0.12); border: 1px solid rgba(95,207,250,0.28); color: #fff; }
.success-msg h4 { color: #fff; }
.success-msg p { color: rgba(255,255,255,0.8) !important; }

/* ---- Footer (slightly translucent over backdrop) ------------------------- */
.footer { background: transparent; border-top: 1px solid rgba(255,255,255,0.08); }

/* ---- Proceso (timeline zigzag) ---- */
.proceso { position: relative; overflow: hidden; }
.proceso-timeline { position: relative; max-width: 980px; margin: 0 auto; }
.pt-line { position: absolute; left: 50%; top: 98px; bottom: 98px; width: 3px; transform: translateX(-50%); background: rgba(255,255,255,0.12); border-radius: 99px; overflow: hidden; }
.pt-line-fill { width: 100%; background: linear-gradient(180deg, var(--cyan), var(--pink)); border-radius: 99px; }

.pt-row { position: relative; height: 196px; }
.pt-node {
  position: absolute; left: 50%; top: 50%;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 22px; z-index: 2;
  box-shadow: 0 0 0 6px rgba(32,23,48,1), 0 0 26px -4px rgba(253,50,123,0.8);
  transform: translate(-50%,-50%) scale(0.3); opacity: 0;
  transition: transform 420ms cubic-bezier(.34,1.56,.64,1), opacity 320ms ease;
}
.pt-row.on .pt-node { transform: translate(-50%,-50%) scale(1); opacity: 1; }

.pt-card {
  position: absolute; top: 50%; width: calc(50% - 54px);
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 22px 26px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.14), 0 30px 64px -34px rgba(0,0,0,0.6);
  opacity: 1; transition: opacity 480ms ease, transform 480ms cubic-bezier(.22,1,.36,1);
}
.pt-card h3 { font-size: 20px; font-weight: 900; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.pt-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0; }
.pt-spacer { display: none; }

.pt-row.right .pt-card { right: 0; transform: translate(40px, -50%); }
.pt-row.left .pt-card { left: 0; text-align: right; transform: translate(-40px, -50%); }
.pt-row.right.on .pt-card { transform: translate(0, -50%); opacity: 1; }
.pt-row.left.on .pt-card { transform: translate(0, -50%); opacity: 1; }

.pr-stk { position: absolute; z-index: 1; }
.pr-stk-1 { top: 10%; left: 5%; width: 42px; height: 42px; color: var(--cyan); }
.pr-stk-2 { top: 32%; right: 5%; width: 34px; height: 34px; color: var(--pink); }
.pr-stk-3 { bottom: 8%; left: 8%; width: 38px; height: 38px; color: var(--pink); --r: -10deg; transform: rotate(-10deg); }
.pr-stk-4 { top: 56%; left: 3%; width: 30px; height: 30px; color: var(--cyan); }
.pr-stk-5 { bottom: 28%; right: 7%; width: 46px; height: 18px; color: var(--cyan); }
.pr-stk-6 { top: 8%; right: 16%; width: 26px; height: 26px; color: var(--pink); }

@media (max-width: 760px) {
  .proceso .sec-head { margin-bottom: 34px; }
  .proceso-timeline { padding-left: 0; }
  .pt-line { left: 27px; top: 30px; bottom: 30px; }
  .pt-row { display: flex; align-items: center; gap: 16px; height: auto; min-height: 0; margin-bottom: 18px; padding-left: 0; }
  .pt-node { position: relative; left: auto; top: auto; order: -1; flex: 0 0 54px; width: 54px; height: 54px; transform: scale(0.4); }
  .pt-row.on .pt-node { transform: scale(1); }
  .pt-card { position: static; width: auto; flex: 1 1 auto; transform: translateX(24px); text-align: left !important; padding: 18px 20px; }
  .pt-row.left .pt-card, .pt-row.right .pt-card { transform: translateX(24px); }
  .pt-row.on .pt-card,
  .pt-row.left.on .pt-card, .pt-row.right.on .pt-card { transform: translateX(0); }
  .pt-card h3 { font-size: 18px; }
  .pt-card p { font-size: 13.5px; }
  .pr-stk-1, .pr-stk-3 { display: none; }
}

/* ---- Final CTA (integrado con contacto) ---- */
.final-cta { position: relative; overflow: hidden; text-align: center; padding-bottom: 40px; }
.fc-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; padding: 60px 56px; border-radius: var(--radius-xl); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: inset 0 2px 4px rgba(255,255,255,0.18), 0 40px 90px -40px rgba(0,0,0,0.6); }
.fc-contact { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 14px; color: rgba(255,255,255,0.6); }
.final-cta h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.04; color: #fff; }
.final-cta h2 .pink { color: var(--pink); }
.final-cta p { color: rgba(255,255,255,0.74); font-size: 18px; line-height: 1.55; max-width: 540px; margin: 22px auto 0; }
.fc-glass { display: contents; }
.fc-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.6); white-space: nowrap; }
.cta-note svg { color: var(--cyan); flex: none; }
.final-cta .cta-note { justify-content: center; width: 100%; }
@media (max-width: 420px) { .cta-note { font-size: 11px; gap: 6px; } }
.fc-contact b { color: var(--cyan); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 8px; }
.fc-stk { position: absolute; z-index: 1; pointer-events: none; }
.fc-stk-1 { top: 14%; left: 8%; width: 48px; height: 48px; color: var(--pink); --r: -12deg; transform: rotate(-12deg); }
.fc-stk-2 { top: 20%; right: 10%; width: 38px; height: 38px; color: var(--cyan); }
.fc-stk-3 { bottom: 22%; left: 12%; width: 40px; height: 40px; color: var(--cyan); --r: 14deg; transform: rotate(14deg); }
.fc-stk-4 { bottom: 18%; right: 9%; width: 60px; height: 20px; color: var(--pink); }
@media (max-width: 820px) { .fc-stk-2, .fc-stk-4 { display: none; } }
.sistemas, .casos, .contacto { position: relative; }
.contacto { position: relative; }
.contacto.section { padding-top: 40px; }
.sistemas::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(700px 360px at 80% 10%, rgba(95,207,250,0.12), transparent 70%); }
.casos::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(700px 360px at 15% 20%, rgba(253,50,123,0.12), transparent 70%); }
.sistemas .wrap, .casos .wrap, .contacto .wrap { position: relative; z-index: 1; }
