/* =========================================================
   Intratecbol — Soluciones Digitales
   Estilos: moderno, tecnológico, oscuro, veloz.
   ========================================================= */

:root {
  --bg: #070b16;
  --bg-2: #0a1020;
  --bg-3: #0d1428;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #eaf0fb;
  --muted: #93a1bd;
  --muted-2: #6b7896;
  --brand: #2563eb;
  --brand-2: #38bdf8;
  --brand-3: #7c3aed;
  --green: #22c55e;
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --grad-brand: linear-gradient(120deg, #38bdf8, #2563eb 55%, #7c3aed);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(56, 189, 248, 0.14), transparent 60%),
    radial-gradient(700px 500px at 0% 10%, rgba(124, 58, 237, 0.12), transparent 55%),
    linear-gradient(180deg, #070b16, #060912 60%, #05080f);
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; line-height: 1.15; margin: 0 0 .4em; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .95rem;
  padding: .72em 1.3em; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .25s;
  white-space: nowrap;
}
.btn { transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, background .25s, border-color .25s; }
.btn:active { transform: scale(.96); }
.btn-lg { padding: .95em 1.7em; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37, 99, 235, 0.6);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 44px -10px rgba(37, 99, 235, 0.8); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--panel-border); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px) scale(1.05); }
.btn-whatsapp { background: #22c55e; color: #04210f; }
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 38px -10px rgba(34,197,94,0.7); }
.btn span[aria-hidden] { transition: transform .3s ease; }
.btn:hover span[aria-hidden] { transform: translateX(4px); }

.glass {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 22, 0.7);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-color: var(--panel-border); background: rgba(7, 11, 22, 0.92); }

/* Línea base sutil + destello azul que recorre el borde inferior (efecto "vivo") */
.site-header::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 101;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.25) 20%, rgba(56,189,248,0.4) 50%, rgba(56,189,248,0.25) 80%, transparent);
  pointer-events: none;
}
.site-header::after {
  content: ""; position: absolute; bottom: -1px; left: 0; z-index: 102;
  width: 66px; height: 2px; border-radius: 4px;
  background: linear-gradient(90deg, transparent, #38bdf8 32%, #eaf7ff 50%, #38bdf8 68%, transparent);
  box-shadow: 0 0 18px 3px rgba(56,189,248,0.8), 0 0 8px 1px rgba(125,211,252,0.95);
  opacity: 0; transform: translateX(-66px); pointer-events: none;
}
.site-header.scan-on::after { animation: headerScan 2.6s ease-out 1 forwards; }
@keyframes headerScan {
  0%   { transform: translateX(-66px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 44px; width: auto; max-width: 210px; display: block; }
.brand-logo--footer { height: 79px; max-width: 350px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Sora", sans-serif; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand-text small { font-size: .68rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: .92rem; color: var(--muted); font-weight: 500;
  transition: color .2s, background .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.header-cta { margin-left: 8px; }

/* Visual SaaS clicable hacia la demo */
.demo-glass { display: block; text-decoration: none; color: inherit; position: relative; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; }
.demo-glass:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -25px rgba(56,189,248,0.5); }
.demo-badge {
  position: absolute; bottom: 14px; right: 16px;
  background: var(--grad-brand); color: #fff; font-size: .8rem; font-weight: 600;
  padding: 6px 12px; border-radius: 20px; box-shadow: 0 8px 20px -8px rgba(37,99,235,0.9);
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
}
.demo-glass:hover .demo-badge { opacity: 1; transform: translateY(0); }

/* Menú desplegable de Servicios */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.main-nav .has-dropdown .caret { font-size: .7em; opacity: .75; transition: transform .25s ease; }
.main-nav .has-dropdown:hover .caret,
.main-nav .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.main-nav .dropdown {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  display: flex; flex-direction: column; gap: 2px;
  list-style: none; margin: 0; padding: 8px;
  background: rgba(10, 16, 32, 0.97);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 200;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .dropdown li { width: 100%; }
.main-nav .dropdown a {
  display: block; width: 100%; padding: 9px 14px; border-radius: 9px;
  font-size: .9rem; color: var(--muted); white-space: nowrap;
}
.main-nav .dropdown a:hover { color: var(--text); background: rgba(56, 189, 248, 0.12); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; border-top: 1px solid var(--panel-border); background: rgba(7,11,22,0.98); }
.mobile-nav ul { list-style: none; margin: 0; padding: 16px 22px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a { display: block; padding: 12px 10px; border-radius: 10px; color: var(--text); font-weight: 500; }
.mobile-nav a:hover { background: rgba(255,255,255,0.05); }
.mobile-nav.open { display: block; animation: fadeDown .25s ease; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============ Hero ============ */
.hero { position: relative; padding: 80px 0 40px; overflow: hidden; }
.hero-glow {
  position: absolute; right: -6%; top: 0; width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-stage { position: relative; }
.hero-grid {
  position: relative; z-index: 2; max-width: 1320px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-media { position: relative; }

/* ===== Slider del hero ===== */
.hero-slider { position: relative; }
.hero-slider-glow {
  position: absolute; inset: -16% -12% -22% -12%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 70% 35%, rgba(56,189,248,0.55), transparent 70%),
    radial-gradient(55% 55% at 30% 75%, rgba(124,58,237,0.45), transparent 70%);
  filter: blur(46px); opacity: .9;
  animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

.slider-viewport {
  position: relative; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(56,189,248,0.22);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.03) inset;
  background: #060a14;
}
.slide {
  position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden;
  transform: scale(1.04); transition: opacity .8s ease, transform 1.2s ease, visibility .8s;
}
.slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 38px 20px 16px;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1rem; color: #fff;
  background: linear-gradient(to top, rgba(6,10,20,0.92), transparent);
}

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.5rem; line-height: 1; color: #fff;
  background: rgba(7,11,22,0.55); border: 1px solid var(--panel-border);
  backdrop-filter: blur(8px); transition: background .25s, transform .25s, border-color .25s;
}
.slider-arrow:hover { background: rgba(37,99,235,0.7); border-color: var(--brand-2); transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.dot {
  width: 9px; height: 9px; border-radius: 999px; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.28); border: 0; transition: width .3s, background .3s;
}
.dot:hover { background: rgba(255,255,255,0.5); }
.dot.is-active { width: 28px; background: var(--brand-2); }

.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.pill {
  background: rgba(56,189,248,0.12); color: var(--brand-2);
  border: 1px solid rgba(56,189,248,0.3);
  padding: 4px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 36em; }

.hero-features { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text); font-weight: 500; }
.hero-features svg { width: 19px; height: 19px; flex: none; fill: none; stroke: var(--brand-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust */
.trust { margin-top: 40px; text-align: center; }
.trust p { color: var(--muted-2); font-size: .82rem; letter-spacing: .04em; margin-bottom: 18px; }

/* Carrusel infinito de logos (derecha -> izquierda) */
.marquee {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.trust-logos { list-style: none; display: flex; flex: none; flex-wrap: nowrap; align-items: center; gap: 0; margin: 0; padding: 0; }
.trust-logos li {
  font-family: "Sora", sans-serif; font-weight: 700; color: var(--muted-2);
  font-size: 1.15rem; opacity: .65; padding: 0 36px; white-space: nowrap;
  transition: color .25s, opacity .25s, transform .25s;
}
.trust-logos li:hover { color: var(--text); opacity: 1; transform: scale(1.12); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); border-block: 1px solid var(--panel-border); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.kicker { display: inline-block; color: var(--brand-2); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Contenido visible para LLMs / GEO (legibilidad sin ocultar) */
.geo-entity {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  text-align: left;
}
.geo-entity h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
}
.geo-entity h3:first-child { margin-top: 0; }
.geo-entity p,
.geo-entity li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.geo-entity a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.geo-entity-list { margin: 0.5rem 0 1rem; padding-left: 1.25rem; }
.geo-entity-list li { margin-bottom: 0.45rem; }
.geo-entity-meta { font-size: 0.95rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--panel-border); }

/* Quiénes somos / páginas legales */
.about-founder {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.about-founder-photo {
  text-align: center;
}
.about-avatar-wrap {
  position: relative;
  width: min(280px, 72vw);
  margin: 0 auto 20px;
}
.about-avatar-ring {
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 45%, #8b5cf6 100%);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 24px 48px rgba(0, 0, 0, 0.4);
}
.about-avatar-ring img,
.about-founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--bg);
}
.about-founder-photo.is-placeholder img { display: none; }
.about-founder-photo.is-placeholder .about-avatar-ring::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.15));
}
.about-founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.about-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--brand-2);
}
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.about-mv-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  text-align: left;
}
.about-mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--brand-2);
}
.about-mv-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.about-team-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.about-team-list li {
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}
.about-team-list strong { display: block; color: var(--text); margin-bottom: 6px; font-size: 1rem; }
.about-team-list span { display: block; font-size: 0.88rem; line-height: 1.45; }
.about-presence {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.about-presence span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .about-mv-grid { grid-template-columns: 1fr; }
}
.about-founder-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.35rem; }
.about-role { color: var(--brand-2); font-weight: 600; margin-bottom: 1.25rem; }
.about-message {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-message p { margin-bottom: 1rem; }
.legal-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.legal-prose h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; color: var(--text); }
.legal-prose p,
.legal-prose li { color: var(--muted); line-height: 1.7; font-size: 1rem; }
.legal-prose ul { margin: 0.5rem 0 1rem; padding-left: 1.25rem; }
.legal-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a { color: var(--muted); text-decoration: underline; }
.footer-bottom a:hover { color: var(--brand-2); }
.form-privacy { font-size: 0.85rem; color: var(--muted-2); margin: 0 0 12px; }
.form-privacy a { color: var(--muted); text-decoration: underline; }

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

/* Cards grid */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .3s, background .3s, box-shadow .4s;
  position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0; background: var(--grad-brand); opacity: 0; transition: opacity .3s; mix-blend-mode: overlay; pointer-events: none; }
.card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(56,189,248,0.45); background: rgba(255,255,255,0.06);
  box-shadow: 0 28px 55px -22px rgba(56,189,248,0.45);
}
.card:hover::after { opacity: .07; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s; }
.card:hover .card-icon { transform: scale(1.18) rotate(-6deg); box-shadow: 0 12px 26px -8px rgba(56,189,248,0.6); }
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.i-blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.i-violet { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.i-green { background: linear-gradient(135deg, #16a34a, #15803d); }
.i-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.i-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.i-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.card-link { color: var(--brand-2); font-weight: 600; font-size: .9rem; position: relative; z-index: 1; }
.card-link:hover { color: #fff; }
/* Enlace extendido: toda la tarjeta es clicable */
.card:has(.card-link) { cursor: pointer; }
.card-link::after { content: ""; position: absolute; inset: 0; z-index: 2; }

/* Servicios complementarios */
.services-extra { margin-top: 36px; text-align: center; }
.services-extra-title { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.services-extra ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.services-extra li {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 999px; padding: 9px 18px; font-size: .9rem; font-weight: 500; color: var(--text);
  transition: border-color .2s, background .2s;
}
.services-extra li:hover { border-color: rgba(56,189,248,0.4); background: rgba(56,189,248,0.06); }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar { text-align: center; padding: 14px; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.pillar:hover { transform: translateY(-6px); }
.pillar-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25); transition: transform .45s cubic-bezier(.34,1.56,.64,1), background .3s, box-shadow .4s; }
.pillar:hover .pillar-icon { transform: scale(1.2) rotate(6deg); background: rgba(56,189,248,0.18); box-shadow: 0 12px 28px -8px rgba(56,189,248,0.55); }
.pillar-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--brand-2); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 1.1rem; }
.pillar p { color: var(--muted); font-size: .92rem; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.split-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text); font-weight: 500; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.15); color: var(--green); display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.split-visual { padding: 28px; min-height: 280px; box-shadow: var(--shadow); }
.center-icon { display: grid; place-items: center; }
.center-icon svg { fill: none; stroke: var(--brand-2); stroke-width: 1.2; stroke-linejoin: round; opacity: .85; }

/* Marco de imagen (capacitación, resultados) */
.media-frame {
  position: relative; padding: 0; min-height: 0; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; box-shadow: inset 0 0 70px -10px rgba(56,189,248,0.25);
}
.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.media-frame:hover img { transform: scale(1.05); }

/* ============ Gráfico Tiempo vs Dinero ============ */
.savings-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: stretch; }
.savings-grid .media-frame { min-height: 320px; }

.chart-card { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow); }
.chart-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; padding: 0; }
.chart-title { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.15rem; }
.chart-sub { display: block; color: var(--muted); font-size: .82rem; margin-top: 2px; }
.chart-legend { display: flex; flex-direction: column; gap: 6px; }
.chart-legend .lg { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); font-weight: 500; }
.chart-legend .lg i { width: 14px; height: 3px; border-radius: 3px; display: inline-block; }
.lg-base i { background: #f87171; }
.lg-opt i { background: var(--brand-2); }

.chart-canvas { position: relative; }
.chart-canvas svg { width: 100%; height: auto; display: block; }
.chart-canvas .line-base, .chart-canvas .line-opt {
  stroke-dasharray: var(--len, 1000); stroke-dashoffset: var(--len, 1000);
}
.chart-card.draw .chart-canvas .line-base { animation: drawLine 1.5s ease-out forwards; }
.chart-card.draw .chart-canvas .line-opt  { animation: drawLine 1.5s ease-out .35s forwards; }
.chart-card.draw .chart-canvas .save-area { animation: fadeArea .9s ease-out 1.4s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }
.chart-xaxis { display: flex; justify-content: space-between; color: var(--muted-2); font-size: .75rem; padding: 6px 6px 0; }

.chart-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chart-kpi { background: rgba(56,189,248,0.06); border: 1px solid rgba(56,189,248,0.18); border-radius: 12px; padding: 12px 14px; }
.chart-kpi span { display: block; font-size: .76rem; color: var(--muted); }
.chart-kpi b { display: block; font-family: "Sora", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--brand-2); margin-top: 4px; }

.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.kpi { background: rgba(255,255,255,0.04); border: 1px solid var(--panel-border); border-radius: 12px; padding: 14px; }
.kpi span { font-size: .78rem; color: var(--muted); display: block; }
.kpi b { font-size: 1.35rem; font-family: "Sora", sans-serif; }
.kpi em { font-style: normal; font-size: .78rem; }
.kpi .up { color: var(--green); }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; }
.bars i { flex: 1; height: var(--h); background: var(--grad-brand); border-radius: 6px 6px 0 0; opacity: .85; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.folio { background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius); padding: 28px; transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .3s, box-shadow .4s; }
.folio:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(56,189,248,0.4); box-shadow: 0 26px 50px -22px rgba(56,189,248,0.4); }
.folio:hover .folio-tag { transform: scale(1.08); }
.folio-tag { transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.folio-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-2); background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.folio h3 { font-size: 1.25rem; }
.folio p { color: var(--muted); margin: 0; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.steps li { position: relative; padding: 26px 22px; background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius); }
.step-num { font-family: "Sora", sans-serif; font-size: 1.6rem; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.steps h3 { font-size: 1.1rem; margin-top: 8px; }
.steps p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-big { text-align: center; padding: 26px; background: var(--panel); border: 1px solid var(--panel-border); border-radius: var(--radius); transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .3s, box-shadow .4s; }
.stat-big:hover { transform: translateY(-8px) scale(1.04); border-color: rgba(56,189,248,0.4); box-shadow: 0 24px 48px -22px rgba(56,189,248,0.45); }
.stat-big b { display: block; font-family: "Sora", sans-serif; font-size: 2.6rem; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-big span { color: var(--muted); font-size: .92rem; }

/* CTA / Contact */
.section-cta { background: linear-gradient(180deg, rgba(37,99,235,0.06), transparent); }
.contact-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; color: var(--muted); }
.contact-list strong { color: var(--text); }

.contact-form { padding: 28px; display: grid; gap: 16px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: .85rem; color: var(--muted); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--panel-border);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font: inherit; font-size: .95rem;
  transition: border-color .2s, background .2s; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand-2); background: rgba(56,189,248,0.06);
}
.contact-form textarea { resize: vertical; }
.contact-form select option { background: var(--bg-3); color: var(--text); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-status { margin: 0; font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #f87171; }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--panel-border); background: rgba(5,8,15,0.6); padding-top: 56px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand .brand-logo { height: 79px; }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 30em; margin-top: 14px; }
.footer-col h4 { font-size: .95rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--brand-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--panel-border); color: var(--muted-2); font-size: .85rem; }

/* Floating WhatsApp — animación solo con transform (composited, sin box-shadow animado) */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #22c55e; color: #04210f; display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(34, 197, 94, 0.45);
  transition: transform .2s;
  animation: wa-float 2.6s ease-in-out infinite;
  will-change: transform;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.55);
  animation: wa-ring 2.6s ease-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}
.whatsapp-float svg { fill: #04210f; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.08); animation-play-state: paused; }
.whatsapp-float:hover::after { animation-play-state: paused; }
@keyframes wa-float {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.75; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0; transform: translateY(38px) scale(.94); filter: blur(6px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), filter .7s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ============ Migas + FAQ (páginas de servicio) ============ */
.breadcrumb { padding: 22px 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0; margin: 0; font-size: .85rem; color: var(--muted-2); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-2); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--muted-2); }
.breadcrumb [aria-current] { color: var(--text); }

.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 12px; padding: 2px 20px; transition: border-color .25s; }
.faq details[open] { border-color: rgba(56,189,248,0.3); }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-2); font-size: 1.4rem; font-weight: 700; line-height: 1; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 0 0 18px; }

.lead-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.lead-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.lead-list li b { font-weight: 600; }
.lead-list span { color: var(--muted); }
.lead-list .dot-ic { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.28); }
.lead-list .dot-ic svg { width: 15px; height: 15px; fill: none; stroke: var(--brand-2); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.cta-band p { color: var(--muted); max-width: 44em; margin: 14px auto 26px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 100%; }
  .hero-media { max-width: 640px; margin: 4px auto 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars, .steps, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .savings-grid { grid-template-columns: 1fr; gap: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 40px; }
  /* Slider a todo el ancho de la pantalla en móvil */
  .hero-media { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
  .slider-viewport { border-radius: 0; aspect-ratio: 16 / 9; }
  .hero-slider-glow { display: none; }
  .hero-features { grid-template-columns: 1fr; padding-inline: 22px; }
  .cards-grid, .pillars, .steps, .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 14px 24px; }
  .trust-logos li { font-size: .95rem; }
}

/* --- Streaming radio: promoción en home y página de servicio --- */
a.radio-promo {
  display: block; text-decoration: none; color: inherit; position: relative;
  padding: 0; overflow: hidden; min-height: 320px;
  border-radius: 22px; border: 1px solid rgba(56,189,248,0.22);
  background: #060a14; transition: transform .3s ease, box-shadow .3s ease;
}
a.radio-promo:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -25px rgba(56,189,248,0.45); }
a.radio-promo .demo-badge { opacity: .95; transform: translateY(0); z-index: 2; }
.radio-gallery {
  display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px;
  min-height: 320px;
}
.radio-gallery--single {
  display: block;
  min-height: 320px;
  height: 100%;
}
.radio-gallery--single .radio-shot {
  margin: 0;
  height: 100%;
  min-height: 320px;
  border-radius: 0;
}
.radio-gallery--single .radio-shot img {
  min-height: 320px;
  aspect-ratio: 3 / 2;
}
.radio-shot { margin: 0; overflow: hidden; border-radius: 14px; background: #0a1020; }
.radio-shot-main { grid-row: 1 / span 2; }
.radio-shot img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 140px; transition: transform .5s ease; }
a.radio-promo:hover .radio-shot img { transform: scale(1.03); }

.radio-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px;
}
.radio-showcase-item { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--stroke); background: rgba(13,20,38,0.6); }
.radio-showcase-item img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.radio-showcase-item figcaption {
  padding: 10px 14px; font-size: .82rem; font-weight: 600; color: var(--muted);
  text-align: center; border-top: 1px solid var(--stroke);
}

@media (max-width: 720px) {
  .radio-gallery:not(.radio-gallery--single) { grid-template-columns: 1fr; grid-template-rows: auto; }
  .radio-shot-main { grid-row: auto; }
  .radio-gallery--single .radio-shot,
  .radio-gallery--single .radio-shot img { min-height: 220px; }
  .radio-showcase { grid-template-columns: 1fr; }
}

.radio-features { padding: 28px 26px; border-radius: 18px; }
.radio-feat-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px 20px;
}
.radio-feat-grid li {
  font-size: .9rem; color: var(--muted); padding-left: 0;
}
.radio-feat-grid strong { color: var(--text); font-weight: 600; }

/* --- Streaming radio: clientes y planes --- */
.radio-clients ul {
  display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.radio-clients li {
  padding: 12px 20px; border-radius: 14px; border: 1px solid var(--stroke);
  background: rgba(13,20,38,0.6); font-family: "Sora", sans-serif; font-weight: 600;
  font-size: .95rem; color: var(--text);
}
.radio-clients .muted { font-weight: 500; color: var(--muted); font-size: .82rem; }
.radio-clients-note {
  max-width: 52em;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Reproductor en vivo (inliveserver embed) */
.radio-live-wrap { max-width: 720px; margin: 0 auto; }
.radio-live-player {
  padding: 22px 20px 18px; border-radius: 20px;
  border: 1px solid rgba(56,189,248,0.28);
  background: rgba(8,12,24,0.85);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.65);
}
.radio-live-player.compact { padding: 16px 14px 12px; }
.rlp-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.rlp-tab {
  flex: 1 1 140px; min-width: 0; padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--stroke); background: rgba(13,20,38,0.7);
  color: var(--text); cursor: pointer; text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
  font-family: inherit;
}
.rlp-tab:hover { border-color: rgba(56,189,248,0.45); transform: translateY(-1px); }
.rlp-tab.is-active {
  border-color: rgba(56,189,248,0.65);
  background: rgba(37,99,235,0.22);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.15) inset;
}
.rlp-tab-name { display: block; font-family: "Sora", sans-serif; font-weight: 700; font-size: .88rem; line-height: 1.25; }
.rlp-tab-meta { display: block; font-size: .72rem; color: var(--muted); margin-top: 2px; }
.rlp-panel { border-radius: 14px; overflow: hidden; background: #0a1020; border: 1px solid var(--stroke); }
.rlp-frame-wrap { min-height: 88px; }
.rlp-iframe {
  display: block; width: 100%; height: 88px; border: 0;
  background: #060a14;
}
.radio-live-player:not(.compact) .rlp-iframe { height: 110px; }
.rlp-status {
  margin: 12px 0 0; font-size: .8rem; color: var(--muted); text-align: center;
}
.rlp-status::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; margin-right: 6px; vertical-align: middle;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: rlp-pulse 1.4s ease-in-out infinite;
}
@keyframes rlp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.rlp-hint { margin-top: 10px; font-size: .78rem; color: var(--muted); text-align: center; }
.rlp-hint a { color: var(--brand-2); text-decoration: none; font-weight: 600; }
.rlp-hint a:hover { text-decoration: underline; }
.radio-live-home { margin-top: 36px; padding-top: 8px; }

@media (max-width: 560px) {
  .rlp-tab { flex: 1 1 100%; }
  .rlp-iframe { height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .rlp-status::before { animation: none; }
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
  align-items: stretch;
}
.plan-card {
  display: flex; flex-direction: column; gap: 12px; padding: 24px 22px;
  border-radius: 18px; border: 1px solid var(--stroke);
  background: rgba(13,20,38,0.55);
}
.plan-card.plan-featured {
  border-color: rgba(56,189,248,0.45);
  background: linear-gradient(165deg, rgba(14,24,48,0.95), rgba(8,14,28,0.9));
  box-shadow: 0 0 0 1px rgba(56,189,248,0.12) inset;
}
.plan-tag {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--brand-2); margin: 0;
}
.plan-card h3 { font-family: "Sora", sans-serif; font-size: 1.25rem; margin: 0; }
.plan-price { margin: 4px 0 8px; font-size: .9rem; color: var(--muted); }
.plan-price b { font-family: "Sora", sans-serif; font-size: 2.2rem; color: var(--text); }
.plan-feats {
  list-style: none; padding: 0; margin: 0 0 8px; flex: 1;
  display: flex; flex-direction: column; gap: 8px; font-size: .88rem; color: var(--muted);
}
.plan-feats li::before { content: "✓ "; color: var(--brand-2); font-weight: 700; }
.plan-note { text-align: center; margin-top: 22px; color: var(--muted); font-size: .9rem; }
.plan-note a { color: var(--brand-2); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition-duration: .01ms !important; }
  .chart-canvas .line-base, .chart-canvas .line-opt { stroke-dashoffset: 0 !important; }
  .chart-canvas .save-area { opacity: 1 !important; }
  .reveal { opacity: 1; transform: none; filter: none; transition-delay: 0ms !important; }
  .marquee-track { transform: none; }
}
