/* ══════════════════════════════════════════════
   Landing Page Storytelling — Paso 8k
   Scoped under .landing-page to avoid collisions
   ══════════════════════════════════════════════ */

/* ====== OVERRIDE: allow full-page scroll for landing ====== */
body:has(.landing-page) { overflow: auto; height: auto; }
body:has(.landing-page) .app-container { height: auto; overflow: visible; }
body:has(.landing-page) .content-area { overflow: visible; padding: 0; }

/* ====== NOISE TEXTURE ====== */
.landing-page .noise-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ====== PREMIUM BACKGROUND ORBS ====== */
.landing-page .bg-canvas { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.landing-page .bg-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0; transition: opacity 1.2s ease, transform 1.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.landing-page .bg-orb-1 { width: 600px; height: 600px; background: rgba(124,77,255,0.07); top: -200px; left: -100px; }
.landing-page .bg-orb-2 { width: 500px; height: 500px; background: rgba(77,150,255,0.05); bottom: -150px; right: -100px; }
.landing-page .bg-orb-3 { width: 400px; height: 400px; background: rgba(200,77,255,0.04); top: 40%; left: 60%; }

.landing-page [data-scene="hero"] .bg-orb-1 { opacity: 0.6; transform: translate(0,0); }
.landing-page [data-scene="hero"] .bg-orb-2 { opacity: 0.3; transform: translate(0,0); }
.landing-page [data-scene="hero"] .bg-orb-3 { opacity: 0; }
.landing-page [data-scene="problem"] .bg-orb-1 { opacity: 0.4; transform: translate(20%,30%); }
.landing-page [data-scene="problem"] .bg-orb-2 { opacity: 0.5; transform: translate(-15%,-20%); }
.landing-page [data-scene="problem"] .bg-orb-3 { opacity: 0.3; transform: translate(-10%,0); }
.landing-page [data-scene="solution"] .bg-orb-1 { opacity: 0.3; transform: translate(50%,10%); }
.landing-page [data-scene="solution"] .bg-orb-2 { opacity: 0.2; transform: translate(-30%,-40%); }
.landing-page [data-scene="solution"] .bg-orb-3 { opacity: 0.7; transform: translate(-20%,-10%); }
.landing-page [data-scene="features"] .bg-orb-1 { opacity: 0.2; transform: translate(70%,40%); }
.landing-page [data-scene="features"] .bg-orb-2 { opacity: 0.6; transform: translate(-50%,-10%); }
.landing-page [data-scene="features"] .bg-orb-3 { opacity: 0.4; transform: translate(10%,-30%); }
/* [v5.7.27.61] Sección Workspaces — orbs ligeramente desplazados respecto a 'features' para que el cambio se note al hacer scroll */
.landing-page [data-scene="workspaces"] .bg-orb-1 { opacity: 0.4; transform: translate(-30%,30%); }
.landing-page [data-scene="workspaces"] .bg-orb-2 { opacity: 0.3; transform: translate(60%,-20%); }
.landing-page [data-scene="workspaces"] .bg-orb-3 { opacity: 0.5; transform: translate(-10%,-40%); }
/* [v5.7.27.62] Sección Telegram — orbs en otra posición para diferenciar visualmente */
.landing-page [data-scene="telegram"] .bg-orb-1 { opacity: 0.45; transform: translate(40%,-25%); }
.landing-page [data-scene="telegram"] .bg-orb-2 { opacity: 0.5; transform: translate(-40%,30%); }
.landing-page [data-scene="telegram"] .bg-orb-3 { opacity: 0.3; transform: translate(20%,40%); }
.landing-page [data-scene="stats"] .bg-orb-1 { opacity: 0.35; transform: translate(40%,15%); }
.landing-page [data-scene="stats"] .bg-orb-2 { opacity: 0.45; transform: translate(-25%,-25%); }
.landing-page [data-scene="stats"] .bg-orb-3 { opacity: 0.55; transform: translate(-15%,-20%); }
.landing-page [data-scene="cta"] .bg-orb-1 { opacity: 0.5; transform: translate(30%,20%); }
.landing-page [data-scene="cta"] .bg-orb-2 { opacity: 0.5; transform: translate(-20%,-30%); }
.landing-page [data-scene="cta"] .bg-orb-3 { opacity: 0.6; transform: translate(-5%,-15%); }

/* Dot grid */
.landing-page .bg-grid {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.6;
}

/* Particles */
.landing-page .particle { position: fixed; border-radius: 50%; pointer-events: none; z-index: 2; background: rgba(124,77,255,0.2); filter: blur(1px); animation: landing-float linear infinite; }
@keyframes landing-float { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; } }

/* ====== CONTENT ====== */
.landing-page .content-wrap { position: relative; z-index: 3; }

/* Header */
.landing-page .landing-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10,10,12,0.6); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.landing-page .logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; justify-content: flex-start; width: auto; margin-bottom: 0; height: auto; }
.landing-page .logo-icon { color: #7c4dff; filter: drop-shadow(0 0 8px rgba(124,77,255,0.5)); flex-shrink: 0; width: 24px; height: 24px; }
.landing-page .logo-icon svg { width: 24px; height: 24px; stroke: #7c4dff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.landing-page .logo .accent { color: #a78bfa; }
.landing-page .header-actions { display: flex; gap: 14px; }
.landing-page .btn-ghost { padding: 10px 22px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: transparent; color: #e8e8f0; cursor: pointer; font-size: 15px; font-family: 'Outfit', sans-serif; transition: all 0.2s; }
.landing-page .btn-ghost:hover { border-color: rgba(255,255,255,0.25); }
.landing-page .btn-primary { padding: 10px 22px; border-radius: 10px; border: none; background: #7c4dff; color: white; cursor: pointer; font-size: 15px; font-weight: 600; font-family: 'Outfit', sans-serif; box-shadow: 0 0 20px rgba(124,77,255,0.25); transition: all 0.2s; }
.landing-page .btn-primary:hover { box-shadow: 0 0 30px rgba(124,77,255,0.4); transform: translateY(-1px); }

/* ====== HERO ====== */
.landing-page .hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 60px 100px;
}
.landing-page .hero h1 {
  font-family: 'Sora', sans-serif; font-size: 72px; line-height: 1.08;
  max-width: 880px; margin-bottom: 28px; font-weight: 800; letter-spacing: -2px;
}
.landing-page .hero h1 .accent { color: #7c4dff; }
.landing-page .hero > p {
  font-size: 24px; color: #9898b4; max-width: 640px; line-height: 1.6;
  margin-bottom: 44px; font-weight: 300;
}
.landing-page .hero-cta { display: flex; gap: 18px; align-items: center; }
.landing-page .btn-hero {
  padding: 18px 42px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #8b5cf6, #7c4dff);
  color: white;
  font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700;
  cursor: pointer; box-shadow: 0 0 30px rgba(124,77,255,0.35);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.landing-page .btn-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.landing-page .btn-hero:hover { transform: translateY(-3px); box-shadow: 0 4px 50px rgba(124,77,255,0.55), 0 0 80px rgba(124,77,255,0.2); }
.landing-page .btn-hero:hover::after { opacity: 1; }
.landing-page .btn-hero:active { transform: translateY(-1px); }
.landing-page .btn-explore {
  padding: 18px 42px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  color: #b8b8cc; font-size: 18px; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.3s;
}
.landing-page .btn-explore:hover { border-color: rgba(124,77,255,0.4); color: #e8e8f0; background: rgba(124,77,255,0.04); transform: translateY(-2px); }
.landing-page .btn-explore:active { transform: translateY(0); }

/* Gift block */
.landing-page .hero-gift { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.landing-page .hero-gift-credits {
  font-family: 'Sora', sans-serif; font-size: 18px; color: #b8a0ff; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 24px; border-radius: 12px;
  background: rgba(124,77,255,0.08); border: 1px solid rgba(124,77,255,0.15);
}
.landing-page .hero-gift-pitch { font-size: 16px; color: #9898b4; font-style: italic; font-weight: 300; }

.landing-page .scroll-hint {
  position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #9898b4; font-size: 14px; animation: landing-bounce 2s infinite;
  z-index: 50; transition: opacity 0.5s ease;
}
.landing-page .scroll-hint.hidden { opacity: 0; pointer-events: none; }
@keyframes landing-bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ====== SECTIONS ====== */
.landing-page .section {
  padding: 140px 60px; max-width: 1100px; margin: 0 auto;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.landing-page .section + .section { margin-top: 40px; }
.landing-page .section.visible { opacity: 1; transform: translateY(0); }

/* Section labels — SVG icon + pill */
.landing-page .section-label {
  font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 0.5px;
  color: #7c4dff; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 24px; border-radius: 12px;
  background: rgba(124,77,255,0.06); border: 1px solid rgba(124,77,255,0.12);
}
.landing-page .section-label svg { width: 24px; height: 24px; stroke: #7c4dff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.landing-page .section h2 {
  font-family: 'Sora', sans-serif; font-size: 48px; margin-bottom: 24px;
  line-height: 1.12; font-weight: 700; letter-spacing: -1px;
}
.landing-page .section > p { font-size: 22px; color: #9898b4; line-height: 1.7; font-weight: 300; }

/* ====== PROBLEM — offset left ====== */
.landing-page .section-problem { max-width: 1100px; }
.landing-page .section-problem .section-inner {
  max-width: 680px;
}

/* ====== STEPS — offset right ====== */
.landing-page .section-steps .section-inner {
  max-width: 780px; margin-left: auto;
}

.landing-page .steps { display: flex; flex-direction: column; gap: 52px; margin-top: 52px; position: relative; }
.landing-page .steps::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: rgba(124,77,255,0.15); }
.landing-page .step {
  display: flex; gap: 28px; align-items: flex-start;
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.landing-page .step.visible { opacity: 1; transform: translateX(0); }
.landing-page .step-number {
  min-width: 64px; height: 64px; border-radius: 50%;
  background: rgba(124,77,255,0.1); border: 1.5px solid rgba(124,77,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: #7c4dff; z-index: 1;
  transition: all 0.3s;
}
.landing-page .step.visible .step-number { background: rgba(124,77,255,0.15); border-color: #7c4dff; box-shadow: 0 0 20px rgba(124,77,255,0.15); }
.landing-page .step-content h3 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.landing-page .step-content p { font-size: 18px; color: #9898b4; line-height: 1.6; font-weight: 300; }

/* ====== FEATURES ====== */
.landing-page .features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.landing-page .features--premium { grid-template-columns: repeat(3, 1fr); }
.landing-page .feature-card {
  padding: 32px; border-radius: 18px;
  background: rgba(18,18,23,0.5); border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.landing-page .feature-card.visible { opacity: 1; transform: translateY(0); }
.landing-page .feature-card:hover { border-color: rgba(124,77,255,0.2); box-shadow: 0 4px 24px rgba(124,77,255,0.06); }
.landing-page .feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(124,77,255,0.08); border: 1px solid rgba(124,77,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.landing-page .feature-icon-wrap svg { width: 24px; height: 24px; stroke: #7c4dff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.landing-page .feature-card h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.landing-page .feature-card p { font-size: 16px; color: #9898b4; line-height: 1.6; font-weight: 300; }

/* ====== STATS COUNTER BAR ====== */
.landing-page .stats-bar {
  padding: 80px 60px; max-width: 1100px; margin: 0 auto;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.landing-page .stats-bar.visible { opacity: 1; transform: translateY(0); }
.landing-page .stats-grid {
  display: flex; justify-content: center; gap: 64px;
  padding: 48px; border-radius: 20px;
  background: rgba(18,18,23,0.4); border: 1px solid rgba(255,255,255,0.05);
}
.landing-page .stat-item { text-align: center; }
.landing-page .stat-number {
  font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 800;
  background: linear-gradient(135deg, #7c4dff 0%, #4dc8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.landing-page .stat-label { font-size: 15px; color: #9898b4; margin-top: 8px; font-weight: 300; }

/* ====== CTA FINAL ====== */
.landing-page .cta-final {
  text-align: center; padding: 100px 60px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.landing-page .cta-final.visible { opacity: 1; transform: translateY(0); }
.landing-page .cta-final h2 {
  font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 700;
  margin-bottom: 24px; line-height: 1.12; letter-spacing: -1px;
}
.landing-page .cta-final p { font-size: 22px; color: #9898b4; margin-bottom: 40px; font-weight: 300; }

/* ====== AI ASSISTANT IN CTA ====== */
.landing-page .cta-assistant {
  display: flex; align-items: flex-start; gap: 18px;
  max-width: 560px; margin: 0 auto 48px;
  text-align: left;
}

/* FAB — exact replica of opencard analyst btn */
.landing-page .cta-fab {
  position: relative;
  min-width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #9b6dff, #7c4dff);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(124,77,255,0.35);
  cursor: pointer;
}
.landing-page .cta-fab svg.bot-icon { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Pulsing ring */
.landing-page .cta-fab::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid rgba(124,77,255,0.4);
  animation: landing-fabRingPulse 2.5s ease-in-out infinite;
}
@keyframes landing-fabRingPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.15); }
}

/* Thought bubble badge */
.landing-page .fab-badge {
  position: absolute; top: -6px; right: -6px;
  width: 32px; height: 24px; border-radius: 12px;
  background: linear-gradient(145deg, #5b21b6, #7c4dff);
  border: 1.5px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 12px rgba(124,77,255,0.4), 0 4px 16px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  animation: landing-fabBubbleFloat 3s ease-in-out infinite;
  z-index: 2;
}
/* Arrow pointer */
.landing-page .fab-badge::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid #6d28d9;
}
.landing-page .fab-badge::before {
  content: ''; position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 6px solid rgba(255,255,255,0.7);
}
@keyframes landing-fabBubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Ideate dots */
.landing-page .fab-badge .ideate-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #c4b5fd;
  animation: landing-fabDotBounce 1.4s ease-in-out infinite;
}
.landing-page .fab-badge .ideate-dot:nth-child(2) { animation-delay: 0.2s; }
.landing-page .fab-badge .ideate-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes landing-fabDotBounce {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.3); }
}

/* Icon mode (when cycling icons) */
.landing-page .fab-badge.ideate-icon-mode {
  animation: landing-fabBubbleFloat 3s ease-in-out infinite, landing-fabIconPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.landing-page .fab-badge.ideate-icon-mode .ideate-dot { display: none; }
.landing-page .fab-badge.ideate-icon-mode svg {
  width: 14px; height: 14px; stroke: #c4b5fd; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(167,139,250,0.5));
}
@keyframes landing-fabIconPop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Bubble message */
.landing-page .cta-bubble {
  position: relative;
  padding: 20px 24px; border-radius: 18px 18px 18px 4px;
  background: rgba(124,77,255,0.06); border: 1px solid rgba(124,77,255,0.15);
  font-size: 17px; color: #d0c4f0; line-height: 1.6; font-weight: 400;
  backdrop-filter: blur(8px);
}
.landing-page .cta-bubble::before {
  content: ''; position: absolute; left: -8px; top: 20px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(124,77,255,0.15);
}
.landing-page .cta-bubble strong { color: #e8e8f0; font-weight: 600; }
.landing-page .cta-register-hint {
  display: block; margin-top: 10px; font-size: 14px; color: #b8a0ff; font-weight: 500;
  cursor: pointer; transition: color 0.2s;
}
.landing-page .cta-register-hint:hover { color: #e8e8f0; }

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 1024px) {
  .landing-page .hero h1 { font-size: 56px; }
  .landing-page .hero > p { font-size: 22px; }
  .landing-page .section h2 { font-size: 40px; }
  .landing-page .section { padding: 100px 40px; }
  .landing-page .section + .section { margin-top: 20px; }
  .landing-page .landing-header { padding: 16px 32px; }
  .landing-page .stats-grid { gap: 40px; padding: 36px; }
  .landing-page .stat-number { font-size: 44px; }
  .landing-page .section-problem .section-inner { max-width: 100%; }
  .landing-page .section-steps .section-inner { max-width: 100%; margin-left: 0; }
  .landing-page .cta-final h2 { font-size: 40px; }
}

/* Tablet */
@media (max-width: 900px) {
  .landing-page .features--premium { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  .landing-page .hero { padding: 120px 24px 80px; }
  .landing-page .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .landing-page .hero > p { font-size: 18px; margin-bottom: 32px; }
  .landing-page .hero-cta { flex-direction: column; gap: 12px; width: 100%; }
  .landing-page .btn-hero, .landing-page .btn-explore { width: 100%; text-align: center; padding: 16px 24px; font-size: 16px; }
  .landing-page .hero-gift-credits { font-size: 14px; padding: 8px 16px; text-align: center; }
  .landing-page .hero-gift-pitch { font-size: 14px; }

  .landing-page .section { padding: 80px 24px; }
  .landing-page .section + .section { margin-top: 10px; }
  .landing-page .section-label { font-size: 18px; padding: 8px 18px; }
  .landing-page .section h2 { font-size: 30px; }
  .landing-page .section > p { font-size: 18px; }

  .landing-page .step-content h3 { font-size: 20px; }
  .landing-page .step-content p { font-size: 16px; }
  .landing-page .step-number { min-width: 48px; height: 48px; font-size: 18px; }
  .landing-page .step { gap: 18px; }
  .landing-page .steps::before { left: 24px; }

  .landing-page .features { grid-template-columns: 1fr; gap: 16px; }
  .landing-page .feature-card { padding: 24px; }
  .landing-page .feature-card h3 { font-size: 18px; }
  .landing-page .feature-card p { font-size: 15px; }

  .landing-page .stats-grid { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .landing-page .stat-number { font-size: 40px; }

  .landing-page .cta-final { padding: 80px 24px; }
  .landing-page .cta-final h2 { font-size: 30px; }
  .landing-page .cta-final p { font-size: 18px; }

  .landing-page .cta-assistant { flex-direction: column; align-items: center; text-align: center; }
  .landing-page .cta-bubble { border-radius: 18px; }
  .landing-page .cta-bubble::before { display: none; }

  .landing-page .landing-header { padding: 14px 20px; }
  .landing-page .logo { font-size: 18px; }
  .landing-page .header-actions { gap: 8px; }
  .landing-page .btn-ghost, .landing-page .btn-primary { padding: 8px 14px; font-size: 13px; }

  .landing-page .scroll-hint { font-size: 12px; bottom: 24px; }
}

/* ── ValerIA Showcase Section ── */
.landing-page .valeria-showcase {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.landing-page .valeria-showcase-card {
  width: 200px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 20px 16px;
  text-align: center; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.landing-page .valeria-showcase-card:hover {
  border-color: rgba(124,77,255,0.4);
  background: rgba(124,77,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124,77,255,0.15);
}
.landing-page .valeria-showcase-gif {
  width: 140px; height: 140px; border-radius: 14px;
  object-fit: cover; margin: 0 auto 12px; display: block;
  border: 2px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.landing-page .valeria-showcase-card:hover .valeria-showcase-gif {
  border-color: rgba(124,77,255,0.5);
}
.landing-page .valeria-showcase-name {
  font-size: 18px; font-weight: 700; color: #fff;
}
.landing-page .valeria-showcase-style {
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; margin-top: 2px;
}
@media (max-width: 640px) {
  .landing-page .valeria-showcase { gap: 12px; }
  .landing-page .valeria-showcase-card { width: 140px; padding: 14px 10px; }
  .landing-page .valeria-showcase-gif { width: 100px; height: 100px; }
  .landing-page .valeria-showcase-name { font-size: 14px; }
}
