/* =========================================================
   Labher Solutions / GeoLabh — main.css
   Fiel al diseño original aprobado por el cliente.
   ========================================================= */

:root {
	--labher-navy: #0A1747;
	--labher-navy-deep: #071233;
	--labher-navy-card: #0e2150;
	--labher-navy-input: #071233;
	--labher-footer-bg: #050E2A;
	--labher-accent: #3FD0BE;
	--labher-pink: #EC0F8E;
	--labher-blue: #4FACE0;
	--labher-green: #45C06E;
	--labher-orange: #F5A623;
	--labher-red: #E74C3C;
	--labher-text-body: #C2CEE6;
	--labher-text-muted: #9FB0CE;
	--labher-text-dim: #8FA0C0;
	--labher-border: rgba(255,255,255,.1);
	--labher-max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Manrope', system-ui, sans-serif;
	color: #0A1747;
	line-height: 1.6;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }
::selection { background: var(--labher-pink); color: #fff; }

@keyframes labherSpin { to { transform: rotate(360deg); } }
@keyframes labherPing { 0% { transform: scale(.6); opacity: .9; } 70% { transform: scale(2.4); opacity: 0; } 100% { opacity: 0; } }
@keyframes labherFloaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes labherDash { to { background-position: 32px 0; } }

.labher-container { max-width: var(--labher-max); margin: 0 auto; padding: 0 clamp(20px,5vw,40px); }
.labher-container--narrow { max-width: 900px; text-align: center; }
.labher-section { padding: clamp(64px,9vw,110px) 0; background: var(--labher-navy); }
.labher-section--dark { color: #fff; }
.labher-section--problema { padding: clamp(60px,8vw,96px) 0; text-align: center; }
.labher-section--contact { text-align: center; scroll-margin-top: 84px; }

.labher-eyebrow { color: var(--labher-accent); font-weight: 700; font-size: 13px; letter-spacing: 2.5px; margin-bottom: 16px; }
.labher-eyebrow--pink { color: var(--labher-pink); }
.labher-eyebrow--blue { color: var(--labher-blue); }

.labher-h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(28px,3.6vw,42px);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.1;
	color: #fff;
}
.labher-h2--center { max-width: 820px; margin: 0 auto; font-size: clamp(30px,4.4vw,52px); letter-spacing: -1.5px; line-height: 1.06; }
.labher-lead { font-size: 17px; color: var(--labher-text-body); margin-top: 18px; }
.labher-lead--center { max-width: 600px; margin: 20px auto 0; font-size: 18px; }
.labher-accent-text { color: var(--labher-accent); }
.labher-accent-text-pink { color: var(--labher-pink); }

.labher-btn {
	display: inline-block;
	padding: 15px 26px;
	border-radius: 11px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	border: none;
	transition: .2s;
	text-align: center;
}
.labher-btn--accent { background: var(--labher-pink); color: #fff; font-weight: 700; padding: 12px 22px; }
.labher-btn--accent:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(236,15,142,.35); }
.labher-btn--outline { border: 1.5px solid rgba(255,255,255,.28); color: #fff; }
.labher-btn--outline:hover { background: rgba(255,255,255,.08); }
.labher-btn--full { width: 100%; padding: 15px; border-radius: 11px; font-size: 15px; }

/* ---------------- HEADER ---------------- */
.labher-header {
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(12px);
	position: sticky; top: 0; z-index: 80;
	border-bottom: 1px solid #E7EBF3;
}
.labher-header__inner {
	max-width: var(--labher-max); margin: 0 auto; padding: 0 clamp(20px,5vw,40px);
	display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px;
}
.labher-header__logo { display: flex; align-items: center; gap: 12px; }
.labher-header__icon-mark { height: 40px; width: auto; display: block; animation: labherSpin 14s linear infinite; }
.labher-header__wordmark { height: 26px; width: auto; display: block; }

.labher-nav { display: flex; gap: 26px; font-size: 14.5px; font-weight: 600; flex-wrap: wrap; }
.labher-nav a { transition: .2s; color: #0A1747; }
.labher-nav a:hover { color: var(--labher-pink); }

.labher-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.labher-lang-switch {
	display: flex; align-items: center; gap: 3px; background: #F5F7FB;
	border: 1px solid #E7EBF3; border-radius: 9px; padding: 3px;
}
.labher-lang-switch button {
	border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 12.5px;
	padding: 7px 12px; border-radius: 7px; background: transparent; color: #0A1747; transition: .2s;
}
.labher-lang-switch button.is-active { background: #0A1747; color: #fff; }

/* ---------------- MOBILE MENU ---------------- */
.labher-burger {
	display: none; width: 42px; height: 42px; border: 1px solid #E7EBF3; background: none;
	border-radius: 8px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.labher-burger span { width: 20px; height: 2px; background: #0A1747; display: block; }

.labher-mobile-menu {
	position: fixed; left: 0; top: 0; right: 0; bottom: 0; width: 100vw; height: 100vh; margin: 0;
	background: #fff; z-index: 100; display: flex; flex-direction: column; padding: 28px 32px;
}
.labher-mobile-menu[hidden] { display: none; }
.labher-mobile-menu__top { display: flex; justify-content: flex-end; }
.labher-mobile-menu__list { list-style: none; margin: 50px 0 0; display: flex; flex-direction: column; gap: 26px; }
.labher-mobile-menu__list a { color: #0A1747; font-size: 26px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }

/* ---------------- HERO ---------------- */
.labher-hero { background: var(--labher-navy); color: #fff; position: relative; overflow: hidden; }
.labher-hero__inner {
	max-width: var(--labher-max); margin: 0 auto; padding: clamp(64px,9vw,118px) clamp(20px,5vw,40px);
	display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px,5vw,64px); align-items: center; position: relative;
}
.labher-pill {
	display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14); padding: 8px 15px; border-radius: 100px;
	font-size: 12.5px; font-weight: 600; letter-spacing: 1px; color: #9FE6DC;
}
.labher-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--labher-accent); box-shadow: 0 0 0 4px rgba(63,208,190,.25); }

.labher-hero__title {
	font-family: 'Space Grotesk', sans-serif; font-size: clamp(38px,5.4vw,62px); line-height: 1.04;
	font-weight: 700; letter-spacing: -1.5px; margin-top: 24px;
}
.labher-hero__lead { font-size: clamp(16px,1.7vw,19px); color: var(--labher-text-body); margin-top: 24px; max-width: 540px; }
.labher-hero__lead strong { color: #fff; }
.labher-hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.labher-hero__stats { display: flex; gap: clamp(22px,4vw,46px); margin-top: 46px; flex-wrap: wrap; }
.labher-hero__stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: #fff; }
.labher-hero__stat-label { font-size: 13px; color: var(--labher-text-dim); font-weight: 600; letter-spacing: .5px; }

.labher-hero__device { position: relative; animation: labherFloaty 7s ease-in-out infinite; }
.labher-device { background: var(--labher-navy-deep); border: 1px solid rgba(79,172,224,.28); border-radius: 20px; padding: 18px; box-shadow: 0 34px 80px rgba(0,0,0,.5); }
.labher-device__topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.labher-device__dots { display: flex; gap: 6px; }
.labher-device__dots span { width: 11px; height: 11px; border-radius: 50%; background: #2A3656; display: block; }
.labher-device__live { font-size: 11px; color: var(--labher-accent); font-weight: 700; letter-spacing: 1px; }
.labher-device__map { background: #0a1f42; border-radius: 13px; height: 316px; position: relative; overflow: hidden; }
.labher-device__route { position: absolute; border-top: 2px dashed rgba(63,208,190,.55); }
.labher-device__route--a { top: 96px; left: 64px; width: 130px; transform: rotate(20deg); animation: labherDash 1.4s linear infinite; }
.labher-device__route--b { top: 168px; left: 158px; width: 96px; transform: rotate(-24deg); }
.labher-device__ping { position: absolute; width: 14px; height: 14px; border-radius: 50%; display: block; }
.labher-device__ping span { position: absolute; left: 0; top: 0; right: 0; bottom: 0; border-radius: 50%; background: inherit; animation: labherPing 2s ease-out infinite; }
.labher-device__ping--green { top: 74px; left: 58px; background: var(--labher-green); }
.labher-device__ping--blue { top: 128px; left: 180px; background: var(--labher-blue); }
.labher-device__ping--blue span { animation-delay: .4s; animation-duration: 2.4s; }
.labher-device__ping--pink { top: 200px; left: 248px; background: var(--labher-pink); }
.labher-device__ping--pink span { animation-delay: .8s; animation-duration: 2.2s; }
.labher-device__dot-static { position: absolute; top: 226px; left: 96px; width: 14px; height: 14px; border-radius: 50%; background: var(--labher-green); }
.labher-device__toast {
	position: absolute; bottom: 14px; left: 14px; right: 14px; background: rgba(7,18,51,.92);
	border: 1px solid rgba(63,208,190,.3); border-radius: 11px; padding: 12px 14px; font-size: 12.5px; color: var(--labher-text-body);
	display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.labher-device__toast strong { color: #fff; }
.labher-device__toast-ok { color: var(--labher-accent); font-weight: 700; flex-shrink: 0; }

/* ---------------- SECTION HEAD (compartido) ---------------- */
.labher-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.labher-section-head__text { max-width: 680px; }
.labher-section-head__logo { height: 56px; width: auto; background: transparent; padding: 0; }

/* ---------------- FEATURE GRID (funcionalidades GeoLabh) ---------------- */
.labher-feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; margin-top: 48px; }
.labher-feature-card {
	background: var(--labher-navy-card); border: 1px solid var(--labher-border); border-radius: 15px; padding: 24px;
	cursor: pointer; transition: .2s; display: flex; flex-direction: column; position: relative;
}
.labher-feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.labher-feature-card__icon { display: inline-flex; width: 42px; height: 42px; border-radius: 11px; align-items: center; justify-content: center; margin-bottom: 14px; }
.labher-feature-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #fff; }
.labher-feature-card p { font-size: 13.5px; color: var(--labher-text-muted); margin-top: 6px; }
.labher-feature-card__footer { margin-top: 16px; font-size: 11px; font-weight: 700; letter-spacing: .8px; display: inline-flex; align-items: center; gap: 7px; color: var(--labher-accent); }

/* ---------------- TABS WEB/APP ---------------- */
.labher-tabs-panel { margin-top: 56px; background: rgba(255,255,255,.04); border: 1px solid var(--labher-border); border-radius: 22px; padding: clamp(22px,3vw,36px); }
.labher-tabs-switch { display: inline-flex; background: #fff; border-radius: 12px; padding: 5px; gap: 4px; margin-bottom: 28px; }
.labher-tabs-switch button {
	border: none; cursor: pointer; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px;
	padding: 11px 22px; border-radius: 9px; background: transparent; color: #0A1747; transition: .2s;
}
.labher-tabs-switch button.is-active { background: #0A1747; color: #fff; box-shadow: 0 10px 24px rgba(10,23,71,.28); }
.labher-tabs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.labher-tab-item { background: var(--labher-navy-card); border: 1px solid var(--labher-border); border-radius: 14px; padding: 24px; }
.labher-tab-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; color: #fff; }
.labher-tab-item p { font-size: 14px; color: var(--labher-text-muted); margin-top: 6px; }

/* ---------------- FLUJO OPERACIONAL ---------------- */
.labher-flow-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-top: 46px; }
.labher-flow-card { background: var(--labher-navy-card); border: 1px solid var(--labher-border); border-radius: 16px; padding: 28px; transition: .2s; }
.labher-flow-card:hover { border-color: var(--labher-blue); transform: translateY(-3px); }
.labher-flow-card__num { font-family: 'Space Grotesk', sans-serif; font-size: 30px; font-weight: 700; color: #D4DBE8; }
.labher-flow-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin: 6px 0 8px; color: #fff; }
.labher-flow-card p { font-size: 14.5px; color: var(--labher-text-muted); }

/* ---------------- INDUSTRIAS ---------------- */
.labher-industries-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 18px; margin-top: 42px; }
.labher-industry-card { background: var(--labher-navy-card); border: 1px solid var(--labher-border); border-radius: 16px; padding: 28px; transition: .2s; }
.labher-industry-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.labher-industry-card__title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 9px; color: #fff; }
.labher-industry-card__dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.labher-industry-card p { font-size: 14px; color: var(--labher-text-muted); margin-top: 10px; }

/* ---------------- PROPUESTA DE VALOR ---------------- */
.labher-value-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 18px; margin-top: 42px; }
.labher-value-card {
	background: var(--labher-navy-card); color: #fff; border: 1px solid var(--labher-border); border-radius: 16px;
	padding: 28px; cursor: pointer; transition: .2s;
}
.labher-value-card:hover { transform: translateY(-4px); border-color: var(--labher-accent); }
.labher-value-card__big { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; margin-top: 10px; }
.labher-value-card__label { font-size: 13.5px; color: var(--labher-text-muted); font-weight: 600; margin-top: 4px; }
.labher-value-card__detail { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--labher-border); }
.labher-value-card__detail.is-open { display: block; }
.labher-value-card__detail-num { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: #fff; }
.labher-value-card__detail-label { font-size: 12px; color: var(--labher-text-muted); margin-top: 2px; }
.labher-value-card__toggle { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: .6px; color: var(--labher-accent); }

.labher-check-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(330px,1fr)); gap: 16px; margin-top: 30px; }
.labher-check-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 14px; background: var(--labher-navy-card); border: 1px solid rgba(255,255,255,.08); }
.labher-check-item__icon { color: var(--labher-green); flex: none; margin-top: 2px; }
.labher-check-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: #fff; }
.labher-check-item p { font-size: 14px; color: var(--labher-text-muted); margin-top: 3px; }

/* ---------------- IMPLEMENTACIÓN ---------------- */
.labher-impl-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; margin-top: 46px; }
.labher-impl-card { background: var(--labher-navy-card); border: 1px solid var(--labher-border); border-radius: 16px; padding: 30px; transition: .2s; }
.labher-impl-card:hover { border-color: var(--labher-blue); transform: translateY(-3px); }
.labher-impl-card__num {
	width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center;
	font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 16px;
}
.labher-impl-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.labher-impl-card p { font-size: 14.5px; color: var(--labher-text-muted); }

/* ---------------- CONTACTO ---------------- */
.labher-contact-form {
	max-width: 560px; margin: 40px auto 0; text-align: left; background: #0a1840;
	border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: clamp(24px,4vw,38px);
}
.labher-form-field { margin-bottom: 18px; }
.labher-form-field label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; color: var(--labher-text-dim); margin-bottom: 8px; }
.labher-form-field input,
.labher-form-field select,
.labher-form-field textarea {
	width: 100%; background: var(--labher-navy-input); border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
	padding: 13px 14px; color: #fff; font-size: 14.5px; font-family: inherit;
}
.labher-form-field textarea { resize: vertical; }
.labher-form-field input:focus,
.labher-form-field select:focus,
.labher-form-field textarea:focus { outline: 2px solid var(--labher-accent); outline-offset: 1px; }
.labher-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.labher-form-error { font-size: 13.5px; color: var(--labher-red); margin-bottom: 14px; }
.labher-form-toast { text-align: center; color: var(--labher-accent); font-size: 13.5px; font-weight: 600; margin-top: 14px; }

.labher-tagline-block { margin-top: 64px; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.labher-tagline {
	font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px,3.2vw,36px); font-weight: 700;
	letter-spacing: 1px; color: var(--labher-accent); margin: 0; text-transform: uppercase; text-align: center;
}
@media (max-width: 640px) {
	.labher-tagline-block { min-height: 110px; margin-top: 44px; }
}
.labher-contact-form button[disabled] { opacity: .7; cursor: default; }

/* ---------------- FOOTER ---------------- */
.labher-footer { background: var(--labher-footer-bg); color: var(--labher-text-dim); padding: clamp(48px,7vw,72px) 0 30px; }
.labher-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.1); }
.labher-footer__logo { height: 46px; width: auto; background: transparent; padding: 0; margin-bottom: 16px; display: block; }
.labher-footer__grid p { max-width: 320px; font-size: 14px; }
.labher-footer__grid p strong { color: #fff; }
.labher-footer h5 { color: #fff; font-size: 14px; margin-bottom: 15px; font-family: 'Space Grotesk', sans-serif; }
.labher-footer ul { list-style: none; font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
.labher-footer ul a { transition: .2s; }
.labher-footer ul a:hover { color: #fff; }
.labher-footer__bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ---------------- MODAL DETALLE FUNCIONALIDAD ---------------- */
.labher-feat-modal { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 200; align-items: center; justify-content: center; padding: 18px; display: flex; }
.labher-feat-modal[hidden] { display: none; }
.labher-feat-modal__backdrop { position: absolute; left: 0; top: 0; right: 0; bottom: 0; background: rgba(3,8,22,.8); backdrop-filter: blur(5px); }
.labher-feat-modal__dialog {
	position: relative; width: min(960px,100%); max-height: 90vh; overflow: auto; background: #0c1c46;
	border: 1px solid rgba(255,255,255,.12); border-radius: 22px; box-shadow: 0 40px 110px rgba(0,0,0,.65);
}
.labher-feat-modal__close {
	position: absolute; top: 15px; right: 15px; z-index: 5; width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; cursor: pointer;
	font-size: 17px; line-height: 1; transition: .2s;
}
.labher-feat-modal__close:hover { background: rgba(255,255,255,.18); }

.labher-feat-body { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); }
.labher-feat-body__graphic { padding: clamp(24px,3vw,38px); display: flex; align-items: center; justify-content: center; background: #0a1840; border-right: 1px solid rgba(255,255,255,.07); }
.labher-feat-body__content { padding: clamp(26px,3vw,42px); }
.labher-feat-body__ctx { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 11.5px; letter-spacing: 2px; margin-bottom: 14px; }
.labher-feat-body__title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px,2.4vw,29px); font-weight: 700; color: #fff; letter-spacing: -.5px; line-height: 1.1; }
.labher-feat-body__tag { color: var(--labher-text-body); font-size: 15px; margin-top: 13px; line-height: 1.6; }
.labher-feat-body__bullets { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.labher-feat-bullet { display: flex; gap: 10px; align-items: flex-start; }
.labher-feat-bullet svg { flex: none; margin-top: 2px; }
.labher-feat-bullet span { color: var(--labher-text-body); font-size: 14px; line-height: 1.5; }

/* ---------------- DEMOS INTERACTIVAS (dentro del modal) ---------------- */
.labher-phone { width: 212px; background: #0b1024; border: 6px solid #1b2444; border-radius: 32px; padding: 13px 11px 16px; box-shadow: 0 26px 64px rgba(0,0,0,.55); }
.labher-phone__notch { height: 5px; width: 52px; background: #1b2444; border-radius: 3px; margin: 0 auto 12px; }
.labher-phone__head { display: flex; align-items: center; gap: 7px; margin-bottom: 11px; }
.labher-phone__head-dot { width: 18px; height: 18px; border-radius: 5px; background: var(--labher-accent); }
.labher-phone__head b { color: #fff; font-size: 12px; font-family: 'Space Grotesk', sans-serif; }
.labher-phone__hint { text-align: center; color: #5f7196; font-size: 9.5px; margin-top: 9px; letter-spacing: .3px; }
.labher-phone__field { margin-bottom: 9px; }
.labher-phone__field-label { color: var(--labher-text-dim); font-size: 10px; margin-bottom: 4px; }

/* Mapa (ubicación en tiempo real) */
.labher-demo-loc { width: 100%; max-width: 400px; }
.labher-demo-loc__head {
	display: flex; justify-content: space-between; align-items: center; background: #0a1840;
	border: 1px solid rgba(79,172,224,.28); border-bottom: none; border-radius: 12px 12px 0 0; padding: 10px 13px;
}
.labher-demo-loc__head span:first-child { color: #fff; font-weight: 700; font-size: 11.5px; }
.labher-demo-loc__head span:last-child { color: var(--labher-accent); font-weight: 700; font-size: 11.5px; }
.labher-demo-loc__map { position: relative; height: 230px; background: #0a1f42; border: 1px solid rgba(79,172,224,.28); border-radius: 0 0 12px 12px; overflow: hidden; cursor: pointer; }
.labher-demo-loc__pin { position: absolute; width: 15px; height: 15px; border-radius: 50%; }
.labher-demo-loc__pin--start { top: 50px; left: 34px; background: var(--labher-green); box-shadow: 0 0 0 4px rgba(69,192,110,.22); }
.labher-demo-loc__pin--end { top: 160px; left: 228px; background: var(--labher-red); box-shadow: 0 0 0 4px rgba(231,76,60,.22); }
.labher-demo-loc__wp { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--labher-accent); opacity: .55; }
.labher-demo-loc__wp--1 { top: 96px; left: 118px; }
.labher-demo-loc__wp--2 { top: 150px; left: 190px; }
.labher-demo-loc__dot {
	position: absolute; left: 42px; top: 58px; width: 14px; height: 14px; border-radius: 50%; background: var(--labher-accent);
	box-shadow: 0 0 12px var(--labher-accent); z-index: 3; transition: left 1.6s ease-in-out, top 1.6s ease-in-out;
}
.labher-demo-loc__info {
	position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(7,18,51,.94);
	border: 1px solid rgba(63,208,190,.3); border-radius: 10px; padding: 9px 11px; font-size: 10.5px; color: var(--labher-text-body);
	display: flex; justify-content: space-between; gap: 6px;
}
.labher-demo-loc__info span:nth-child(2) { color: #fff; }
.labher-demo-loc__info span:last-child { color: var(--labher-accent); font-weight: 700; }

/* Escáner QR */
.labher-demo-qr__frame { position: relative; height: 150px; background: #0a1f42; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 11px; overflow: hidden; }
.labher-demo-qr__square { width: 96px; height: 96px; border-radius: 12px; position: relative; }
.labher-demo-qr__corner { position: absolute; width: 22px; height: 22px; border-color: var(--labher-accent); border-style: solid; border-width: 0; }
.labher-demo-qr__corner--tl { top: 0; left: 0; border-top-width: 3px; border-left-width: 3px; border-radius: 6px 0 0 0; }
.labher-demo-qr__corner--tr { top: 0; right: 0; border-top-width: 3px; border-right-width: 3px; border-radius: 0 6px 0 0; }
.labher-demo-qr__corner--bl { bottom: 0; left: 0; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 6px; }
.labher-demo-qr__corner--br { bottom: 0; right: 0; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 6px 0; }
.labher-demo-qr__center { position: absolute; left: 18px; top: 18px; right: 18px; bottom: 18px; background: #132a63; border-radius: 4px; }
.labher-demo-qr__sweep { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--labher-accent); box-shadow: 0 0 10px var(--labher-accent); }
.labher-demo-qr__btn { width: 100%; background: var(--labher-accent); color: #04241f; border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 11.5px; border-radius: 8px; padding: 9px; margin-bottom: 9px; }
.labher-demo-qr__data { background: #0a1840; border: 1px solid rgba(63,208,190,.3); border-radius: 10px; padding: 10px 11px; font-size: 10.5px; color: var(--labher-text-body); line-height: 1.7; }
.labher-demo-qr__data-row { display: flex; justify-content: space-between; gap: 8px; }
.labher-demo-qr__data-row b { color: #fff; }

/* Canal informativo */
.labher-demo-canal__kicker { color: var(--labher-text-dim); font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.labher-demo-canal__msg { cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #0a1840; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
.labher-demo-canal__msg-name { color: #fff; font-size: 11.5px; font-weight: 600; }
.labher-demo-canal__msg-date { color: var(--labher-text-dim); font-size: 10px; margin-top: 2px; }
.labher-demo-canal__badge { font-size: 10px; font-weight: 700; }
.labher-demo-canal__count { margin-top: 4px; background: #0a1840; border: 1px dashed rgba(63,208,190,.4); border-radius: 10px; padding: 9px; font-size: 10px; color: var(--labher-accent); text-align: center; }

/* Formulario a medida */
.labher-demo-form__box { height: 26px; background: #0a1840; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; }
.labher-demo-form__opts { display: flex; gap: 6px; }
.labher-demo-form__opt { cursor: pointer; flex: 1; height: 24px; background: #0a1840; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; }
.labher-demo-form__opt.is-active { background: #13285f; border-color: var(--labher-accent); }
.labher-demo-form__photo {
	cursor: pointer; height: 46px; background: #0a1840; border: 1px dashed rgba(79,172,224,.5); border-radius: 7px;
	display: flex; align-items: center; justify-content: center; color: var(--labher-blue); font-size: 16px;
}
.labher-demo-form__photo.is-added { color: var(--labher-green); border-color: var(--labher-green); border-style: solid; }
.labher-demo-form__sig { height: 40px; background: #0a1840; border: 1px solid rgba(255,255,255,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.labher-demo-form__submit { width: 100%; background: var(--labher-pink); color: #fff; text-align: center; border: none; cursor: pointer; font-family: inherit; border-radius: 8px; padding: 9px; font-size: 11px; font-weight: 700; margin-top: 4px; }
.labher-demo-form__toast { display: none; text-align: center; color: var(--labher-green); font-size: 10px; margin-top: 8px; }
.labher-demo-form__toast.is-visible { display: block; }

/* Incidentes */
.labher-demo-inc__group { background: #0a1840; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 11px; margin-bottom: 9px; }
.labher-demo-inc__group-title { color: #fff; font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.labher-demo-inc__radio { cursor: pointer; display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.labher-demo-inc__dot { width: 13px; height: 13px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); flex: none; background: transparent; }
.labher-demo-inc__radio.is-active .labher-demo-inc__dot { border-color: var(--labher-orange); background: var(--labher-orange); }
.labher-demo-inc__label { color: var(--labher-text-muted); font-size: 11px; }
.labher-demo-inc__radio.is-active .labher-demo-inc__label { color: #fff; }

/* Botón de alerta */
.labher-demo-alerta { text-align: center; padding: 14px 0 6px; }
.labher-demo-alerta__btn {
	width: 118px; height: 118px; border-radius: 50%; margin: 0 auto; background: var(--labher-red); border: none;
	cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
	font-size: 16px; letter-spacing: 1px; font-family: inherit;
	box-shadow: 0 0 0 10px rgba(231,76,60,.18), 0 0 0 22px rgba(231,76,60,.08); transition: .15s;
}
.labher-demo-alerta__hint { color: var(--labher-text-muted); font-size: 10.5px; margin-top: 14px; }
.labher-demo-alerta__toast { background: #0a1840; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 10px; font-size: 10.5px; color: var(--labher-text-dim); display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.labher-demo-alerta__toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--labher-text-dim); flex-shrink: 0; }

/* Reportería */
.labher-demo-report { width: 100%; max-width: 400px; background: var(--labher-navy-deep); border: 1px solid rgba(79,172,224,.22); border-radius: 14px; padding: 14px; }
.labher-demo-report__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.labher-demo-report__head b { color: #fff; font-size: 12px; font-family: 'Space Grotesk', sans-serif; }
.labher-demo-report__badge { font-size: 9.5px; color: var(--labher-accent); font-weight: 700; border: 1px solid rgba(63,208,190,.4); border-radius: 6px; padding: 3px 7px; }
.labher-demo-report__tabs { display: inline-flex; background: #0a1840; border-radius: 8px; padding: 3px; gap: 3px; margin-bottom: 11px; }
.labher-demo-report__tab { border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 10.5px; padding: 6px 12px; border-radius: 6px; background: transparent; color: var(--labher-text-muted); }
.labher-demo-report__tab.is-active { background: var(--labher-accent); color: #04241f; }
.labher-demo-report__stats { display: flex; gap: 8px; margin-bottom: 12px; }
.labher-demo-report__stat { flex: 1; background: #0a1840; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; padding: 9px 10px; }
.labher-demo-report__stat-n { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; }
.labher-demo-report__stat-l { color: var(--labher-text-dim); font-size: 9px; margin-top: 1px; }
.labher-demo-report__bars { display: flex; gap: 7px; align-items: flex-end; background: #0a1f42; border-radius: 9px; padding: 10px; }
.labher-demo-report__bar-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 80px; }
.labher-demo-report__bar { border-radius: 4px 4px 0 0; transition: height .5s ease; background: var(--labher-blue); }

/* Offline */
.labher-demo-offline__banner { background: rgba(245,166,35,.14); border: 1px solid rgba(245,166,35,.45); border-radius: 9px; padding: 9px 11px; font-size: 10.5px; color: var(--labher-orange); display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.labher-demo-offline__banner-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--labher-orange); flex-shrink: 0; }
.labher-demo-offline__row { display: flex; justify-content: space-between; align-items: center; background: #0a1840; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; padding: 9px 11px; margin-bottom: 7px; }
.labher-demo-offline__row-label { color: var(--labher-text-body); font-size: 10.5px; }
.labher-demo-offline__row-badge { font-size: 9.5px; font-weight: 700; }
.labher-demo-offline__btn { width: 100%; background: var(--labher-green); color: #04241f; border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 11px; border-radius: 8px; padding: 9px; margin-top: 4px; }
.labher-demo-offline__btn[disabled] { opacity: .6; }

/* API */
.labher-demo-api { width: 100%; max-width: 380px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.labher-demo-api__nodes { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.labher-demo-api__node { cursor: pointer; background: #0a1840; border: 1.5px solid; border-radius: 9px; padding: 8px 12px; color: #fff; font-size: 11px; font-weight: 600; transition: .15s; }
.labher-demo-api__status {
	background: var(--labher-navy-card); border: 1.5px solid var(--labher-accent); border-radius: 12px; padding: 12px 22px;
	color: #fff; font-weight: 700; font-family: 'Space Grotesk', sans-serif; font-size: 15px; box-shadow: 0 0 26px rgba(63,208,190,.25);
}
.labher-demo-api__detail { width: 100%; min-height: 96px; }
.labher-demo-api__card { text-align: left; background: #0a1840; border: 1px solid rgba(255,255,255,.1); border-left: 3px solid; border-radius: 10px; padding: 13px 15px; }
.labher-demo-api__card-title { color: #fff; font-weight: 700; font-size: 12.5px; margin-bottom: 5px; }
.labher-demo-api__card-desc { color: var(--labher-text-muted); font-size: 11.5px; line-height: 1.5; margin-bottom: 10px; }
.labher-demo-api__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.labher-demo-api__chip { display: inline-flex; align-items: center; gap: 5px; background: #0a1840; border: 1px solid rgba(69,192,110,.4); border-radius: 100px; padding: 5px 11px; font-size: 10.5px; color: #fff; font-weight: 600; }
.labher-demo-api__chip span { color: var(--labher-green); }
.labher-demo-api__map { position: relative; height: 120px; background: #0a1f42; border: 1px solid rgba(79,172,224,.28); border-radius: 9px; overflow: hidden; margin-top: 11px; }
.labher-demo-api__map-pin { position: absolute; width: 9px; height: 9px; border-radius: 50%; }
.labher-demo-api__map-footer { position: absolute; bottom: 7px; left: 9px; right: 9px; background: rgba(7,18,51,.9); border-radius: 7px; padding: 5px 8px; font-size: 9.5px; color: var(--labher-accent); font-weight: 700; }
.labher-demo-api__counter-box { background: var(--labher-navy-deep); border-radius: 9px; padding: 12px; text-align: center; }
.labher-demo-api__counter { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700; color: var(--labher-accent); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
	.labher-nav { display: none; }
	.labher-header__actions > .labher-lang-switch { display: none; }
	.labher-burger { display: flex; }
	.labher-hero__inner { grid-template-columns: 1fr; }
	.labher-hero__device { order: -1; max-width: 380px; margin: 0 auto; }
	.labher-tabs-grid { grid-template-columns: 1fr; }
	.labher-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (min-width: 901px) {
	.labher-mobile-menu { display: none !important; }
}

@media (max-width: 640px) {
	.labher-hero__stats { gap: 24px 32px; }
	.labher-header__actions { gap: 8px; }
	.labher-btn--accent { padding: 10px 16px; font-size: 13px; }
	.labher-feat-body { grid-template-columns: 1fr; }
	.labher-feat-body__graphic { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
	.labher-value-grid { grid-template-columns: 1fr 1fr; }
	.labher-device { padding: 12px; }
	.labher-device__map { height: 240px; }
}

@media (max-width: 420px) {
	.labher-value-grid { grid-template-columns: 1fr; }
	.labher-hero__title { font-size: 32px; }
}

/* Accesibilidad */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 2px solid var(--labher-accent); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
	.labher-header__icon-mark, .labher-hero__device, .labher-device__route--a,
	.labher-device__ping span { animation: none !important; }
	html { scroll-behavior: auto; }
}
