﻿/* =============================================================
   DOMIO V2 — Landing Page Styles
   ============================================================= */

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: 1rem 0;
  transition: all var(--duration-base);
}
.lp-nav.scrolled {
  background: rgb(255 255 255 / .9);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 0 var(--border);
  padding: .75rem 0;
}
.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.lp-navbar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg,#0F6E56,#1a9e7a);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
}
.lp-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -.02em;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin-left: var(--space-4);
}
.lp-nav-links a {
  padding: .5rem .875rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}
.lp-nav-links a:hover { color: var(--text); background: var(--neutral-100); }
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  border-radius: var(--radius-md);
  margin-left: auto;
}
@media (max-width: 768px) {
  .lp-nav-links, .lp-nav-actions .btn-outline { display: none; }
  .lp-menu-toggle { display: flex; }
  .lp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: white;
    padding: var(--space-4);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: .5rem;
    margin: 0;
    align-items: stretch;
  }
  .lp-nav-links.open a {
    padding: .75rem 1rem;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0F6E56, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1565c0, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-section > .lp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-section > .lp-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  background: var(--brand-light, #e0f2f0);
  color: #0F6E56;
  border: 1px solid #0F6E5620;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.hero-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.gradient-text {
  background: linear-gradient(135deg,#0F6E56,#1565c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-6);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text);
  display: block;
}
.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}
.hero-stat-sep {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Mock dashboard en hero */
.hero-visual {
  position: relative;
}
.mock-dashboard {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 400px;
  overflow: hidden;
}
.mock-sidebar {
  background: var(--neutral-950);
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mock-logo {
  width: 100%; height: 32px;
  background: linear-gradient(135deg,#0F6E56,#1a9e7a);
  border-radius: 6px;
  margin-bottom: .5rem;
}
.mock-nav-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .5rem;
  border-radius: 6px;
  opacity: .5;
}
.mock-nav-item.active { background: rgb(255 255 255 / .1); opacity: 1; }
.mock-nav-dot { width: 8px; height: 8px; border-radius: 50%; background: #64748b; flex-shrink: 0; }
.mock-nav-item.active .mock-nav-dot { background: #0F6E56; }
.mock-nav-label { height: 8px; background: #475569; border-radius: 4px; }
.mock-content { padding: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.mock-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.mock-kpi {
  border-radius: 8px;
  padding: .5rem;
}
.mock-kpi-green  { background: #dcfce7; }
.mock-kpi-blue   { background: #dbeafe; }
.mock-kpi-orange { background: #fed7aa; }
.mock-kpi-purple { background: #ede9fe; }
.mock-kpi-val { font-size: 1.1rem; font-weight: 800; color: var(--neutral-800); }
.mock-kpi-lbl { font-size: 9px; color: var(--neutral-500); }
.mock-chart {
  flex: 1;
  background: var(--neutral-50);
  border-radius: 8px;
  padding: .5rem;
  display: flex;
  align-items: flex-end;
}
.mock-chart-bars {
  display: flex; align-items: flex-end; gap: .25rem;
  height: 80px; width: 100%;
}
.mock-bar {
  flex: 1;
  background: linear-gradient(to top,#0F6E56,#1a9e7a);
  border-radius: 3px 3px 0 0;
}
.mock-table-row { display: flex; flex-direction: column; gap: .375rem; }
.mock-table-line {
  display: flex; align-items: center; gap: .5rem;
  background: var(--neutral-50); padding: .375rem .5rem; border-radius: 6px;
}
.mock-avatar { width: 20px; height: 20px; border-radius: 50%; background: #cbd5e1; flex-shrink: 0; }
.mock-line { height: 8px; background: #e2e8f0; border-radius: 4px; }
.mock-badge-small { margin-left: auto; width: 40px; height: 14px; background: #dcfce7; border-radius: 99px; }

/* ============================================================
   MÓDULOS GRID
   ============================================================ */
.modules-section {
  padding: var(--space-16) 0;
  background: var(--bg-muted);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #0F6E56;
  margin-bottom: .5rem;
}
.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: var(--space-3);
}
.section-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.65;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr));
  gap: var(--space-4);
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--m-gradient, var(--m-color, var(--brand)));
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.module-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
}
.module-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  background: var(--m-gradient, var(--m-color, var(--brand)));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.module-roles {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  justify-content: flex-end;
}
.module-roles span {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  background: var(--neutral-100);
  color: var(--neutral-600);
  border-radius: var(--radius-full);
}
.module-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text);
}
.module-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.module-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: var(--m-gradient, var(--m-color, var(--brand)));
  color: white;
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.module-btn:hover { opacity: .9; transform: translateX(2px); }
.module-card-admin .module-icon { background: linear-gradient(135deg,#1a1a2e,#16213e); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { padding: var(--space-16) 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px,100%), 1fr));
  gap: var(--space-4);
}
.feature-card {
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--duration-base), transform var(--duration-base) var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease-out, transform 500ms ease-out, box-shadow var(--duration-base), border-color var(--duration-base);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light, #dcfce7);
  transform: translateY(-2px) !important;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--brand-surface, #f0faf8);
  color: #0F6E56;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: var(--space-3);
}
.feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .375rem;
}
.feature-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY DOMIO
   ============================================================ */
.why-section {
  padding: var(--space-16) 0;
  background: var(--bg-muted);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}
.why-list li i { color: #0F6E56; font-size: 14px; flex-shrink: 0; }

.isolation-diagram {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.isolation-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid #<?php /* inline PHP won't work in CSS */ ?>000;
  font-size: var(--text-sm);
  font-weight: 600;
}
.isolation-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.isolation-lock { margin-left: auto; color: var(--neutral-400); font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: var(--space-16) 0; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  background: linear-gradient(135deg,#0F6E56,#1565c0);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
}
@media (max-width: 768px) {
  .contact-card { grid-template-columns: 1fr; padding: var(--space-6); }
}
.contact-input {
  background: rgb(255 255 255 / .15) !important;
  border-color: rgb(255 255 255 / .25) !important;
  color: white !important;
}
.contact-input::placeholder { color: rgb(255 255 255 / .6) !important; }
.contact-input:focus {
  border-color: white !important;
  box-shadow: 0 0 0 3px rgb(255 255 255 / .2) !important;
}
.btn-light {
  background: white;
  color: #0F6E56;
  border-color: white;
  font-weight: 700;
}
.btn-light:hover { background: var(--neutral-100); }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--neutral-950);
  color: var(--neutral-400);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
.footer-brand .lp-brand { margin-bottom: var(--space-3); }
.footer-brand .lp-brand-name { color: white; }
.footer-tagline { font-size: var(--text-sm); line-height: 1.6; }
.footer-heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-3);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--neutral-800);
  font-size: var(--text-xs);
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Animate on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-4); }

.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgb(255 255 255 / .75);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgb(226 232 240 / .7);
}
.lp-nav.scrolled { background: rgb(255 255 255 / .92); }
.lp-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 72px;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
}
.lp-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgb(2 6 23 / .18));
}
.lp-brand-text { display: grid; line-height: 1.05; }
.lp-brand-name { font-family: var(--font-display); font-weight: 900; letter-spacing: .08em; font-size: 1rem; }
.lp-brand-sub { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; letter-spacing: .01em; }

.lp-menu-toggle {
  width: 40px; height: 40px;
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.lp-nav-panel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.lp-nav-links a:hover { background: var(--neutral-100); color: var(--text); }
.lp-nav-actions { display: inline-flex; align-items: center; gap: .5rem; }

.lp-btn-primary,
.lp-btn-outline,
.lp-btn-secondary,
.lp-btn-ghost {
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast), opacity var(--duration-fast);
  line-height: 1;
  white-space: nowrap;
}
.lp-btn-lg { padding: .8rem 1.1rem; }
.lp-btn-primary {
  background: linear-gradient(135deg,#0F6E56,#1a9e7a);
  color: white;
  box-shadow: 0 18px 35px rgb(15 110 86 / .22);
}
.lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 24px 48px rgb(15 110 86 / .28); }
.lp-btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.lp-btn-outline:hover { background: var(--neutral-100); transform: translateY(-1px); }
.lp-btn-secondary {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.lp-btn-secondary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.lp-btn-ghost {
  background: transparent;
  color: var(--text);
}
.lp-btn-ghost:hover { background: var(--neutral-100); }

@media (max-width: 980px) {
  .lp-menu-toggle { display: inline-flex; }
  .lp-nav-panel {
    position: fixed;
    inset: 72px var(--space-4) auto var(--space-4);
    display: grid;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgb(255 255 255 / .95);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base), transform var(--duration-base);
  }
  .lp-nav-panel.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .lp-nav-links { flex-direction: column; align-items: stretch; }
  .lp-nav-links a { border-radius: var(--radius-lg); justify-content: space-between; }
  .lp-nav-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

.lp-main { padding-top: 72px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 15% 10%, rgb(15 110 86 / .12), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgb(21 101 192 / .10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-muted) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-8);
  padding: var(--space-12) 0 var(--space-12);
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: var(--space-8) 0 var(--space-10); }
}

.hero-kicker { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--space-4); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  border-radius: var(--radius-full);
  background: rgb(255 255 255 / .65);
  border: 1px solid rgb(226 232 240 / .8);
  font-weight: 700;
  color: var(--text);
  font-size: var(--text-xs);
}

.hero-slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgb(226 232 240 / .9);
  background: var(--bg-card);
  box-shadow: 0 30px 80px rgb(2 6 23 / .10);
  min-height: 420px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(10px) scale(.99);
  transition: opacity 550ms var(--ease-out), transform 700ms var(--ease-out);
  background:
    radial-gradient(700px 420px at 20% 10%, rgb(244 180 0 / .18), transparent 60%),
    linear-gradient(135deg, rgb(2 6 23 / .72), rgb(2 6 23 / .28)),
    var(--bg);
  background-size: cover;
  background-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 0% 100%, rgb(15 110 86 / .35), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgb(21 101 192 / .28), transparent 55%);
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; transform: translateX(0) scale(1); }
.hero-slide-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: grid;
  gap: 1rem;
  color: white;
  max-width: 62ch;
}
.hero-title {
  font-size: clamp(1.85rem, 2.4vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -.03em;
}
.hero-subtitle { color: rgb(255 255 255 / .86); font-size: var(--text-lg); line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-tag {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .5rem .75rem;
  border-radius: var(--radius-full);
  background: rgb(255 255 255 / .12);
  border: 1px solid rgb(255 255 255 / .18);
  font-weight: 800;
  font-size: var(--text-xs);
}
.hero-metrics { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.hero-metric {
  display: grid;
  gap: .05rem;
  padding: .6rem .75rem;
  border-radius: var(--radius-xl);
  background: rgb(255 255 255 / .10);
  border: 1px solid rgb(255 255 255 / .16);
  min-width: 110px;
}
.hm-num { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; }
.hm-lbl { font-size: var(--text-xs); color: rgb(255 255 255 / .78); font-weight: 700; }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: .5rem;
  justify-content: center;
  z-index: 2;
}
.hero-dot {
  width: 11px; height: 11px;
  border-radius: var(--radius-full);
  border: 1px solid rgb(255 255 255 / .55);
  background: rgb(255 255 255 / .20);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), background var(--duration-fast), border-color var(--duration-fast), width var(--duration-fast);
}
.hero-dot.is-active {
  background: white;
  border-color: white;
  width: 28px;
}
.hero-right { position: relative; }
.demo-card {
  position: sticky;
  top: 92px;
  background: rgb(255 255 255 / .86);
  border: 1px solid rgb(226 232 240 / .9);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgb(2 6 23 / .08);
  overflow: hidden;
}
@media (max-width: 980px) {
  .demo-card { position: static; }
}
.demo-head { padding: 1.25rem 1.25rem .25rem; }
.demo-badge {
  display: inline-flex;
  align-items: center;
  padding: .3rem .65rem;
  border-radius: var(--radius-full);
  background: rgb(15 110 86 / .12);
  color: #0F6E56;
  border: 1px solid rgb(15 110 86 / .16);
  font-weight: 900;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.demo-head h3 { margin-top: .75rem; font-size: var(--text-xl); font-weight: 900; }
.demo-head p { color: var(--text-muted); margin-top: .35rem; font-size: var(--text-sm); line-height: 1.7; }
.demo-form { padding: 1rem 1.25rem 1.25rem; display: grid; gap: .9rem; }
.demo-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 520px) { .demo-row { grid-template-columns: 1fr; } }

.demo-submit {
  border: none;
  border-radius: var(--radius-xl);
  padding: .95rem 1rem;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: white;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgb(18 140 126 / .28);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), opacity var(--duration-fast);
}
.demo-submit:hover { transform: translateY(-1px); box-shadow: 0 24px 54px rgb(18 140 126 / .34); }
.demo-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }
.demo-footnote { color: var(--text-subtle); font-size: var(--text-xs); line-height: 1.55; }
.demo-alert { margin: 1rem 1.25rem 0; padding: .75rem .9rem; border-radius: var(--radius-xl); font-weight: 700; font-size: var(--text-sm); }
.demo-alert-success { background: #dcfce7; color: #166534; border: 1px solid rgb(22 101 52 / .15); }
.demo-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid rgb(153 27 27 / .15); }

.lp-section { padding: var(--space-12) 0; }
.lp-section-alt { background: var(--bg-muted); }
.section-head { display: grid; gap: .5rem; text-align: center; max-width: 72ch; margin: 0 auto var(--space-8); }
.section-kicker { font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: var(--text-xs); color: #0F6E56; }
.section-head h2 { font-size: var(--text-3xl); font-weight: 950; letter-spacing: -.03em; }
.section-head p { color: var(--text-muted); font-size: var(--text-lg); line-height: 1.65; }

.value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); }
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.value-ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-xl);
  background: rgb(15 110 86 / .12);
  border: 1px solid rgb(15 110 86 / .16);
  color: #0F6E56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: .8rem;
}
.value-card h3 { font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em; }
.value-card p { margin-top: .35rem; color: var(--text-muted); font-size: var(--text-sm); line-height: 1.65; }

.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); }
@media (max-width: 980px) { .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card {
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem;
  display: grid;
  gap: .9rem;
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 0% 0%, color-mix(in oklab, var(--pc), transparent 86%), transparent 55%);
  pointer-events: none;
}
.platform-top { display: flex; gap: .9rem; position: relative; }
.platform-ico {
  width: 46px; height: 46px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--pc), white 90%);
  border: 1px solid color-mix(in oklab, var(--pc), transparent 78%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pc);
  font-size: 18px;
  flex-shrink: 0;
}
.platform-meta h3 { font-size: 1.05rem; font-weight: 950; letter-spacing: -.02em; }
.platform-meta p { margin-top: .15rem; color: var(--text-muted); font-size: var(--text-sm); line-height: 1.6; }
.platform-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; position: relative; }
.platform-btn {
  border: none;
  border-radius: var(--radius-full);
  padding: .7rem 1rem;
  font-weight: 950;
  color: white;
  background: linear-gradient(135deg, var(--pc), color-mix(in oklab, var(--pc), black 12%));
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.platform-btn:hover { opacity: .94; }
.platform-link { color: var(--text-muted); font-weight: 800; text-decoration: none; font-size: var(--text-sm); }
.platform-link:hover { color: var(--text); }

.modal-portal { max-width: 1060px; }
.portal { display: grid; grid-template-columns: 1fr 1.25fr; min-height: 640px; }
@media (max-width: 980px) { .portal { grid-template-columns: 1fr; min-height: 0; } }
.portal-left {
  padding: 1.5rem;
  background:
    radial-gradient(900px 500px at 0% 0%, rgb(244 180 0 / .16), transparent 55%),
    radial-gradient(900px 520px at 0% 100%, rgb(15 110 86 / .22), transparent 55%),
    linear-gradient(135deg, #071a2f, #0b2a47);
  color: white;
  display: grid;
  gap: 1.25rem;
}
.portal-brand { display: flex; align-items: center; gap: .9rem; }
.portal-logo {
  width: 44px; height: 44px;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  background: rgb(255 255 255 / .10);
  border: 1px solid rgb(255 255 255 / .16);
}
.portal-name { font-family: var(--font-display); font-weight: 950; letter-spacing: .12em; }
.portal-tag { color: rgb(255 255 255 / .75); font-size: var(--text-sm); font-weight: 700; margin-top: .15rem; }
.portal-copy { display: grid; gap: .4rem; margin-top: .25rem; }
.portal-title { font-size: 1.7rem; font-weight: 950; letter-spacing: -.03em; line-height: 1.15; }
.portal-sub { color: rgb(255 255 255 / .78); font-size: var(--text-sm); line-height: 1.7; }
.portal-mini { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: auto; }
.portal-mini-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem .85rem;
  border-radius: 16px;
  background: rgb(255 255 255 / .10);
  border: 1px solid rgb(255 255 255 / .16);
  font-weight: 800;
  font-size: var(--text-sm);
}

.portal-right { padding: 1.25rem; display: grid; gap: 1rem; }
.portal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.portal-welcome { font-size: 1.35rem; font-weight: 950; letter-spacing: -.02em; }
.portal-welcome span { color: #0F6E56; }
.portal-instruction { color: var(--text-muted); font-weight: 700; margin-top: .25rem; font-size: var(--text-sm); }

.portal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
@media (max-width: 980px) { .portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .portal-grid { grid-template-columns: 1fr; } }
.portal-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 18px;
  padding: .95rem .95rem 1rem;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: .25rem;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-fast);
}
.portal-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.portal-card.is-selected {
  border-color: color-mix(in oklab, var(--mc), transparent 45%);
  box-shadow: 0 18px 48px color-mix(in oklab, var(--mc), transparent 78%);
}
.portal-card-ico {
  width: 42px; height: 42px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--mc), white 90%);
  border: 1px solid color-mix(in oklab, var(--mc), transparent 78%);
  color: var(--mc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .35rem;
  font-size: 18px;
}
.portal-card-name { font-weight: 950; letter-spacing: -.02em; }
.portal-card-desc { color: var(--text-muted); font-size: var(--text-xs); line-height: 1.4; }

.portal-divider { display: flex; align-items: center; gap: .75rem; color: var(--text-subtle); font-weight: 800; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; }
.portal-divider::before, .portal-divider::after { content: ''; height: 1px; background: var(--border); flex: 1; }
.portal-divider span { padding: .25rem .4rem; }

.portal-login { display: grid; gap: .75rem; }
.portal-login-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.portal-login-title { font-weight: 950; }
.portal-login-actions { display: inline-flex; align-items: center; gap: .75rem; }
.portal-login-link { color: var(--text-muted); font-weight: 900; text-decoration: none; font-size: var(--text-sm); }
.portal-login-link:hover { color: var(--text); }
.portal-login-back {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .55rem .85rem;
  background: var(--bg-card);
  font-weight: 900;
  color: var(--text);
  cursor: pointer;
}
.portal-login-back:hover { background: var(--neutral-100); }

.portal-iframe-wrap {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg);
  min-height: 440px;
}
.portal-iframe { width: 100%; height: 520px; border: 0; display: block; background: transparent; }
@media (max-width: 980px) { .portal-iframe { height: 560px; } }

.portal-login-cta { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
@media (max-width: 520px) { .portal-login-cta { flex-direction: column; align-items: stretch; } }
.portal-primary {
  border: none;
  border-radius: var(--radius-full);
  padding: .85rem 1.05rem;
  background: linear-gradient(135deg,#0F6E56,#1a9e7a);
  color: white;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.portal-primary:disabled { opacity: .6; cursor: not-allowed; }
.portal-secondary {
  font-weight: 950;
  color: var(--text);
  text-decoration: none;
  padding: .85rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}
.portal-secondary:hover { background: var(--neutral-100); }

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.footer-logo .lp-brand-name { color: white; }
.footer-text { color: var(--neutral-400); font-size: var(--text-sm); line-height: 1.7; max-width: 56ch; }
.footer-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.footer-nav { display: grid; gap: .55rem; }
.footer-nav h3 { font-size: var(--text-sm); color: white; font-weight: 900; margin-bottom: .25rem; }
.footer-nav a { color: var(--neutral-400); text-decoration: none; font-weight: 700; font-size: var(--text-sm); }
.footer-nav a:hover { color: white; }
.footer-contact { display: grid; gap: .55rem; }
.footer-contact h3 { font-size: var(--text-sm); color: white; font-weight: 900; margin-bottom: .25rem; }
.footer-contact-item { display: inline-flex; align-items: center; gap: .6rem; color: var(--neutral-400); font-size: var(--text-sm); font-weight: 700; }
.footer-contact-item i { color: #F4B400; }

.hero-grid { position: relative; grid-template-columns: 1fr; align-items: stretch; }
.hero-right {
  position: absolute;
  top: 86px;
  right: 0;
  width: min(440px, 100%);
  z-index: 3;
}
.demo-card { position: relative; top: 0; }
@media (min-width: 981px) {
  .hero-slide-inner { padding-right: 520px; }
}
@media (max-width: 980px) {
  .hero-right { position: static; width: auto; }
  .hero-slide-inner { padding-right: clamp(1.25rem, 2.2vw, 2rem); }
}

/* ============================================================
   DOMIO V3 — Landing 1:1 (scoped)
   ============================================================ */

.landing-v3 {
  --v3-accent: #F4B400;
  --v3-accent-2: #FFB000;
  --v3-navy: #071a2f;
  --v3-navy-2: #0b2a47;
  --v3-ink: #0f172a;
  --v3-muted: #64748b;
  --v3-border: #e5e7eb;
  --v3-card: #ffffff;
  --v3-bg: #f6f8fc;
  --v3-shadow: 0 18px 50px rgb(2 6 23 / .10);
  --v3-shadow-2: 0 28px 80px rgb(2 6 23 / .14);
  --font-display: 'Poppins', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --bg: #ffffff;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  color-scheme: light;
  background: var(--v3-bg);
}

.landing-v3 .lp-container { max-width: 1240px; }

.landing-v3 [data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition:
    opacity 800ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 900ms var(--ease-out) var(--reveal-delay, 0ms);
}
.landing-v3 [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.landing-v3 [data-tilt] {
  transform: perspective(900px) rotateX(0) rotateY(0) translateZ(0);
  will-change: transform;
}

.v3-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-sticky);
  padding: 14px 0;
  background: rgb(255 255 255 / .78);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid rgb(226 232 240 / .8);
  box-shadow: 0 8px 30px rgb(2 6 23 / .03);
  transition: box-shadow var(--duration-base), background var(--duration-base), padding var(--duration-base);
}
.v3-nav.scrolled {
  background: rgb(255 255 255 / .92);
  padding: 10px 0;
  box-shadow: 0 18px 48px rgb(2 6 23 / .08);
}
.v3-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.v3-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: inherit;
}
.v3-brand-logo { border-radius: 10px; filter: drop-shadow(0 10px 18px rgb(2 6 23 / .16)); }
.v3-brand-text { display: grid; line-height: 1.05; }
.v3-brand-name {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: .14em;
  font-size: 1rem;
  color: var(--v3-ink);
}
.v3-brand-tag { font-size: 12px; color: var(--v3-muted); font-weight: 600; }
.v3-brand-pill {
  margin-left: .3rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(244 180 0 / .16), rgb(43 109 255 / .1));
  border: 1px solid rgb(226 232 240 / .95);
  color: var(--v3-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v3-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--v3-border);
  background: white;
  color: var(--v3-ink);
  align-items: center;
  justify-content: center;
}
.v3-nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.v3-nav-dd { position: relative; }
.v3-nav-dd-btn {
  border: none;
  background: transparent;
  color: var(--v3-ink);
  font-weight: 600;
  font-size: 13px;
  padding: .65rem .75rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.v3-nav-dd-btn:hover { background: rgb(148 163 184 / .18); }
.v3-nav-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgb(255 255 255 / .98);
  border: 1px solid rgb(226 232 240 / .95);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgb(2 6 23 / .12);
  padding: .55rem;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--duration-base), transform var(--duration-base);
  z-index: var(--z-dropdown);
}
.v3-nav-dd-menu a {
  display: block;
  padding: .7rem .8rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--v3-ink);
  font-weight: 650;
  font-size: 13px;
}
.v3-nav-dd-menu a:hover { background: rgb(148 163 184 / .14); }
.v3-nav-dd:hover .v3-nav-dd-menu,
.v3-nav-dd:focus-within .v3-nav-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.v3-nav-links > a {
  text-decoration: none;
  color: var(--v3-ink);
  font-weight: 600;
  font-size: 13px;
  padding: .65rem .75rem;
  border-radius: 999px;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.v3-nav-links > a:hover { background: rgb(148 163 184 / .18); }
.v3-nav-links > a.is-active { background: rgb(15 110 86 / .10); color: var(--v3-ink); }
.v3-nav-cta { display: inline-flex; align-items: center; gap: .5rem; margin-left: .35rem; }

/* Social icons in nav */
.v3-nav-social {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin: 0 .2rem;
}
.v3-nav-social-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v3-muted);
  text-decoration: none;
  font-size: 15px;
  transition: background .18s, color .18s, transform .18s;
}
.v3-nav-social-ico:hover {
  background: rgb(148 163 184 / .16);
  color: var(--v3-ink);
  transform: scale(1.1);
}

.v3-btn {
  border-radius: 999px;
  padding: .66rem 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 13px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--v3-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast), opacity var(--duration-fast);
}
.v3-btn:active { transform: translateY(1px); }
.v3-btn-primary {
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  box-shadow: 0 18px 40px rgb(244 180 0 / .22);
}
.v3-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 28px 60px rgb(244 180 0 / .26); }
.v3-btn-outline {
  border-color: rgb(226 232 240 / .95);
  background: rgb(255 255 255 / .85);
}
.v3-btn-outline:hover { transform: translateY(-1px); box-shadow: 0 14px 40px rgb(2 6 23 / .06); }
.v3-btn-ghost {
  border-color: rgb(226 232 240 / .95);
  background: transparent;
}
.v3-btn-ghost:hover { background: rgb(148 163 184 / .16); }
.v3-btn-primary-dark { box-shadow: 0 18px 44px rgb(244 180 0 / .12); }

@media (max-width: 980px) {
  .v3-nav-toggle { display: inline-flex; }
  .v3-nav-links {
    position: fixed;
    left: var(--space-4);
    right: var(--space-4);
    top: 74px;
    display: grid;
    gap: .35rem;
    padding: .85rem;
    background: rgb(255 255 255 / .96);
    border: 1px solid rgb(226 232 240 / .95);
    border-radius: 18px;
    box-shadow: var(--v3-shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-base), transform var(--duration-base);
  }
  .v3-nav-links.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .v3-nav-cta { margin-left: 0; display: grid; grid-template-columns: 1fr 1fr; margin-top: .5rem; }
  .v3-brand-pill { display: none; }
  .v3-nav-social { margin: .35rem 0 0; justify-content: center; gap: .4rem; }
  .v3-nav-social-ico { width: 40px; height: 40px; font-size: 17px; background: rgb(148 163 184 / .1); border: 1px solid rgb(226 232 240 / .9); }
}

.v3-main { padding-top: 82px; }

.v3-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 10% 10%, rgb(244 180 0 / .14), transparent 60%),
    radial-gradient(900px 520px at 60% 0%, rgb(21 101 192 / .10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--v3-bg) 70%);
}
.v3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / .96) 0%, rgb(255 255 255 / .84) 34%, rgb(255 255 255 / .20) 60%, rgb(255 255 255 / .08) 100%),
    radial-gradient(1100px 640px at 82% 18%, rgb(43 109 255 / .14), transparent 55%),
    radial-gradient(720px 420px at 64% 68%, rgb(244 180 0 / .16), transparent 60%),
    linear-gradient(135deg, rgb(226 232 240 / .84), rgb(255 255 255 / .34));
  opacity: 1;
  pointer-events: none;
}
.v3-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 80% 35%, rgb(255 255 255 / .0), rgb(255 255 255 / .62) 42%, rgb(246 248 252 / 1) 76%),
    linear-gradient(180deg, rgb(255 255 255 / 0), rgb(255 255 255 / .12));
  pointer-events: none;
}
.v3-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5.5rem);
}
@media (max-width: 980px) {
  .v3-hero-grid { grid-template-columns: 1fr; padding: 2rem 0 3rem; }
}
/* demo card in hero grid */
.v3-hero-grid > .v3-demo-card {
  min-width: 0;
  align-self: start;
  position: sticky;
  top: 90px;
}
@media (max-width: 980px) {
  .v3-hero-grid > .v3-demo-card { position: static; }
}

.v3-hero-copy { padding-top: clamp(.5rem, 1.4vw, 1.25rem); }
.v3-hero-title {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #0b1220;
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
}
.v3-hero-title span { color: var(--v3-accent); }
.v3-hero-subtitle {
  margin-top: .9rem;
  color: #475569;
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  max-width: 60ch;
}
.v3-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }

.v3-trust { margin-top: 1.65rem; }
.v3-trust-title { font-size: 12px; color: #64748b; font-weight: 700; }
.v3-trust-logos {
  margin-top: .65rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .85rem;
  align-items: center;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 12px;
}
.v3-trust-logos span {
  padding: .4rem .65rem;
  border-radius: 999px;
  background: rgb(255 255 255 / .72);
  border: 1px solid rgb(226 232 240 / .9);
}

.v3-hero-visual {
  position: relative;
  min-width: 0;
}
/* slider fills the visual column */
.v3-hero-visual .v3-hero-slider {
  width: 100%;
  min-height: 480px;
}
.v3-hero-stage {
  /* stage no longer used as sub-grid — kept for backwards compat */
}
[data-parallax] {
  --mx: 0px;
  --my: 0px;
  --sy: 0px;
  transform: translate3d(var(--mx), calc(var(--my) + var(--sy)), 0);
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.v3-hero-backdrop-card {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--v3-shadow-2);
  border: 1px solid rgb(226 232 240 / .9);
  background: linear-gradient(180deg, rgb(7 17 32 / .9), rgb(7 17 32 / .68));
  isolation: isolate;
}
.v3-hero-backdrop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(540px 260px at 0% 0%, rgb(244 180 0 / .26), transparent 60%),
    radial-gradient(420px 220px at 100% 100%, rgb(43 109 255 / .22), transparent 60%),
    linear-gradient(180deg, rgb(7 17 32 / .05), rgb(7 17 32 / .72));
  pointer-events: none;
  z-index: 1;
}
.v3-hero-backdrop-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  border: 1px solid rgb(255 255 255 / .12);
  pointer-events: none;
  z-index: 2;
}
.v3-hero-backdrop-media {
  position: absolute;
  inset: 0;
}
.v3-brand-scene,
.v3-showcase-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.v3-brand-scene {
  background:
    radial-gradient(420px 220px at 22% 20%, rgb(244 180 0 / .18), transparent 65%),
    radial-gradient(560px 260px at 78% 24%, rgb(43 109 255 / .18), transparent 60%),
    linear-gradient(180deg, #122033 0%, #091523 100%);
}
.v3-brand-scene-logo,
.v3-showcase-watermark {
  position: absolute;
  inset: 22px 22px auto auto;
  opacity: .18;
}
.v3-brand-scene-logo img,
.v3-showcase-watermark img,
.v3-sol-photo-brand img,
.v3-device-topbar img,
.v3-login-photo-top img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.v3-brand-scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / .06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent 8%, rgb(0 0 0 / .9) 30%, rgb(0 0 0 / .9) 85%, transparent);
}
.v3-brand-scene-building,
.v3-showcase-tower {
  position: absolute;
  bottom: 0;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .14), rgb(255 255 255 / .03)),
    linear-gradient(180deg, #22344b, #101d31);
  border: 1px solid rgb(255 255 255 / .08);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .06);
}
.v3-brand-scene-building::before,
.v3-showcase-tower::before {
  content: '';
  position: absolute;
  inset: 12px;
  background-image:
    linear-gradient(rgb(255 255 255 / .14) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .55;
}
.v3-brand-building-a { left: 12%; width: 20%; height: 48%; }
.v3-brand-building-b { left: 35%; width: 23%; height: 66%; }
.v3-brand-building-c { left: 61%; width: 17%; height: 38%; }
.v3-brand-scene-panel,
.v3-showcase-board {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  padding: 1rem;
  border-radius: 18px;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .12);
  backdrop-filter: blur(10px);
}
.v3-brand-scene-panel-title {
  color: white;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: .7rem;
}
.v3-brand-scene-bars,
.v3-showcase-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
}
.v3-brand-scene-bars span,
.v3-showcase-board span {
  display: block;
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(43 109 255 / .72), rgb(34 197 94 / .64));
}
.v3-brand-scene-bars span:nth-child(1) { height: 34px; align-self: end; }
.v3-brand-scene-bars span:nth-child(2) { height: 58px; align-self: end; }
.v3-brand-scene-bars span:nth-child(3) { height: 46px; align-self: end; }
.v3-brand-scene-bars span:nth-child(4) { height: 72px; align-self: end; }
.v3-showcase-scene {
  background:
    radial-gradient(420px 240px at 20% 10%, rgb(244 180 0 / .12), transparent 70%),
    linear-gradient(180deg, #0f1b2c, #08111d);
}
.v3-showcase-watermark {
  inset: 18px auto auto 18px;
  opacity: .12;
}
.v3-showcase-tower {
  left: 16%;
  width: 24%;
  height: 72%;
}
.v3-showcase-tower-b {
  left: auto;
  right: 14%;
  width: 28%;
  height: 58%;
}
.v3-showcase-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.v3-showcase-board span:nth-child(1) { height: 56px; }
.v3-showcase-board span:nth-child(2) { height: 84px; }
.v3-showcase-board span:nth-child(3) { height: 40px; }
.v3-hero-backdrop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(.96);
  transform: scale(1.04);
}
.v3-hero-backdrop-content {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .9rem;
  padding: 1.5rem;
  color: white;
}
.v3-hero-floating {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 196px;
  padding: .78rem .9rem;
  border-radius: 18px;
  background: rgb(255 255 255 / .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgb(255 255 255 / .18);
  box-shadow: 0 18px 36px rgb(2 6 23 / .18);
  color: white;
}
.v3-hero-floating i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(244 180 0 / .16);
  color: var(--v3-accent);
  flex: 0 0 auto;
}
.v3-hero-floating strong,
.v3-hero-backdrop-metrics strong {
  display: block;
  font-weight: 900;
  letter-spacing: -.02em;
}
.v3-hero-floating span,
.v3-hero-backdrop-metrics span {
  display: block;
  margin-top: .16rem;
  color: rgb(255 255 255 / .72);
  font-size: 12px;
  font-weight: 700;
}
.v3-hero-floating-top { top: 18px; left: 18px; }
.v3-hero-floating-bottom { right: 18px; bottom: 148px; }
.v3-hero-backdrop-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .76);
}
.v3-hero-backdrop-title {
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 900;
}
.v3-hero-backdrop-list {
  display: grid;
  gap: .42rem;
  font-size: 13px;
  font-weight: 700;
  color: rgb(255 255 255 / .86);
}
.v3-hero-backdrop-list span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.v3-hero-backdrop-list i {
  color: var(--v3-accent);
}
.v3-hero-backdrop-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: .35rem;
  padding-top: .95rem;
  border-top: 1px solid rgb(255 255 255 / .14);
}
.v3-hero-backdrop-metrics strong {
  font-size: 1.1rem;
  color: white;
}
.v3-hero-building,
.v3-dark-showcase-building {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--v3-shadow-2);
  border: 1px solid rgb(226 232 240 / .9);
  background: #0b1220;
  min-height: 560px;
  transform: translateZ(0);
}
.v3-hero-building img,
.v3-dark-showcase-building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(calc(var(--par, 0px) * -1));
  transition: transform 120ms linear;
}
.v3-hero-building::before,
.v3-dark-showcase-building::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 30% 0%, rgb(255 255 255 / .10), transparent 55%),
    linear-gradient(90deg, rgb(255 255 255 / .76) 0%, rgb(255 255 255 / .30) 28%, rgb(255 255 255 / 0) 58%),
    linear-gradient(180deg, rgb(2 6 23 / .1), rgb(2 6 23 / .42));
  pointer-events: none;
}
.v3-hero-building-glow {
  position: absolute;
  inset: -40px -40px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgb(244 180 0 / .25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.v3-kpi-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  border-radius: 18px;
  background: rgb(255 255 255 / .88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgb(226 232 240 / .9);
  box-shadow: 0 18px 44px rgb(2 6 23 / .12);
  overflow: hidden;
}
.v3-kpi-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--v3-accent), #22c55e, #2b6dff);
}
.v3-kpi-head { display: flex; align-items: center; justify-content: space-between; padding: .85rem .95rem .65rem; }
.v3-kpi-title { font-weight: 900; color: #0b1220; }
.v3-kpi-range { font-size: 12px; color: #64748b; font-weight: 700; }
.v3-kpi-items { padding: .25rem .95rem .95rem; display: grid; gap: .7rem; }
.v3-kpi-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.v3-kpi-label { font-size: 12px; color: #64748b; font-weight: 700; }
.v3-kpi-value { font-weight: 900; color: #0b1220; margin-top: .08rem; }
.v3-kpi-badge {
  width: 34px; height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 14px 26px rgb(2 6 23 / .10);
}
.v3-kpi-badge-blue { background: #2B6DFF; }
.v3-kpi-badge-green { background: #22C55E; }
.v3-kpi-badge-indigo { background: #6366F1; }
.v3-kpi-badge-orange { background: #F59E0B; }

.v3-demo-card {
  position: relative;
  width: 100%;
  border-radius: 18px;
  background: rgb(255 255 255 / .96);
  border: 1px solid rgb(226 232 240 / .95);
  box-shadow: 0 20px 60px rgb(2 6 23 / .12);
  overflow: hidden;
  padding: 1rem 1rem .95rem;
}

@media (prefers-reduced-motion: no-preference) {
  .v3-hero-backdrop-media img { animation: v3-zoom-slow 16s ease-in-out infinite alternate; }
  .v3-demo-card { animation: v3-float-a 6.5s ease-in-out infinite; }
  .v3-kpi-card { animation: v3-float-b 7.25s ease-in-out infinite; }
  .v3-hero-floating-top { animation: v3-float-c 7s ease-in-out infinite; }
  .v3-hero-floating-bottom { animation: v3-float-d 8s ease-in-out infinite; }
  .v3-dark-showcase-building { animation: v3-showcase-glow 8.5s ease-in-out infinite; }
  @keyframes v3-float-a {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-8px) translateZ(0); }
  }
  @keyframes v3-float-b {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(7px) translateZ(0); }
  }
  @keyframes v3-float-c {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  @keyframes v3-float-d {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
  @keyframes v3-zoom-slow {
    0% { transform: scale(1.04) translate3d(0, 0, 0); }
    100% { transform: scale(1.1) translate3d(-10px, -4px, 0); }
  }
  @keyframes v3-showcase-glow {
    0%, 100% { box-shadow: var(--v3-shadow-2); }
    50% { box-shadow: 0 30px 80px rgb(2 6 23 / .20); }
  }
}
.v3-demo-title { font-weight: 950; color: #0b1220; font-size: 14px; }
.v3-demo-title span { color: var(--v3-accent); }
.v3-demo-sub { color: #64748b; font-weight: 600; font-size: 12px; margin-top: .25rem; }
.v3-alert { margin-top: .75rem; padding: .6rem .7rem; border-radius: 12px; font-weight: 800; font-size: 12px; }
.v3-alert-success { background: #dcfce7; color: #166534; border: 1px solid rgb(22 101 52 / .14); }
.v3-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid rgb(153 27 27 / .14); }
.v3-demo-form { margin-top: .8rem; }
.v3-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.v3-form-span { grid-column: 1 / -1; }
.v3-demo-form .form-label { font-size: 12px; font-weight: 800; color: #334155; margin-bottom: .35rem; }
.v3-demo-form .form-control {
  border-radius: 12px;
  border-color: rgb(226 232 240 / .95);
  background: #ffffff;
  padding: .7rem .75rem;
  font-size: 13px;
}
.v3-demo-form .form-control:focus {
  border-color: rgb(244 180 0 / .75);
  box-shadow: 0 0 0 3px rgb(244 180 0 / .18);
}
.v3-demo-perks { margin-top: .65rem; display: grid; gap: .35rem; color: #64748b; font-size: 11px; font-weight: 700; }
.v3-demo-perks i { color: var(--v3-accent); margin-right: .35rem; }
.v3-demo-submit {
  margin-top: .85rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: .82rem .9rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  cursor: pointer;
  box-shadow: 0 18px 44px rgb(244 180 0 / .20);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), opacity var(--duration-fast);
}
.v3-demo-submit:hover { transform: translateY(-1px); box-shadow: 0 26px 70px rgb(244 180 0 / .26); }
.v3-demo-foot { margin-top: .55rem; color: #94a3b8; font-size: 11px; font-weight: 700; }

@media (max-width: 980px) {
  .v3-hero-stage { grid-template-columns: 1fr; gap: 14px; }
  .v3-hero-backdrop-card { min-height: 360px; }
  .v3-hero-backdrop-content { min-height: 360px; }
  .v3-hero-floating-bottom { bottom: 132px; }
  .v3-hero-backdrop-metrics { grid-template-columns: 1fr; }
  .v3-hero-building,
  .v3-dark-showcase-building { min-height: 420px; }
  .v3-kpi-card { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .v3-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .v3-hero-floating {
    min-width: 0;
    max-width: calc(100% - 28px);
  }
  .v3-hero-floating-top {
    left: 14px;
    right: 14px;
    top: 14px;
  }
  .v3-hero-floating-bottom {
    left: 14px;
    right: 14px;
    bottom: 138px;
  }
}

.v3-section { padding: clamp(2.5rem, 4vw, 4rem) 0; }
.v3-section-head { text-align: center; margin-bottom: 1.6rem; }
.v3-section-kicker { font-size: 11px; letter-spacing: .18em; font-weight: 950; color: #64748b; }
.v3-section-title {
  margin-top: .35rem;
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -.03em;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  color: #0b1220;
}
.v3-section-title span { color: var(--v3-accent); }
.v3-section-desc { color: #64748b; font-weight: 600; max-width: 70ch; margin: .5rem auto 0; }
.v3-section#soluciones {
  position: relative;
}
.v3-section#soluciones::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 220px at 50% 0%, rgb(43 109 255 / .06), transparent 62%),
    linear-gradient(180deg, transparent, rgb(248 250 252 / .8) 65%, transparent);
  pointer-events: none;
}

.v3-solutions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1200px) { .v3-solutions { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .v3-solutions { grid-template-columns: 1fr; } }
.v3-sol-card {
  background: var(--v3-card);
  border: 1px solid rgb(226 232 240 / .95);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgb(2 6 23 / .06);
  overflow: hidden;
  display: grid;
  position: relative;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.v3-sol-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--c), white 12%), color-mix(in oklab, var(--c), #081226 20%));
}
.v3-sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgb(2 6 23 / .12);
  border-color: color-mix(in oklab, var(--c), white 65%);
}
.v3-sol-top { padding: 1rem 1rem .85rem; }
.v3-sol-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--c), white 88%);
  border: 1px solid color-mix(in oklab, var(--c), transparent 78%);
  color: var(--c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.v3-sol-name { margin-top: .75rem; font-weight: 950; letter-spacing: -.02em; color: #0b1220; }
.v3-sol-desc { margin-top: .35rem; font-size: 12px; color: #64748b; font-weight: 600; line-height: 1.55; min-height: 48px; }
.v3-sol-photo { position: relative; height: 150px; overflow: hidden; background: #0f172a; }
/* Real photo in solution card */
.v3-sol-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.v3-sol-card:hover .v3-sol-real-img { transform: scale(1.07); }
.v3-sol-photo-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgb(0 0 0 / .55) 100%),
    linear-gradient(135deg, color-mix(in oklab, var(--c), transparent 55%) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.v3-sol-go { z-index: 2; }
.v3-sol-photo-ui {
  position: absolute;
  inset: 0;
  padding: .8rem;
  display: grid;
  gap: .55rem;
}
.v3-sol-photo-brand {
  opacity: .14;
}
.v3-sol-photo-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  align-items: end;
  flex: 1;
}
.v3-sol-photo-bars span,
.v3-sol-photo-cards span {
  display: block;
  border-radius: 10px;
  background: rgb(255 255 255 / .18);
  border: 1px solid rgb(255 255 255 / .1);
}
.v3-sol-photo-bars span:nth-child(1) { height: 24px; }
.v3-sol-photo-bars span:nth-child(2) { height: 40px; }
.v3-sol-photo-bars span:nth-child(3) { height: 30px; }
.v3-sol-photo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}
.v3-sol-photo-cards span { height: 14px; }
.v3-sol-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgb(2 6 23 / .18));
  pointer-events: none;
}
.v3-sol-card[data-module="edificios"] .v3-sol-photo-ui {
  background: radial-gradient(120px 70px at 85% 12%, rgb(255 255 255 / .14), transparent 70%);
}
.v3-sol-card[data-module="hoteles"] .v3-sol-photo-ui {
  background: linear-gradient(135deg, rgb(124 58 237 / .14), transparent 55%);
}
.v3-sol-card[data-module="airbnb"] .v3-sol-photo-ui {
  background: radial-gradient(160px 90px at 25% 20%, rgb(34 197 94 / .16), transparent 72%);
}
.v3-sol-card[data-module="parqueaderos"] .v3-sol-photo-ui {
  background: linear-gradient(135deg, rgb(245 158 11 / .14), transparent 58%);
}
.v3-sol-card[data-module="inmobiliaria"] .v3-sol-photo-ui {
  background: radial-gradient(140px 76px at 80% 20%, rgb(236 72 153 / .16), transparent 72%);
}
.v3-sol-card[data-module="superadmin"] .v3-sol-photo-ui {
  background: linear-gradient(135deg, rgb(6 182 212 / .16), transparent 62%);
}
.v3-sol-go {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgb(226 232 240 / .95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0b1220;
  box-shadow: 0 14px 30px rgb(2 6 23 / .16);
}

.v3-dark {
  padding: clamp(2.8rem, 4.6vw, 4.5rem) 0;
  background:
    radial-gradient(900px 500px at 20% 0%, rgb(244 180 0 / .10), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgb(43 109 255 / .12), transparent 60%),
    linear-gradient(135deg, var(--v3-navy), var(--v3-navy-2));
  color: white;
  position: relative;
  overflow: hidden;
}
.v3-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgb(255 255 255 / .06), transparent 60%);
  pointer-events: none;
}
.v3-dark::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgb(255 255 255 / .06);
  border-radius: 30px;
  pointer-events: none;
}
.v3-dark-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: start;
}
@media (max-width: 980px) { .v3-dark-grid { grid-template-columns: 1fr; } }
.v3-dark-kicker { font-size: 11px; letter-spacing: .18em; font-weight: 950; color: rgb(255 255 255 / .78); }
.v3-dark-title {
  margin-top: .55rem;
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -.03em;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1.1;
}
.v3-dark-title span { color: var(--v3-accent); }
.v3-dark-desc { margin-top: .9rem; color: rgb(255 255 255 / .78); font-weight: 600; line-height: 1.7; max-width: 62ch; }
.v3-dark-showcase {
  margin-top: 1.45rem;
  max-width: 100%;
}
.v3-dark-showcase-building {
  min-height: 330px;
  background: #09172d;
  isolation: isolate;
}
.v3-dark-showcase-building::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(15 23 42 / .04), rgb(15 23 42 / .24));
  pointer-events: none;
}
.v3-dark-showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: rgb(7 17 32 / .56);
  border: 1px solid rgb(255 255 255 / .14);
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.v3-dark-showcase .v3-kpi-card {
  right: 14px;
  bottom: 14px;
  width: min(320px, calc(100% - 28px));
  background: rgb(255 255 255 / .9);
}

.v3-dark-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
@media (max-width: 540px) { .v3-dark-features { grid-template-columns: 1fr; } }
.v3-f-card {
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .12);
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out), background 260ms var(--ease-out);
}
.v3-f-card:hover {
  transform: translateY(-4px);
  border-color: rgb(255 255 255 / .2);
  background: rgb(255 255 255 / .09);
}
.v3-f-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--c), transparent 70%);
  border: 1px solid color-mix(in oklab, var(--c), transparent 55%);
  color: color-mix(in oklab, var(--c), white 14%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.v3-f-title { margin-top: .8rem; font-weight: 950; letter-spacing: -.02em; }
.v3-f-desc { margin-top: .35rem; color: rgb(255 255 255 / .75); font-size: 12px; font-weight: 600; line-height: 1.6; }

.v3-stats {
  padding: 1.6rem 0;
  background:
    radial-gradient(800px 180px at 50% 0%, rgb(43 109 255 / .06), transparent 70%),
    #ffffff;
  border-top: 1px solid rgb(226 232 240 / .85);
  border-bottom: 1px solid rgb(226 232 240 / .85);
}
.v3-stats-kicker {
  text-align: center;
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 950;
  color: #64748b;
  margin-bottom: .95rem;
}
.v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}
@media (max-width: 980px) { .v3-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .v3-stats-grid { grid-template-columns: 1fr; } }
.v3-stat {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: .75rem .6rem;
  border-radius: 14px;
  background: rgb(255 255 255 / .78);
  border: 1px solid rgb(226 232 240 / .8);
  box-shadow: 0 12px 28px rgb(2 6 23 / .04);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.v3-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgb(2 6 23 / .08);
}
.v3-stat-ico { color: #0b1220; opacity: .8; }
.v3-stat-num { margin-top: .35rem; font-weight: 950; color: #0b1220; }
.v3-stat-lbl { margin-top: .25rem; font-size: 12px; color: #64748b; font-weight: 650; }

.v3-cta {
  padding: clamp(2.6rem, 4.4vw, 4.2rem) 0;
  background:
    radial-gradient(820px 260px at 0% 20%, rgb(244 180 0 / .08), transparent 68%),
    radial-gradient(780px 280px at 100% 0%, rgb(43 109 255 / .08), transparent 64%);
}
.v3-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
}
@media (max-width: 980px) { .v3-cta-grid { grid-template-columns: 1fr; } }
.v3-cta-kicker { font-size: 11px; letter-spacing: .18em; font-weight: 950; color: #64748b; }
.v3-cta-title { margin-top: .55rem; font-family: var(--font-display); font-weight: 950; letter-spacing: -.03em; font-size: clamp(1.7rem, 2.6vw, 2.35rem); line-height: 1.12; color: #0b1220; }
.v3-cta-title span { color: var(--v3-accent); }
.v3-cta-desc { margin-top: .85rem; color: #64748b; font-weight: 600; line-height: 1.7; max-width: 62ch; }
.v3-cta-actions { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.v3-device {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgb(226 232 240 / .95);
  box-shadow: var(--v3-shadow);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.v3-device-ui {
  height: 320px;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(420px 200px at 100% 0%, rgb(43 109 255 / .12), transparent 60%),
    linear-gradient(180deg, #ffffff, #f5f9ff);
}
.v3-device-topbar {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgb(226 232 240 / .9);
  font-weight: 800;
  color: #0f172a;
}
.v3-device-topbar img { width: 34px; height: 34px; }
.v3-device-layout {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: .8rem;
  padding: .95rem;
}
.v3-device-side,
.v3-device-cards {
  display: grid;
  gap: .55rem;
}
.v3-device-side span,
.v3-device-cards span {
  display: block;
  border-radius: 12px;
  background: #e2e8f0;
}
.v3-device-side span:nth-child(1) { height: 48px; background: #dbeafe; }
.v3-device-side span:nth-child(2),
.v3-device-side span:nth-child(3),
.v3-device-side span:nth-child(4) { height: 28px; }
.v3-device-main {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: .8rem;
}
.v3-device-chart {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .8), rgb(255 255 255 / .95)),
    linear-gradient(180deg, #eff6ff, #ffffff);
  border: 1px solid rgb(226 232 240 / .9);
  position: relative;
  overflow: hidden;
}
.v3-device-chart::before {
  content: '';
  position: absolute;
  inset: auto 14px 18px 14px;
  height: 78px;
  background:
    linear-gradient(180deg, transparent 0 72%, rgb(226 232 240 / .8) 72% 74%, transparent 74%),
    linear-gradient(90deg, transparent 0 10%, rgb(226 232 240 / .8) 10% 12%, transparent 12% 22%, rgb(226 232 240 / .8) 22% 24%, transparent 24% 34%, rgb(226 232 240 / .8) 34% 36%, transparent 36%);
}
.v3-device-chart::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 38px;
  height: 2px;
  background: linear-gradient(90deg, #2b6dff, #22c55e, #f4b400);
  transform: skewY(-12deg);
  box-shadow: 0 0 0 10px rgb(43 109 255 / .08);
}
.v3-device-cards {
  grid-template-columns: repeat(3, 1fr);
}
.v3-device-cards span { height: 58px; }
.v3-cta-list { margin-top: 1rem; display: grid; gap: .55rem; }
.v3-cta-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: white;
  border: 1px solid rgb(226 232 240 / .95);
  border-radius: 14px;
  padding: .7rem .8rem;
  box-shadow: 0 10px 28px rgb(2 6 23 / .04);
  font-weight: 800;
  color: #0b1220;
}
.v3-cta-item i { color: var(--v3-accent); }

.v3-pricing { padding: clamp(2.6rem, 4.4vw, 4.2rem) 0; }
.v3-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
@media (max-width: 980px) { .v3-pricing-row { grid-template-columns: 1fr; } }
.v3-price-card {
  position: relative;
  background: white;
  border: 1px solid rgb(226 232 240 / .95);
  border-radius: 20px;
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: 0 14px 50px rgb(2 6 23 / .06);
  overflow: hidden;
}
.v3-price-card-main {
  border-color: rgb(244 180 0 / .55);
  box-shadow: 0 28px 90px rgb(244 180 0 / .18);
}
.v3-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgb(244 180 0 / .16);
  color: #0b1220;
  border: 1px solid rgb(244 180 0 / .25);
  padding: .35rem .6rem;
  border-radius: 999px;
}
.v3-price-name { font-weight: 950; letter-spacing: -.02em; font-size: 1.1rem; color: #0b1220; }
.v3-price-sub { margin-top: .25rem; color: #64748b; font-weight: 650; font-size: 12px; }
.v3-price-bullets { margin-top: .95rem; display: grid; gap: .5rem; color: #0b1220; font-weight: 750; font-size: 13px; }
.v3-price-bullets i { color: var(--v3-accent); margin-right: .4rem; }
.v3-price-btn { margin-top: 1rem; width: 100%; justify-content: center; }

.v3-login-modal {
  width: min(1180px, calc(100vw - 2.5rem));
  max-height: min(94dvh, 820px);
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
}
.v3-login {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  min-height: min(94dvh, 820px);
  max-height: min(94dvh, 820px);
  overflow: hidden;
  background: #ffffff;
}
/* ============================================================
   LOGIN LEFT PANEL — redesigned with real photo
   ============================================================ */
.v3-login-left {
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 0;
}

/* Background image */
.v3-ll-bg {
  position: absolute;
  inset: 0;
}
.v3-ll-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.v3-ll-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 20% 0%, rgb(244 180 0 / .22), transparent 55%),
    radial-gradient(ellipse 70% 70% at 80% 100%, rgb(43 109 255 / .28), transparent 55%),
    linear-gradient(180deg,
      rgb(7 17 32 / .45) 0%,
      rgb(7 17 32 / .65) 40%,
      rgb(7 17 32 / .92) 100%
    );
}

/* Layered content */
.v3-ll-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.4rem 1.3rem;
  gap: 1rem;
  overflow-y: auto;
}

/* Brand */
.v3-ll-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.v3-ll-brand-logo {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgb(255 255 255 / .12);
  border: 1px solid rgb(255 255 255 / .18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.v3-ll-brand-logo img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgb(0 0 0 / .3));
}
.v3-ll-brand-name {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: .14em;
  font-size: 1.1rem;
  line-height: 1.1;
}
.v3-ll-brand-tag {
  color: rgb(255 255 255 / .7);
  font-size: 11px;
  font-weight: 600;
  margin-top: .12rem;
}

/* Headline */
.v3-ll-copy { flex: 1; }
.v3-ll-h2 {
  font-family: var(--font-display);
  font-weight: 950;
  font-size: clamp(1.65rem, 1.85vw, 2.15rem);
  letter-spacing: -.03em;
  line-height: 1.06;
  color: white;
  margin: 0 0 .65rem;
}
.v3-ll-h2 span { color: var(--v3-accent); }
.v3-ll-sub {
  color: rgb(255 255 255 / .76);
  font-weight: 600;
  font-size: .85rem;
  line-height: 1.65;
  margin: 0;
}

/* Stats row */
.v3-ll-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: 16px;
  background: rgb(255 255 255 / .09);
  border: 1px solid rgb(255 255 255 / .14);
  backdrop-filter: blur(10px);
}
.v3-ll-stat { text-align: center; flex: 1; }
.v3-ll-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: -.02em;
  color: white;
  line-height: 1.1;
}
.v3-ll-stat span {
  display: block;
  font-size: 10px;
  color: rgb(255 255 255 / .62);
  font-weight: 700;
  margin-top: .18rem;
}
.v3-ll-stat-sep {
  width: 1px;
  height: 32px;
  background: rgb(255 255 255 / .18);
  flex-shrink: 0;
}

/* Perks */
.v3-ll-perks { display: grid; gap: .45rem; }
.v3-ll-perk {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem .85rem;
  border-radius: 12px;
  background: rgb(255 255 255 / .07);
  border: 1px solid rgb(255 255 255 / .1);
  font-size: 12px;
  font-weight: 700;
  color: rgb(255 255 255 / .9);
  backdrop-filter: blur(6px);
}
.v3-ll-perk-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgb(244 180 0 / .15);
  border: 1px solid rgb(244 180 0 / .22);
  display: flex; align-items: center; justify-content: center;
  color: var(--v3-accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* Bottom badge */
.v3-ll-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgb(34 197 94 / .14);
  border: 1px solid rgb(34 197 94 / .22);
  color: #22C55E;
  font-size: 11px;
  font-weight: 800;
  align-self: flex-start;
  margin-top: auto;
}
.v3-ll-badge i { font-size: 12px; }

/* Legacy selectors (kept for login page standalone) */
.v3-login-h1 { margin-top: .55rem; font-weight: 950; font-size: clamp(1.8rem, 2vw, 2.4rem); letter-spacing: -.03em; line-height: 1.04; }
.v3-login-h1 span { color: var(--v3-accent); }

.v3-login-right {
  background: white;
  padding: 1.15rem 1.15rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.v3-login-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 4;
  padding-bottom: .55rem;
  background: linear-gradient(180deg, #ffffff 78%, rgb(255 255 255 / .88) 100%);
  backdrop-filter: blur(10px);
}
.v3-login-head .modal-close {
  position: static;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}
.v3-login-page .modal-close {
  position: static;
  inset: auto;
  border: 1px solid rgb(226 232 240 / .92);
  background: rgb(248 250 252 / .96);
  color: #334155;
  box-shadow: none;
  transform: none;
}
.v3-login-page .modal-close:hover {
  background: #fff;
  color: #0f172a;
  transform: none;
}
.v3-login-welcome { font-size: 1.55rem; font-weight: 950; letter-spacing: -.02em; color: #0b1220; }
.v3-login-welcome span { color: #2B6DFF; }
.v3-login-inst { margin-top: .25rem; color: #64748b; font-weight: 650; font-size: 13px; }

.v3-login-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
@media (max-width: 720px) { .v3-login-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .v3-login-grid { grid-template-columns: 1fr; } }
.v3-login-card {
  border: 1px solid rgb(226 232 240 / .95);
  background: white;
  border-radius: 16px;
  padding: .9rem .8rem;
  text-align: center;
  cursor: pointer;
  display: grid;
  gap: .3rem;
  align-content: start;
  min-height: 126px;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-fast);
}
.v3-login-card:hover { transform: translateY(-2px); box-shadow: 0 18px 55px rgb(2 6 23 / .10); }
.v3-login-card.is-selected {
  border-color: color-mix(in oklab, var(--c), transparent 45%);
  box-shadow: 0 18px 60px color-mix(in oklab, var(--c), transparent 78%);
}
.v3-login-card-ico {
  width: 46px; height: 46px;
  border-radius: 16px;
  margin: 0 auto .1rem;
  background: color-mix(in oklab, var(--c), white 90%);
  border: 1px solid color-mix(in oklab, var(--c), transparent 78%);
  color: var(--c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.v3-login-card-name { font-weight: 950; color: #0b1220; font-size: 1rem; }
.v3-login-card-desc { color: #64748b; font-weight: 650; font-size: 11.5px; line-height: 1.35; }

.v3-login-divider { display: flex; align-items: center; gap: .75rem; color: #94a3b8; font-weight: 950; font-size: 12px; }
.v3-login-divider::before, .v3-login-divider::after { content: ''; height: 1px; background: rgb(226 232 240 / .95); flex: 1; }
.v3-login-divider span { padding: 0 .25rem; }

.v3-input {
  display: flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgb(226 232 240 / .95);
  border-radius: 14px;
  padding: .55rem .75rem;
  background: white;
}
.v3-input i { color: #94a3b8; }
.v3-input .form-control {
  border: none;
  padding: .35rem 0;
  outline: none;
  box-shadow: none;
}
.v3-input:focus-within { border-color: rgb(43 109 255 / .55); box-shadow: 0 0 0 3px rgb(43 109 255 / .12); }
.v3-pass-toggle {
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: .25rem .35rem;
  border-radius: 10px;
}
.v3-pass-toggle:hover { background: rgb(148 163 184 / .16); color: #64748b; }

.v3-login-form { display: grid; gap: .8rem; padding-bottom: .25rem; }
.v3-login-form .form-group { margin-bottom: 0; }
.v3-login-page .form-label {
  display: block;
  margin-bottom: .45rem;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #334155;
}
.v3-login-page .alert {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgb(248 113 113 / .28);
  background: rgb(254 242 242 / .96);
  color: #991b1b;
  box-shadow: none;
}
.v3-login-page .alert i {
  margin-top: .1rem;
}
.v3-login-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.v3-check { display: inline-flex; align-items: center; gap: .55rem; font-weight: 650; color: #64748b; font-size: 13px; }
.v3-check input { width: 16px; height: 16px; }
.v3-forgot { color: #2B6DFF; font-weight: 750; text-decoration: none; font-size: 13px; }
.v3-forgot:hover { text-decoration: underline; }
.v3-login-submit {
  margin-top: .1rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: .95rem 1rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  cursor: pointer;
  box-shadow: 0 18px 46px rgb(244 180 0 / .22);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), opacity var(--duration-fast);
}
.v3-login-submit:hover { transform: translateY(-1px); box-shadow: 0 28px 70px rgb(244 180 0 / .28); }
.v3-login-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.v3-login-foot { color: #94a3b8; font-weight: 700; font-size: 12px; text-align: center; margin-top: .25rem; }

.v3-recovery-modal {
  width: min(520px, calc(100vw - 2rem));
  max-height: min(88dvh, 680px);
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}
.v3-recovery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.1rem .8rem;
  border-bottom: 1px solid rgb(226 232 240 / .9);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.v3-recovery-head .modal-close {
  position: static;
  flex: 0 0 auto;
}
.v3-recovery-title {
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: -.02em;
  color: #0b1220;
}
.v3-recovery-sub {
  margin-top: .2rem;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}
.v3-recovery-body {
  padding: 1rem 1.1rem 1.1rem;
  display: grid;
  gap: .85rem;
}
.v3-recovery-form {
  display: grid;
  gap: .85rem;
}
.v3-recovery-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgb(43 109 255 / .08);
  color: #2b6dff;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgb(43 109 255 / .14);
}
.v3-recovery-note {
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}
.v3-auth-standalone {
  min-height: 100dvh;
  padding: 24px;
  background:
    radial-gradient(900px 420px at 0% 0%, rgb(244 180 0 / .09), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgb(43 109 255 / .08), transparent 55%),
    #f6f8fc;
}
.v3-recovery-page-card {
  box-shadow: 0 28px 90px rgb(2 6 23 / .14);
}
.v3-auth-devlink {
  padding: .7rem .8rem;
  border-radius: 14px;
  background: rgb(43 109 255 / .06);
  border: 1px solid rgb(43 109 255 / .12);
  display: grid;
  gap: .35rem;
}
.v3-auth-devlabel {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2b6dff;
}
.v3-auth-devlink a {
  color: #0b1220;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  word-break: break-all;
}
.v3-auth-devlink a:hover {
  text-decoration: underline;
}
.v3-recovery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  align-items: center;
}
.v3-login-submit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (min-width: 981px) {
  .v3-login-modal {
    box-shadow: 0 38px 90px rgb(2 6 23 / .18);
  }
  .v3-login-head {
    padding-top: .15rem;
  }
  .v3-login-grid {
    gap: .7rem;
  }
  .v3-login-card {
    min-height: 118px;
    padding: .82rem .72rem;
  }
  .v3-login-form {
    gap: .75rem;
  }
}

@media (min-width: 981px) and (max-height: 920px) {
  .v3-login-modal {
    width: min(1160px, calc(100vw - 2rem));
    max-height: min(90dvh, 760px);
  }
  .v3-login {
    min-height: min(90dvh, 760px);
    max-height: min(90dvh, 760px);
    grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  }
  .v3-login-left {
    padding: .9rem .9rem .82rem;
    gap: .7rem;
  }
  .v3-login-h1 {
    font-size: clamp(1.45rem, 1.55vw, 2rem);
    margin-top: .3rem;
  }
  .v3-login-p {
    margin-top: .3rem;
    font-size: 14px;
    line-height: 1.45;
  }
  .v3-login-left-photo > img {
    height: 132px;
  }
  .v3-login-left-perks {
    grid-template-columns: 1fr;
    gap: .38rem;
  }
  .v3-login-perk {
    padding: .5rem .6rem;
    font-size: 11px;
  }
  .v3-login-right {
    padding: .9rem .95rem .82rem;
    gap: .7rem;
  }
  .v3-login-head {
    padding-bottom: .35rem;
  }
  .v3-login-welcome {
    font-size: 1.35rem;
  }
  .v3-login-inst {
    margin-top: .12rem;
    font-size: 12px;
  }
  .v3-login-grid {
    gap: .52rem;
  }
  .v3-login-card {
    min-height: 88px;
    padding: .62rem .55rem;
    border-radius: 14px;
    gap: .18rem;
  }
  .v3-login-card-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 16px;
  }
  .v3-login-card-name {
    font-size: .94rem;
    line-height: 1.08;
  }
  .v3-login-card-desc {
    font-size: 10.5px;
    line-height: 1.18;
  }
  .v3-login-divider {
    gap: .55rem;
    font-size: 11px;
  }
  .v3-login-form {
    gap: .6rem;
  }
  .v3-login-form .form-label {
    margin-bottom: .3rem;
    font-size: 13px;
  }
  .v3-input {
    padding: .42rem .62rem;
    border-radius: 12px;
  }
  .v3-input .form-control {
    min-height: 28px;
    font-size: 14px;
  }
  .v3-login-row {
    gap: .5rem;
  }
  .v3-check,
  .v3-forgot {
    font-size: 12px;
  }
  .v3-login-submit {
    padding: .78rem .9rem;
    border-radius: 11px;
  }
  .v3-login-foot {
    font-size: 11px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .v3-login-left-photo,
  .v3-login-left-perks {
    display: none;
  }
  .v3-login {
    min-height: min(88dvh, 700px);
    max-height: min(88dvh, 700px);
  }
}

@media (max-width: 980px) {
  .modal-overlay#accessModal {
    align-items: flex-end;
    padding: 0;
  }
  .v3-login-modal {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 26px 26px 0 0;
  }
  .v3-login-modal .v3-login,
  .v3-login-page .v3-login {
    grid-template-columns: 1fr;
    min-height: 100%;
    max-height: none;
    height: 100%;
  }
  .v3-login-modal .v3-login-left,
  .v3-login-page .v3-login-left {
    display: none;
  }
  .v3-login-modal .v3-login-right,
  .v3-login-page .v3-login-right {
    padding: 1rem 1rem calc(1.05rem + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .v3-login-modal .v3-login-head,
  .v3-login-page .v3-login-head {
    margin: -1rem -1rem 0;
    padding: 1rem 1rem .85rem;
    border-bottom: 1px solid rgb(226 232 240 / .9);
  }
  .v3-login-modal .v3-login-grid,
  .v3-login-page .v3-login-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .v3-login-modal .v3-login-card,
  .v3-login-page .v3-login-card {
    min-height: 98px;
    padding: .78rem .68rem;
  }
  .v3-recovery-modal {
    width: min(520px, calc(100vw - 1.5rem));
  }
  .v3-login-modal .v3-login-row,
  .v3-login-page .v3-login-row {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
  }
}

@media (max-width: 520px) {
  .v3-login-modal { border-radius: 22px 22px 0 0; }
  .v3-recovery-modal {
    width: 100%;
    max-width: none;
    min-height: auto;
    max-height: 100dvh;
    border-radius: 22px 22px 0 0;
  }
  .v3-recovery-head {
    padding: .95rem .85rem .75rem;
  }
  .v3-recovery-body {
    padding: .85rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  .v3-auth-standalone {
    padding: 0;
  }
  .v3-recovery-actions {
    grid-template-columns: 1fr;
  }
  .v3-login-modal .v3-login-grid,
  .v3-login-page .v3-login-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }
  .v3-login-right,
  .v3-login-page .v3-login-right { padding: .85rem .85rem calc(1rem + env(safe-area-inset-bottom)); }
  .v3-login-modal .v3-login-head,
  .v3-login-page .v3-login-head { margin: -.85rem -.85rem 0; padding: .9rem .85rem .75rem; }
  .v3-login-welcome { font-size: 1.2rem; }
  .v3-login-inst { margin-top: .15rem; font-size: 12px; }
  .v3-login-grid { margin-top: .1rem; }
  .v3-login-card {
    min-height: 88px;
    padding: .68rem .55rem;
    border-radius: 14px;
    gap: .18rem;
  }
  .v3-login-card-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 16px;
  }
  .v3-login-card-name {
    font-size: .92rem;
    line-height: 1.1;
  }
  .v3-login-card-desc {
    font-size: 10.5px;
    line-height: 1.22;
  }
  .v3-login-divider {
    gap: .5rem;
    font-size: 11px;
    margin-top: .1rem;
  }
  .v3-login-form {
    gap: .7rem;
  }
  .v3-login-form .form-label {
    margin-bottom: .35rem;
    font-size: 13px;
  }
  .v3-input {
    border-radius: 12px;
    padding: .45rem .65rem;
  }
  .v3-input .form-control {
    font-size: 14px;
    min-height: 30px;
  }
  .v3-login-submit {
    padding: .85rem .95rem;
    border-radius: 11px;
  }
  .v3-login-foot {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .v3-login-right,
  .v3-login-page .v3-login-right {
    padding: .75rem .75rem calc(.95rem + env(safe-area-inset-bottom));
  }
  .v3-login-modal .v3-login-head,
  .v3-login-page .v3-login-head {
    margin: -.75rem -.75rem 0;
    padding: .8rem .75rem .68rem;
  }
  .v3-login-grid,
  .v3-login-modal .v3-login-grid,
  .v3-login-page .v3-login-grid {
    grid-template-columns: 1fr;
  }
  .v3-login-card {
    min-height: 82px;
  }
}

.v3-video-modal { max-width: 980px; }
.v3-video-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1rem .75rem; border-bottom: 1px solid rgb(226 232 240 / .95); }
.v3-video-title { font-weight: 950; color: #0b1220; }
.v3-video-wrap { padding: 0; }
.v3-video-iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }

.v3-footer {
  position: relative;
  background:
    radial-gradient(760px 260px at 0% 0%, rgb(244 180 0 / .10), transparent 64%),
    radial-gradient(820px 280px at 100% 0%, rgb(43 109 255 / .12), transparent 62%),
    #0b1220;
  color: rgb(255 255 255 / .72);
  padding: 3rem 0 1.25rem;
  margin-top: 1.25rem;
  overflow: hidden;
}
.v3-footer::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / .06);
  border-radius: 28px;
  pointer-events: none;
}
.v3-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(255 255 255 / .10);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .v3-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .v3-footer-grid { grid-template-columns: 1fr; } }
.v3-footer-logo { display: flex; align-items: center; gap: .75rem; }
.v3-footer-logo img { border-radius: 10px; background: white; padding: 4px; }
.v3-footer-name { color: white; font-weight: 950; letter-spacing: .14em; }
.v3-footer-tag { font-size: 12px; color: rgb(255 255 255 / .62); font-weight: 650; margin-top: .1rem; }
.v3-footer-desc { margin-top: .9rem; color: rgb(255 255 255 / .72); font-weight: 600; line-height: 1.7; }
.v3-footer-pills {
  margin-top: .95rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.v3-footer-pills span {
  padding: .42rem .72rem;
  border-radius: 999px;
  background: rgb(255 255 255 / .08);
  border: 1px solid rgb(255 255 255 / .1);
  color: rgb(255 255 255 / .84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}
.v3-footer-social { margin-top: .9rem; display: flex; gap: .55rem; }
.v3-footer-social a {
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / .82);
  text-decoration: none;
}
.v3-footer-social a:hover { background: rgb(255 255 255 / .08); }
.v3-footer-cta {
  margin-top: .95rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.v3-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .7rem .95rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  cursor: pointer;
}
.v3-footer-btn-outline {
  background: transparent;
  border-color: rgb(255 255 255 / .18);
  color: rgb(255 255 255 / .88);
}
.v3-footer-btn-outline:hover { background: rgb(255 255 255 / .08); }
.v3-footer-contact { margin-top: .9rem; display: grid; gap: .5rem; }
.v3-footer-contact-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgb(255 255 255 / .72);
  font-weight: 650;
  font-size: 13px;
}
.v3-footer-contact-item i { color: var(--v3-accent); }
.v3-footer-col { display: grid; gap: .55rem; }
.v3-footer-h { color: white; font-weight: 950; margin-bottom: .2rem; }
.v3-footer-col a { color: rgb(255 255 255 / .70); text-decoration: none; font-weight: 650; font-size: 13px; }
.v3-footer-col a:hover { color: white; }
.v3-footer-note { color: rgb(255 255 255 / .62); font-weight: 600; font-size: 13px; line-height: 1.6; }
.v3-news { margin-top: .75rem; display: flex; gap: .5rem; }
.v3-news input {
  flex: 1;
  border-radius: 14px;
  border: 1px solid rgb(255 255 255 / .14);
  background: rgb(255 255 255 / .06);
  padding: .75rem .85rem;
  color: white;
}
.v3-news input::placeholder { color: rgb(255 255 255 / .45); }
.v3-news button {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  cursor: pointer;
}
.v3-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  font-size: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.v3-powered { color: rgb(255 255 255 / .55); font-weight: 650; margin-left: .45rem; }
.v3-powered a { color: rgb(255 255 255 / .75); text-decoration: none; font-weight: 800; }
.v3-powered a:hover { color: white; }
.v3-footer-links { display: flex; gap: .85rem; flex-wrap: wrap; }
.v3-footer-links a { color: rgb(255 255 255 / .62); text-decoration: none; font-weight: 650; }
.v3-footer-links a:hover { color: white; }

/* ============================================================
   WHATSAPP FAB BUBBLE
   ============================================================ */
.v3-wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow:
    0 8px 32px rgb(37 211 102 / .45),
    0 2px 8px rgb(0 0 0 / .18);
  z-index: var(--z-toast);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
  isolation: isolate;
}
.v3-wa-fab:hover {
  transform: scale(1.10) translateY(-3px);
  box-shadow:
    0 16px 52px rgb(37 211 102 / .55),
    0 4px 12px rgb(0 0 0 / .18);
  color: #ffffff;
}
.v3-wa-fab:active {
  transform: scale(.97);
}

/* Ping pulse ring */
.v3-wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgb(37 211 102 / .28);
  animation: v3-wa-ping 2.2s cubic-bezier(0, 0, .2, 1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes v3-wa-ping {
  0%   { transform: scale(.88); opacity: .9; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* Tooltip */
.v3-wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: #0b1220;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: .45rem .75rem;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.v3-wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #0b1220;
}
.v3-wa-tooltip.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .v3-wa-pulse { animation: none; }
}

.v3-login-page {
  min-height: 100dvh;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 0% 0%, color-mix(in oklab, var(--brand, #2B6DFF), white 86%), transparent 62%),
    radial-gradient(760px 360px at 100% 0%, color-mix(in oklab, var(--brand, #2B6DFF), white 92%), transparent 58%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  color-scheme: light;
}
.v3-login-page::before,
.v3-login-page::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}
.v3-login-page::before {
  width: 420px;
  height: 420px;
  left: -140px;
  bottom: -180px;
  background: color-mix(in oklab, var(--brand, #2B6DFF), white 84%);
  opacity: .55;
}
.v3-login-page::after {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: rgb(255 255 255 / .78);
}
.v3-login-page .v3-login {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  border-radius: 28px !important;
  border: 1px solid rgb(255 255 255 / .72) !important;
  box-shadow:
    0 34px 100px rgb(15 23 42 / .14),
    0 14px 32px color-mix(in oklab, var(--brand, #2B6DFF), transparent 92%) !important;
  background:
    linear-gradient(180deg, rgb(255 255 255 / .98), rgb(255 255 255 / .94));
}
.v3-login-page .v3-login-left {
  position: relative;
  background:
    radial-gradient(720px 460px at 0% 0%, color-mix(in oklab, var(--brand, #2B6DFF), white 68%) 0%, transparent 56%),
    radial-gradient(620px 280px at 100% 100%, rgb(244 180 0 / .20), transparent 58%),
    linear-gradient(145deg, color-mix(in oklab, var(--brand-dark, #0f172a), black 18%), #081120 58%, #07111d 100%);
}
.v3-login-page .v3-login-left::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgb(255 255 255 / .08);
  pointer-events: none;
}
.v3-login-page .v3-login-right {
  background:
    linear-gradient(180deg, rgb(255 255 255 / .98), rgb(248 250 252 / .96));
}
.v3-login-page .v3-login-head {
  background:
    linear-gradient(180deg, rgb(255 255 255 / .98) 72%, rgb(255 255 255 / .82) 100%);
}
.v3-login-page .v3-login-welcome span,
.v3-login-page .v3-forgot {
  color: var(--brand, #2B6DFF);
}
.v3-login-page .v3-input:focus-within {
  border-color: color-mix(in oklab, var(--brand, #2B6DFF), white 18%);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand, #2B6DFF), transparent 88%);
}
.v3-login-page .v3-login-submit {
  background: var(--brand-gradient, linear-gradient(135deg, var(--brand, #2B6DFF), var(--brand-dark, #0f172a)));
  color: white;
  box-shadow: 0 22px 50px color-mix(in oklab, var(--brand, #2B6DFF), transparent 76%);
}
.v3-login-page .v3-login-submit:hover {
  box-shadow: 0 28px 64px color-mix(in oklab, var(--brand, #2B6DFF), transparent 72%);
}
.v3-login-page .v3-login-left-top,
.v3-login-page .v3-login-left-copy {
  position: relative;
  z-index: 1;
}
.v3-login-page .v3-login-left-photo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(280px 160px at 100% 0%, color-mix(in oklab, var(--brand, #2B6DFF), white 60%), transparent 68%),
    linear-gradient(180deg, rgb(255 255 255 / .14), rgb(255 255 255 / .05));
  border: 1px solid rgb(255 255 255 / .12);
}
.v3-login-page .v3-login-left-photo::after {
  content: '';
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--brand, #2B6DFF), transparent 70%);
  opacity: .55;
}
.v3-login-page .v3-login-photo-ui {
  min-height: 210px;
  position: relative;
  z-index: 1;
}
.v3-login-page .v3-login-photo-top span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgb(255 255 255 / .09);
  border: 1px solid rgb(255 255 255 / .12);
}
.v3-login-page .v3-login-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.v3-login-page .v3-login-photo-grid span:nth-child(1),
.v3-login-page .v3-login-photo-grid span:nth-child(4),
.v3-login-page .v3-login-photo-grid span:nth-child(6) {
  background: color-mix(in oklab, var(--brand, #2B6DFF), transparent 76%);
}
.v3-login-page .v3-login-card {
  text-decoration: none !important;
}
.v3-login-page .v3-login-card.is-selected {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--c), white 95%), white);
}
@media (max-width: 980px) {
  .v3-login-page {
    padding: 0;
    background:
      radial-gradient(520px 240px at 50% 0%, color-mix(in oklab, var(--brand, #2B6DFF), white 88%), transparent 68%),
      #f6f8fc;
  }
  .v3-login-page::before,
  .v3-login-page::after {
    display: none;
  }
  .v3-login-page .v3-login {
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* ============================================================
   HERO SLIDER — Dashboard Mockup (v3-hero-slider)
   ============================================================ */
.v3-hero-slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0b1628;
  border: 1px solid rgb(255 255 255 / .08);
  box-shadow:
    0 32px 72px rgb(2 6 23 / .24),
    0 0 0 1px rgb(255 255 255 / .04) inset;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

/* --- Chrome bar --- */
.v3-hs-chrome {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .72rem 1rem;
  background: rgb(255 255 255 / .055);
  border-bottom: 1px solid rgb(255 255 255 / .08);
  flex-shrink: 0;
}
.v3-hs-chrome-left {
  display: flex;
  align-items: center;
  gap: .38rem;
  flex-shrink: 0;
}
.v3-hs-chrome-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #FF5F57;
}
.v3-hs-chrome-dot.v3-hs-dot-y { background: #FFBC2E; }
.v3-hs-chrome-dot.v3-hs-dot-g { background: #28C840; }
.v3-hs-chrome-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgb(255 255 255 / .07);
  border: 1px solid rgb(255 255 255 / .1);
  border-radius: 8px;
  padding: .38rem .75rem;
  color: rgb(255 255 255 / .68);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-hs-chrome-bar i { color: #28C840; font-size: 9px; flex-shrink: 0; }
.v3-hs-live-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .3rem .62rem;
  border-radius: 7px;
  background: rgb(34 197 94 / .14);
  border: 1px solid rgb(34 197 94 / .22);
  color: #22C55E;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.v3-hs-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: v3-hs-blink 1.4s ease-in-out infinite;
}
@keyframes v3-hs-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .28; }
}

/* --- Slides viewport --- */
.v3-hs-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.v3-hs-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transform: translateX(22px) scale(.985);
  transition:
    opacity 600ms cubic-bezier(.22, 1, .36, 1),
    transform 700ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.v3-hs-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* --- Sidebar --- */
.v3-hs-sidebar {
  --sb: #2B6DFF;
  width: 50px;
  flex-shrink: 0;
  background: rgb(255 255 255 / .04);
  border-right: 1px solid rgb(255 255 255 / .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .85rem 0;
}
.v3-hs-sb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgb(255 255 255 / .09);
  margin-bottom: .55rem;
}
.v3-hs-sb-logo img {
  width: 22px; height: 22px;
  object-fit: contain;
  display: block;
}
.v3-hs-sb-nav {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  width: 100%;
  padding: 0 7px;
}
.v3-hs-sb-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / .35);
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.v3-hs-sb-ico.active,
.v3-hs-sb-ico:hover {
  background: color-mix(in oklab, var(--sb), transparent 72%);
  color: color-mix(in oklab, var(--sb), white 20%);
}

/* --- Main panel --- */
.v3-hs-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: .85rem .9rem .9rem;
  gap: .62rem;
  overflow: hidden;
  min-width: 0;
}
.v3-hs-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-shrink: 0;
}
.v3-hs-panel-title {
  font-size: 12px;
  font-weight: 900;
  color: white;
  letter-spacing: -.01em;
}
.v3-hs-panel-title em {
  font-style: normal;
  color: rgb(255 255 255 / .48);
  font-weight: 600;
}
.v3-hs-panel-chip {
  font-size: 10px;
  font-weight: 800;
  padding: .28rem .58rem;
  border-radius: 6px;
  background: rgb(244 180 0 / .13);
  color: #F4B400;
  border: 1px solid rgb(244 180 0 / .2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- KPI row (slide 1) --- */
.v3-hs-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .48rem;
  flex-shrink: 0;
}
.v3-hs-kpi {
  padding: .58rem .52rem .52rem;
  border-radius: 10px;
  background: color-mix(in oklab, var(--kc), transparent 86%);
  border: 1px solid color-mix(in oklab, var(--kc), transparent 70%);
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.v3-hs-kpi-v {
  font-size: .82rem;
  font-weight: 950;
  color: white;
  line-height: 1;
  letter-spacing: -.02em;
}
.v3-hs-kpi-l {
  font-size: 9px;
  color: rgb(255 255 255 / .55);
  font-weight: 650;
  margin-top: .14rem;
}
.v3-hs-kpi-g {
  font-size: 9px;
  font-weight: 800;
  color: #22C55E;
  margin-top: .08rem;
}

/* --- Bottom row: chart + activity feed --- */
.v3-hs-bottom-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: .5rem;
  flex: 1;
  min-height: 0;
}
.v3-hs-chart,
.v3-hs-feed {
  background: rgb(255 255 255 / .05);
  border: 1px solid rgb(255 255 255 / .08);
  border-radius: 10px;
  padding: .62rem .65rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v3-hs-chart-label,
.v3-hs-feed-hd {
  font-size: 9.5px;
  font-weight: 800;
  color: rgb(255 255 255 / .55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  flex-shrink: 0;
}
.v3-hs-bars {
  display: flex;
  align-items: flex-end;
  gap: .28rem;
  flex: 1;
  min-height: 0;
}
.v3-hs-bar-w {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: .22rem;
  height: 100%;
}
.v3-hs-bar-f {
  width: 100%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgb(43 109 255 / .75), rgb(43 109 255 / .38));
  transition: height .9s cubic-bezier(.22,1,.36,1);
}
.v3-hs-bar-w.v3-hs-bar-peak .v3-hs-bar-f {
  background: linear-gradient(180deg, #F4B400, rgb(244 180 0 / .55));
  box-shadow: 0 0 12px rgb(244 180 0 / .28);
}
.v3-hs-bar-w span {
  font-size: 8px;
  color: rgb(255 255 255 / .38);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.v3-hs-feed-r {
  display: flex;
  align-items: center;
  gap: .44rem;
  padding: .34rem 0;
  border-bottom: 1px solid rgb(255 255 255 / .06);
  font-size: 10px;
  flex-shrink: 0;
}
.v3-hs-feed-r:last-child { border-bottom: none; }
.v3-hs-feed-r i { color: var(--fc); font-size: 10px; flex-shrink: 0; }
.v3-hs-feed-r span {
  flex: 1;
  color: rgb(255 255 255 / .76);
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-hs-feed-r em {
  color: rgb(255 255 255 / .36);
  font-style: normal;
  font-size: 9px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Rooms grid (slide 2) --- */
.v3-hs-rooms-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .44rem;
  flex: 1;
  align-content: start;
}
.v3-hs-room {
  border-radius: 9px;
  padding: .5rem .3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .28rem;
  border: 1px solid transparent;
}
.v3-hs-room span {
  font-size: 10px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.v3-hs-room i { font-size: 11px; }
.v3-hs-room.r-occ   { background: rgb(239 68 68 / .12); border-color: rgb(239 68 68 / .2); }
.v3-hs-room.r-occ i { color: #EF4444; }
.v3-hs-room.r-free   { background: rgb(34 197 94 / .10); border-color: rgb(34 197 94 / .18); }
.v3-hs-room.r-free i { color: #22C55E; }
.v3-hs-room.r-clean   { background: rgb(245 158 11 / .10); border-color: rgb(245 158 11 / .18); }
.v3-hs-room.r-clean i { color: #F59E0B; }
.v3-hs-room.r-res   { background: rgb(124 58 237 / .10); border-color: rgb(124 58 237 / .18); }
.v3-hs-room.r-res i { color: #7C3AED; }

.v3-hs-legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  flex-shrink: 0;
  margin-top: auto;
}
.v3-hs-leg {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: 10px;
  font-weight: 700;
  color: rgb(255 255 255 / .72);
}
.v3-hs-leg i {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.v3-hs-leg.r-occ i   { background: #EF4444; }
.v3-hs-leg.r-free i  { background: #22C55E; }
.v3-hs-leg.r-clean i { background: #F59E0B; }
.v3-hs-leg.r-res i   { background: #7C3AED; }

/* --- Access log (slide 3) --- */
.v3-hs-access-log {
  display: flex;
  flex-direction: column;
  gap: .44rem;
  flex: 1;
}
.v3-hs-acc-row {
  display: flex;
  align-items: center;
  gap: .58rem;
  padding: .58rem .65rem;
  border-radius: 10px;
  border: 1px solid transparent;
}
.v3-hs-acc-row.v3-acc-ok    { background: rgb(34 197 94 / .09);  border-color: rgb(34 197 94 / .16); }
.v3-hs-acc-row.v3-acc-visit { background: rgb(43 109 255 / .09); border-color: rgb(43 109 255 / .16); }
.v3-hs-acc-row.v3-acc-deny  { background: rgb(239 68 68 / .09);  border-color: rgb(239 68 68 / .16); }
.v3-hs-acc-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.v3-acc-ok .v3-hs-acc-ico    { background: rgb(34 197 94 / .18); color: #22C55E; }
.v3-acc-visit .v3-hs-acc-ico { background: rgb(43 109 255 / .18); color: #2B6DFF; }
.v3-acc-deny .v3-hs-acc-ico  { background: rgb(239 68 68 / .18); color: #EF4444; }
.v3-hs-acc-data { flex: 1; min-width: 0; }
.v3-hs-acc-data strong {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-hs-acc-data span {
  display: block;
  font-size: 9.5px;
  color: rgb(255 255 255 / .52);
  font-weight: 650;
  margin-top: .08rem;
}
.v3-hs-acc-time {
  font-size: 10px;
  font-weight: 800;
  color: rgb(255 255 255 / .4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Navigation dots --- */
.v3-hs-dots {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .42rem;
  z-index: 5;
}
.v3-hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgb(255 255 255 / .26);
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .28s cubic-bezier(.22,1,.36,1), border-radius .28s;
}
.v3-hs-dot.is-active {
  background: white;
  width: 22px;
  border-radius: 4px;
}
.v3-hs-dot:hover:not(.is-active) { background: rgb(255 255 255 / .5); }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .v3-hs-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .v3-hero-slider { min-height: 380px; }
  .v3-hs-rooms-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .v3-hs-bottom-row { grid-template-columns: 1fr; }
  .v3-hs-feed { display: none; }
}
@media (max-width: 720px) {
  .v3-hero-slider { min-height: 340px; }
  .v3-hs-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Slide-in animation on load --- */
@media (prefers-reduced-motion: no-preference) {
  .v3-hero-slider {
    animation: v3-hs-fadein 900ms cubic-bezier(.22, 1, .36, 1) both;
  }
  @keyframes v3-hs-fadein {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* ============================================================
   HERO BACKGROUND SLIDER  (v3-hbg)
   ============================================================ */
.v3-hbg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.v3-hbg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4, 0, .2, 1);
}
.v3-hbg-slide.is-active { opacity: 1; }

/* --- Slide scenes --- */
.v3-hbg-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* --- Real photo in each slide --- */
.v3-hbg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-in-out;
}
.v3-hbg-slide.is-active .v3-hbg-photo {
  transform: scale(1.0);
}

/* Dark overlay + colour tint per slide */
.v3-hbg-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgb(0 0 0 / .06) 0%,
      rgb(0 0 0 / .35) 50%,
      rgb(0 0 0 / .58) 100%
    ),
    radial-gradient(ellipse 70% 65% at 75% 25%, var(--tint, rgb(43 109 255 / .2)), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgb(0 0 0 / .55) 100%);
  pointer-events: none;
}

/* Slide label — bottom right of hero */
.v3-hbg-label {
  position: absolute;
  bottom: 46px;
  right: clamp(1.5rem, 3vw, 3.5rem);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: rgb(0 0 0 / .45);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgb(255 255 255 / .18);
  color: white;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s .3s, transform .5s .3s;
  pointer-events: none;
}
.v3-hbg-label i { color: var(--v3-accent); }
.v3-hbg-slide.is-active .v3-hbg-label {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .v3-hbg-label { display: none; }
}

/* --- Left-side white vignette for text readability over real photos --- */
.v3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      95deg,
      rgb(255 255 255 / 1)   0%,
      rgb(255 255 255 / .99) 20%,
      rgb(255 255 255 / .97) 32%,
      rgb(255 255 255 / .86) 44%,
      rgb(255 255 255 / .42) 56%,
      rgb(255 255 255 / .08) 70%,
      transparent            84%
    );
}
/* Remove old v3-hero::after overlay (was set in original CSS) */
.v3-hero::after { display: none; }

/* --- Navigation dots --- */
.v3-hbg-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.v3-hbg-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgb(255 255 255 / .35);
  cursor: pointer;
  transition: background .28s, width .32s cubic-bezier(.22,1,.36,1), border-radius .32s;
  box-shadow: 0 2px 8px rgb(0 0 0 / .22);
}
.v3-hbg-dot.is-active {
  background: white;
  width: 26px;
  border-radius: 5px;
}
.v3-hbg-dot:hover:not(.is-active) { background: rgb(255 255 255 / .62); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .v3-hbg-orb { animation: none; }
  .v3-hbg-slide { transition: none; }
}

/* ============================================================
   FOOTER REDISEÑADO — v3-ft
   ============================================================ */

/* CTA Band */
.v3-ft-cta-band {
  background: linear-gradient(135deg, var(--v3-navy) 0%, var(--v3-navy-2) 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.v3-ft-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 260px at 0% 50%, rgb(244 180 0 / .14), transparent 60%),
    radial-gradient(600px 260px at 100% 50%, rgb(43 109 255 / .18), transparent 60%);
  pointer-events: none;
}
.v3-ft-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.v3-ft-cta-title {
  font-family: var(--font-display);
  font-weight: 950;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: white;
  letter-spacing: -.02em;
}
.v3-ft-cta-sub {
  margin-top: .35rem;
  color: rgb(255 255 255 / .72);
  font-weight: 600;
  font-size: .9rem;
}
.v3-ft-cta-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.v3-ft-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .82rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v3-accent), var(--v3-accent-2));
  color: #0b1220;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgb(244 180 0 / .22);
  transition: transform .2s, box-shadow .2s;
}
.v3-ft-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgb(244 180 0 / .3); }
.v3-ft-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: .82rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / .22);
  background: transparent;
  color: white;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.v3-ft-cta-btn-ghost:hover { background: rgb(255 255 255 / .08); border-color: rgb(255 255 255 / .4); }

/* Main footer body */
.v3-ft-main {
  background: #071120;
  padding: 3rem 0 2.5rem;
}
.v3-ft-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .v3-ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .v3-ft-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Brand column */
.v3-ft-logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.v3-ft-logo img { border-radius: 12px; filter: drop-shadow(0 8px 16px rgb(244 180 0 / .2)); }
.v3-ft-logo-name {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: .12em;
  font-size: 1rem;
  color: white;
}
.v3-ft-logo-tag { font-size: 11px; color: rgb(148 163 184 / .85); font-weight: 600; margin-top: .1rem; }
.v3-ft-about {
  color: rgb(148 163 184 / .82);
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 34ch;
}

/* Social icons */
.v3-ft-social {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.v3-ft-soc-ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.v3-ft-soc-ico:hover { transform: translateY(-3px); }
.v3-ft-soc-ig { background: linear-gradient(135deg, #E1306C, #833AB4, #F77737); color: white; box-shadow: 0 8px 20px rgb(225 48 108 / .3); }
.v3-ft-soc-fb { background: #1877F2; color: white; box-shadow: 0 8px 20px rgb(24 119 242 / .3); }
.v3-ft-soc-wa { background: #25D366; color: white; box-shadow: 0 8px 20px rgb(37 211 102 / .3); }
.v3-ft-soc-li { background: #0A66C2; color: white; box-shadow: 0 8px 20px rgb(10 102 194 / .3); }

/* Contact items */
.v3-ft-contact { display: grid; gap: .55rem; }
.v3-ft-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgb(148 163 184 / .82);
  font-size: .8rem;
  font-weight: 600;
}
.v3-ft-contact-item i { color: var(--v3-accent); width: 14px; text-align: center; flex-shrink: 0; }
.v3-ft-contact-item a { color: inherit; text-decoration: none; transition: color .2s; }
.v3-ft-contact-item a:hover { color: white; }

/* Nav columns */
.v3-ft-nav { display: grid; gap: .45rem; }
.v3-ft-nav-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(255 255 255 / .55);
  margin-bottom: .55rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgb(255 255 255 / .07);
}
.v3-ft-nav a, .v3-ft-nav-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgb(148 163 184 / .82);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 650;
  transition: color .2s, transform .2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.v3-ft-nav a:hover, .v3-ft-nav-btn:hover { color: white; transform: translateX(3px); }
.v3-ft-nav a i { width: 14px; text-align: center; flex-shrink: 0; opacity: .6; font-size: 11px; }

/* Bottom bar */
.v3-ft-bottom {
  background: #040c18;
  border-top: 1px solid rgb(255 255 255 / .06);
  padding: 1rem 0;
}
.v3-ft-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgb(148 163 184 / .6);
  font-weight: 650;
}
.v3-ft-powered a { color: var(--v3-accent); text-decoration: none; font-weight: 800; }
.v3-ft-powered a:hover { text-decoration: underline; }
.v3-ft-badges {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.v3-ft-badges span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.v3-ft-badges i { color: #22C55E; }
@media (max-width: 640px) {
  .v3-ft-cta-inner { flex-direction: column; align-items: flex-start; }
  .v3-ft-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
  .v3-ft-badges { display: none; }
}

/* ============================================================
   LOGIN MODAL — overrides para diseño mejorado
   ============================================================ */

/* Modal más grande y balanceado */
.v3-login-modal {
  width: min(1100px, calc(100vw - 2rem));
  max-height: min(92dvh, 800px);
}
.v3-login {
  min-height: min(92dvh, 800px);
  max-height: min(92dvh, 800px);
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
}

/* Right panel mejorado */
.v3-login-right {
  background: #fafbfe;
  padding: 1.5rem 1.6rem 1.2rem;
  gap: 1rem;
}

/* Welcome heading más grande */
.v3-login-welcome {
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: -.025em;
  color: #0b1220;
}
.v3-login-welcome span { color: #2B6DFF; }
.v3-login-inst {
  margin-top: .3rem;
  color: #64748b;
  font-weight: 650;
  font-size: 13px;
}

/* Cards de módulos mejoradas */
.v3-login-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .7rem;
}
.v3-login-card {
  border: 1.5px solid rgb(226 232 240 / .9);
  background: white;
  border-radius: 16px;
  padding: 1rem .85rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .32rem;
  min-height: 108px;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    border-color 160ms;
  position: relative;
  overflow: hidden;
}
.v3-login-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c), color-mix(in oklab, var(--c), white 30%));
  opacity: 0;
  transition: opacity .2s;
}
.v3-login-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px color-mix(in oklab, var(--c), transparent 80%);
  border-color: color-mix(in oklab, var(--c), transparent 55%);
}
.v3-login-card:hover::before { opacity: 1; }
.v3-login-card.is-selected {
  border-color: color-mix(in oklab, var(--c), transparent 42%);
  background: color-mix(in oklab, var(--c), white 95%);
  box-shadow: 0 18px 50px color-mix(in oklab, var(--c), transparent 78%);
}
.v3-login-card.is-selected::before { opacity: 1; }
.v3-login-card-ico {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--c), white 88%);
  border: 1.5px solid color-mix(in oklab, var(--c), transparent 72%);
  color: var(--c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: .1rem;
}
.v3-login-card-name {
  font-weight: 950;
  color: #0b1220;
  font-size: 1rem;
  letter-spacing: -.01em;
}
.v3-login-card-desc {
  color: #64748b;
  font-weight: 650;
  font-size: 11px;
  line-height: 1.35;
}

/* Divider */
.v3-login-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #94a3b8;
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: .1rem 0;
}
.v3-login-divider::before,
.v3-login-divider::after {
  content: '';
  height: 1px;
  background: rgb(226 232 240 / .9);
  flex: 1;
}

/* Form inputs */
.v3-login-form { display: grid; gap: .8rem; }
.v3-login-form .form-group { margin: 0; }
.v3-login-page .form-label,
.v3-login-form .form-label {
  display: block;
  margin-bottom: .4rem;
  font-size: 12.5px;
  font-weight: 800;
  color: #334155;
}
.v3-login-form .v3-input {
  border-radius: 14px;
  border: 1.5px solid rgb(226 232 240 / .9);
  background: white;
  padding: .62rem .8rem;
  transition: border-color .2s, box-shadow .2s;
}
.v3-login-form .v3-input:focus-within {
  border-color: rgb(43 109 255 / .5);
  box-shadow: 0 0 0 4px rgb(43 109 255 / .1);
}
.v3-login-form .v3-input .form-control {
  font-size: 14px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: .3rem 0;
  background: transparent;
}

/* Submit button grande y llamativo */
.v3-login-submit {
  margin-top: .2rem;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 1rem 1rem;
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--v3-accent) 0%, var(--v3-accent-2) 100%);
  color: #0b1220;
  cursor: pointer;
  box-shadow: 0 20px 50px rgb(244 180 0 / .28);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.v3-login-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgb(244 180 0 / .36);
}
.v3-login-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
}
.v3-login-foot {
  text-align: center;
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 700;
  margin-top: .2rem;
}

/* Mobile: hide left on small */
@media (max-width: 980px) {
  .v3-login-modal {
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    border-radius: 26px 26px 0 0;
  }
  .v3-login {
    grid-template-columns: 1fr;
    min-height: 100%;
    max-height: none;
    height: 100%;
  }
  .v3-login-modal .v3-login-left { display: none; }
  .v3-login-modal .v3-login-right { background: white; }
  .v3-login-right { padding: 1.2rem 1.2rem calc(1.2rem + env(safe-area-inset-bottom)); }
}
