/**
 * KITA LANDING PAGE STYLES
 * Modular, DRY, BEM-like naming
 * Uses design system tokens from variables.css
 */

/* =====================================================
   0. LANDING NAVBAR (Public Navigation)
   ===================================================== */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 0.625rem var(--container-padding);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.landing-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.landing-nav__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.landing-nav__logo img {
  height: 40px;
}

.landing-nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--text-primary);
  line-height: 1;
}

.landing-nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-nav__link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.landing-nav__link:hover {
  color: var(--text-primary);
}

.landing-nav__cta {
  margin-left: 1rem;
}

/* Mobile menu toggle */
.landing-nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile menu */
.landing-nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  padding: 0.75rem var(--container-padding);
}

.landing-nav__mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.landing-nav__mobile.active {
  display: block;
}

.landing-nav__mobile .landing-nav__links {
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.landing-nav__mobile .landing-nav__link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 1.125rem;
}

.landing-nav__mobile .landing-nav__link:hover {
  background: var(--neutral-50);
}

.landing-nav__mobile .landing-nav__cta {
  margin-left: 0;
  margin-top: 0.5rem;
}

.landing-nav__mobile .btn,
.landing-nav__mobile .google-signin-btn {
  width: 100%;
  justify-content: center;
}

/* Google Sign In Button (Official Style) */
.google-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: white;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: var(--radius-full);
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.google-signin-btn:hover {
  background: #f8f9fa;
  border-color: #d2d3d4;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.google-signin-btn:active {
  background: #f1f3f4;
}

.google-signin-btn img {
  width: 18px;
  height: 18px;
}

/* Google button variants */
.google-signin-btn--large {
  padding: 0.875rem 2rem;
  font-size: var(--text-base);
}

.google-signin-btn--centered {
  width: 100%;
  max-width: 400px;
}

.google-signin-btn--full {
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: var(--text-base);
}

.google-signin-btn.google-signin-btn--dark {
  background: #131314;
  color: white;
  border: 1px solid #5f6368;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.google-signin-btn.google-signin-btn--dark:hover {
  background: #2c2d30;
  color: white;
  border-color: #8e918f;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.3),
    0 2px 6px 2px rgba(0, 0, 0, 0.15);
}

.google-signin-btn.google-signin-btn--dark:active {
  background: #1e1f20;
  color: white;
  border-color: #5f6368;
  box-shadow:
    0 1px 2px 0 rgba(0, 0, 0, 0.3),
    0 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.google-signin-btn--large:hover {
  animation: glow 2s ease-in-out infinite;
}

/* Light variant for dark backgrounds */
.google-signin-btn.google-signin-btn--light {
  background: white;
  color: #3c4043;
  border: 1px solid #dadce0;
}

.google-signin-btn.google-signin-btn--light:hover {
  background: #f8f9fa;
  color: #3c4043;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Utility classes */
.icon-aligned {
  margin-top: 0.125rem;
}

.gif-overlap {
  margin-top: -3rem;
  margin-bottom: -3rem;
  max-height: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .gif-overlap {
    margin-left: auto;
    margin-right: 0;
  }
}

.gif-overlap--reduced {
  margin-top: -1.5rem;
  margin-bottom: -3rem;
}

.gif-overlap--minimal {
  margin-top: -0.5rem;
  margin-bottom: -3rem;
}

.gif-overlap--step3 {
  margin-top: -1rem;
  margin-bottom: -4rem;
}

/* =====================================================
   CONSENT MODAL
   ===================================================== */

.consent-modal {
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
}

.consent-modal__title {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: var(--font-black);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-1);
}

.consent-modal__subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.consent-modal__trial {
  background: var(--success-light);
  border-radius: var(--radius);
  padding: var(--space-3);
}

.consent-modal__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consent-modal__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.consent-modal__benefits li:last-child {
  margin-bottom: 0;
}

.consent-modal__legal {
  background: var(--neutral-50);
  border-radius: var(--radius);
  padding: var(--space-3);
}

.consent-modal__legal .form-check {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.consent-modal__legal .form-check-input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.consent-modal__legal .form-check-label {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-primary);
}

.consent-modal__legal a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: var(--font-semibold);
  transition: color var(--transition-fast);
}

.consent-modal__legal a:hover {
  color: var(--primary-hover);
}

.consent-modal__disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-3);
  margin-bottom: 0;
  line-height: 1.4;
}

.google-signin-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.consent-modal__close {
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.consent-modal__logo {
  height: 72px;
  display: block;
}

.consent-modal__brand {
  font-family: var(--font-display);
  font-weight: normal;
}

.consent-modal__trial-badge {
  font-size: var(--text-sm);
}

.consent-modal__legal-heading {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

/* =====================================================
   ANIMATIONS (Premium Package)
   ===================================================== */

/* Fade-up on scroll */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale-in on scroll */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Icon bounce */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Glow effect */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
}

/* Gradient shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll animation base class */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays */
.animate-on-scroll:nth-child(1) { animation-delay: 0ms; }
.animate-on-scroll:nth-child(2) { animation-delay: 100ms; }
.animate-on-scroll:nth-child(3) { animation-delay: 200ms; }
.animate-on-scroll:nth-child(4) { animation-delay: 300ms; }
.animate-on-scroll:nth-child(5) { animation-delay: 400ms; }
.animate-on-scroll:nth-child(6) { animation-delay: 500ms; }
.animate-on-scroll:nth-child(7) { animation-delay: 600ms; }

/* =====================================================
   1. SECTION BASE (DRY Foundation)
   ===================================================== */

.section {
  width: 100%;
  padding: 2rem 0;
}

/* Alternating backgrounds */
.section--light {
  background-color: var(--bg-section-light);
}

.section--white {
  background-color: var(--bg-section-white);
}

.section__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: var(--leading-tight);
}

.section__subtitle {
  font-family: var(--font-tight);
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.4;
}

/* Section divider - Línea con icono central */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  max-width: 200px;
  margin: 3rem auto;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
}

.section-divider::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(15, 23, 42, 0.12) 100%
  );
}

.section-divider::after {
  background: linear-gradient(90deg,
    rgba(15, 23, 42, 0.12) 0%,
    transparent 100%
  );
}

.section-divider i {
  color: var(--primary);
  opacity: 0.15;
  font-size: 6px;
}

/* =====================================================
   2. HERO SECTION (Simple Centered)
   ===================================================== */

.hero {
  padding: 5rem var(--container-padding) 1.5rem;
  text-align: center;
  background-color: var(--bg-section-white);
  position: relative;
  overflow: hidden;
}

/* Animated background - Floating orbs container */
#animated-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  contain: layout style paint;
  overflow: hidden;
}

/* Base orb styles */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Orb 1: Large green - Top left */
.orb-1 {
  width: 450px;
  height: 450px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  animation: float1 20s ease-in-out infinite;
  animation-delay: -5s;
}

/* Orb 2: Extra large - Bottom right */
.orb-2 {
  width: 500px;
  height: 500px;
  top: 60%;
  left: 70%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.35) 0%, transparent 70%);
  animation: float2 25s ease-in-out infinite;
  animation-delay: -12s;
}

/* Orb 3: Hidden (removed from center) */
.orb-3 {
  display: none;
}

/* Orb 4: Hidden */
.orb-4 {
  display: none;
}

/* Orb 5: Large - Bottom left */
.orb-5 {
  width: 420px;
  height: 420px;
  top: 75%;
  left: 20%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.28) 0%, transparent 70%);
  animation: float5 35s ease-in-out infinite;
  animation-delay: -22s;
}

/* Float animations - large paths with opacity fade */
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 1; }
  25% { transform: translate(600px, -200px); opacity: 1; }
  50% { transform: translate(900px, 400px); opacity: 0.7; }
  75% { transform: translate(-300px, 600px); opacity: 1; }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  33% { transform: translate(-700px, 300px) rotate(90deg); opacity: 0.8; }
  66% { transform: translate(-400px, -500px) rotate(180deg); opacity: 0.5; }
  85% { opacity: 1; }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 1; }
  25% { transform: translate(500px, 600px); opacity: 0.9; }
  50% { transform: translate(-400px, -300px); opacity: 0.4; }
  75% { transform: translate(-600px, 500px); opacity: 1; }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  20% { opacity: 1; }
  40% { transform: translate(-600px, 700px); opacity: 0.6; }
  80% { transform: translate(500px, -400px); opacity: 1; }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  25% { transform: translate(500px, -600px) rotate(90deg); opacity: 0.8; }
  50% { transform: translate(800px, 200px) rotate(180deg); opacity: 0.5; }
  75% { transform: translate(-500px, 400px) rotate(270deg); opacity: 1; }
}


/* Responsive orbs - Mobile */
@media (max-width: 767px) {
  .orb-1 {
    width: 250px;
    height: 250px;
  }

  .orb-2 {
    width: 280px;
    height: 280px;
  }


  .orb-5 {
    width: 230px;
    height: 230px;
  }

  /* Trayectorias en mobile con opacity */
  @keyframes float1 {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    15% { opacity: 1; }
    25% { transform: translate(250px, -100px); opacity: 1; }
    50% { transform: translate(400px, 200px); opacity: 0.7; }
    75% { transform: translate(-150px, 300px); opacity: 1; }
  }

  @keyframes float2 {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    33% { transform: translate(-300px, 150px); opacity: 0.8; }
    66% { transform: translate(-200px, -250px); opacity: 0.5; }
    85% { opacity: 1; }
  }

  @keyframes float5 {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    25% { transform: translate(200px, -300px); opacity: 0.8; }
    50% { transform: translate(350px, 100px); opacity: 0.5; }
    75% { transform: translate(-250px, 200px); opacity: 1; }
  }
}

/* Remove individual section backgrounds - animated bg shows through */
.section.section,
.section--white.section--white {
  background: transparent;
}

/* No background for alternating sections */
.section--light.section--light {
  background: transparent;
}

.hero.hero {
  background: transparent;
}

.hero__logo {
  height: 96px;
  width: auto;
  display: inline-block;
  opacity: 0;
  animation: logoEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero__tagline {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.1s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: var(--leading-tight);
  opacity: 0;
}

.hero__title.split {
  opacity: 1;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform-origin: bottom;
  animation: wordReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero__title .word:nth-child(1) { animation-delay: 0.2s; }
.hero__title .word:nth-child(2) { animation-delay: 0.3s; }
.hero__title .word:nth-child(3) { animation-delay: 0.4s; }
.hero__title .word:nth-child(4) { animation-delay: 0.5s; }
.hero__title .word:nth-child(5) { animation-delay: 0.6s; }
.hero__title .word:nth-child(6) { animation-delay: 0.7s; }

.hero__subtitle {
  font-family: var(--font-tight);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.3;
  animation: blurFocus 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes blurFocus {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: glowBurst 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

@keyframes glowBurst {
  from {
    opacity: 0;
    transform: scale(0.8);
    filter: drop-shadow(0 0 0 rgba(16, 185, 129, 0));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.6));
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
  }
}

.hero__trust {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__trust-item {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  max-width: 180px;
  opacity: 0;
  animation: fadeUp 0.4s ease forwards;
  line-height: 1.2;
}

.hero__trust-item i {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
}

.hero__trust-item:nth-child(1) { animation-delay: 1.5s; }
.hero__trust-item:nth-child(2) { animation-delay: 1.6s; }
.hero__trust-item:nth-child(3) { animation-delay: 1.7s; }

/* =====================================================
   3. STEPS SECTION
   ===================================================== */

.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.step-item__gif img {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
}

.step-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-black);
  margin-bottom: 0;
}

.step-item__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-black);
  color: var(--text-primary);
  line-height: var(--leading-tight);
}

.step-item__description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.step-item__note {
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  font-size: var(--text-xs);
}

.step-item__note--success {
  background: var(--success-light);
  color: var(--success-dark);
}

.step-item__note--info {
  background: var(--info-light);
  color: var(--info-dark);
}

/* =====================================================
   4. INFO ITEMS (Unified Features & Security)
   ===================================================== */

.info-item {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}

.info-item:hover {
  transform: translateX(4px);
}

.info-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--neutral-300);
  transition: transform 0.3s ease;
}

.info-item:hover .info-item__icon {
  animation: iconBounce 0.5s ease;
}

.info-item__content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.125rem;
  color: var(--text-primary);
}

.info-item__content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.4;
  margin: 0;
}

/* =====================================================
   6. PRICING SECTION
   ===================================================== */

/* New Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 900px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-tight);
}

.pricing-table th,
.pricing-table td {
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table thead th {
  vertical-align: middle;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.pricing-table__feature-header,
.pricing-table td:first-child {
  width: 25%;
  background: var(--neutral-100);
  text-align: left !important;
}

.pricing-table__plan {
  width: 25%;
  background: var(--neutral-100);
}

.pricing-table__plan--featured {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
  position: relative;
}

.pricing-table__plan--featured .pricing-table__period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-table__plan--custom {
  background: var(--neutral-100);
}

.pricing-table__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.pricing-table__plan-name {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: 0.25rem;
}

.pricing-table__price {
  font-size: var(--text-2xl);
  font-weight: var(--font-black);
  font-family: var(--font-body);
}

.pricing-table__price span {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
}

.pricing-table__price--custom {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
}

.pricing-table__period {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.pricing-table__feature-name {
  text-align: left;
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  background: var(--neutral-50);
}

/* Column backgrounds - All columns except PRO */
.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(4),
.pricing-table tfoot td:nth-child(1),
.pricing-table tfoot td:nth-child(2),
.pricing-table tfoot td:nth-child(4) {
  background: var(--neutral-50);
}

/* Column backgrounds - PRO (3rd column) */
.pricing-table__cell--featured {
  background: rgba(15, 23, 42, 0.06);
  font-weight: var(--font-semibold);
}

.pricing-table tbody tr:hover td:nth-child(1),
.pricing-table tbody tr:hover td:nth-child(2),
.pricing-table tbody tr:hover td:nth-child(4) {
  background: var(--neutral-100);
}

.pricing-table tbody tr:hover .pricing-table__cell--featured {
  background: rgba(15, 23, 42, 0.10);
}

.pricing-table tfoot td {
  padding: 0.75rem;
  border-bottom: none;
}

.pricing-table tfoot .pricing-table__cell--featured {
  background: rgba(15, 23, 42, 0.06);
}

/* Mobile: Horizontal scroll */
@media (max-width: 767px) {
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 600px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.625rem 0.75rem;
    font-size: var(--text-sm);
  }

  .pricing-table__plan-name {
    font-size: var(--text-base);
  }

  .pricing-table__price {
    font-size: var(--text-xl);
  }
}

/* Legacy pricing cards (keep for backwards compatibility) */
.pricing-card {
  max-width: 700px;
  margin: 0.75rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.pricing-card__trial {
  display: inline-block;
  background: var(--success-light);
  color: var(--success-dark);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
  font-size: var(--text-sm);
}

.pricing-card__price {
  font-family: var(--font-body);
  font-size: 5rem;
  font-weight: var(--font-black);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.pricing-card__period {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.pricing-card__features {
  text-align: left;
  margin: 0.75rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem 1.25rem;
}

.pricing-card__feature {
  display: flex;
  align-items: start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.pricing-card__feature-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.pricing-card__plan-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-card__badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.15);
}

.pricing-card--featured:hover {
  box-shadow: 0 16px 32px rgba(79, 70, 229, 0.2);
}

.pricing-disclaimer {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   6b. FEATURE EXAMPLE CARDS
   ===================================================== */

.feature-example {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  max-width: 320px;
  margin: 0 auto;
  font-family: var(--font-tight);
}

@media (min-width: 992px) {
  .feature-example {
    margin: 0;
  }
}

.feature-example__header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
  color: white;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.feature-example__header i {
  font-size: 1rem;
}

.feature-example__body {
  padding: 0.875rem 1rem;
}

.feature-example__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.feature-example__row:last-child {
  border-bottom: none;
}

.feature-example__label {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.feature-example__value {
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.feature-example__badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
}

.feature-example__badge--success {
  background: var(--success-light);
  color: var(--success-dark);
}

.feature-example__badge--warning {
  background: var(--warning-light);
  color: var(--warning-dark);
}

.feature-example__footer {
  background: var(--neutral-50);
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-xs);
}

/* Catalog variant */
.feature-example--catalog .feature-example__header {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.feature-example__product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.feature-example__product:last-child {
  border-bottom: none;
}

.feature-example__product-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.feature-example__product-info strong {
  color: var(--text-primary);
}

.feature-example__product-info small {
  color: var(--text-secondary);
  font-size: var(--text-xs);
}

.feature-example__product-info small.text-warning {
  color: #b45309 !important;
}

.feature-example__product-info small.text-danger {
  color: #b91c1c !important;
}

.feature-example__product-price {
  font-weight: var(--font-bold);
  color: var(--primary);
  font-size: var(--text-lg);
}

/* =====================================================
   7. COMPARISON TABLE (Matches Pricing Table Style)
   ===================================================== */

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 700px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-family: var(--font-tight);
}

.comparison-table th,
.comparison-table td {
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th {
  vertical-align: middle;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.comparison-table__feature-header,
.comparison-table td:first-child {
  width: 35%;
  background: var(--neutral-100);
  text-align: left !important;
}

.comparison-table__plan {
  width: 32.5%;
  background: var(--neutral-100);
}

.comparison-table__plan--featured {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
}

.comparison-table__logo {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.comparison-table__feature-name {
  text-align: left;
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  background: var(--neutral-50);
}

/* Column 2 - Sin Kita */
.comparison-table tbody td:nth-child(2) {
  background: var(--neutral-50);
}

/* Column 3 - Con Kita (featured) */
.comparison-table__cell--featured {
  background: rgba(15, 23, 42, 0.06);
  font-weight: var(--font-semibold);
}

.comparison-table tbody tr:hover td:nth-child(1),
.comparison-table tbody tr:hover td:nth-child(2) {
  background: var(--neutral-100);
}

.comparison-table tbody tr:hover .comparison-table__cell--featured {
  background: rgba(15, 23, 42, 0.10);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Legacy classes - keep for backwards compatibility */
.comparison-table__label-icon {
  color: var(--text-tertiary);
  display: inline;
  margin-right: 0.5rem;
}

.comparison-table .highlight {
  display: inline-block;
  background: var(--success);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: var(--font-semibold);
  font-size: var(--text-xs);
  margin-top: 0.25rem;
}

.comparison-table__highlight-number {
  font-size: 2rem;
  font-weight: var(--font-black);
  margin: 0.5rem 0;
  display: block;
  background: linear-gradient(
    90deg,
    var(--success) 0%,
    var(--info) 50%,
    var(--success) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.pricing-card__disclaimer {
  margin-top: 0.75rem;
  color: var(--text-tertiary);
  font-size: var(--text-xs);
}

.footer-logo {
  height: 48px;
}

.footer-price-box {
  background: rgba(255, 255, 255, 0.1);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   8. FAQ TABS SECTION (DRY)
   ===================================================== */

.faq-section {
  max-width: 900px;
  margin: 0.75rem auto 0;
}

/* Tab navigation */
.faq-tabs {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.faq-tab:hover {
  background: var(--neutral-50);
}

.faq-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Tab content panels */
.faq-panel {
  display: none;
}

.faq-panel.active {
  display: block;
  animation: fadeIn var(--transition-base);
}

/* FAQ Grid - Single column for clarity */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 0.625rem 1rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
  color: var(--text-primary);
}

.faq-item__question:hover {
  background-color: var(--neutral-50);
}

.faq-item__answer {
  padding: 0.375rem 1rem 0.625rem;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  display: none;
  line-height: 1.5;
}

.faq-item__answer.active {
  display: block;
}

.faq-item__answer p {
  margin-bottom: 0.375rem;
}

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

.faq-item__icon {
  transition: transform var(--transition-fast);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   9. FOOTER REDESIGNED
   ===================================================== */

.landing-footer {
  background-color: var(--primary);
  color: white;
  padding: 1.75rem 0 1.25rem;
  border-top: 4px solid var(--success);
}

.landing-footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.landing-footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: white;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: white;
  font-weight: var(--font-normal);
  line-height: 1;
}

.footer-heading {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: var(--font-bold);
}

.footer-price {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: white;
  margin-bottom: 0.25rem;
}

.footer-price-detail {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-small {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-badge {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-link:hover {
  color: white;
}

.footer-link i {
  font-size: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.125rem;
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

/* =====================================================
   10. RESPONSIVE (Mobile First)
   ===================================================== */

@media (max-width: 767px) {
  /* Landing navbar mobile - keep fixed */
  .landing-nav {
    position: fixed;
    padding: 0.375rem var(--container-padding);
  }

  .landing-nav__container > .landing-nav__links {
    display: none;
  }

  .landing-nav__toggle {
    display: block;
  }

  .landing-nav__logo-text {
    font-size: var(--text-xl);
  }

  .landing-nav__logo img {
    height: 36px;
  }

  /* Global spacing */
  .section {
    padding: 2.5rem 0;
  }

  /* Hero */
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero__logo {
    height: 72px;
  }

  .hero__title {
    font-size: var(--hero-title-size-mobile);
  }

  .section__title {
    font-size: 1.75rem;
  }

  /* Hero CTA mobile - full width */
  .hero .d-flex {
    width: 100%;
  }

  .hero .google-signin-btn.google-signin-btn {
    width: 100%;
    font-size: var(--text-sm);
    padding: 0.75rem 1.5rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  /* Browser frame mobile */
  .browser-frame {
    transform: rotateY(-4deg) rotateX(2deg);
    box-shadow: 0 15px 30px -8px rgba(15, 23, 42, 0.2);
  }

  .browser-frame:hover {
    transform: rotateY(-4deg) rotateX(2deg);
  }

  .hero-decoration--gradient {
    display: none;
  }

  /* FAQ tabs responsive */
  .faq-tab {
    padding: 0.5rem 0.875rem;
    font-size: var(--text-xs);
  }

  /* Pricing card mobile */
  .pricing-card {
    padding: 1rem;
  }

  .pricing-card__price {
    font-size: 3.5rem;
  }

  .pricing-card__features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .pricing-card__header {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Comparison table mobile */
  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 0.5rem;
    font-size: var(--text-sm);
  }

  .comparison-table .icon {
    font-size: 1.25rem;
  }

  .comparison-table td.col-positive div.comparison-icon {
    font-size: 1.5rem;
  }
}

/* =====================================================
   VERTICAL LANDING CARDS
   ===================================================== */

.vertical-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  border: 1px solid var(--border-light);
}

.vertical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  color: inherit;
}

.vertical-card--coming-soon {
  opacity: 0.7;
  cursor: default;
  position: relative;
}

.vertical-card--coming-soon:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.vertical-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  color: #059669;
  font-size: 1.5rem;
}

.vertical-card__content {
  flex: 1;
}

.vertical-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.vertical-card__text {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.4;
}

.vertical-card__arrow {
  flex-shrink: 0;
  color: #059669;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.vertical-card:hover .vertical-card__arrow {
  transform: translateX(4px);
}

.vertical-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .vertical-card {
    padding: 1rem;
  }

  .vertical-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}


/* =====================================================
   UTILITY CLASSES FOR LANDING PAGES
   ===================================================== */

/* Text opacity variants */
.text-subtle {
  opacity: 0.8;
}

.text-subtle-light {
  opacity: 0.85;
}

.text-subtle-lighter {
  opacity: 0.9;
}

/* Inherit color for links */
.link-inherit {
  color: inherit;
}

.link-inherit:hover {
  color: inherit;
  opacity: 0.8;
}

/* Hero disclaimer (pricing note under CTA) */
.hero__disclaimer {
  max-width: 880px;
  opacity: 0.9;
}

/* Footer inline links (bottom bar) */
.footer-link-inline {
  color: inherit;
  text-decoration: none;
  margin-right: 12px;
}

.footer-link-inline:hover {
  opacity: 0.8;
}

/* Button that looks like a link (reset styles) */
.btn-link-reset {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.btn-link-reset:hover {
  opacity: 0.8;
}

/* CTA section contact link */
.cta-contact-link {
  color: inherit;
}

.cta-contact-link:hover {
  opacity: 0.8;
}
