/* ═══════════════════════════════════════════════════
   EL QDERNITO LANDING — qdernito-landing.css
   Design System LIGHT — fork de Facturalo tokens
   Colores: Azul #3b56e0 (primario) + Naranja #f5a623 (acento)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=JetBrains+Mono:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* ── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  /* Brand — El Qdernito */
  --qd-blue:      #3b56e0;
  --qd-blue-d:    #2a3fb5;
  --qd-blue-l:    #5870f0;
  --qd-orange:    #f5a623;
  --qd-orange-d:  #e86c1a;
  --qd-orange-l:  #ffb84d;

  /* Secondary accents */
  --qd-cyan:      #0891b2;
  --qd-green:     #059669;
  --qd-red:       #dc2626;
  --qd-purple:    #7c3aed;

  /* LIGHT BACKGROUNDS */
  --bg:    #ffffff;
  --bg-2:  #f8faff;
  --bg-3:  #f0f4ff;
  --bg-4:  #e8eefb;
  --bg-orange: #fffbf3;

  /* SURFACES */
  --surface:   rgba(59,86,224,0.04);
  --surface-2: rgba(59,86,224,0.07);
  --surface-3: rgba(59,86,224,0.11);
  --surface-orange: rgba(245,166,35,0.06);
  --surface-orange-2: rgba(245,166,35,0.12);

  /* BORDERS */
  --border:   rgba(0,0,0,0.08);
  --border-2: rgba(59,86,224,0.18);
  --border-3: rgba(59,86,224,0.36);
  --border-orange: rgba(245,166,35,0.28);

  /* TEXT */
  --text:   #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --text-4: #cbd5e1;

  /* GLOWS */
  --glow-blue:    rgba(59,86,224,0.20);
  --glow-blue-lg: rgba(59,86,224,0.14);
  --glow-orange:  rgba(245,166,35,0.30);
  --glow-orange-lg: rgba(245,166,35,0.18);

  /* TYPOGRAPHY */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* SPACING & SHAPE */
  --section-py: 96px;
  --r-xs:  8px;
  --r-sm:  12px;
  --r:     18px;
  --r-lg:  28px;
  --r-xl:  44px;
  --r-full: 9999px;

  /* EASING */
  --ease:        cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.40, 0.64, 1);
  --t-fast:   0.15s;
  --t-normal: 0.25s;
  --t-slow:   0.4s;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: var(--font); cursor: pointer; }
ul, ol { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--qd-blue); }

/* ── UTILITIES ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text-blue {
  background: linear-gradient(135deg, var(--qd-blue) 0%, var(--qd-blue-l) 60%, #818cf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-orange {
  background: linear-gradient(135deg, var(--qd-orange) 0%, var(--qd-orange-d) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-mixed {
  background: linear-gradient(135deg, var(--qd-blue) 0%, var(--qd-orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── KEYFRAMES ──────────────────────────────────── */
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-25px) scale(1.06); }
  66% { transform: translate(-25px,35px) scale(0.95); }
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.65)} }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ── TOPBAR PROMO ───────────────────────────────── */
.promo-topbar {
  background: linear-gradient(90deg, #050a17 0%, #0b183a 25%, #18347f 60%, #b8540c 100%);
  color: #fff;
  padding: 9px 16px;
  font-size: 12.5px; font-weight: 700;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  position: relative; z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.promo-badge {
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 900;
}
.promo-link {
  color: #fff; background: rgba(255,255,255,0.22);
  padding: 4px 12px; border-radius: 8px; text-decoration: none;
  font-weight: 800; transition: background var(--t-fast) var(--ease);
}
.promo-link:hover { background: rgba(255,255,255,0.38); }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, #091124 0%, #0f245c 22%, #2643bc 50%, #3b56e0 68%, #e86c1a 90%, #f5a623 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 22px rgba(9, 17, 36, 0.35);
  padding: 10px 0;
  transition: all var(--t-normal) var(--ease);
  overflow: hidden;
}
.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(9, 17, 36, 0.55);
  background: linear-gradient(90deg, rgba(9, 17, 36, 0.97) 0%, rgba(15, 36, 92, 0.97) 22%, rgba(38, 67, 188, 0.97) 50%, rgba(59, 86, 224, 0.97) 68%, rgba(232, 108, 26, 0.97) 90%, rgba(245, 166, 35, 0.97) 100%);
}
.nav-waves-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 480px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.nav-waves-left svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-inner {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  position: relative;
  padding: 4px 12px 4px 6px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all var(--t-fast) var(--ease);
}
.nav-logo:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}
.nav-logo img { height: 38px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.nav-links {
  display: flex; align-items: center; gap: 3px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.90);
  font-size: 13.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 8px; text-decoration: none;
  transition: all var(--t-fast) var(--ease);
}
.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}
.nav-links a.active {
  color: #ffffff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.24);
}
.nav-links a.nav-link-highlight {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.nav-links a.nav-link-highlight:hover {
  background: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.nav-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #ffffff;
  color: #ffffff;
}
.nav-actions .btn-primary {
  background: #ffffff;
  color: var(--qd-orange-d);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  font-weight: 800;
}
.nav-actions .btn-primary:hover {
  background: #fff9f0;
  color: #c25e10;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-full); border: none;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  line-height: 1; text-decoration: none; white-space: nowrap;
  transition: all var(--t-normal) var(--ease-spring);
  cursor: pointer; position: relative; overflow: hidden;
}
.btn .icon { font-size: 18px; flex-shrink: 0; }
.btn-xl  { padding: 18px 40px; font-size: 16.5px; }
.btn-lg  { padding: 15px 32px; font-size: 15px; }
.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--qd-orange) 0%, var(--qd-orange-d) 100%);
  color: #fff; font-weight: 800;
  box-shadow: 0 8px 28px var(--glow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px var(--glow-orange);
  background: linear-gradient(135deg, var(--qd-orange-l) 0%, var(--qd-orange) 100%);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-blue {
  background: linear-gradient(135deg, var(--qd-blue) 0%, var(--qd-blue-d) 100%);
  color: #fff; font-weight: 800;
  box-shadow: 0 8px 28px var(--glow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 40px var(--glow-blue); }

.btn-ghost {
  background: var(--surface);
  color: var(--qd-blue);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--qd-blue); }

/* ── TAGS / BADGES ──────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; line-height: 1; border: 1px solid transparent;
}
.tag .tag-icon { font-size: 13px; }
.tag-blue   { background: rgba(59,86,224,0.10);  color: var(--qd-blue);   border-color: rgba(59,86,224,0.22); }
.tag-orange { background: rgba(245,166,35,0.12); color: #c2640a;          border-color: rgba(245,166,35,0.28); }
.tag-green  { background: rgba(5,150,105,0.10);  color: var(--qd-green);  border-color: rgba(5,150,105,0.24); }
.tag-cyan   { background: rgba(8,145,178,0.10);  color: var(--qd-cyan);   border-color: rgba(8,145,178,0.24); }
.tag-red    { background: rgba(220,38,38,0.10);  color: var(--qd-red);    border-color: rgba(220,38,38,0.22); }
.tag-ghost  { background: var(--surface);         color: var(--text-2);    border-color: var(--border); }

/* ── SECTION HEADINGS ───────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }
.section-eyebrow { margin-bottom: 14px; }
.section-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900; letter-spacing: -1.4px; line-height: 1.08; margin-bottom: 14px;
}
.section-sub { font-size: 16.5px; color: var(--text-2); line-height: 1.7; max-width: 560px; }

/* ── CARDS ──────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all var(--t-normal) var(--ease);
}
.card:hover {
  border-color: var(--border-2); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59,86,224,0.10);
}

.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 26px; display: flex; gap: 20px;
  transition: all var(--t-normal) var(--ease);
}
.feature-card:hover {
  border-color: var(--border-2); transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(59,86,224,0.09);
}

/* ── ICON WRAPPERS ──────────────────────────────── */
.icon-wrap {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); flex-shrink: 0;
}
.icon-wrap-sm  { width: 44px; height: 44px; font-size: 20px; }
.icon-wrap-md  { width: 56px; height: 56px; font-size: 26px; }
.icon-wrap-lg  { width: 70px; height: 70px; font-size: 32px; border-radius: 18px; }
.iw-blue   { background: rgba(59,86,224,0.10); color: var(--qd-blue); }
.iw-orange { background: rgba(245,166,35,0.12); color: var(--qd-orange-d); }
.iw-green  { background: rgba(5,150,105,0.10);  color: var(--qd-green); }
.iw-cyan   { background: rgba(8,145,178,0.10);  color: var(--qd-cyan); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(1.15) contrast(1.05) brightness(1.02);
  will-change: transform, opacity;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.28) 72%, rgba(255, 255, 255, 0.45) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 20%, transparent 68%, #ffffff 100%);
  pointer-events: none;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse 65% 55% at 85% 45%, rgba(59, 86, 224, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 15% 65%, rgba(245, 166, 35, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.10;
  animation: orbFloat 12s ease-in-out infinite;
  z-index: 4;
}
.orb-1 { width: 580px; height: 580px; background: var(--qd-blue); top: -180px; right: -120px; animation-delay: 0s; }
.orb-2 { width: 420px; height: 420px; background: var(--qd-orange); bottom: -100px; left: -80px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: #818cf8; top: 50%; left: 45%; animation-delay: -8s; opacity: 0.08; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 5;
  background-image: linear-gradient(rgba(59,86,224,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,86,224,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: rgba(59,86,224,0.08);
  border: 1px solid var(--border-2); border-radius: var(--r-full);
  font-size: 13px; font-weight: 700; color: var(--qd-blue);
}
.hero-badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--qd-green);
  box-shadow: 0 0 0 2px rgba(5,150,105,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.06; color: var(--text);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2); line-height: 1.65; max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.cursor-blink { display: inline-block; width: 3px; height: 1.1em; background: var(--qd-orange); border-radius: 2px; vertical-align: bottom; margin-left: 4px; animation: cursorBlink 1s step-end infinite; }

/* ── MARQUEE / TICKER ───────────────────────────── */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap; color: var(--text-2); font-size: 14px; font-weight: 700;
  padding: 10px 20px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ── SECTOR CARDS ───────────────────────────────── */
.sector-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 20px; text-align: center;
  transition: all var(--t-normal) var(--ease);
}
.sector-card:hover {
  border-color: var(--border-orange); transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(245,166,35,0.12);
}
.sector-icon { font-size: 40px; margin-bottom: 14px; line-height: 1; }
.sector-name { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.sector-desc { font-size: 12.5px; color: var(--text-2); line-height: 1.55; }

/* ── PLAN CARDS (PRICING) ───────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-normal) var(--ease);
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(59,86,224,0.12);
}

/* Plan Negocio Pro (Featured) */
.plan-card.featured {
  border-color: var(--qd-orange);
  box-shadow: 0 16px 48px var(--glow-orange-lg);
}

/* Plan Suite Completa ($50) */
.plan-card.enterprise {
  border-color: #818cf8;
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 40%);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}
.plan-card.enterprise:hover {
  border-color: #6366f1;
  box-shadow: 0 22px 60px rgba(99, 102, 241, 0.22);
}

/* Plan Solidario $25 (OFERTA LIMITADA) - Ultra Resaltado */
.plan-card.solidarity,
.plan-card.limited-deal {
  border: 2px solid #ea580c;
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 45%, #ffffff 100%);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.3), 0 20px 50px rgba(234, 88, 12, 0.18);
  position: relative;
  overflow: visible;
  animation: glowPulseOrange 3s ease-in-out infinite alternate;
}
.plan-card.limited-deal:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 0 0 2px #ea580c, 0 28px 65px rgba(234, 88, 12, 0.28);
}

@keyframes glowPulseOrange {
  0% { box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.3), 0 16px 40px rgba(234, 88, 12, 0.14); }
  100% { box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.6), 0 24px 60px rgba(234, 88, 12, 0.26); }
}

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--qd-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
  z-index: 2;
}

.plan-popular.popular-fire {
  background: linear-gradient(135deg, #dc2626 0%, #ea580c 50%, #d97706 100%);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.45);
  animation: pulseBadgeFire 2s infinite;
}

@keyframes pulseBadgeFire {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.plan-popular.popular-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.deal-countdown-strip {
  background: rgba(234, 88, 12, 0.12);
  border: 1px dashed rgba(234, 88, 12, 0.4);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #c2410c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.plan-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--text-2); margin-bottom: 4px; line-height: 1.4; }
.plan-price {
  font-size: 46px; font-weight: 900; color: var(--text);
  font-family: var(--mono); margin: 16px 0 6px; line-height: 1;
}
.plan-price .curr { font-size: 26px; vertical-align: super; color: var(--qd-orange); }
.plan-price .old-price {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
  margin-right: 6px;
  font-family: var(--font);
}
.plan-price .per { font-size: 14px; font-family: var(--font); color: var(--text-3); font-weight: 600; }

.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  font-size: 13.5px; color: var(--text-2); margin: 20px 0 28px; flex: 1;
}
.plan-features li { display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.plan-features .ck { color: var(--qd-green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Tarjeta Tienda Bespoke en Showroom */
.browser-mockup-card.bespoke-card {
  border: 1.5px solid rgba(124, 58, 237, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.12);
}
.browser-mockup-card.bespoke-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.22);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: border-color var(--t-fast) var(--ease);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item summary {
  list-style: none; padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary .faq-icon { color: var(--qd-orange); font-size: 18px; flex-shrink: 0; transition: transform var(--t-normal) var(--ease); }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 24px 20px; font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; transition: all var(--t-normal) var(--ease);
}
.testimonial-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(59,86,224,0.09); }
.testimonial-stars { color: var(--qd-orange); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
}
.avatar-blue   { background: linear-gradient(135deg, var(--qd-blue), var(--qd-blue-l)); }
.avatar-orange { background: linear-gradient(135deg, var(--qd-orange), var(--qd-orange-d)); }
.avatar-green  { background: linear-gradient(135deg, var(--qd-green), var(--qd-cyan)); }
.testimonial-name { font-size: 14px; font-weight: 800; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-3); }

/* ── HARDWARE COMPAT ────────────────────────────── */
.hw-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px 20px; text-align: center;
  transition: all var(--t-normal) var(--ease);
}
.hw-card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,86,224,0.08); }
.hw-icon { font-size: 34px; margin-bottom: 12px; }
.hw-name { font-size: 13.5px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.hw-desc { font-size: 12px; color: var(--text-3); line-height: 1.55; }

/* ── TECH STACK VISUAL ──────────────────────────── */
.tech-layer {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; text-align: center;
  transition: all var(--t-normal) var(--ease);
}
.tech-layer:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(59,86,224,0.09); }

/* ── FOOTER ─────────────────────────────────────── */
.qd-footer {
  background: var(--text); color: rgba(255,255,255,0.75);
  padding: 80px 0 32px; margin-top: 0;
}
.qd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }

/* Hero Layout Grid */
.hero-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── 3D HERO PREVIEW DUAL ORBIT (DESKTOP + MOBILE) WITH VIDEO BACKDROP ── */
.hero-dual-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 480px;
  margin: 0 auto;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(0.6deg); }
}



/* Base card 3D */
.hero-card-3d {
  position: absolute;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
  will-change: transform, z-index, opacity, filter;
  cursor: pointer;
}

/* Desktop card container */
.hero-card-desktop {
  width: 440px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(59, 86, 224, 0.22);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24), 0 0 35px rgba(59, 86, 224, 0.20);
  overflow: hidden;
  animation: orbitDesktop 14s ease-in-out infinite;
}

.hero-card-desktop .mock-topbar {
  background: linear-gradient(90deg, #0f1d42 0%, #1e3a8a 60%, #3b56e0 100%);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-desktop .mock-topbar .dots {
  display: flex;
  gap: 5px;
}
.hero-card-desktop .mock-topbar .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.hero-card-desktop .mock-topbar .dots span:nth-child(1) { background: #ef4444; }
.hero-card-desktop .mock-topbar .dots span:nth-child(2) { background: #f59e0b; }
.hero-card-desktop .mock-topbar .dots span:nth-child(3) { background: #10b981; }
.hero-card-desktop .mock-topbar .title {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0.95;
}
.hero-card-desktop .mock-topbar .badge {
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.35);
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
}

.hero-card-desktop img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Smartphone card container */
.hero-card-mobile {
  width: 200px;
  background: #0f172a;
  border: 6px solid #0f172a;
  border-radius: 34px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(245, 166, 35, 0.28);
  overflow: hidden;
  animation: orbitMobile 14s ease-in-out infinite;
}

.hero-card-mobile .phone-notch {
  width: 60px;
  height: 5px;
  background: #1e293b;
  border-radius: 999px;
  margin: 4px auto 6px;
}

.hero-card-mobile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

/* Orbita e intercambio 3D */
@keyframes orbitDesktop {
  0%, 100% {
    transform: translate(-30px, -15px) translateZ(50px) rotateY(-8deg) rotateX(4deg) scale(1);
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)) brightness(1);
  }
  20% {
    transform: translate(-35px, -20px) translateZ(60px) rotateY(-5deg) rotateX(2deg) scale(1.02);
    z-index: 10;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2)) brightness(1);
  }
  42% {
    transform: translate(70px, 20px) translateZ(-40px) rotateY(16deg) rotateX(-4deg) scale(0.85);
    z-index: 4;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)) brightness(0.88);
  }
  70% {
    transform: translate(80px, 30px) translateZ(-60px) rotateY(18deg) rotateX(-6deg) scale(0.82);
    z-index: 4;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)) brightness(0.85);
  }
  90% {
    transform: translate(-10px, 0px) translateZ(10px) rotateY(2deg) rotateX(1deg) scale(0.95);
    z-index: 8;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)) brightness(0.95);
  }
}

@keyframes orbitMobile {
  0%, 100% {
    transform: translate(140px, 40px) translateZ(-40px) rotateY(14deg) rotateX(-4deg) scale(0.88);
    z-index: 4;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)) brightness(0.88);
  }
  20% {
    transform: translate(150px, 45px) translateZ(-50px) rotateY(16deg) rotateX(-5deg) scale(0.86);
    z-index: 4;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)) brightness(0.85);
  }
  42% {
    transform: translate(40px, -10px) translateZ(60px) rotateY(-6deg) rotateX(4deg) scale(1.04);
    z-index: 10;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35)) brightness(1);
  }
  70% {
    transform: translate(30px, -15px) translateZ(70px) rotateY(-4deg) rotateX(2deg) scale(1.05);
    z-index: 10;
    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.4)) brightness(1);
  }
  90% {
    transform: translate(110px, 25px) translateZ(0px) rotateY(8deg) rotateX(-2deg) scale(0.94);
    z-index: 6;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2)) brightness(0.94);
  }
}

/* Hover pause */
.hero-dual-stage:hover .hero-card-desktop,
.hero-dual-stage:hover .hero-card-mobile {
  animation-play-state: paused;
}
.qd-footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 320px; }
.qd-footer-title { font-size: 11px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.qd-footer-links { display: flex; flex-direction: column; gap: 12px; }
.qd-footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.qd-footer-links a:hover { color: var(--qd-orange); }
.qd-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; font-size: 13px; }

/* ── TIENDAS ONLINE SHOWCASE & BROWSER MOCKUPS ─── */
.section-tiendas-online {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, #ffffff 50%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.section-tiendas-online::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(59, 86, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Value Pillars Grid */
.web-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.web-pillar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.web-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(59, 86, 224, 0.09);
  border-color: rgba(59, 86, 224, 0.25);
}
.web-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.web-pillar-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.web-pillar-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Filter Pills Bar */
.tiendas-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.tiendas-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s var(--ease);
}
.tiendas-filter-btn:hover {
  border-color: var(--qd-blue);
  color: var(--qd-blue);
  transform: translateY(-1px);
}
.tiendas-filter-btn.active {
  background: var(--qd-blue);
  border-color: var(--qd-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(59, 86, 224, 0.28);
}

/* Browser Mockup Grid */
.browser-mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

/* Browser Window Mockup Card */
.browser-mockup-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.browser-mockup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(59, 86, 224, 0.16);
  border-color: rgba(59, 86, 224, 0.35);
}

/* Browser Window Header */
.browser-topbar {
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots {
  display: flex;
  gap: 5.5px;
}
.browser-dots span {
  width: 9.5px;
  height: 9.5px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-ssl-icon {
  font-size: 12px;
  color: #10b981;
}

/* Store Media Box */
.store-media-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}
.store-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.browser-mockup-card:hover .store-media-wrap img {
  transform: scale(1.08);
}
.store-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}

.store-rubro-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0f172a;
  font-weight: 800;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.store-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(5, 150, 105, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  z-index: 2;
}
.store-status-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse-dot 1.8s infinite;
}

/* Card Body */
.store-card-body {
  padding: 24px 22px 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-avatar-circle {
  position: absolute;
  top: -26px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 3;
}

.store-card-header {
  margin-top: 12px;
  margin-bottom: 6px;
}
.store-title {
  font-size: 18.5px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
}
.store-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-3);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 10px 0 16px;
  flex: 1;
}

.store-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.store-feature-chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--qd-blue);
  background: rgba(59, 86, 224, 0.08);
  border: 1px solid rgba(59, 86, 224, 0.14);
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.store-actions-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}
.btn-store-primary {
  flex: 1;
  padding: 11.5px 16px;
  background: linear-gradient(135deg, var(--qd-orange-d) 0%, #c2410c 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(232, 108, 26, 0.28);
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.btn-store-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 108, 26, 0.42);
  color: #ffffff;
}

.btn-store-ghost {
  padding: 11.5px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.btn-store-ghost:hover {
  background: #ffffff;
  border-color: var(--qd-blue);
  color: var(--qd-blue);
  transform: translateY(-2px);
}

/* Extra Pricing & CMS Snippet in Card */
.store-pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg-2);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 12px;
}
.store-pricing-teaser strong {
  color: var(--text);
}
.store-pricing-teaser span {
  color: var(--qd-green);
  font-weight: 800;
}

/* CMS Integration Banner */
.cms-integration-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px 36px;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}
.cms-integration-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cms-banner-text h3 {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cms-banner-text p {
  font-size: 13.5px;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.5;
}

/* ── INTERACTIVE LIVE DEMO MODAL ────────────────── */
.demo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.demo-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.demo-modal-window {
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s var(--ease-spring);
}
.demo-modal-backdrop.active .demo-modal-window {
  transform: scale(1) translateY(0);
}
.demo-modal-head {
  background: #0f172a;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.demo-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  background: #f8fafc;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-dual-stage { height: 440px; }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.90) 80%, #ffffff 100%);
  }
  .qd-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .browser-mockup-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
  .hero-dual-stage { height: 360px; }
  .hero-card-desktop { width: 280px; }
  .hero-card-mobile { width: 130px; border-width: 4px; border-radius: 20px; }
  .qd-footer-grid { grid-template-columns: 1fr; }
  .btn-xl { padding: 16px 28px; font-size: 15px; }
  .web-pillars-grid { grid-template-columns: 1fr; }
}

