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

:root {
  --ink:      #080F1E;
  --ink2:     #0D1829;
  --ink3:     #111F36;
  --ink4:     #172944;
  --blue:     #2563EB;
  --blue2:    #3B82F6;
  --blue3:    #60A5FA;
  --cyan:     #38BDF8;
  --purple:   #7C3AED;
  --purple2:  #A78BFA;
  --green:    #10B981;
  --amber:    #F59E0B;
  --white:    #F1F5F9;
  --silver:   #CBD5E1;
  --slate:    #94A3B8;
  --slate2:   #64748B;
  --border:   rgba(255,255,255,0.06);
  --border2:  rgba(255,255,255,0.12);
  --glass:    rgba(255,255,255,0.04);
  --glass2:   rgba(255,255,255,0.08);
  --glow:     rgba(37,99,235,0.35);
  --radius:   14px;
  --font-h:   'Space Grotesk', sans-serif;
  --font-b:   'Inter', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
*:focus-visible { outline: 2px solid var(--blue2); outline-offset: 3px; }

/* ── GRID BG ── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── BLOBS ── */
.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.18; }
.blob-1 { width: 700px; height: 700px; background: radial-gradient(circle, #2563EB, transparent 70%); top: -200px; left: -150px; animation: blobmove1 18s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, #7C3AED, transparent 70%); top: 40%; right: -100px; animation: blobmove2 22s ease-in-out infinite; }
.blob-3 { width: 400px; height: 400px; background: radial-gradient(circle, #38BDF8, transparent 70%); bottom: 10%; left: 30%; animation: blobmove3 15s ease-in-out infinite; }
@keyframes blobmove1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(60px,-80px) scale(1.1)} 66%{transform:translate(-40px,60px) scale(0.9)} }
@keyframes blobmove2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,-60px) scale(1.15)} }
@keyframes blobmove3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-40px) scale(1.08)} }

/* ── UTILS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-alt { background: rgba(13,24,41,0.7); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-h); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--blue3); margin-bottom: 1rem; }
.eyebrow::before { content:''; width:18px; height:2px; background:var(--blue3); border-radius:2px; }
.section-h { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.hi { color: var(--blue3); }
.section-p { color: var(--slate); font-size: 1.05rem; line-height: 1.8; max-width: 520px; }

/* ── GLASS CARD ── */
.glass { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border2); border-radius: var(--radius); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 10px; font-family: var(--font-h); font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: all 200ms ease; border: 1.5px solid transparent; white-space: nowrap; letter-spacing: 0.01em; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 0 0 0 var(--glow); }
.btn-primary:hover { background: var(--blue2); border-color: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 32px var(--glow); }
.btn-ghost { border-color: var(--border2); color: var(--silver); background: transparent; }
.btn-ghost:hover { border-color: var(--blue3); color: var(--white); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: white; border-color: #25D366; }
.btn-wa:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* ── CTA CON AVATAR (revela foto en hover) ── */
.btn-diag-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 0; height: 22px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  margin-left: -0.5rem; opacity: 0; transform: scale(0.6);
  background: linear-gradient(135deg, var(--blue3), var(--purple2));
  font-family: var(--font-h); font-size: 0.6rem; font-weight: 800; color: white; letter-spacing: -0.02em;
  transition: width 280ms ease, margin-left 280ms ease, opacity 220ms ease, transform 280ms ease;
}
.btn-diag-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-diag:hover .btn-diag-avatar, .btn-diag:focus-visible .btn-diag-avatar {
  width: 22px; margin-left: 0; opacity: 1; transform: scale(1);
}

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: all 250ms ease; }
.navbar.scrolled { background: rgba(8,15,30,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 0.75rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--slate); transition: color 200ms; }
.nav-links a:hover { color: var(--white); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--silver); margin: 5px 0; transition: all 300ms; border-radius: 2px; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: rgba(8,15,30,0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-left: 1px solid var(--border2); z-index: 200; flex-direction: column; padding: 5rem 2rem 2rem; gap: 0.5rem; transform: translateX(100%); transition: transform 350ms cubic-bezier(0.4,0,0.2,1); }
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--silver); padding: 0.85rem 1rem; border-radius: 10px; transition: all 200ms; }
.mobile-menu a:hover { color: var(--white); background: var(--glass2); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 199; }
.mobile-overlay.open { display: block; }
.mob-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--glass2); border: 1px solid var(--border2); border-radius: 8px; padding: 8px; cursor: pointer; color: var(--slate); transition: all 200ms; }
.mob-close:hover { color: var(--white); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 24px; z-index: 90; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all 200ms; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── STEPS ("Cómo funciona") ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps::after { content: ''; position: absolute; top: 28px; left: calc(100%/6); right: calc(100%/6); height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); z-index: 0; }
.step { text-align: center; }
.step-num { width: 58px; height: 58px; border-radius: 16px; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--blue3); margin: 0 auto 1.5rem; position: relative; z-index: 1; box-shadow: 0 0 30px rgba(37,99,235,0.15); }
.step-title { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.85rem; color: var(--slate); line-height: 1.7; }

/* ── DASHBOARD MOCKUP (reused by /demo) ── */
.dash-wrap { position: relative; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.dash-card { background: rgba(13,24,41,0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 1.5rem; box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08); }
.dc-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.dc-title { font-family: var(--font-h); font-size: 0.72rem; font-weight: 600; color: var(--slate2); letter-spacing: 0.08em; text-transform: uppercase; }
.dc-badge { display: flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; color: var(--green); font-weight: 700; }
.dc-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); } 50% { box-shadow: 0 0 0 5px rgba(16,185,129,0); } }
.kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.kpi { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem; transition: border-color 200ms; }
.kpi:hover { border-color: rgba(59,130,246,0.3); }
.kpi-l { font-size: 0.6rem; color: var(--slate2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.kpi-v { font-family: var(--font-h); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.kpi-d { font-size: 0.62rem; color: var(--green); margin-top: 0.2rem; font-weight: 700; }
.dc-chart { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; margin-bottom: 0.75rem; }
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.chart-lbl { font-size: 0.62rem; color: var(--slate2); text-transform: uppercase; letter-spacing: 0.1em; }
.chart-val { font-family: var(--font-h); font-size: 0.82rem; font-weight: 700; color: var(--blue3); }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.b { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,0.07); }
.b.a { background: linear-gradient(180deg, var(--blue2) 0%, rgba(59,130,246,0.2) 100%); }
.dc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.dc-mini { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem; }
.dc-ml { font-size: 0.58rem; color: var(--slate2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; }
.dc-mv { font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; color: var(--silver); }
.float-badge { position: absolute; background: rgba(13,24,41,0.9); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.65rem; box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.badge-left { bottom: -20px; left: -28px; animation: float2 5s ease-in-out infinite 1s; }
.badge-right { top: -16px; right: -20px; animation: float2 7s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.badge-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-icon svg { width: 18px; height: 18px; }
.badge-lbl { font-size: 0.6rem; color: var(--slate); line-height: 1; margin-bottom: 0.2rem; }
.badge-val { font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; line-height: 1; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; color: var(--slate); line-height: 1.7; }
.footer-col h5 { font-family: var(--font-h); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue3); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--slate); transition: color 200ms; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.75rem; color: var(--slate2); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links,.nav-cta { display: none; }
  .hamburger { display: block; }
  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps::after { display: none; }
}
@media (max-width: 600px) {
  .dash-card { padding: 1rem; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .kpi:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER BIO ── */
.founder { position: relative; border-radius: 24px; border: 1px solid var(--border2); background: linear-gradient(135deg, var(--ink3), var(--ink4)); max-width: 760px; }
.founder-content { padding: 2.5rem; }
.founder-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.5rem; }
.founder-avatar { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: 50% 28%; border: 2px solid var(--blue3); box-shadow: 0 0 0 4px rgba(59,130,246,0.14); flex-shrink: 0; }
.founder-name { font-family: var(--font-h); font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.2rem; }
.founder-role { font-size: 0.8rem; color: var(--blue3); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.founder-bio { font-size: 0.95rem; color: var(--silver); line-height: 1.75; margin-bottom: 1.25rem; }
.founder-social { display: flex; gap: 0.75rem; }
.founder-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--glass2); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; transition: all 200ms; }
.founder-social a:hover { border-color: var(--blue3); transform: translateY(-2px); }
.founder-social svg { width: 16px; height: 16px; stroke: var(--silver); fill: none; }

/* ── LOGOS STRIP ── */
.logos-strip { padding: 2rem 0; border-bottom: 1px solid var(--border); position: relative; z-index: 1; background: rgba(8,15,30,0.6); }
.logos-strip-label { text-align: center; font-size: 0.72rem; color: var(--slate2); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.25rem; }
.logos-strip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.75rem 3rem; }
.logos-strip-row span { font-family: var(--font-h); font-weight: 700; letter-spacing: 0.03em; color: var(--slate); font-size: 0.95rem; opacity: 0.75; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: none; text-align: left; padding: 1.25rem 0; cursor: pointer; font-family: var(--font-h); font-size: 0.98rem; font-weight: 700; color: var(--white); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--blue3); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 250ms ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-item.open .faq-a { max-height: 340px; }
.faq-a p { padding: 0 0 1.25rem; font-size: 0.9rem; color: var(--slate); line-height: 1.75; }

@media (max-width: 768px) {
  .founder-content { padding: 1.75rem; }
  .founder-avatar { width: 66px; height: 66px; }
  .founder-name { font-size: 1.35rem; }
  .logos-strip-row { gap: 1rem 1.75rem; }
}

/* ── STATIC HERO (landings) ── */
.static-hero { min-height: 70vh; display: flex; align-items: center; padding: 140px 0 60px; position: relative; overflow: hidden; z-index: 1; text-align: center; }
.static-hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.static-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--white); margin-bottom: 1.5rem; }
.static-hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.hero3-sub { font-size: 1.05rem; color: var(--slate); line-height: 1.8; max-width: 560px; margin: 0 auto; }

/* ── SHADER BACKGROUND (optional, decorative — used by static-hero variants that opt in) ── */
.shader-bg-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* ── HERO 3D NODES (optional, decorative — misma red de nodos que Home, fija en toda la página) ── */
.hero3d-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* ── PAIN POINTS ("¿Te suena?") ── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pain-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color 200ms, transform 200ms; }
.pain-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); }
.pain-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.2); display: flex; align-items: center; justify-content: center; }
.pain-icon svg { width: 18px; height: 18px; stroke: var(--blue3); fill: none; stroke-width: 2; }
.pain-text { font-size: 0.92rem; color: var(--silver); line-height: 1.65; }

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ── LO QUE VAS A RECIBIR (deliverables) ── */
.deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.deliver-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: border-color 200ms, transform 200ms; }
.deliver-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px); }
.deliver-card.wide { grid-column: 1 / -1; }
.deliver-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.deliver-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.75; }

/* ── LA ALERTA (mockup de intercambio por WhatsApp) ── */
.alert-demo { max-width: 560px; margin: 0 auto 2rem; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border2); border-radius: 20px; padding: 1.75rem; }
.alert-msg { border-radius: 14px; padding: 0.9rem 1.1rem; margin-bottom: 0.9rem; font-size: 0.88rem; line-height: 1.6; max-width: 88%; }
.alert-msg:last-child { margin-bottom: 0; }
.alert-msg.out { background: rgba(37,99,235,0.14); border: 1px solid rgba(37,99,235,0.25); color: var(--silver); margin-right: auto; }
.alert-msg.in { background: rgba(255,255,255,0.06); border: 1px solid var(--border2); color: var(--white); margin-left: auto; }
.alert-cta { text-align: center; }

/* ── SELECTOR DE VERTICAL ── */
.vertical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.vertical-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 1.75rem; transition: border-color 200ms, transform 200ms, background 200ms; }
.vertical-card:hover { border-color: rgba(59,130,246,0.45); background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.vertical-card-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.vertical-card-sub { font-size: 0.85rem; color: var(--slate); line-height: 1.5; }
.vertical-card-arrow { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.6rem; padding: 0.5rem 1rem; background: rgba(37,99,235,0.16); border: 1px solid rgba(59,130,246,0.35); border-radius: 100px; color: var(--blue3); font-family: var(--font-h); font-weight: 700; font-size: 0.8rem; }

@media (hover: none) {
  .vertical-card:active { border-color: rgba(59,130,246,0.45); background: rgba(255,255,255,0.07); }
}

/* ── LISTA CON CHECKS ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; max-width: 640px; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--silver); line-height: 1.65; }
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 768px) {
  .deliver-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .alert-msg { max-width: 94%; }
}
