/* ==========================================================================
   FANTASINC — LANDING.CSS  (Light Mode)
   Hero animado, Steps, Feed preview, Final CTA
   Paleta: Blanco #FFFFFF / Gris claro #F8F8FC / Rosa magenta #E91E8C
   ========================================================================== */

/* ─── Overrides de modo claro para la landing ──────────────────────────────── */
#fl-feed-page {
  background: #FFFFFF;
  color: #1A1A2E;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #FFFFFF 0%, #FDF0F7 40%, #F5F0FF 100%);
}

/* Fondo con orbes suaves */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, #E91E8C, #FF6B9D);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, #9C27B0, #7B1FA2);
  animation: orb-float 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 30%;
  background: radial-gradient(circle, #E91E8C, #FF6B6B);
  animation: orb-float 12s ease-in-out infinite 2s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.95); }
}

/* Grid overlay — muy sutil en blanco */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 30, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 30, 140, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Canvas de partículas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Contenido del hero */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-20);
  text-align: center;
}

/* ─── Badge ─────────────────────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(233, 30, 140, 0.08);
  border: 1px solid rgba(233, 30, 140, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: #C2185B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: #E91E8C;
  border-radius: 50%;
  animation: badge-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(233, 30, 140, 0.5);
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ─── Título ──────────────────────────────────────────────────────────────── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: var(--font-black);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0F0F1A;
  margin-bottom: var(--space-5);
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-word {
  background: linear-gradient(135deg, #E91E8C 0%, #9C27B0 50%, #FF6B6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* Subrayado decorativo bajo el título highlight */
.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E91E8C, #9C27B0);
  border-radius: var(--radius-full);
  opacity: 0.4;
}

/* ─── Subtítulo ──────────────────────────────────────────────────────────── */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #555570;
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-subtitle strong {
  color: #C2185B;
}

/* ─── CTA Buttons ────────────────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-cta-main {
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.3);
}

.hero-cta-main:hover {
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.45);
  transform: translateY(-3px) scale(1.03);
}

/* Botón ghost — estilo oscuro sobre fondo blanco */
.hero .btn-ghost {
  color: #333355;
  border-color: rgba(30, 30, 60, 0.2);
  background: rgba(30, 30, 60, 0.04);
}
.hero .btn-ghost:hover {
  color: #0F0F1A;
  border-color: rgba(233, 30, 140, 0.4);
  background: rgba(233, 30, 140, 0.06);
}

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: var(--font-black);
  color: #0F0F1A;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-money::before { content: '$'; font-size: 70%; vertical-align: super; }

.hero-stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8888AA;
  font-weight: var(--font-semibold);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(233, 30, 140, 0.3), transparent);
}

/* ─── Scroll indicator ───────────────────────────────────────────────────── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}

.hero-scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(233, 30, 140, 0.4);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 4px; height: 8px;
  background: #E91E8C;
  border-radius: var(--radius-full);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

.hero-scroll-text {
  font-size: var(--text-xs);
  color: #8888AA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CÓMO FUNCIONA
   ───────────────────────────────────────────────────────────────────────────── */
.how-it-works {
  padding: var(--space-24) 0;
  background: #F8F8FC;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: rgba(233, 30, 140, 0.08);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: #C2185B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0F0F1A;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  max-width: 480px;
  margin: 0 auto;
  color: #666688;
}

/* Grid de pasos */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid rgba(233, 30, 140, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 220px;
  transition: var(--transition-bounce);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.12);
  border-color: rgba(233, 30, 140, 0.3);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--font-black);
  color: #E91E8C;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: var(--space-4);
}

.step-icon-wrapper {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(156,39,176,0.08));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 30, 140, 0.15);
}

.step-icon { font-size: 2rem; }

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #0F0F1A;
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: #666688;
  margin-bottom: var(--space-5);
}

.step-desc strong { color: #C2185B; }

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.step-feature {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: rgba(233, 30, 140, 0.06);
  color: #C2185B;
  border-radius: var(--radius-full);
  border: 1px solid rgba(233, 30, 140, 0.15);
  font-weight: var(--font-medium);
}

/* Conector entre pasos */
.step-connector {
  padding: 0 var(--space-2);
  opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TABLÓN DE MISIONES (Feed section)
   ───────────────────────────────────────────────────────────────────────────── */
.feed-section {
  padding: var(--space-24) 0;
  background: #FFFFFF;
}

.feed-section .section-title { color: #0F0F1A; }

/* Tags bar — estilo claro */
.feed-tags-bar {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-8);
}
.feed-tags-bar::-webkit-scrollbar { display: none; }

.tag-chip {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(30, 30, 60, 0.15);
  background: #F8F8FC;
  color: #555570;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tag-chip:hover {
  border-color: rgba(233, 30, 140, 0.4);
  color: #C2185B;
  background: rgba(233, 30, 140, 0.05);
}

.tag-chip.is-active {
  background: #E91E8C;
  border-color: #E91E8C;
  color: #fff;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Feed grid */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* Mission cards — versión clara */
.feed-section .card-mission {
  background: #FFFFFF;
  border-color: rgba(30, 30, 60, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.feed-section .card-mission:hover {
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.12);
}

.mission-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.mission-card-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #FDF0F7, #F5F0FF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card-icon { font-size: 3rem; opacity: 0.4; }

.mission-card-media {
  position: relative;
  overflow: hidden;
}

.mission-card-tags {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.mission-card-body {
  padding: var(--space-4);
}

.mission-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: #0F0F1A;
  margin-bottom: var(--space-3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mission-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.mission-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.mission-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.mission-card-funding {
  margin-bottom: var(--space-3);
}

/* Feed skeleton */
.feed-skeleton-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(30,30,60,0.08);
}

/* Feed tabs — adaptados al modo claro */
.feed-section .tabs {
  background: #F0F0F8;
}

.feed-section .tab { color: #666688; }
.feed-section .tab.is-active {
  background: #FFFFFF;
  color: #E91E8C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CTA FINAL
   ───────────────────────────────────────────────────────────────────────────── */
.final-cta {
  padding: var(--space-24) 0;
  background: linear-gradient(145deg, #FDF0F7 0%, #F5F0FF 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.2;
}
.final-cta::before {
  width: 400px; height: 400px;
  background: #E91E8C;
  top: -100px; right: -100px;
}
.final-cta::after {
  width: 300px; height: 300px;
  background: #9C27B0;
  bottom: -80px; left: -60px;
}

.final-cta-card {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.06), transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0F0F1A;
  margin-bottom: var(--space-5);
}

.final-cta .text-muted {
  color: #666688;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO — contenido más arriba
   ───────────────────────────────────────────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-16);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECCIÓN ROLES — Director vs Creador
   ───────────────────────────────────────────────────────────────────────────── */
.roles-section {
  padding: var(--space-24) 0;
  background: #FFFFFF;
  position: relative;
}
.roles-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.15), transparent);
}

.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 860px;
  margin: 0 auto;
}

.role-hero-card {
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-2xl);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
  text-align: center;
}

.role-director {
  background: linear-gradient(145deg, #FDF0F7, #FFF5FB);
  border-color: rgba(233,30,140,0.2);
}
.role-creator {
  background: linear-gradient(145deg, #F5F0FF, #FAF5FF);
  border-color: rgba(156,39,176,0.2);
}

.role-hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(233,30,140,0.12);
}

.role-hero-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.role-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-black);
  color: #0F0F1A;
  margin-bottom: var(--space-3);
}

.role-hero-desc {
  color: #666688;
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.role-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}

.role-hero-list li {
  font-size: var(--text-sm);
  color: #444466;
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
}

.role-hero-list strong { color: #C2185B; }

/* ─────────────────────────────────────────────────────────────────────────────
   SECCIÓN CONFIANZA
   ───────────────────────────────────────────────────────────────────────────── */
.trust-section {
  padding: var(--space-24) 0;
  background: #F8F8FC;
  position: relative;
}
.trust-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.15), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.trust-card {
  background: #FFFFFF;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: var(--transition-bounce);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(233,30,140,0.1);
  border-color: rgba(233,30,140,0.25);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  display: block;
}

.trust-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: #0F0F1A;
  margin-bottom: var(--space-2);
}

.trust-desc {
  font-size: var(--text-sm);
  color: #666688;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECCIÓN IA GENERATOR
   ───────────────────────────────────────────────────────────────────────────── */
.ai-section {
  padding: var(--space-24) 0;
  background: #FFFFFF;
}

.ai-card {
  position: relative;
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, #0F0F1A 0%, #1A0A2E 50%, #0F0820 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 24px 80px rgba(233,30,140,0.2);
}

.ai-card-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(233,30,140,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(156,39,176,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-card-content {
  position: relative;
  z-index: 2;
  padding: var(--space-12) var(--space-10);
}

.ai-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(233,30,140,0.2);
  border: 1px solid rgba(233,30,140,0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: #FF6BAD;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.ai-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.ai-desc {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.ai-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.ai-feature {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-weight: var(--font-medium);
}

/* Visual decorativo del lado derecho */
.ai-card-visual {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
}
.ai-orb-1 { width: 250px; height: 250px; background: #E91E8C; top: 10%; right: 5%; animation: orb-float 6s ease-in-out infinite; }
.ai-orb-2 { width: 160px; height: 160px; background: #9C27B0; bottom: 10%; left: 10%; animation: orb-float 8s ease-in-out infinite reverse; }
.ai-orb-3 { width: 100px; height: 100px; background: #FF6B6B; top: 50%; left: 40%; animation: orb-float 10s ease-in-out infinite 1s; }

.ai-icon-float {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  animation: icon-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(233,30,140,0.5));
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIOS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
  padding: var(--space-24) 0;
  background: #F8F8FC;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.15), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: var(--transition-default);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(233,30,140,0.1);
  border-color: rgba(233,30,140,0.2);
}

.testimonial-stars {
  color: #F5A623;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: #444466;
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(233,30,140,0.1), rgba(156,39,176,0.1));
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(233,30,140,0.15);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: #0F0F1A;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER — Modo claro (ya está en feed.css, aquí por si acaso)
   ───────────────────────────────────────────────────────────────────────────── */
body:has(#fl-feed-page) .fl-nav-link { color: #333355; }
body:has(#fl-feed-page) .fl-nav-link:hover { color: #E91E8C; }

/* ─────────────────────────────────────────────────────────────────────────────
   FADE-UP ANIMATION
   ───────────────────────────────────────────────────────────────────────────── */
.animate-fade-up {
  animation: fade-slide-up 0.55s ease both;
  animation-delay: var(--delay, 0s);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE MOBILE — Todo en una sola pantalla
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero */
  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-6));
    padding-bottom: var(--space-12);
  }
  .hero-stats { gap: var(--space-4); }
  .hero-stat-divider { height: 20px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); }
  .step-card { max-width: 100%; }

  /* Roles */
  .roles-grid { grid-template-columns: 1fr; }
  .role-hero-card { padding: var(--space-8) var(--space-5); }

  /* Confianza */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }

  /* IA */
  .ai-card {
    grid-template-columns: 1fr;
  }
  .ai-card-visual { display: none; }
  .ai-card-content { padding: var(--space-8) var(--space-5); }

  /* Testimonios */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Feed */
  .feed-grid { grid-template-columns: 1fr; }
  .feed-section .tabs { overflow-x: auto; }

  /* Header logo */
  .fl-logo-img { height: 40px; }
}

@media (max-width: 480px) {
  /* Extra small — trust en 1 columna */
  .trust-grid { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  /* Desktop */
  .steps-grid { flex-wrap: nowrap; }
  .feed-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
