/* ==========================================================================
   COMPONENTES (Botones, Tarjetas, Glassmorphism 3D)
   ========================================================================== */

/* 1. BOTONES Y BADGES */
.btn-premium { font-weight: 600; color: var(--c-accent-blue); text-decoration: none; border-bottom: 2px solid var(--c-accent-glow); padding-bottom: 2px; position: relative; z-index: 50; }

.btn-large {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; font-size: 1rem; font-weight: 700;
  background: var(--c-text-dark); color: #fff; border-radius: 100px;
  text-decoration: none; transition: var(--t-smooth);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15), inset 0 2px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.02em; white-space: nowrap;
  position: relative; z-index: 50; overflow: hidden;
}
.btn-large::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
}
@media (max-width: 1024px) and (prefers-reduced-motion: no-preference) { .btn-large::after { animation: buttonShine 4s infinite; } }
@keyframes buttonShine { 0%, 75% { left: -100%; } 100% { left: 200%; } }
@media (min-width: 768px) { .btn-large { padding: 1.25rem 2.75rem; font-size: 1.1rem; } }
.btn-large:hover { background: var(--c-accent-blue); transform: translateY(-4px); box-shadow: 0 15px 35px var(--c-accent-glow), inset 0 2px 0 rgba(255,255,255,0.2); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.5rem 1.2rem; background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.05); border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--c-text-dark);
  margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.pulse-dot { width: 8px; height: 8px; background: var(--c-accent-blue); border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,99,235,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.7); } 70% { box-shadow: 0 0 0 10px rgba(37,99,235,0); } 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } }

/* 2. HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero__grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 5rem; } }

.hero__content { max-width: 100%; padding-right: 1rem; }
.hero__title { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; word-wrap: break-word; }
.hero__title span {
  color: var(--c-accent-blue);
  background: linear-gradient(135deg, var(--c-accent-blue), #60A5FA);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; background-size: 200% auto; animation: gradientFlow 5s ease infinite;
}
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero__subtitle { font-size: clamp(0.95rem, 2vw, 1.25rem); color: var(--c-text-muted); margin-bottom: 2.5rem; max-width: 95%; line-height: 1.5; font-weight: 400; }
.hero__actions { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }
.hero__trust { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; font-weight: 500; color: var(--c-text-muted); }
.avatars { display: flex; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: #CBD5E1; border: 2px solid #fff; margin-left: -10px; }
.avatar:first-child { margin-left: 0; background: #94A3B8; }
.avatar:nth-child(2) { background: #64748B; }

/* 3. EL "WOW FACTOR" - DASHBOARD 3D RESPONSIVE (Modificado para Alta Estética) */
.hero__art { position: relative; width: 100%; display: flex; justify-content: center; margin-top: 2rem; perspective: 1500px; animation: floatMobile 6s ease-in-out infinite; }
@keyframes floatMobile { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (min-width: 1024px) { .hero__art { margin-top: 0; perspective: 2000px; display: block; height: 500px; animation: none; } }

.glass-dashboard {
  width: 100%; max-width: 480px;
  background: var(--glass-bg); 
  backdrop-filter: blur(60px); -webkit-backdrop-filter: blur(60px); /* Blur aumentado */
  border: 1px solid var(--glass-border); 
  border-top: 1px solid var(--glass-border-highlight);
  border-left: 1px solid var(--glass-border-highlight);
  border-radius: 32px;
  box-shadow: var(--glass-shadow);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  .glass-dashboard {
    position: absolute; top: 5%; right: 0; width: 105%; max-width: none; height: 90%;
    transform: rotateY(-15deg) rotateX(5deg) scale(0.95);
    transform-style: preserve-3d;
  }
  .hero__art:hover .glass-dashboard { transform: rotateY(-5deg) rotateX(2deg) scale(1); }
}

.dash-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .dash-header { padding: 1.5rem 2rem; } }
.window-controls { display: flex; gap: 8px; }
.window-controls span { width: 12px; height: 12px; border-radius: 50%; background: #E2E8F0; }
.window-controls span:nth-child(1) { background: #FF5F56; }
.window-controls span:nth-child(2) { background: #FFBD2E; }
.window-controls span:nth-child(3) { background: #27C93F; }
.dash-title { font-family: monospace; font-size: 0.75rem; color: #94A3B8; font-weight: 600; letter-spacing: 0.05em; }
@media (min-width: 768px) { .dash-title { font-size: 0.8rem; } }

.dash-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
@media (min-width: 768px) { .dash-body { padding: 3rem; gap: 2rem; } }

.dash-metric-card { background: #fff; padding: 1.25rem; border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: inline-flex; align-items: center; gap: 1rem; width: 100%; border: 1px solid rgba(0,0,0,0.02); }
@media (min-width: 768px) { .dash-metric-card { width: max-content; padding: 1.5rem; gap: 1.25rem; } }
.metric-icon { width: 44px; height: 44px; background: #EFF6FF; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .metric-icon { width: 50px; height: 50px; } }
.metric-data { display: flex; flex-direction: column; }
.metric-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); font-weight: 700; font-family: var(--font-display); }
@media (min-width: 768px) { .metric-label { font-size: 0.75rem; } }
.metric-value { font-size: 1.4rem; font-weight: 800; color: var(--c-text-dark); font-family: var(--font-display); }
@media (min-width: 768px) { .metric-value { font-size: 1.8rem; } }

.dash-notification { background: #fff; padding: 1.25rem; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.03); display: flex; align-items: center; gap: 1rem; width: 100%; }
@media (min-width: 768px) { .dash-notification { width: max-content; align-self: flex-end; padding: 1.25rem 1.75rem; border-radius: 100px; gap: 1.25rem; } }
.notif-icon { font-size: 1.4rem; }
.notif-text { display: flex; flex-direction: column; }
.notif-text strong { font-size: 0.85rem; color: var(--c-text-dark); font-family: var(--font-display); font-weight: 600; }
@media (min-width: 768px) { .notif-text strong { font-size: 0.95rem; } }
.notif-text span { font-size: 0.8rem; color: var(--c-text-muted); }
@media (min-width: 768px) { .notif-text span { font-size: 0.85rem; } }

.dash-chart { flex: 1; background: #fff; border-radius: 20px; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.02); display: flex; flex-direction: column; justify-content: space-between; }
@media (min-width: 768px) { .dash-chart { padding: 2rem; } }
.chart-info { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 1rem; font-family: var(--font-display); }
@media (min-width: 768px) { .chart-info { font-size: 0.9rem; margin-bottom: 1.25rem; } }
.chart-status { color: #10B981; background: #D1FAE5; padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.7rem; }
@media (min-width: 768px) { .chart-status { font-size: 0.75rem; } }
.sparkline { width: 100%; height: 50px; overflow: visible; }
@media (min-width: 768px) { .sparkline { height: 60px; } }

/* Animaciones flotantes para los elementos del dashboard */
.floating-1 { animation: floatSmall 6s ease-in-out infinite; }
.floating-2 { animation: floatSmall 5s ease-in-out infinite reverse; }
@keyframes floatSmall { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

/* 4. PSICOLOGÍA Y SECCIONES */
.psychology-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .psychology-grid { grid-template-columns: 1fr 1fr; } }
.psyc-text h2 { font-size: clamp(2rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; line-height: 1.2; }
.psyc-text h2 span { color: var(--c-accent-blue); }
.psyc-text p { font-size: 1.1rem; color: var(--c-text-muted); margin-bottom: 1rem; }
.psyc-stats { display: flex; flex-direction: column; gap: 2rem; }
.stat-box { border-left: 4px solid var(--c-accent-blue); padding-left: 1.5rem; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 0 16px 16px 0; }
@media (hover: hover) and (pointer: fine) { .stat-box:hover { transform: translateX(10px); background: rgba(2,132,199,0.03); box-shadow: 20px 0 40px rgba(2,132,199,0.05); padding: 1rem 1.5rem; border-color: var(--c-text-dark); } }
.stat-box h3 { font-size: 2.5rem; color: var(--c-text-dark); margin-bottom: 0.5rem; }
.stat-box p { font-size: 1rem; color: var(--c-text-muted); }

/* 5. TARJETAS DE SERVICIOS */
.section-header { margin-bottom: 4rem; }
.pre-title { font-size: 0.8rem; font-weight: 700; color: var(--c-accent-blue); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; }

.grid-3 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative; background: #fff; border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.04);
  padding: 3rem 2rem; overflow: hidden; transition: var(--t-smooth); z-index: 50;
}
.glow-effect {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--c-accent-glow), transparent 70%);
  opacity: 0; transition: opacity 0.5s ease; z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 60px rgba(2, 132, 199, 0.12), 0 0 40px rgba(2, 132, 199, 0.05); border-color: var(--c-accent-blue); }
  .service-card:hover .glow-effect { opacity: 1; transform: scale(1.2); }
  .service-card:hover .card-icon { transform: scale(1.1); }
}

.card-icon { 
  width: 56px; height: 56px; background: #EFF6FF; border-radius: 16px; 
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; 
  transition: transform 0.4s; position: relative;
}
.card-icon::before {
  content: ''; position: absolute; width: 100%; height: 100%;
  background: var(--c-accent-blue); border-radius: 16px;
  filter: blur(12px); opacity: 0; z-index: -1;
}
@media (max-width: 1024px) {
  .card-icon { animation: iconFloat 4s ease-in-out infinite; }
  .card-icon::before { animation: pulseGlow 2s infinite alternate; opacity: 0.15; }
  .grid-3 .service-card:nth-child(2) .card-icon { animation-delay: 1.2s; }
  .grid-3 .service-card:nth-child(2) .card-icon::before { animation-delay: 1.2s; }
  .grid-3 .service-card:nth-child(3) .card-icon { animation-delay: 2.4s; }
  .grid-3 .service-card:nth-child(3) .card-icon::before { animation-delay: 2.4s; }
}
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes pulseGlow { 0% { opacity: 0.1; transform: scale(1); } 100% { opacity: 0.4; transform: scale(1.15); } }
.service-content h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.service-content p { color: var(--c-text-muted); font-size: 1rem; }

/* 6. CTA FINAL DE ALTO IMPACTO */
.cta-banner-premium {
  position: relative; background: var(--c-text-dark); color: #fff;
  padding: 6rem 2rem; border-radius: 32px; text-align: center; overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
@media (max-width: 1024px) and (prefers-reduced-motion: no-preference) { .cta-glow { animation: glowPulse 4s infinite alternate; } }
@keyframes glowPulse { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; } 100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; } }
.cta-banner-premium h2 { position: relative; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; z-index: 1; }
.cta-banner-premium p { position: relative; font-size: 1.15rem; color: #94A3B8; max-width: 600px; margin: 0 auto 2.5rem; z-index: 1; }
.cta-banner-premium .btn-large { background: #fff; color: var(--c-text-dark); }
.cta-banner-premium .btn-large:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

/* ANIMACIONES GLOBALES */
.reveal { opacity: 0; transform: translateY(40px) scale(0.95); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
.grid-3 .service-card:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .service-card:nth-child(3) { transition-delay: 0.2s; }

/* TACTILE FEEDBACK (Móviles / Touch) */
@media (max-width: 1024px) {
  body .service-card, body .stat-box, body .btn-large, body .wa-btn, body .wa-float, body .card-icon { transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
  body .service-card:active { transform: scale(0.96); box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15); border-color: var(--c-accent-blue); }
  body .stat-box:active { transform: scale(0.96); background: rgba(2,132,199,0.05); border-color: var(--c-accent-blue); }
  body .btn-large:active, body .wa-btn:active { transform: scale(0.92); opacity: 0.9; }
  body .wa-float:active { transform: scale(0.9); }
}

/* ==========================================================================
   MOBILE HERO & LAYOUT PERFECTION (AUDIT V2)
   ========================================================================== */
@media (max-width: 1023px) {
  /* Fix: Eliminar el espacio exagerado en TODOS los heroes en móviles */
  main .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
    align-items: flex-start;
  }
  
  /* Fix: Mantener la jerarquía de lectura correcta (Título primero, luego imagen) */
  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  /* Escalar un poco el dashboard en móviles para que encaje perfecto arriba */
  .hero__art {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    transform: scale(0.95);
  }
  
  /* Reducir márgenes del texto para móviles */
  .hero__title { margin-bottom: 1rem !important; }
  .hero__subtitle { margin-bottom: 1.5rem !important; }
}


/* ==========================================================================
   FAQ ACCORDION (Apple Style)
   ========================================================================== */
.faq-container { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px; overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover { border-color: var(--c-accent-blue); box-shadow: 0 10px 30px rgba(2, 132, 199, 0.08); transform: translateY(-2px); }
.faq-item summary {
  padding: 1.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem;
  color: var(--c-text-dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--c-accent-blue); font-size: 1.8rem; font-weight: 300; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] summary::after { transform: rotate(135deg); color: #ef4444; }
.faq-item .faq-content { padding: 0 1.5rem 1.5rem; color: var(--c-text-muted); line-height: 1.7; font-size: 1.05rem; }


/* ==========================================================================
   AUDITORIA ELITE: CORRECCIONES RESPONSIVAS
   ========================================================================== */
/* Fix: Espacio exagerado en el Hero de páginas de Nicho (Móvil) */
.hero.hero-niche { 
  min-height: auto; 
  padding-top: 8.5rem; 
  padding-bottom: 4rem; 
  align-items: flex-start;
}
@media (min-width: 1024px) { 
  .hero.hero-niche { min-height: 85vh; padding-top: 10rem; align-items: center; } 
}

/* Fix: Asegurar que el hero content no se aplaste en móviles muy pequeños */
.hero__content { z-index: 10; position: relative; }

/* Fix: Mejorar el espaciado del CTA Banner en móviles */
@media (max-width: 768px) {
  .cta-banner-premium { padding: 4rem 1.5rem; border-radius: 24px; }
  .cta-banner-premium h2 { font-size: 1.8rem; }
}

/* Fix: Ajuste de la imagen en la sección de contenido de alto valor */
.psyc-stats img { max-height: 500px; object-fit: cover; }


/* ==========================================================================
   HERO MOCKUP IMAGE (3D TILT)
   ========================================================================== */
.hero-mockup {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__art:hover .hero-mockup {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02);
}
@media (max-width: 1023px) {
  .hero-mockup { transform: none; box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin-bottom: 1rem; }
  .hero__art:hover .hero-mockup { transform: none; }
}


/* ==========================================================================
   PREMIUM SAAS FOOTER
   ========================================================================== */
.footer-premium { background: #0F172A; padding: 6rem 0 2rem; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; gap: 4rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; } }

.footer-brand-col h2 { font-size: 2.5rem; letter-spacing: -0.05em; color: #fff; margin-bottom: 1rem; }
.footer-brand-col h2 span { color: var(--c-accent-blue); }
.footer-brand-col p { color: #94A3B8; font-size: 1.05rem; line-height: 1.6; max-width: 400px; margin-bottom: 2rem; }
.status-indicator { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.8rem; color: #E2E8F0; font-weight: 500; border: 1px solid rgba(255,255,255,0.1); }
.status-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; box-shadow: 0 0 0 0 rgba(16,185,129,0.7); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); } 70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }

.footer-nav-col h3, .footer-contact-col h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links-list, .footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.footer-links-list a, .footer-contact-list a { color: #94A3B8; text-decoration: none; font-size: 0.95rem; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.footer-links-list a:hover, .footer-contact-list a:hover { color: var(--c-accent-blue); transform: translateX(5px); }

.footer-contact-list li { display: flex; align-items: center; gap: 12px; color: #94A3B8; }
.footer-contact-list svg { color: var(--c-accent-blue); }

.footer-bottom-bar { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #64748B; font-size: 0.85rem; }
@media (min-width: 768px) { .footer-bottom-bar { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #64748B; text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: #fff; }

/* ==========================================================================
   SEO & Content Article Styles (Refactor)
   ========================================================================== */

.seo-article {
  max-width: 900px;
  margin: 0 auto;
}

.seo-article-title {
  margin-bottom: 2rem;
  text-align: center;
}

.seo-paragraph {
  font-size: 1.15rem;
  color: var(--c-text-muted, #64748b);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.seo-subtitle {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--c-text-dark);
}

/* ==========================================================================
   Case Study Cards
   ========================================================================== */

.case-study-card {
  background: var(--c-white);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.case-badge-blue {
  background: #E0F2FE;
  color: #0284C7;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.case-badge-gray {
  background: #F1F5F9;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.case-title {
  font-size: 2rem;
  margin: 1.5rem 0 1rem;
  color: var(--c-text-dark);
}

.case-results-box {
  background: #F8FAFC;
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid #10B981;
}

.case-results-title {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #10B981;
  font-weight: 700;
}

.case-results-list {
  color: #475569;
  list-style: none;
  padding: 0;
}

.case-results-list li {
  margin-bottom: 0.5rem;
}
