:root {
  --primary-color: #e53e3e;
  --primary-light: #feb2b2;
  --secondary-color: #1a202c;
  --accent-color: #f7fafc;
  --accent-blue: #4299e1;
  --accent-green: #38a169;
  --accent-purple: #805ad5;
  --accent-yellow: #ecc94b;
  --text-color: #2d3748;
  --text-light: #718096;
  --background-color: #ffffff;
  --border-color: #e2e8f0;
  --dark-bg: #1a212c;
  --dark-card: #2d3748;
  --dark-border: #4a5568;
  --gradient-dark: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  --gradient-primary: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  --gradient-blue: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  --font-header:
    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, Arial, sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, Arial, sans-serif;
}

/* Animaciones */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(229, 62, 62, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(229, 62, 62, 0.5);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #e2e8f0;
  background: linear-gradient(180deg, #0f1318 0%, #1a212c 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-header);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

a {
  text-decoration: none;
  color: #ff6b6b;
  transition: color 0.3s ease;
}

a:hover {
  color: #c53030;
}

.cta-button {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 20px rgba(229, 62, 62, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button:hover {
  background: linear-gradient(135deg, #c53030 0%, #9b2c2c 50%, #822727 100%);
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(229, 62, 62, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-header {
  background: linear-gradient(
    180deg,
    rgba(26, 32, 44, 0.98) 0%,
    rgba(45, 55, 72, 0.95) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo {
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

/* Menú móvil cuando está activo */
@media (max-width: 767px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    background: #0f1318 !important;
    padding: 1.5rem 2rem;
    gap: 0;
    border-bottom: 2px solid #e53e3e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
  }

  .nav-links.active li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-links.active li:last-child {
    border-bottom: none;
  }

  .nav-links.active a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #ffffff !important;
    text-shadow: none;
  }

  .nav-links.active a:hover {
    color: #ff6b6b !important;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e53e3e, #ff6b6b);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-register-mobile {
  display: none;
}

@media (max-width: 767px) {
  .nav-register-mobile {
    display: block;
  }

  .nav-register-mobile a {
    color: #ff6b6b;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(229, 62, 62, 0.3);
  }
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-benefits li:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-benefits li::before {
  content: "✓";
  color: #48bb78;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(72, 187, 120, 0.5);
}

@media (max-width: 991px) {
  .nav-actions {
    gap: 0.75rem;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mobile-menu-button:hover {
  transform: scale(1.1);
}

.mobile-menu-button svg {
  width: 24px;
  height: 24px;
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Hero wrapper para fondo full-width */
.hero-wrapper {
  background: linear-gradient(135deg, #0f1318 0%, #1a212c 50%, #232d3d 100%);
  position: relative;
  overflow: hidden;
}

.hero-section {
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 6.5rem 2.5rem 8rem;
  min-height: 90vh;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(229, 62, 62, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(66, 153, 225, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

@media (min-width: 992px) {
  .hero-section {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    padding: 7rem 2.75rem 6.5rem;
    gap: 4rem;
  }
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .hero-content {
    margin: 0;
    padding-right: 0.5rem;
  }
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-content .accent {
  color: var(--primary-color);
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.5rem 0 2rem 0;
  line-height: 1.6;
}

/* Hero Benefits List Styling */
.hero-content .hero-benefits {
  text-align: left;
  font-size: 1.1rem;
  line-height: 2.2;
}

.hero-content .hero-benefits strong {
  color: #9ae6b4;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-content .hero-benefits {
    font-size: 1rem;
    line-height: 2;
  }
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  .btn-secondary {
    margin-left: 0.25rem;
  }
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  color: #e2e8f0;
}

.hero-stats .stat-item {
  text-align: center;
}
.hero-stats .stat-item strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}
.hero-stats .stat-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 992px) {
  .hero-stats .stat-item {
    text-align: left;
  }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(229, 62, 62, 0.2) 0%,
    rgba(229, 62, 62, 0.1) 100%
  );
  color: #ff6b6b;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(229, 62, 62, 0.4);
  box-shadow: 0 4px 20px rgba(229, 62, 62, 0.2);
  animation: glow 3s ease-in-out infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #ff6b6b;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  box-shadow: 0 0 10px #ff6b6b;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WhatsApp support badge */
.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0.75rem 0 1rem;
}

.support-badge svg {
  width: 16px;
  height: 16px;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1100;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

@media (max-width: 480px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* App download card in hero section */
.app-hero-background {
  width: 100%;
  /* max-width: 500px;
  background-size: contain;
  border-radius: 20px;
  padding: 3rem 2rem; */
  display: block;
  min-height: 400px;
  position: relative;
}

.app-download-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hero-phone-image {
  max-width: 750px;
  height: auto;
  transform: perspective(1500px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.3s ease;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  padding: 3px;
}

.hero-phone-image:hover {
  transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}

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

.hero-playstore-link {
  display: inline-block;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hero-playstore-link:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.9;
}

.hero-playstore-badge {
  height: 48px;
  width: auto;
}

@media (max-width: 768px) {
  .app-hero-background {
    min-height: 350px;
    padding: 2rem 1.5rem;
  }

  .hero-phone-image {
    max-width: 220px;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  }

  .hero-phone-image:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  }

  .hero-playstore-badge {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .app-hero-background {
    min-height: 300px;
    padding: 1.5rem 1rem;
  }

  .hero-phone-image {
    max-width: 290px;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  }

  .hero-phone-image:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  }

  .hero-playstore-badge {
    height: 55px;
  }
}

.mockup-header {
  height: 2.5rem;
  background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 100%);
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
}

.mockup-header::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow:
    14px 0 0 #fbbf24,
    28px 0 0 #34d399;
}

.mockup-content {
  display: flex;
  gap: 1rem;
  height: calc(100% - 3.5rem);
}

.mockup-sidebar {
  width: 30%;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e0 100%);
  border-radius: 6px;
}

.mockup-main {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-card {
  background: linear-gradient(135deg, #fecaca 0%, #f87171 100%);
  border-radius: 6px;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.mockup-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
}

.mockup-card.small {
  flex-grow: 0.5;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.social-proof-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #1a212c 0%, #2d3748 100%);
  border-bottom: none;
  position: relative;
  margin-top: 0;
}

.social-proof-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 33, 44, 0.5) 100%
  );
  pointer-events: none;
}

.social-proof-section p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.7;
}

.client-logos span {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   ESTILOS DE SECCIONES INDEPENDIENTES
   ==================================== */

/* Divider visual entre secciones */
.section-divider {
  height: 80px;
  background: transparent;
}

/* Sección: Problemas (features-section) */
.features-section {
  padding: 4rem 2rem 3rem;
  background: var(--dark-bg);
}

/* Sección: Funcionalidades */
.funcionalidades-section {
  padding: 3rem 2rem 3rem;
  background: var(--dark-bg);
}

/* Sección: Testimonios */
.testimonials-section {
  padding: 4rem 2rem 3rem;
  background: linear-gradient(180deg, #1a212c 0%, #232d3d 100%);
}

/* CTA dentro de secciones */
.section-cta {
  text-align: center;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cta p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: #fff;
}

/* Bigger, bolder section title for overview */
.features-section .section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.5px;
  color: #fff;
}

.section-header p {
  font-size: 1.1rem;
  color: #a0aec0;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto;
}

/* Funcionalidades grid: exactly 3 columns */
.funcionalidades-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

@media (max-width: 992px) {
  .funcionalidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .funcionalidades-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: reducir espaciado entre secciones */
@media (max-width: 768px) {
  .features-section,
  .funcionalidades-section,
  .testimonials-section,
  .screenshots-section,
  .demo-section,
  .faq-section {
    padding: 2.5rem 1.25rem 2rem;
  }

  .section-divider {
    height: 30px;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .features-grid {
    gap: 1.5rem;
  }
}

/* Testimonials carousel */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.testimonial-card {
  position: relative;
  background: var(--gradient-dark);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.testimonial-card.is-featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(229, 62, 62, 0.15);
}

.quote-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.testimonial-card .stars {
  color: var(--accent-yellow);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.testimonial-card .divider {
  margin: 1rem 0;
  border: none;
  border-top: 1px solid var(--dark-border);
}

.author-meta {
  display: grid;
  gap: 2px;
}

.author-name {
  font-weight: 800;
  color: #fff;
}

.author-role {
  color: #a0aec0;
  font-size: 0.95rem;
}

.author-company {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-item {
  background: var(--gradient-dark);
  padding: 2rem;
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.feature-item h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #a0aec0;
}

/* New card layout matching the reference */
.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.feature-icon-badge svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.feature-content h3 {
  margin: 0 0 0.5rem 0;
  color: #fff;
}
.feature-content p {
  margin: 0;
  color: #a0aec0;
}

.card-indicator {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e0;
}

@media (max-width: 768px) {
  .feature-icon-badge {
    width: 44px;
    height: 44px;
  }
  .feature-icon-badge svg {
    width: 20px;
    height: 20px;
  }

  /* Cards en móvil: layout vertical para evitar contenido aplastado */
  .feature-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
  }

  .feature-card .feature-icon-badge {
    margin: 0 auto;
  }

  .feature-card .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-card .feature-content p {
    font-size: 0.9rem;
  }
}

.how-it-works-section {
  padding: 6rem 2rem 7rem;
  background: linear-gradient(180deg, #1a212c 0%, #2d3748 50%, #1a212c 100%);
  position: relative;
  margin-top: 2rem;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(26, 33, 44, 0.9) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.how-it-works-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, #1a212c 100%);
  pointer-events: none;
}

.how-it-works-section .section-header h2 {
  color: #fff;
}

.how-it-works-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.step {
  text-align: center;
  max-width: 320px;
  position: relative;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.step:hover {
  background: linear-gradient(135deg, #374151 0%, #2d3748 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(229, 62, 62, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: rgba(229, 62, 62, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(229, 62, 62, 0.2);
}

.step:hover .step-number {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(229, 62, 62, 0.4);
}

.step h3 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-arrow {
  display: none;
}

@media (min-width: 768px) {
  .step-arrow {
    display: block;
    flex: 1 1 auto;
    min-width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--primary-color) 0%,
      rgba(229, 62, 62, 0.3) 100%
    );
    position: relative;
    align-self: center;
    margin: 0 1rem;
  }

  .step-arrow::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

.benefits-section {
  padding: 6rem 2rem 7rem;
  background: linear-gradient(180deg, #1a212c 0%, #2d3748 50%, #1a212c 100%);
  position: relative;
  margin-top: 2rem;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(26, 33, 44, 0.9) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.benefits-section .section-header h2 {
  color: #fff;
}

.benefits-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.benefit-item {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(229, 62, 62, 0.3);
  background: linear-gradient(135deg, #374151 0%, #2d3748 100%);
}

.benefit-item h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.benefit-item h4::before {
  content: "✓";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: var(--accent-green);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(56, 161, 105, 0.3);
}

.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.bottom-cta-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  border-radius: 24px;
  margin: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.bottom-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.bottom-cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

/* Ensure text inside the dark CTA section is readable */
.bottom-cta-section h2,
.bottom-cta-section p {
  color: #ffffff;
}

.main-footer-bottom {
  background: linear-gradient(180deg, #0f1318 0%, #1a212c 100%);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(229, 62, 62, 0.3);
  position: relative;
}

.main-footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e53e3e 50%,
    transparent 100%
  );
}

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

.footer-logo {
  font-family: var(--font-header);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e53e3e;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

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

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 1.5rem;
  }

  .navbar {
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero-section {
    padding: 4rem 1.5rem;
  }

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

  .bottom-cta-section {
    border-radius: 0;
    margin: 0;
  }
}

/* Signup Section */
.signup-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
}

.signup-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.signup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem 1.5rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(229, 62, 62, 0.6);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.form-field .helper {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Form validation states */
.form-field.invalid input,
.form-field.invalid select {
  border-color: #f56565;
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.12);
}

.form-field .error {
  display: none;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #c53030;
}

.form-field.invalid .error {
  display: block;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-legal {
  color: var(--secondary-color);
  font-size: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 8px 12px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-legal::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  position: relative;
}

.form-legal::after {
  content: "✓";
  position: relative;
  margin-left: -22px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-success {
  margin-top: 1rem;
  color: #2f855a;
  font-weight: 600;
}

/* Signup legals (below the form) */
.signup-legals {
  max-width: 900px;
  margin: 1rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--secondary-color);
  background: #ffffff;
  border: 1px solid var(--border-color);
}

.legal-pill::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
}

.legal-pill::after {
  content: "✓";
  margin-left: -20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Loading state for CTA button */
.cta-button[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
  filter: saturate(0.9);
}

.cta-button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem 3rem;
  background: var(--dark-bg);
}

.faq-section .section-header h2 {
  color: #fff;
}

.faq-section .section-header p {
  color: #a0aec0;
}

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

.faq-item {
  background: var(--gradient-dark);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(229, 62, 62, 0.15);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(229, 62, 62, 0.1);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--primary-color);
  color: #fff;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.25s ease;
}

.faq-item[open]::before {
  height: 100%;
}

.faq-item p {
  color: #a0aec0;
  margin-top: 1rem;
  line-height: 1.7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Demo Section Styles */
.demo-section {
  padding: 4rem 2rem 3rem;
  background: var(--dark-bg);
}

.demo-section .section-header h2 {
  color: #fff;
}

.demo-section .section-header p {
  color: #a0aec0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: flex-start;
  background: var(--gradient-dark);
  border: 1px solid var(--dark-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  background: rgba(229, 62, 62, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-color);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
  color: #fff;
}

.benefit-card h3 {
  grid-area: title;
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
}

.benefit-card p {
  grid-area: text;
  color: #a0aec0;
  line-height: 1.65;
  font-size: 0.9rem;
  margin: 0;
}

.video-demo-container {
  max-width: 1000px;
  margin: 5rem auto 0;
  display: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

.cta-section {
  max-width: 800px;
  margin: 5rem auto 3rem;
  text-align: center;
  padding: 4rem 2.5rem;
  background: var(--gradient-dark);
  border-radius: 1.5rem;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 60px rgba(229, 62, 62, 0.15);
}

.cta-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-section > p {
  color: #a0aec0;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-section strong {
  color: #fff;
}

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

.cta-section .btn-secondary {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-section .signup-legals {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .benefit-icon {
    grid-area: icon;
    width: 32px;
    height: 32px;
    background: linear-gradient(
      135deg,
      rgba(45, 55, 72, 0.06),
      rgba(45, 55, 72, 0.02)
    );
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .benefit-icon svg {
    width: 18px;
    height: 18px;
  }
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.hero-playstore-link img {
  width: 225px;
}

/* Screenshots Gallery Section */
.screenshots-section {
  background: var(--gradient-dark);
  padding: 4rem 2rem 3rem;
}

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

.screenshots-section .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.screenshots-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(229, 62, 62, 0.2);
  border-color: rgba(229, 62, 62, 0.4);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.05);
}

.screenshot-item .screenshot-label {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border-top: 1px solid var(--dark-border);
  position: relative;
}

.screenshot-item .screenshot-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e53e3e, transparent);
  border-radius: 0 0 4px 4px;
}

/* Color variants for feature cards to reduce red monotony */
.feature-card:nth-child(2) .feature-icon-badge {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2b6cb0 100%);
}

.feature-card:nth-child(3) .feature-icon-badge {
  background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
}

.benefit-card:nth-child(2) .benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(49, 130, 206, 0.12),
    rgba(49, 130, 206, 0.04)
  );
}

.benefit-card:nth-child(2) .benefit-icon svg {
  color: var(--accent-blue);
}

.benefit-card:nth-child(3) .benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(56, 161, 105, 0.12),
    rgba(56, 161, 105, 0.04)
  );
}

.benefit-card:nth-child(3) .benefit-icon svg {
  color: var(--accent-green);
}

.benefit-card:nth-child(5) .benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(128, 90, 213, 0.12),
    rgba(128, 90, 213, 0.04)
  );
}

.benefit-card:nth-child(5) .benefit-icon svg {
  color: var(--accent-purple);
}

.benefit-card:nth-child(6) .benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(49, 130, 206, 0.12),
    rgba(49, 130, 206, 0.04)
  );
}

.benefit-card:nth-child(6) .benefit-icon svg {
  color: var(--accent-blue);
}

/* Funcionalidades grid color variants */
.funcionalidades-grid .feature-card:nth-child(2) .feature-icon-badge {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #2b6cb0 100%);
}

.funcionalidades-grid .feature-card:nth-child(3) .feature-icon-badge {
  background: linear-gradient(135deg, var(--accent-green) 0%, #2f855a 100%);
}

.funcionalidades-grid .feature-card:nth-child(4) .feature-icon-badge {
  background: linear-gradient(135deg, var(--accent-purple) 0%, #6b46c1 100%);
}

.funcionalidades-grid .feature-card:nth-child(5) .feature-icon-badge {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.funcionalidades-grid .feature-card:nth-child(6) .feature-icon-badge {
  background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
}

@media (max-width: 768px) {
  .screenshots-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .screenshot-item {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Printer Card Styles */
.printer-card {
  max-width: 600px;
  margin: 1.5rem auto 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border: 2px solid #e53e3e;
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  align-items: center;
}

.printer-image {
  text-align: center;
}

.printer-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.printer-emoji {
  display: none;
  font-size: 5rem;
  justify-content: center;
  align-items: center;
  height: 150px;
  background: #1a202c;
  border-radius: 0.5rem;
}

.printer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.printer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.4);
}

@media (max-width: 640px) {
  .printer-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .printer-image {
    order: -1;
  }

  .printer-info ul {
    text-align: left;
  }

  .printer-info div[style*="flex"] {
    justify-content: center;
  }
}

.app-download-card {
  position: relative;
}

/* ==============================================
   PRODUCT PATHS SECTION - Two product offerings
   ============================================== */
.product-paths-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #1a212c 0%, #0f1318 100%);
}

.product-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.product-path-card {
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-path-primary {
  border-color: rgba(229, 62, 62, 0.4);
  background: linear-gradient(180deg, #2d3748 0%, rgba(229, 62, 62, 0.05) 100%);
}

.product-path-secondary {
  border-color: rgba(66, 153, 225, 0.3);
  background: linear-gradient(
    180deg,
    #2d3748 0%,
    rgba(66, 153, 225, 0.05) 100%
  );
}

.product-path-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-path-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-path-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-path-tagline {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.product-path-description {
  color: #cbd5e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-path-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.product-path-features li {
  color: #9ae6b4;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.product-path-secondary .product-path-features li {
  color: #90cdf4;
}

.product-path-persona {
  color: #a0aec0;
  font-size: 0.85rem;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-path-persona strong {
  color: #cbd5e0;
}

.product-path-card .cta-button,
.product-path-card .btn-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.product-paths-note {
  text-align: center;
  color: #a0aec0;
  font-size: 0.9rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-paths-note strong {
  color: #9ae6b4;
}

/* Section label for product context */
.section-label {
  display: inline-block;
  background: rgba(229, 62, 62, 0.15);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: #feb2b2;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Navigation dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 0.5rem;
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #e2e8f0;
  transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* ==============================================
   SUSCRIPCIONES PAGE SPECIFIC STYLES
   ============================================== */
.product-label {
  display: inline-block;
  background: rgba(66, 153, 225, 0.15);
  border: 1px solid rgba(66, 153, 225, 0.3);
  color: #90cdf4;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button-blue {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 50%, #2b6cb0 100%);
}

.cta-button-blue:hover {
  background: linear-gradient(135deg, #63b3ed 0%, #4299e1 50%, #3182ce 100%);
}

.suscripciones-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.subscription-demo-card {
  background: #2d3748;
  border: 1px solid rgba(66, 153, 225, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.demo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #4a5568;
}

.demo-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.demo-status.active {
  background: rgba(56, 161, 105, 0.2);
  color: #9ae6b4;
}

.demo-client {
  color: #a0aec0;
  font-size: 0.8rem;
}

.demo-items {
  margin-bottom: 1rem;
}

.demo-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: #e2e8f0;
  font-size: 0.9rem;
  border-bottom: 1px dashed #4a5568;
}

.demo-item:last-child {
  border-bottom: none;
}

.demo-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #4a5568;
  font-size: 0.8rem;
}

.demo-card-footer span:first-child {
  color: #a0aec0;
}

.demo-total {
  color: #90cdf4;
  font-weight: 700;
}

/* When to use / Comparison section */
.when-to-use-section {
  padding: 4rem 1.5rem;
  background: #0f1318;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.comparison-card {
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 1rem;
  padding: 2rem;
}

.comparison-card.highlighted {
  border-color: rgba(66, 153, 225, 0.5);
  background: linear-gradient(
    180deg,
    #2d3748 0%,
    rgba(66, 153, 225, 0.08) 100%
  );
}

.comparison-card h3 {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.comparison-card h3 strong {
  color: #fff;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.comparison-card ul li {
  color: #cbd5e0;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.comparison-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a0aec0;
}

.comparison-card.highlighted ul li::before {
  color: #90cdf4;
}

.comparison-card .btn-secondary,
.comparison-card .cta-button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Use cases section */
.use-cases-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, #1a212c 0%, #0f1318 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.use-case-card {
  background: #2d3748;
  border: 1px solid #4a5568;
  border-radius: 1rem;
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.use-case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 153, 225, 0.4);
}

.use-case-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.use-case-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.use-case-card p {
  color: #a0aec0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive for product paths */
@media (max-width: 768px) {
  .product-paths-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: auto;
  }

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

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .antes-despues-grid {
    grid-template-columns: 1fr !important;
  }

  .video-comparativa-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Hero micro-specialization label ─────────────────────────────────────── */
.hero-micro-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(104, 211, 145, 0.12);
  border: 1px solid rgba(104, 211, 145, 0.3);
  color: #9ae6b4;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-micro-label {
    font-size: 0.75rem;
  }
}
