/* ═══════════════════════════════════════════════════════════
   EMPYRIA — DESIGN SYSTEM v3  ·  Enterprise Premium
   LMS B2B · Trust & Authority  ·  LATAM + España
   Fonts: Bricolage Grotesque (Display) · Plus Jakarta Sans (Body)
═══════════════════════════════════════════════════════════ */

/* Google Fonts loaded via <link> in header.php — @import removed (eliminates extra render-blocking round-trip) */

/* ─── TOKENS · LIGHT ──────────────────────── */
:root {
  /* === PRIMARY (--cp) === */
  --cp:        #0099CC;
  --cp-dark:   #007AAA;
  --cp-light:  #38BDF8;
  --cp-bg:     #F0F9FF;
  --cp-bdr:    #BAE6FD;

  /* === HEADING HIGHLIGHT (--ch) === */
  --ch:        #0099CC;

  /* === BACKWARD COMPAT === */
  --cyan:      var(--cp);
  --cyan-dark: var(--cp-dark);
  --cyan-bg:   var(--cp-bg);
  --cyan-bdr:  var(--cp-bdr);

  /* === SURFACES === */
  --bg:        #FFFFFF;
  --bg2:       #F8FAFC;
  --bg3:       #F1F5F9;
  --surface:   #FFFFFF;

  /* === TEXT === */
  --text:      #0F172A;
  --text2:     #1E293B;
  --muted:     #475569;
  --muted2:    #94A3B8;

  /* === BORDERS === */
  --border:    #E2E8F0;
  --border2:   #CBD5E1;

  /* === SEMANTIC === */
  --green:     #059669;
  --green-bg:  #ECFDF5;
  --green-bdr: #A7F3D0;
  --red:       #DC2626;

  /* === ELEVATION === */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 12px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-md: 0 8px 28px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.05);
  --shadow-lg: 0 20px 64px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.06);
  --shadow-cp: 0 8px 28px rgba(0,153,204,0.28);

  /* === FONTS === */
  --font-d: 'Bricolage Grotesque', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;

  /* === EASING === */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === RADIUS === */
  --r-sm:   6px;
  --r:      10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;
}

/* ─── TOKENS · DARK ───────────────────────── */
[data-theme="dark"] {
  --cp:        #38BDF8;
  --cp-dark:   #7DD3FC;
  --cp-light:  #0EA5E9;
  --cp-bg:     rgba(56,189,248,0.08);
  --cp-bdr:    rgba(56,189,248,0.2);
  --ch:        #38BDF8;
  --cyan:      var(--cp);
  --cyan-dark: var(--cp-dark);
  --cyan-bg:   var(--cp-bg);
  --cyan-bdr:  var(--cp-bdr);

  --bg:        #080F1C;
  --bg2:       #0F172A;
  --bg3:       #1E293B;
  --surface:   #0F172A;

  --text:      #F1F5F9;
  --text2:     #E2E8F0;
  --muted:     #94A3B8;
  --muted2:    #64748B;

  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);

  --green:     #34D399;
  --green-bg:  rgba(52,211,153,0.08);
  --green-bdr: rgba(52,211,153,0.2);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow:    0 4px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 64px rgba(0,0,0,0.5);
  --shadow-cp: 0 8px 28px rgba(56,189,248,0.18);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cp:        #38BDF8;
    --cp-dark:   #7DD3FC;
    --cp-light:  #0EA5E9;
    --cp-bg:     rgba(56,189,248,0.08);
    --cp-bdr:    rgba(56,189,248,0.2);
    --ch:        #38BDF8;
    --cyan:      var(--cp);
    --cyan-dark: var(--cp-dark);
    --cyan-bg:   var(--cp-bg);
    --cyan-bdr:  var(--cp-bdr);
    --bg:        #080F1C;
    --bg2:       #0F172A;
    --bg3:       #1E293B;
    --surface:   #0F172A;
    --text:      #F1F5F9;
    --text2:     #E2E8F0;
    --muted:     #94A3B8;
    --muted2:    #64748B;
    --border:    rgba(255,255,255,0.07);
    --border2:   rgba(255,255,255,0.12);
    --green:     #34D399;
    --green-bg:  rgba(52,211,153,0.08);
    --green-bdr: rgba(52,211,153,0.2);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow:    0 4px 12px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 64px rgba(0,0,0,0.5);
    --shadow-cp: 0 8px 28px rgba(56,189,248,0.18);
  }
}

/* ─── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── TYPOGRAPHY ──────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--cp);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 18px; height: 2px;
  background: var(--cp); border-radius: 2px; flex-shrink: 0;
}
.section-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em; line-height: 1.08;
  color: var(--text); margin-bottom: 1.1rem;
}
.section-title span { color: var(--ch); }
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 560px;
}
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.8rem; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease);
  white-space: nowrap; line-height: 1.3;
}
.btn-primary {
  background: var(--cp); color: #fff;
}
.btn-primary:hover {
  background: var(--cp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cp);
}
.btn-secondary {
  background: var(--bg3); color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  background: var(--border); transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--cp);
  border: 1.5px solid var(--cp-bdr);
}
.btn-outline:hover {
  background: var(--cp-bg); border-color: var(--cp);
}
.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; }
.btn-sm { font-size: 0.82rem; padding: 0.6rem 1.2rem; }
.btn-wa {
  background: #25D366; color: #fff;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.32);
}
.btn svg { flex-shrink: 0; }

/* ─── BADGE ───────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-b); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.11em;
  padding: 0.38rem 0.9rem; border-radius: var(--r-full);
}
.badge-cyan {
  background: var(--cp-bg); color: var(--cp);
  border: 1px solid var(--cp-bdr);
}
.badge-green {
  background: var(--green-bg); color: var(--green);
  border: 1px solid var(--green-bdr);
}
.badge-orange {
  background: #FFF7ED; color: #EA580C;
  border: 1px solid #FED7AA;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ─── CARDS ───────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-spring);
}
.card:hover {
  border-color: var(--cp-bdr);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--cp-bg); border: 1px solid var(--cp-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--cp); margin-bottom: 1.25rem; flex-shrink: 0;
}
.card-icon svg {
  width: 22px; height: 22px; stroke: currentColor;
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.card h3 {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.05rem; color: var(--text);
  margin-bottom: 0.6rem; letter-spacing: -0.015em;
  line-height: 1.3;
}
.card p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}

/* ─── TAGS ────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
.tag {
  font-family: var(--font-b); font-size: 0.71rem; font-weight: 600;
  background: var(--bg3); color: var(--muted);
  border: 1px solid var(--border2);
  padding: 0.22rem 0.65rem; border-radius: var(--r-full);
}
.tag-cyan {
  background: var(--cp-bg); color: var(--cp);
  border-color: var(--cp-bdr);
}

/* ─── CHECKLIST ───────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.92rem; color: var(--muted);
}
.check-list li::before {
  content: '';
  width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: cover;
}
.check-list.on-dark li { color: rgba(255,255,255,0.72); }
.check-list.on-dark li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334D399' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ─── ANNOUNCE BAR ────────────────────────── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--cp); color: #fff;
  text-align: center; padding: 0.52rem 1rem;
  font-family: var(--font-b); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announce-bar svg {
  width: 14px; height: 14px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2.25;
  stroke-linecap: round; stroke-linejoin: round;
}
.announce-bar span { opacity: 0.72; font-weight: 400; margin-left: 0.4rem; }

/* ─── NAV ─────────────────────────────────── */
header {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  height: 120px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
[data-theme="dark"] header {
  background: rgba(8,15,28,0.95);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) header {
    background: rgba(8,15,28,0.95);
  }
}
header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo {
  height: 90px; width: auto; object-fit: contain;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
/* In light mode, keep logo as-is (mix-blend-mode handles dark logos) */
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  font-size: 0.87rem; font-weight: 500; color: var(--muted);
  transition: color 0.18s; white-space: nowrap;
  padding: 0.4rem 0.65rem; border-radius: var(--r-sm);
}
.nav-links a:not(.btn):hover { color: var(--text); background: var(--bg2); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
/* Selector de idioma — En / Es / Br */
.lang-switch {
  display: flex; align-items: center; gap: 0.2rem;
  margin: 0 0.35rem; padding: 0.2rem;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 999px;
}
.lang-flag {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.95rem; line-height: 1; opacity: 0.5;
  transition: opacity 0.18s, background 0.18s, transform 0.15s;
  padding: 0 !important;
}
.lang-flag:hover { opacity: 0.85; background: var(--bg); transform: scale(1.08); }
.lang-flag.active { opacity: 1; background: var(--bg); box-shadow: 0 0 0 1.5px var(--cyan); }
@media (max-width: 900px) {
  .lang-switch { margin: 0.5rem 0; align-self: center; }
}
/* Dark mode toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--r);
  border: 1px solid var(--border2); background: var(--bg3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--cp-bdr); color: var(--cp); background: var(--cp-bg); }
.theme-toggle svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
  html:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
/* Mobile nav */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-desktop-cta { display: none !important; }
  .nav-toggle { display: flex; }
  header.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: calc(34px + 68px); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem; gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  header.nav-open .nav-links a { padding: 0.75rem; }
  header.nav-open .nav-links .btn { margin-top: 0.5rem; justify-content: center; }
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: #040B17;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img {
  height: 44px; width: auto;
  filter: brightness(10) opacity(0.9);
  margin-bottom: 1.25rem; display: block;
}
.footer-brand p {
  font-size: 0.87rem; color: rgba(255,255,255,0.38);
  line-height: 1.8; max-width: 260px; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.footer-social a:hover { background: var(--cp); border-color: var(--cp); color: #fff; }
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h5 {
  font-family: var(--font-b); font-size: 0.69rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-made { font-size: 0.8rem; color: rgba(255,255,255,0.18); }
.footer-made span { color: #e05252; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  animation: waFloat 3.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ─── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── HERO ────────────────────────────────── */
.hero {
  padding: 14rem 0 5.5rem;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--border2) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  opacity: 0.45;
}
/* Ambient glow */
.hero::after {
  content: ''; position: absolute;
  top: -120px; right: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,153,204,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.9rem, 5vw, 4.4rem);
  letter-spacing: -0.04em; line-height: 1.04;
  color: var(--text); margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--ch); }
.hero-lead {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.78; margin-bottom: 2.25rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.25rem;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--muted2); font-weight: 500;
}
.hero-trust-item svg {
  width: 15px; height: 15px; color: var(--green); flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
/* Hero visual */
.hero-visual { position: relative; }
.hero-visual-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.hero-visual-topbar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 1.25rem;
}
.hw-dot { width: 10px; height: 10px; border-radius: 50%; }
.hw-dot:nth-child(1) { background: #FF5F57; }
.hw-dot:nth-child(2) { background: #FEBC2E; }
.hw-dot:nth-child(3) { background: #28C840; }
.hero-visual-screen {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.hvs-header {
  background: var(--text); padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hvs-logo {
  font-family: var(--font-d); font-weight: 800; font-size: 0.9rem;
  color: #fff; letter-spacing: -0.01em;
}
.hvs-nav { display: flex; gap: 0.75rem; }
.hvs-nav span {
  font-size: 0.71rem; color: rgba(255,255,255,0.45); font-weight: 500;
}
.hvs-content { padding: 1rem; }
.hvs-greeting { font-size: 0.72rem; color: var(--muted2); margin-bottom: 0.4rem; }
.hvs-name {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 1rem;
}
.hvs-courses { display: flex; flex-direction: column; gap: 0.5rem; }
.hvs-course {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.6rem 0.75rem;
}
.hvs-course-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hvs-course-icon svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hvs-course-info { flex: 1; min-width: 0; }
.hvs-course-name { font-size: 0.71rem; font-weight: 600; color: var(--text); }
.hvs-course-prog { font-size: 0.63rem; color: var(--muted2); margin-top: 2px; }
.hvs-progress {
  height: 3px; background: var(--border); border-radius: 2px;
  margin-top: 5px; overflow: hidden;
}
.hvs-progress-bar {
  height: 100%; background: var(--cp); border-radius: 2px;
}
/* Float badges */
.hero-badge-float {
  position: absolute;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.77rem; font-weight: 600; color: var(--text);
  white-space: nowrap;
}
.hero-badge-float .hbf-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--cp-bg); display: flex; align-items: center; justify-content: center;
  color: var(--cp); flex-shrink: 0;
}
.hero-badge-float .hbf-icon svg {
  width: 15px; height: 15px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hero-badge-float .hbf-val {
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 800; color: var(--cp);
}
.hbf-top { top: -18px; right: -22px; }
.hbf-bottom { bottom: -18px; left: -22px; }

/* ─── STATS BAR ───────────────────────────── */
.stats-bar {
  background: var(--text2);
  padding: 2.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
[data-theme="dark"] .stats-bar { background: #020812; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .stats-bar { background: #020812; }
}
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  letter-spacing: -0.03em; color: #fff; line-height: 1;
}
.stat-num span { color: var(--cp-light); }
.stat-label {
  margin-top: 0.35rem; font-size: 0.8rem;
  color: rgba(255,255,255,0.42); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ─── PROBLEM / SOLUTION ──────────────────── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.problem-list { display: flex; flex-direction: column; gap: 0.875rem; }
.problem-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.25rem; border-radius: var(--r-md);
  border: 1px solid var(--border); background: var(--surface);
  transition: border-color 0.2s, transform 0.2s var(--ease-spring);
}
.problem-item:hover {
  border-color: #FCA5A5; transform: translateX(5px);
}
.problem-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: #FFF1F1; border: 1px solid #FEE2E2;
  display: flex; align-items: center; justify-content: center;
  color: #DC2626;
}
[data-theme="dark"] .problem-icon { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.2); }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .problem-icon { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.2); }
}
.problem-icon svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.problem-item h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 0.9rem;
  color: var(--text); margin-bottom: 0.2rem; line-height: 1.35;
}
.problem-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.solution-box {
  background: linear-gradient(155deg, var(--cp-bg) 0%, var(--bg) 60%);
  border: 2px solid var(--cp-bdr); border-radius: var(--r-xl);
  padding: 2.5rem; position: sticky; top: 120px;
}
.solution-box h3 {
  font-family: var(--font-d); font-weight: 800; font-size: 1.65rem;
  letter-spacing: -0.03em; line-height: 1.15;
  color: var(--text); margin-bottom: 1.5rem;
}
.solution-box h3 span { color: var(--ch); }

/* ─── BENTO GRID ──────────────────────────── */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 14px; margin-top: 3.5rem;
}
.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-spring);
}
.bento-card:hover {
  border-color: var(--cp-bdr);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.bento-card.accent {
  background: #080F1C; border-color: #0F1D2E;
}
[data-theme="dark"] .bento-card.accent {
  background: #020812; border-color: rgba(255,255,255,0.1);
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .bento-card.accent {
    background: #020812; border-color: rgba(255,255,255,0.1);
  }
}
.bento-card.accent h3 { color: #fff; }
.bento-card.accent p { color: rgba(255,255,255,0.55); }
.bento-card.accent .card-icon {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12);
  color: var(--cp-light);
}
.bento-card.accent .tag {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.15);
}
.bento-card.accent .tag-cyan {
  background: rgba(0,153,204,0.2); color: #7DD3FC;
  border-color: rgba(0,153,204,0.35);
}
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

/* ─── STEPS ───────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 23px; left: 13%; right: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cp-bdr) 20%, var(--cp-bdr) 80%, transparent);
}
.step { padding: 0 1.25rem; text-align: center; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg2); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 0.95rem;
  color: var(--cp); margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  transition: all 0.25s var(--ease-spring);
}
.step:hover .step-num {
  background: var(--cp); color: #fff;
  border-color: var(--cp);
  box-shadow: 0 0 0 7px var(--cp-bg);
}
.step h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 0.97rem;
  color: var(--text); margin-bottom: 0.55rem; line-height: 1.3;
}
.step p { font-size: 0.87rem; color: var(--muted); line-height: 1.68; }

/* ─── FOR WHO ─────────────────────────────── */
.who-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.125rem; margin-top: 3.5rem;
}
.who-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-spring);
}
.who-card:hover {
  border-color: var(--cp-bdr);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.who-icon {
  width: 52px; height: 52px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--cp-bg); border: 1px solid var(--cp-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--cp);
}
.who-icon svg {
  width: 24px; height: 24px; fill: none; stroke: currentColor;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.who-card h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 1rem;
  color: var(--text); margin-bottom: 0.35rem; line-height: 1.3;
}
.who-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.68; }

/* ─── VIDEO ───────────────────────────────── */
.video-wrap {
  max-width: 900px; margin: 3.5rem auto 0;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-lg);
}
.video-wrap video { width: 100%; display: block; }

/* ─── PRICING ─────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1000px; margin: 3.5rem auto 0;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-spring);
}
.pricing-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  background: #080F1C; border-color: #0F1D2E;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.pricing-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--cp), var(--cp-light));
  color: #fff; font-family: var(--font-b); font-size: 0.66rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em;
  padding: 0.3rem 1rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pricing-ribbon svg {
  width: 12px; height: 12px; fill: none; stroke: currentColor;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.pricing-tier {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--muted2);
  margin-bottom: 1.25rem; margin-top: 1.5rem;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.38); }
.pricing-crossed {
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  color: var(--muted2); text-decoration: line-through; margin-bottom: 0.15rem;
}
.pricing-card.featured .pricing-crossed { color: rgba(255,255,255,0.28); }
.pricing-big {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.3rem);
  letter-spacing: -0.04em; line-height: 1; color: var(--text);
  margin-bottom: 0.2rem;
}
.pricing-big sup { font-size: 1rem; color: var(--muted); vertical-align: top; margin-top: 0.7rem; }
.pricing-card.featured .pricing-big { color: #fff; }
.pricing-card.featured .pricing-big sup { color: rgba(255,255,255,0.4); }
.pricing-label { font-size: 0.8rem; color: var(--muted2); margin-bottom: 0.5rem; }
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.38); }
.pricing-recurring {
  font-family: var(--font-b); font-size: 0.88rem; font-weight: 700;
  color: var(--cp); margin-bottom: 0.35rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-recurring { color: #7DD3FC; border-bottom-color: rgba(255,255,255,0.08); }
.pricing-hosting {
  font-size: 0.73rem; color: var(--muted2);
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.pricing-card.featured .pricing-hosting { color: rgba(255,255,255,0.3); border-bottom-color: rgba(255,255,255,0.06); }
.pricing-features { flex: 1; margin-bottom: 2rem; }
.pricing-features .check-list li { font-size: 0.88rem; color: var(--muted); }
.pricing-card.featured .pricing-features .check-list li { color: rgba(255,255,255,0.7); }
.pricing-highlight-li {
  font-weight: 700; color: var(--cp) !important;
  display: flex; align-items: center; gap: 0.7rem;
}
.pricing-highlight-li svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 1px;
}

/* ─── FAQ ─────────────────────────────────── */
.faq-list {
  max-width: 820px; margin: 3.5rem auto 0;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--cp-bdr); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; color: var(--text);
  font-family: var(--font-b); font-size: 0.94rem; font-weight: 600;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg2); }
.faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border2); flex-shrink: 0; margin-left: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.faq-arrow svg {
  width: 13px; height: 13px; stroke: var(--muted2);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-arrow { background: var(--cp-bg); border-color: var(--cp-bdr); }
.faq-item.open .faq-arrow svg { stroke: var(--cp); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-a-inner {
  padding: 0 1.5rem; font-size: 0.9rem;
  color: var(--muted); line-height: 1.78;
}
.faq-item.open .faq-a { max-height: 350px; padding: 0.25rem 0 1.25rem; }

/* ─── CTA FINAL ───────────────────────────── */
.cta-final {
  background: #080F1C; padding: 7rem 0;
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-final::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,153,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  letter-spacing: -0.035em; line-height: 1.08; color: #fff;
  margin-bottom: 1.25rem; position: relative;
}
.cta-final h2 span { color: var(--cp-light); }
.cta-final p {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto 2.75rem;
  line-height: 1.78; position: relative;
}
.cta-actions {
  display: flex; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap; position: relative;
}
.cta-note {
  margin-top: 2rem; font-size: 0.78rem;
  color: rgba(255,255,255,0.27);
  text-transform: uppercase; letter-spacing: 0.11em; position: relative;
}

/* ─── CONTACT ─────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.form-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-input, .form-textarea {
  width: 100%; padding: 0.82rem 1rem;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: var(--r); color: var(--text);
  font-family: var(--font-b); font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted2); }
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cp);
  box-shadow: 0 0 0 3px var(--cp-bg);
  background: var(--bg);
}
.form-textarea { resize: vertical; min-height: 128px; }
.contact-info { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.125rem 1.375rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.2s, transform 0.2s var(--ease-spring);
}
.contact-item:hover { border-color: var(--cp-bdr); transform: translateX(3px); }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  background: var(--cp-bg); border: 1px solid var(--cp-bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--cp); flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-item h4 {
  font-family: var(--font-d); font-weight: 700; font-size: 0.88rem;
  color: var(--text); margin-bottom: 0.15rem;
}
.contact-item p, .contact-item a {
  font-size: 0.86rem; color: var(--muted);
}
.contact-item a:hover { color: var(--cp); }
/* Demo box */
.demo-box {
  background: var(--cp-bg); border: 1px solid var(--cp-bdr);
  border-radius: var(--r-lg); padding: 1.75rem; margin-top: 1.75rem;
}
.demo-box h4 {
  font-size: 1.02rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.75rem; line-height: 1.4;
}
.demo-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.72; }

/* ─── VIDEO META STATS ────────────────────── */
.video-meta {
  display: flex; justify-content: center;
  gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.video-meta-item {
  font-size: 0.81rem; color: var(--muted2);
  display: flex; align-items: center; gap: 6px;
}
.video-meta-item svg {
  width: 15px; height: 15px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── FEATURES HUB ────────────────────────── */
#features-hub { padding-top: 2.5rem; padding-bottom: 3rem; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .col-4 { grid-column: span 6; }
  .bento-card.accent.col-7,
  .bento-card.col-8 { grid-column: span 12; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  .hero { padding: 11rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0 1.25rem; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 0.75rem; }

  .stats-bar { padding: 2rem 0; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; padding: 0 1.25rem;
  }

  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .solution-box { position: static; }

  .bento { grid-template-columns: 1fr !important; gap: 12px; }
  .bento > * { grid-column: 1 / -1 !important; }

  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .step { padding: 0; }

  .who-grid { grid-template-columns: 1fr; gap: 1rem; }

  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-box { padding: 1.5rem; }

  .faq-list { margin: 2rem 0 0; }

  .cta-final { padding: 4.5rem 0; }
  .cta-actions { flex-direction: column; padding: 0 1.25rem; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 1.25rem 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.25rem; flex-direction: column; text-align: center; gap: 0.5rem; }

  .announce-bar { font-size: 0.7rem; padding: 0.45rem 0.75rem; }
  .announce-bar span { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 9.5rem 0 2.75rem; }
  .hero h1 { font-size: 2.2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.85rem; }
  .bento-card { padding: 1.25rem; }
  .solution-box { padding: 1.75rem; }
}

/* ─── PRICING INLINE GRID (responsive override) ──── */
@media (max-width: 900px) {
  .pricing-inline-grid {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }
}

/* ─── APP SECTION GRID (videodemo) ──────────────── */
@media (max-width: 900px) {
  .app-section-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .app-section-grid > div:last-child {
    order: -1; /* video arriba en mobile */
  }
  .app-section { padding: 4rem 0 !important; }
}

@media (max-width: 480px) {
  .pricing-inline-grid {
    max-width: 100% !important;
  }
}

/* ─── VIDEODEMO cards "Todo esto viene incluido" ── */
@media (max-width: 600px) {
  .video-included-grid {
    grid-template-columns: 1fr !important;
  }
}