/* ===== SOPORTLY REDESIGN V2 - PREMIUM DESIGN SYSTEM ===== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --color-primary: #0F172A;
  --color-primary-light: #1E293B;
  --color-accent: #10B981;
  --color-accent-dark: #059669;
  --color-secondary: #8B5CF6;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F8FAFC;
  --color-text-primary: #0F172A;
  --color-text-secondary: #64748B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-accent: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  --gradient-mesh: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== REUSABLE UTILITY CLASSES ===== */

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s var(--transition-smooth);
}

/* Hover Lift Effect */
.hover-lift {
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

/* Secondary Button */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-logo-text {
  color: var(--color-primary);
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: white;
}

.navbar.scrolled .navbar-links a {
  color: var(--color-text-primary);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--color-accent);
}

.navbar-cta {
  background: var(--gradient-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--transition-smooth);
}

.navbar-cta:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--gradient-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #1E293B;
  border-radius: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  padding: 15px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: white;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TRUST INDICATORS ===== */
.trust-section {
  padding: 3rem 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: white;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 100px 80px;
  background: var(--color-bg-secondary);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ===== COEXISTENCIA SECTION ===== */
.coexistencia-section {
  padding: 120px 80px;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  position: relative;
  overflow: hidden;
}

.coexistencia-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.coexistencia-flow {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.coexistencia-flow::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 0;
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.flow-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  background: white;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-accent);
}

.flow-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.flow-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.flow-step p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.coexistencia-explanation {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.coexistencia-explanation p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 120px 80px;
  background: white;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  position: relative;
}

.feature-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-secondary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== DEMO SECTION ===== */
.demo-section {
  padding: 120px 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.demo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.demo-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.demo-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.chat-demo {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.chat-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeSlideIn 0.5s forwards;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.avatar-customer {
  background: var(--color-text-secondary);
}

.avatar-bot {
  background: var(--color-accent);
  padding: 4px;
}

.avatar-human {
  background: var(--color-secondary);
  font-size: 1rem;
}

.message-content {
  flex: 1;
}

.message-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.message-bubble {
  padding: 1rem;
  border-radius: var(--border-radius);
  line-height: 1.6;
}

.bubble-customer {
  background: #DCF8C6;
  color: var(--color-primary);
}

.bubble-bot {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}

.bubble-human {
  background: white;
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
}

.bubble-system {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  color: #92400E;
  font-weight: 600;
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
}

.typing-indicator {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.5rem;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--color-text-secondary);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
}

.demo-actions {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== USE CASES SECTION ===== */
.use-cases-section {
  padding: 120px 80px;
  background: white;
}

.use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
}

.use-cases-grid {
  display: grid;
  gap: 2rem;
}

.use-case-card {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.use-case-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.use-case-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.use-case-content p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.use-case-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.use-case-link:hover {
  transform: translateX(5px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  padding: 120px 80px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  margin-top: 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.timeline-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.timeline-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.timeline-step p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 120px 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  filter: blur(100px);
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  color: white;
  font-weight: 700;
  border-radius: 30px;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.pricing-amount {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-price {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.pricing-note {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 1.25rem;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-cta:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pricing-footer {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #92400E;
  animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Pricing Comparison */
.pricing-comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.regular-price {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--border-radius);
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.price-crossed {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.launch-price {
  text-align: center;
}

.price-label-main {
  display: block;
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Spots Indicator */
.spots-indicator {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.spots-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #92400E;
  font-weight: 600;
  margin-bottom: 1rem;
  justify-content: center;
}

.spots-progress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spots-bar {
  width: 100%;
  height: 12px;
  background: rgba(146, 64, 14, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
  border-radius: 20px;
  transition: width 0.5s ease;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
  }
}

.spots-text {
  text-align: center;
  color: #92400E;
  font-size: 0.95rem;
}

.spots-text strong {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Price Guarantee */
.price-guarantee {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  border-radius: var(--border-radius);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.guarantee-text {
  flex: 1;
  color: #166534;
  line-height: 1.6;
  font-size: 0.95rem;
}

.guarantee-text strong {
  color: #14532D;
  font-weight: 700;
}

/* Pricing FAQ */
.pricing-faq {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.pricing-faq h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pricing-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
}

.faq-q strong {
  color: var(--color-primary);
  font-weight: 600;
}

.pricing-faq-item p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive adjustments for pricing FAQ */
@media (max-width: 768px) {
  .pricing-card {
    padding: 2rem 1.5rem;
    margin-bottom: 80px;
  }

  /* Comparación de precios compacta */
  .pricing-comparison {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .regular-price {
    padding: 0.5rem;
    flex: 0 0 auto;
  }

  .price-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .price-crossed {
    font-size: 1.1rem;
  }

  .launch-price {
    flex: 1;
    text-align: right;
  }

  .price-label-main {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  /* Arreglar precio cortado */
  .pricing-price {
    font-size: 2.25rem;
    line-height: 1;
    word-break: keep-all;
    white-space: nowrap;
  }

  .pricing-currency {
    font-size: 1rem;
  }

  .spots-indicator {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .spots-text {
    font-size: 0.9rem;
  }

  .price-guarantee {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.25rem;
    margin-top: 1.5rem;
  }

  .guarantee-icon {
    margin: 0 auto 0.75rem;
  }

  .pricing-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-faq {
    padding: 2rem 1.5rem;
  }

  /* Botón CTA Sticky en móvil */
  .pricing-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Ocultar características extras en móvil - mostrar solo las 4 más importantes */
  .pricing-features li:nth-child(n+5) {
    display: none;
  }
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
  padding: 120px 80px;
  background: white;
}

.coming-soon-container {
  max-width: 1200px;
  margin: 0 auto;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coming-soon-card {
  padding: 2.5rem;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--border-radius-lg);
  opacity: 0.6;
  text-align: center;
  transition: all 0.3s ease;
}

.coming-soon-card:hover {
  opacity: 0.8;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.coming-soon-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.coming-soon-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.coming-soon-subtitle {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.coming-soon-card p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 120px 80px;
  background: var(--color-bg-secondary);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 80px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-category:not(:first-child) {
  margin-top: 80px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 3px solid var(--color-accent);
  background: transparent;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(248, 250, 252, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: white;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final-section {
  padding: 120px 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
}

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

.cta-final-content {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.cta-final-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-final-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-primary);
  color: var(--color-text-secondary);
  padding: 4rem 80px 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-tagline {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer-column h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.3s var(--transition-smooth);
  animation: bounce-soft 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes bounce-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar-container,
  .hero-container,
  .trust-section,
  .stats-container,
  .section-container,
  .coexistencia-container,
  .features-container,
  .demo-container,
  .use-cases-container,
  .how-it-works-container,
  .pricing-container,
  .coming-soon-container,
  .faq-container,
  .cta-final-container,
  .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  .navbar-container,
  .hero-container,
  .trust-section,
  .stats-container,
  .coexistencia-container,
  .features-container,
  .demo-container,
  .use-cases-container,
  .how-it-works-container,
  .pricing-container,
  .coming-soon-container,
  .faq-container,
  .cta-final-container,
  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-cta {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .hero-section,
  .stats-section,
  .coexistencia-section,
  .features-section,
  .demo-section,
  .use-cases-section,
  .how-it-works-section,
  .pricing-section,
  .coming-soon-section,
  .faq-section,
  .cta-final-section {
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .coexistencia-flow {
    grid-template-columns: 1fr;
  }

  .coexistencia-flow::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .faq-category {
    margin-bottom: 60px;
  }

  .faq-category:not(:first-child) {
    margin-top: 60px;
  }

  .faq-category-title {
    font-size: 1.35rem;
    margin-bottom: 24px;
    padding: 16px 0;
  }

  .faq-list {
    gap: 12px;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
