/* ==========================================================================
   TeamBiz v2 — Glassmorphism / Aurora (dark-first)
   ========================================================================== */

:root {
  --font: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;

  --bg: #070712;
  --bg-soft: #0b0b1a;
  --surface: rgba(255, 255, 255, .05);
  --surface-strong: rgba(255, 255, 255, .09);
  --border: rgba(255, 255, 255, .12);
  --text: #eef0ff;
  --text-soft: #b7bcd6;
  --text-mute: #7c82a6;
  --heading: #ffffff;

  --neon: #22d3ee;
  --violet: #a78bfa;
  --magenta: #f472b6;
  --green: #34d399;
  --grad: linear-gradient(110deg, #22d3ee, #a78bfa 55%, #f472b6);

  --shadow: 0 20px 60px rgba(0, 0, 0, .55);
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --wrap: 1180px;
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="light"] {
  --bg: #f4f5ff;
  --bg-soft: #eceefe;
  --surface: rgba(255, 255, 255, .72);
  --surface-strong: rgba(255, 255, 255, .9);
  --border: rgba(99, 102, 241, .16);
  --text: #16172b;
  --text-soft: #4c4f6e;
  --text-mute: #8a8db0;
  --heading: #0e0f22;
  --shadow: 0 20px 60px rgba(99, 102, 241, .18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { color: var(--heading); line-height: 1.15; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--neon); color: #04121a; font-weight: 700; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.neon {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.link-neon { color: var(--neon); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.link-neon:hover { color: var(--violet); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 14px;
  font-family: var(--font); font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn--neon {
  background: var(--grad); color: #04121a;
  box-shadow: 0 10px 30px rgba(34, 211, 238, .35);
}
.btn--neon:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(167, 139, 250, .45); }
.btn--ghost { border: 1px solid var(--border); color: var(--text-soft); background: var(--surface); }
.btn--ghost:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 13.5px; border-radius: 10px; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.glassnav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.glassnav__inner { height: var(--nav-h); max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.glassnav__brand img { filter: drop-shadow(0 0 10px rgba(34, 211, 238, .6)); }
.glassnav__menu { display: flex; align-items: center; gap: 4px; }
.glassnav__link { padding: 9px 13px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--text-soft); transition: color var(--transition), background var(--transition); }
.glassnav__link:hover { color: var(--neon); background: var(--surface-strong); }
.glassnav__link--login { border: 1px solid var(--border); border-radius: 10px; margin-left: 6px; }
.glassnav__link--login:hover { border-color: var(--neon); }
.glassnav__actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  color: var(--text-soft); background: var(--surface); border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.theme-toggle:hover { color: var(--neon); border-color: var(--neon); }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html[data-theme="light"] .theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.glassnav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.glassnav__toggle span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.glassnav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.glassnav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.glassnav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero / Aurora ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 80px) 0 80px; overflow: hidden; }
.aurora { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb--a { width: 460px; height: 460px; background: #22d3ee; top: -140px; right: -80px; animation: drift 16s ease-in-out infinite; }
.orb--b { width: 420px; height: 420px; background: #a78bfa; bottom: -120px; left: -100px; animation: drift 20s ease-in-out infinite reverse; }
.orb--c { width: 300px; height: 300px; background: #f472b6; top: 40%; left: 55%; opacity: .3; animation: drift 24s ease-in-out infinite; }
[data-theme="light"] .orb { opacity: .22; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.08); } }

.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; color: var(--text-mute); letter-spacing: .04em; margin-bottom: 20px; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero__title { font-size: clamp(36px, 5vw, 62px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 22px; }
.hero__lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-soft); max-width: 34rem; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero__chips li { font-size: 14px; font-weight: 500; color: var(--text-mute); position: relative; padding-left: 14px; }
.hero__chips li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

/* Panel */
.hero__panel { position: relative; }
.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px; transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform var(--transition);
}
.hero__panel:hover .panel { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.panel__head { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.panel__dot { width: 10px; height: 10px; border-radius: 50%; }
.panel__dot:nth-child(1) { background: #fb7185; }
.panel__dot:nth-child(2) { background: #fbbf24; }
.panel__dot:nth-child(3) { background: #34d399; }
.panel__addr { margin-left: 8px; font-family: var(--mono); font-size: 11.5px; color: var(--text-mute); background: var(--bg); border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; }
.panel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.panel__cell { height: 44px; border-radius: 10px; background: var(--surface-strong); border: 1px solid var(--border); }
.panel__cell--big { grid-row: span 2; height: auto; background: linear-gradient(135deg, rgba(34, 211, 238, .25), rgba(167, 139, 250, .25)); }
.panel__cell--wide { grid-column: span 2; }
.panel__bars { display: flex; align-items: flex-end; gap: 8px; height: 70px; padding: 12px; border-radius: 10px; background: var(--surface-strong); border: 1px solid var(--border); }
.panel__bars span { flex: 1; border-radius: 4px 4px 0 0; background: var(--grad); opacity: .8; }

.hero__badge { position: absolute; padding: 9px 16px; border-radius: 999px; font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--neon); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(8px); box-shadow: var(--shadow); animation: float 5s ease-in-out infinite; }
.hero__badge { top: -18px; right: 4%; }
.hero__badge--2 { bottom: -14px; left: -6px; animation-delay: 1.4s; color: var(--magenta); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Secciones ---------- */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 48rem; margin: 0 auto 56px; text-align: center; }
.section__eyebrow { font-family: var(--mono); font-size: 13px; color: var(--neon); letter-spacing: .05em; margin-bottom: 14px; }
.section__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 16px; }
.section__sub { font-size: 16.5px; color: var(--text-soft); }

/* ---------- Bento (solución) ---------- */
.bento { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-auto-rows: minmax(150px, auto); gap: 18px; }
.bento__item {
  position: relative; overflow: hidden;
  padding: 26px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.bento__item:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, .5); box-shadow: 0 20px 50px rgba(0, 0, 0, .4); }
.bento__item--feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(150deg, rgba(34, 211, 238, .12), rgba(167, 139, 250, .12)); }
.bento__num { font-family: var(--mono); font-size: 13px; color: var(--neon); }
.bento__item h3 { font-size: 19px; font-weight: 700; margin: 14px 0 8px; }
.bento__item p { font-size: 14.5px; color: var(--text-soft); }
.bento__links { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.bento__links a { font-size: 13.5px; font-weight: 600; color: var(--neon); }
.bento__links a:hover { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Beneficios ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(10px); transition: transform var(--transition), border-color var(--transition); }
.benefit:hover { transform: translateY(-5px); border-color: rgba(167, 139, 250, .5); }
.benefit__icon { display: inline-block; font-size: 22px; color: var(--neon); margin-bottom: 14px; }
.benefit h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; color: var(--text-soft); }
.benefit--accent { background: var(--grad); border-color: transparent; color: #04121a; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.benefit--accent h3 { color: #04121a; }
.benefit--accent p { color: rgba(4, 18, 26, .85); }
.benefit--accent .btn { background: #fff; color: #0e7490; box-shadow: none; align-self: flex-start; }

/* ---------- Tabla comparativa ---------- */
.tabla { padding: 10px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.tabla__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tabla__grid { width: 100%; border-collapse: collapse; min-width: 720px; }
.tabla__grid th, .tabla__grid td { padding: 15px 17px; font-size: 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.tabla__grid thead th { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mute); background: var(--surface-strong); }
.tabla__grid tbody th { font-weight: 600; color: var(--heading); width: 24%; }
.tabla__grid td { color: var(--text-soft); }
.tabla__grid tr:last-child th, .tabla__grid tr:last-child td { border-bottom: none; }
.tabla__grid .is-neon { background: linear-gradient(135deg, rgba(34, 211, 238, .14), rgba(167, 139, 250, .14)); color: var(--text); font-weight: 500; }
.tabla__grid thead th.is-neon { color: var(--neon); }
.tabla__note { padding: 18px 20px 8px; font-size: 14px; color: var(--text-mute); border-top: 1px solid var(--border); }

/* ---------- Caminos ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.step3 { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: transform var(--transition), border-color var(--transition); }
.step3:hover { transform: translateY(-5px); border-color: rgba(244, 114, 182, .5); }
.step3__num { font-family: var(--mono); font-size: 54px; font-weight: 600; color: transparent; -webkit-text-stroke: 1.5px var(--border); display: block; margin-bottom: 10px; line-height: 1; }
.step3 h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step3 p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 16px; }

.proceso { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; padding: 36px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.proceso h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.proceso__list { display: flex; flex-direction: column; gap: 13px; counter-reset: p; }
.proceso__list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-soft); font-weight: 500; }
.proceso__list li span { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 11px; font-family: var(--mono); font-weight: 600; color: var(--neon); background: rgba(34, 211, 238, .12); border: 1px solid rgba(34, 211, 238, .3); }
.proceso__note { padding: 14px 16px; border-radius: 12px; font-size: 14px; color: var(--text-soft); background: rgba(244, 114, 182, .1); border: 1px solid rgba(244, 114, 182, .3); }

/* ---------- Split sin TI ---------- */
.section__split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.split__text .section__eyebrow { margin-bottom: 12px; }
.checklist { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist li > span { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; font-size: 13px; font-weight: 700; color: #04121a; background: var(--grad); }
.checklist strong { display: block; color: var(--heading); font-size: 15.5px; }
.checklist div { font-size: 14.5px; color: var(--text-soft); }

.terminal { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: rotate(-2deg); }
.terminal__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--surface-strong); border-bottom: 1px solid var(--border); }
.terminal__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.terminal__bar span:nth-child(1) { background: #fb7185; }
.terminal__bar span:nth-child(2) { background: #fbbf24; }
.terminal__bar em { margin-left: auto; font-family: var(--mono); font-size: 11.5px; color: var(--text-mute); font-style: normal; }
.terminal__body { padding: 20px; font-family: var(--mono); font-size: 14px; line-height: 2; }
.terminal__body p { white-space: nowrap; }
.c1 { color: var(--magenta); }
.c2 { color: var(--neon); }
.c3 { color: var(--green); }
.c4 { color: var(--violet); }
.caret { animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Planes ---------- */
.planes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; margin-bottom: 22px; }
.plan { display: flex; flex-direction: column; gap: 14px; padding: 32px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(10px); transition: transform var(--transition), border-color var(--transition); }
.plan:hover { transform: translateY(-6px); border-color: rgba(34, 211, 238, .5); }
.plan--featured { position: relative; border: 1.5px solid transparent; background: linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box, var(--grad) border-box; box-shadow: var(--shadow); }
.plan__tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 16px; border-radius: 999px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #04121a; background: var(--grad); box-shadow: 0 8px 20px rgba(34, 211, 238, .4); }
.plan__name { font-family: var(--mono); font-size: 13.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .05em; }
.plan__price { display: flex; align-items: baseline; gap: 6px; font-size: 42px; font-weight: 700; color: var(--heading); letter-spacing: -.02em; }
.plan__price span { font-size: 18px; color: var(--neon); }
.plan__price em { font-size: 13px; font-style: normal; font-weight: 500; color: var(--text-mute); }
.plan__feats { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; margin: 4px 0 16px; }
.plan__feats li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-soft); }
.plan__feats li::before { content: '✓'; flex: none; display: inline-flex; align-items: center; justify-content: center; width: 19px; height: 19px; border-radius: 50%; font-size: 11.5px; font-weight: 700; color: var(--green); background: rgba(52, 211, 153, .14); }
.extra { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; padding: 24px 28px; border-radius: var(--radius); background: var(--surface); border: 1px dashed var(--border); }
.extra__sign { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 16px; font-size: 26px; font-weight: 600; color: var(--magenta); background: rgba(244, 114, 182, .12); border: 1px solid rgba(244, 114, 182, .35); }
.extra h3 { font-size: 17px; }
.extra__price { font-size: 24px; font-weight: 700; color: var(--heading); }
.extra__price em { font-size: 13px; font-weight: 500; color: var(--text-mute); }
.extra__text p:last-child { font-size: 14.5px; color: var(--text-soft); }

/* ---------- Seguridad ---------- */
.secgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sec { padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); transition: transform var(--transition), border-color var(--transition); }
.sec:hover { transform: translateY(-5px); border-color: rgba(52, 211, 153, .5); }
.sec__kbd { display: inline-block; padding: 4px 10px; margin-bottom: 14px; border-radius: 7px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: var(--green); background: rgba(52, 211, 153, .12); border: 1px solid rgba(52, 211, 153, .3); }
.sec h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.sec p { font-size: 14px; color: var(--text-soft); }

/* ---------- Próximamente ---------- */
.comming { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comming__card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; min-height: 200px; padding: 26px; border-radius: var(--radius); border: 1.5px dashed var(--border); background: var(--surface); transition: transform var(--transition), border-color var(--transition); }
.comming__card:hover { transform: translateY(-5px); border-color: var(--neon); }
.comming__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; font-size: 24px; color: var(--neon); background: rgba(34, 211, 238, .12); }
.comming__card h3 { font-size: 17px; }
.comming__card p { font-size: 14px; color: var(--text-mute); max-width: 16rem; }

/* ---------- Contacto ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact__info .section__eyebrow { margin-bottom: 12px; }
.contact__list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contact__list li { display: flex; gap: 15px; align-items: flex-start; }
.contact__ico { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; font-size: 18px; color: var(--neon); background: rgba(34, 211, 238, .12); border: 1px solid rgba(34, 211, 238, .3); }
.contact__list em { display: block; font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact__list a, .contact__list p { font-size: 15.5px; font-weight: 600; color: var(--heading); }
.contact__list a:hover { color: var(--neon); }

.contact__form { padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.contact__form h3 { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-soft); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; font-family: var(--font); font-size: 15px; color: var(--text); background: var(--bg); border: 1px solid var(--border); transition: border-color var(--transition), box-shadow var(--transition); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 4px rgba(34, 211, 238, .16); }
.field.has-error input, .field.has-error textarea { border-color: #fb7185; }
.contact__hint { margin-top: 14px; font-size: 13.5px; color: var(--text-mute); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { font-size: 14px; color: var(--text-mute); margin: 16px 0 20px; max-width: 28rem; }
.footer__ms { opacity: .9; }
[data-theme="light"] .footer__ms { filter: saturate(0); opacity: .7; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h3 { font-family: var(--mono); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--heading); margin-bottom: 10px; }
.footer__col a { font-size: 14.5px; color: var(--text-soft); transition: color var(--transition); }
.footer__col a:hover { color: var(--neon); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 22px 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-mute); }

.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 14px; font-size: 20px; color: #04121a; background: var(--grad); box-shadow: 0 10px 30px rgba(34, 211, 238, .4); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ---------- FAQ ---------- */
.faq2 { display: flex; flex-direction: column; gap: 14px; max-width: 48rem; margin: 0 auto; }
.faq2__item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); backdrop-filter: blur(10px);
  overflow: hidden;
}
.faq2__item[open] { border-color: rgba(34, 211, 238, .6); }
.faq2__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--heading);
  list-style: none;
}
.faq2__item summary::-webkit-details-marker { display: none; }
.faq2__item summary:hover { color: var(--neon); }
.faq2__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 18px; line-height: 1; color: var(--neon);
  background: rgba(34, 211, 238, .12);
  transition: transform var(--transition);
}
.faq2__item[open] .faq2__icon { transform: rotate(45deg); }
.faq2__item p { padding: 0 22px 20px; font-size: 15px; color: var(--text-soft); }

/* ---------- Animaciones ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .hero__badge { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__item--feature { grid-row: auto; grid-column: span 2; }
  .benefits, .secgrid, .comming { grid-template-columns: repeat(2, 1fr); }
  .section__split, .proceso { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .glassnav__toggle { display: flex; }
  .glassnav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
    padding: 0;
  }
  .glassnav__menu.is-open { max-height: 480px; overflow-y: auto; padding: 16px 20px 24px; }
  .glassnav__link { display: block; padding: 13px 16px; font-size: 16px; }
  .glassnav__link--login { margin-left: 0; margin-top: 6px; text-align: center; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__panel { max-width: 480px; margin: 0 auto; width: 100%; }
  .steps3, .planes { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .wrap { padding: 0 18px; }
  .section { padding: 68px 0; }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .hero__cta .btn { width: 100%; }
  .hero__chips { flex-direction: column; gap: 10px; }
  .bento, .benefits, .secgrid, .comming { grid-template-columns: 1fr; }
  .bento__item--feature { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
  .contact__form { padding: 26px 18px; }
}
