/**
 * TrackLocal Landing Page - Premium Stripe-style CSS
 * Mobile-first, accessible, performant
 * Updated: 2026
 */

/* ═══════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
  /* Primary palette */
  --tl-landing-primary: #635bff;
  --tl-landing-primary-light: #7a74ff;
  --tl-landing-primary-dark: #4f46e5;
  --tl-landing-accent: #00d4ff;
  --tl-landing-accent-green: #10b981;
  --tl-landing-accent-orange: #f59e0b;
  
  /* Backgrounds */
  --tl-landing-bg-dark: #0a0a0f;
  --tl-landing-bg-surface: #0f0f18;
  --tl-landing-bg-card: rgba(15, 15, 25, 0.8);
  --tl-landing-bg-elevated: rgba(25, 25, 40, 0.9);
  
  /* Text colors */
  --tl-landing-text-primary: #ffffff;
  --tl-landing-text-secondary: #a1a1aa;
  --tl-landing-text-muted: #71717a;
  
  /* Borders & effects */
  --tl-landing-border: rgba(255, 255, 255, 0.08);
  --tl-landing-border-hover: rgba(255, 255, 255, 0.15);
  --tl-landing-glow: rgba(99, 91, 255, 0.4);
  --tl-landing-glow-cyan: rgba(0, 212, 255, 0.3);
  
  /* Spacing */
  --tl-landing-section-py: clamp(4rem, 10vw, 8rem);
  --tl-landing-container-max: 1200px;
  --tl-landing-container-px: clamp(1rem, 4vw, 2rem);
  
  /* Transitions */
  --tl-landing-transition-fast: 0.15s ease;
  --tl-landing-transition: 0.3s ease;
  --tl-landing-transition-slow: 0.5s ease;
  --tl-landing-transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Radius */
  --tl-landing-radius-sm: 8px;
  --tl-landing-radius: 12px;
  --tl-landing-radius-lg: 20px;
  --tl-landing-radius-xl: 28px;
}

/* ═══════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════ */
.tl-landing {
  min-height: 100vh;
  background: var(--tl-landing-bg-dark);
  color: var(--tl-landing-text-primary);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* Typography improvements for body text - refined selectors */
.tl-landing-hero__description,
.tl-landing-features__description,
.tl-landing-feature-card__text,
.tl-landing-pricing__description,
.tl-landing-security__description,
.tl-landing-faq__description,
.tl-landing-cta__description {
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* List items in feature cards */
.tl-landing-feature-card li,
.tl-landing-price-card__features li {
  font-weight: 400;
  line-height: 1.6;
}

.tl-landing p {
  color: var(--tl-landing-text-secondary);
}

.tl-landing *,
.tl-landing *::before,
.tl-landing *::after {
  box-sizing: border-box;
}

/* Background with subtle noise and gradient */
.tl-landing::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 91, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 212, 255, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(99, 91, 255, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Mesh/Grid pattern overlay */
.tl-landing::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.tl-landing > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════ */
.tl-landing-container {
  width: 100%;
  max-width: var(--tl-landing-container-max);
  margin: 0 auto;
  padding-left: var(--tl-landing-container-px);
  padding-right: var(--tl-landing-container-px);
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.tl-landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: 
    background var(--tl-landing-transition),
    backdrop-filter var(--tl-landing-transition),
    box-shadow var(--tl-landing-transition);
}

.tl-landing-nav.is-scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--tl-landing-border);
}

.tl-landing-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.tl-landing-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--tl-landing-text-primary);
  text-decoration: none;
  transition: opacity var(--tl-landing-transition-fast);
}

.tl-landing-logo:hover {
  opacity: 0.85;
  color: var(--tl-landing-text-primary);
}

.tl-landing-logo__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tl-landing-logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tl-landing-logo__icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* Nav links */
.tl-landing-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .tl-landing-nav__links {
    display: flex;
  }
}

.tl-landing-nav__link {
  color: var(--tl-landing-text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--tl-landing-radius-sm);
  transition: 
    color var(--tl-landing-transition-fast),
    background var(--tl-landing-transition-fast);
}

.tl-landing-nav__link:hover,
.tl-landing-nav__link:focus {
  color: var(--tl-landing-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.tl-landing-nav__link:focus-visible {
  outline: 2px solid var(--tl-landing-primary);
  outline-offset: 2px;
}

/* Nav actions */
.tl-landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile menu toggle */
.tl-landing-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-sm);
  color: var(--tl-landing-text-primary);
  cursor: pointer;
  transition: 
    background var(--tl-landing-transition-fast),
    border-color var(--tl-landing-transition-fast);
}

.tl-landing-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--tl-landing-border-hover);
}

@media (min-width: 992px) {
  .tl-landing-nav__toggle {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.tl-landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--tl-landing-radius);
  border: none;
  cursor: pointer;
  transition: 
    transform var(--tl-landing-transition-fast),
    box-shadow var(--tl-landing-transition),
    background var(--tl-landing-transition-fast);
  white-space: nowrap;
}

.tl-landing-btn:focus-visible {
  outline: 2px solid var(--tl-landing-primary);
  outline-offset: 2px;
}

/* Primary button with shine effect */
.tl-landing-btn--primary {
  background: linear-gradient(135deg, var(--tl-landing-primary), var(--tl-landing-primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.tl-landing-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.tl-landing-btn--primary:hover::before {
  left: 100%;
}

.tl-landing-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--tl-landing-glow);
  color: white;
}

.tl-landing-btn--primary:active {
  transform: translateY(0);
}

/* Outline button */
.tl-landing-btn--outline {
  background: transparent;
  border: 1px solid var(--tl-landing-border);
  color: var(--tl-landing-text-primary);
}

.tl-landing-btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--tl-landing-border-hover);
  color: var(--tl-landing-text-primary);
}

/* Large button variant */
.tl-landing-btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--tl-landing-radius-lg);
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.tl-landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: var(--tl-landing-section-py);
  position: relative;
  overflow: hidden;
}

/* Hero background glow */
.tl-landing-hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--tl-landing-glow), transparent 60%);
  filter: blur(100px);
  top: -200px;
  right: -200px;
  pointer-events: none;
  animation: tl-hero-glow 8s ease-in-out infinite alternate;
}

@keyframes tl-hero-glow {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.1); }
}

.tl-landing-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .tl-landing-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Hero content */
.tl-landing-hero__content {
  text-align: center;
}

@media (min-width: 992px) {
  .tl-landing-hero__content {
    text-align: left;
  }
}

.tl-landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tl-landing-primary-light);
  margin-bottom: 1.5rem;
}

.tl-landing-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--tl-landing-accent-green);
  border-radius: 50%;
  animation: tl-pulse 2s ease-in-out infinite;
}

@keyframes tl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tl-landing-hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.tl-landing-hero__title-highlight {
  background: linear-gradient(135deg, var(--tl-landing-primary-light), var(--tl-landing-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-landing-hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--tl-landing-text-secondary);
  margin: 0 0 2rem;
  max-width: 540px;
}

@media (min-width: 992px) {
  .tl-landing-hero__subtitle {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .tl-landing-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.tl-landing-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .tl-landing-hero__ctas {
    justify-content: flex-start;
  }
}

/* Feature badges */
.tl-landing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .tl-landing-hero__badges {
    justify-content: flex-start;
  }
}

.tl-landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--tl-landing-bg-card);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-sm);
  font-size: 0.8rem;
  color: var(--tl-landing-text-secondary);
}

.tl-landing-badge svg {
  width: 14px;
  height: 14px;
  color: var(--tl-landing-primary-light);
}

/* Hero visual/mockup */
.tl-landing-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.tl-landing-mockup {
  width: 100%;
  max-width: 560px;
  background: var(--tl-landing-bg-card);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--tl-landing-transition-slow);
}

.tl-landing-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@media (max-width: 991px) {
  .tl-landing-mockup {
    transform: none;
    max-width: 480px;
  }
  .tl-landing-mockup:hover {
    transform: none;
  }
}

/* Mockup header */
.tl-landing-mockup__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--tl-landing-border);
  margin-bottom: 1rem;
}

.tl-landing-mockup__dots {
  display: flex;
  gap: 0.375rem;
}

.tl-landing-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tl-landing-text-muted);
}

.tl-landing-mockup__dot--red { background: #ff5f57; }
.tl-landing-mockup__dot--yellow { background: #febc2e; }
.tl-landing-mockup__dot--green { background: #28c840; }

.tl-landing-mockup__title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--tl-landing-text-muted);
}

/* Mockup content: fake dashboard */
.tl-landing-mockup__content {
  display: grid;
  gap: 0.75rem;
}

.tl-landing-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.tl-landing-mockup__stat {
  background: var(--tl-landing-bg-elevated);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius);
  padding: 0.875rem;
  text-align: center;
}

.tl-landing-mockup__stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tl-landing-text-primary);
  margin-bottom: 0.25rem;
}

.tl-landing-mockup__stat-label {
  font-size: 0.7rem;
  color: var(--tl-landing-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tl-landing-mockup__chart {
  background: var(--tl-landing-bg-elevated);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius);
  padding: 1rem;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.tl-landing-mockup__bar {
  flex: 1;
  background: linear-gradient(to top, var(--tl-landing-primary), var(--tl-landing-primary-light));
  border-radius: 4px 4px 0 0;
  animation: tl-bar-grow 1s ease-out forwards;
  transform-origin: bottom;
}

@keyframes tl-bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.tl-landing-mockup__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tl-landing-mockup__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--tl-landing-bg-elevated);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius);
  padding: 0.625rem 0.875rem;
}

.tl-landing-mockup__item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(99, 91, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-landing-mockup__item-icon svg {
  width: 14px;
  height: 14px;
  color: var(--tl-landing-primary-light);
}

.tl-landing-mockup__item-text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--tl-landing-text-secondary);
}

.tl-landing-mockup__item-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.tl-landing-mockup__item-badge--active {
  background: rgba(16, 185, 129, 0.2);
  color: var(--tl-landing-accent-green);
}

.tl-landing-mockup__item-badge--pending {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════ */
.tl-landing-section {
  padding-top: var(--tl-landing-section-py);
  padding-bottom: var(--tl-landing-section-py);
}

.tl-landing-section--alt {
  background: var(--tl-landing-bg-surface);
}

.tl-landing-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.tl-landing-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tl-landing-primary-light);
  margin-bottom: 0.75rem;
}

.tl-landing-section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.tl-landing-section__subtitle {
  font-size: 1.05rem;
  color: var(--tl-landing-text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   "WHY TRACKLOCAL" HIGHLIGHTS
   ═══════════════════════════════════════════════════════ */
.tl-landing-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tl-landing-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .tl-landing-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tl-landing-highlight {
  background: var(--tl-landing-bg-card);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-lg);
  padding: 1.75rem;
  transition: 
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease;
}

.tl-landing-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(99, 91, 255, 0.12);
  border-color: rgba(99, 91, 255, 0.3);
}

.tl-landing-highlight:hover .tl-landing-highlight__icon {
  box-shadow: 0 0 24px rgba(99, 91, 255, 0.5);
  transform: scale(1.08);
}

.tl-landing-highlight__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.2), rgba(0, 212, 255, 0.1));
  border-radius: var(--tl-landing-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.tl-landing-highlight__icon svg {
  width: 24px;
  height: 24px;
  color: var(--tl-landing-primary-light);
}

.tl-landing-highlight__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.tl-landing-highlight__text {
  font-size: 0.9rem;
  color: var(--tl-landing-text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════ */
.tl-landing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .tl-landing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .tl-landing-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tl-landing-feature {
  background: var(--tl-landing-bg-card);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-lg);
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease;
}

.tl-landing-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-landing-feature:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(99, 91, 255, 0.15);
  border-color: rgba(99, 91, 255, 0.4);
}

.tl-landing-feature:hover .tl-landing-feature__icon {
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.4);
  transform: scale(1.05);
}

.tl-landing-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 91, 255, 0.12);
  border-radius: var(--tl-landing-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.tl-landing-feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--tl-landing-primary-light);
}

.tl-landing-feature__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.tl-landing-feature__text {
  font-size: 0.875rem;
  color: var(--tl-landing-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS - TIMELINE
   ═══════════════════════════════════════════════════════ */
.tl-landing-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tl-landing-timeline {
    flex-direction: row;
    gap: 0;
  }
}

.tl-landing-timeline__step {
  flex: 1;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease;
}

.tl-landing-timeline__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Connector line */
@media (min-width: 768px) {
  .tl-landing-timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 2px;
    background: linear-gradient(90deg, var(--tl-landing-primary), var(--tl-landing-border));
  }
}

.tl-landing-timeline__number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--tl-landing-primary), var(--tl-landing-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px var(--tl-landing-glow);
}

.tl-landing-timeline__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.tl-landing-timeline__text {
  font-size: 0.9rem;
  color: var(--tl-landing-text-secondary);
  margin: 0;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════ */
.tl-landing-security {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .tl-landing-security {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.tl-landing-security__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.tl-landing-security__shield {
  width: 180px;
  height: 200px;
  position: relative;
}

.tl-landing-security__shield svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px var(--tl-landing-glow));
}

.tl-landing-security__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tl-landing-security__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: 
    opacity 0.5s ease,
    transform 0.5s ease;
}

.tl-landing-security__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.tl-landing-security__item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--tl-landing-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-landing-security__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--tl-landing-accent-green);
}

.tl-landing-security__item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.tl-landing-security__item-content p {
  font-size: 0.875rem;
  color: var(--tl-landing-text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   PRICING - CLEAN PREMIUM DESIGN
   ═══════════════════════════════════════════════════════ */
.tl-landing-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tl-landing-pricing {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

/* Base card styles */
.tl-landing-price-card {
  background: var(--tl-landing-bg-card);
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease;
  backdrop-filter: blur(8px);
}

.tl-landing-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tl-landing-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Badge/Ribbon - positioned inside the card */
.tl-landing-price-card__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
}

.tl-landing-price-card__ribbon::after {
  display: none; /* Remove the fold effect that causes issues */
}

.tl-landing-price-card__ribbon--free {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tl-landing-price-card__ribbon--enterprise {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Featured card (Pro) - premium highlight */
.tl-landing-price-card--featured {
  border: 2px solid var(--tl-landing-primary);
  background: linear-gradient(
    180deg,
    rgba(99, 91, 255, 0.12) 0%,
    rgba(99, 91, 255, 0.04) 50%,
    var(--tl-landing-bg-card) 100%
  );
  box-shadow: 
    0 0 40px rgba(99, 91, 255, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .tl-landing-price-card--featured {
    transform: scale(1.05);
    z-index: 2;
  }
  
  .tl-landing-price-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 
      0 0 60px rgba(99, 91, 255, 0.25),
      0 20px 50px rgba(0, 0, 0, 0.4);
  }
}

/* Popular badge for featured card */
.tl-landing-price-card--featured::before {
  content: '⭐ Más Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tl-landing-primary), #8b5cf6);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: white;
}

/* Enterprise card */
.tl-landing-price-card--enterprise {
  border-color: rgba(245, 158, 11, 0.25);
}

.tl-landing-price-card--enterprise:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

/* Card name & description */
.tl-landing-price-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--tl-landing-text-primary);
}

.tl-landing-price-card--featured .tl-landing-price-card__name {
  color: var(--tl-landing-primary-light);
}

.tl-landing-price-card__desc {
  font-size: 0.8rem;
  color: var(--tl-landing-text-muted);
  margin: 0 0 1.25rem;
}

/* Price section */
.tl-landing-price-card__price {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--tl-landing-border);
}

.tl-landing-price-card__price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.tl-landing-price-card__amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tl-landing-text-primary);
}

.tl-landing-price-card--featured .tl-landing-price-card__amount {
  color: var(--tl-landing-primary-light);
}

.tl-landing-price-card__amount--custom {
  font-size: 1.75rem;
  color: var(--tl-landing-text-primary);
}

.tl-landing-price-card__currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--tl-landing-text-secondary);
}

.tl-landing-price-card__period {
  font-size: 0.85rem;
  color: var(--tl-landing-text-muted);
  margin: 0.25rem 0 0;
}

.tl-landing-price-card__annual {
  font-size: 0.75rem;
  color: var(--tl-landing-text-secondary);
  margin: 0.5rem 0 0;
}

.tl-landing-price-card__savings {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Features list */
.tl-landing-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
  flex: 1;
}

.tl-landing-price-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.825rem;
  color: var(--tl-landing-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tl-landing-price-card__features li:last-child {
  border-bottom: none;
}

.tl-landing-price-card__features li svg {
  width: 16px;
  height: 16px;
  color: var(--tl-landing-accent-green);
  flex-shrink: 0;
}

.tl-landing-price-card__features li span strong {
  color: var(--tl-landing-text-primary);
  font-weight: 600;
}

/* Disabled features */
.tl-landing-price-card__feature--disabled {
  opacity: 0.45;
}

.tl-landing-price-card__feature--disabled svg {
  color: var(--tl-landing-text-muted) !important;
}

.tl-landing-price-card__feature--disabled span {
  text-decoration: line-through;
}

/* Highlight feature */
.tl-landing-price-card__feature--highlight svg {
  color: #f59e0b !important;
}

/* CTA button */
.tl-landing-price-card__cta {
  width: 100%;
  margin-top: auto;
}

/* Remove excessive glow from buttons */
.tl-landing-btn--glow {
  position: relative;
}

.tl-landing-btn--glow::after {
  display: none;
}

.tl-landing-btn--enterprise {
  border-color: rgba(245, 158, 11, 0.5);
  color: #f59e0b;
}

.tl-landing-btn--enterprise:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #f59e0b;
}

/* Guarantee text */
.tl-landing-price-card__guarantee {
  font-size: 0.75rem;
  color: var(--tl-landing-accent-green);
  margin: 0.75rem 0 0;
  font-weight: 500;
}

/* Disclaimer */
.tl-landing-pricing__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--tl-landing-text-muted);
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.tl-landing-faq {
  max-width: 720px;
  margin: 0 auto;
}

.tl-landing-faq__item {
  border-bottom: 1px solid var(--tl-landing-border);
}

.tl-landing-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--tl-landing-text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--tl-landing-transition-fast);
}

.tl-landing-faq__question:hover {
  color: var(--tl-landing-primary-light);
}

.tl-landing-faq__question:focus-visible {
  outline: 2px solid var(--tl-landing-primary);
  outline-offset: 2px;
}

.tl-landing-faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--tl-landing-transition);
}

.tl-landing-faq__item.is-open .tl-landing-faq__icon {
  transform: rotate(45deg);
}

.tl-landing-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tl-landing-transition);
}

.tl-landing-faq__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--tl-landing-text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.tl-landing-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(99, 91, 255, 0.18) 0%,
    rgba(0, 212, 255, 0.1) 50%,
    rgba(99, 91, 255, 0.12) 100%
  );
  border: 1px solid rgba(99, 91, 255, 0.2);
  border-radius: var(--tl-landing-radius-xl);
  padding: 4rem 2rem;
  margin: 0 var(--tl-landing-container-px);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 80px rgba(99, 91, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .tl-landing-cta {
    margin: 0 auto;
    max-width: 900px;
    padding: 5rem 3rem;
  }
}

.tl-landing-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--tl-landing-glow);
  filter: blur(120px);
  top: -200px;
  right: -150px;
  pointer-events: none;
  animation: tl-cta-glow 6s ease-in-out infinite alternate;
}

.tl-landing-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.2);
  filter: blur(100px);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  animation: tl-cta-glow 6s ease-in-out infinite alternate-reverse;
}

@keyframes tl-cta-glow {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.15); }
}

.tl-landing-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  position: relative;
}

.tl-landing-cta__text {
  font-size: 1.05rem;
  color: var(--tl-landing-text-secondary);
  margin: 0 0 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.tl-landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.tl-landing-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--tl-landing-border);
  margin-top: var(--tl-landing-section-py);
}

.tl-landing-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tl-landing-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.tl-landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tl-landing-footer__link {
  color: var(--tl-landing-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}

.tl-landing-footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--tl-landing-primary), var(--tl-landing-accent));
  transition: width 0.3s ease;
}

.tl-landing-footer__link:hover {
  color: var(--tl-landing-primary-light);
}

.tl-landing-footer__link:hover::after {
  width: 100%;
}

.tl-landing-footer__copyright {
  font-size: 0.85rem;
  color: var(--tl-landing-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   MOBILE OFFCANVAS MENU
   ═══════════════════════════════════════════════════════ */
.tl-landing-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 
    opacity var(--tl-landing-transition),
    visibility var(--tl-landing-transition);
}

.tl-landing-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.tl-landing-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.tl-landing-mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--tl-landing-border);
  border-radius: var(--tl-landing-radius-sm);
  color: var(--tl-landing-text-primary);
  cursor: pointer;
}

.tl-landing-mobile-menu__links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.tl-landing-mobile-menu__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--tl-landing-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--tl-landing-border);
  transition: color var(--tl-landing-transition-fast);
}

.tl-landing-mobile-menu__link:hover {
  color: var(--tl-landing-primary-light);
}

.tl-landing-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   COUNTERS / STATS
   ═══════════════════════════════════════════════════════ */
.tl-landing-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .tl-landing-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tl-landing-stat__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--tl-landing-text-primary), var(--tl-landing-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tl-landing-stat__label {
  font-size: 0.9rem;
  color: var(--tl-landing-text-secondary);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY: REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .tl-landing-mockup {
    transform: none !important;
  }
  
  .tl-landing-feature,
  .tl-landing-timeline__step,
  .tl-landing-security__item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */
.tl-landing-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tl-landing-text-gradient {
  background: linear-gradient(135deg, var(--tl-landing-primary-light), var(--tl-landing-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ANIMATIONS & EFFECTS (2026)
   ═══════════════════════════════════════════════════════ */

/* Pulse button animation */
.tl-landing-btn--pulse {
  position: relative;
}

.tl-landing-btn--pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--tl-landing-primary), var(--tl-landing-accent));
  opacity: 0;
  z-index: -1;
  animation: tl-btn-pulse 2s ease-in-out infinite;
}

@keyframes tl-btn-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* Animated badges */
.tl-landing-badge--animated {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tl-landing-badge--animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 91, 255, 0.2);
  border-color: var(--tl-landing-primary);
}

/* Hero trust section */
.tl-landing-hero__trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tl-landing-border);
  text-align: center;
}

@media (min-width: 992px) {
  .tl-landing-hero__trust {
    text-align: left;
  }
}

.tl-landing-hero__trust-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tl-landing-text-muted);
  margin: 0 0 0.75rem;
}

.tl-landing-hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .tl-landing-hero__trust-logos {
    justify-content: flex-start;
  }
}

.tl-landing-hero__trust-logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tl-landing-text-secondary);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.tl-landing-hero__trust-logo:hover {
  opacity: 1;
}

/* Particles background effect */
.tl-landing-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.tl-landing-hero__particles::before,
.tl-landing-hero__particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--tl-landing-primary-light);
  border-radius: 50%;
  animation: tl-particle-float 15s ease-in-out infinite;
}

.tl-landing-hero__particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.tl-landing-hero__particles::after {
  top: 60%;
  right: 15%;
  animation-delay: -5s;
  background: var(--tl-landing-accent);
}

@keyframes tl-particle-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
  50% { transform: translateY(-40px) translateX(-5px); opacity: 0.4; }
  75% { transform: translateY(-20px) translateX(15px); opacity: 0.7; }
}

/* Mockup stat icons */
.tl-landing-mockup__stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
}

.tl-landing-mockup__stat-icon svg {
  width: 14px;
  height: 14px;
}

.tl-landing-mockup__stat-icon--blue {
  background: rgba(99, 91, 255, 0.2);
  color: var(--tl-landing-primary-light);
}

.tl-landing-mockup__stat-icon--orange {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.tl-landing-mockup__stat-icon--green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--tl-landing-accent-green);
}

/* CTA section improvements */
.tl-landing-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(99, 91, 255, 0.15);
  border: 1px solid rgba(99, 91, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--tl-landing-primary-light);
  margin-bottom: 1.5rem;
}

.tl-landing-cta__badge svg {
  width: 16px;
  height: 16px;
}

.tl-landing-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--tl-landing-text-secondary);
}

.tl-landing-cta__trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Floating animation for mockup */
@keyframes tl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tl-landing-mockup {
  animation: tl-float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .tl-landing-mockup {
    animation: none;
  }
}

/* Shimmer effect for highlight cards */
.tl-landing-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.8s ease;
}

.tl-landing-highlight:hover::before {
  left: 100%;
}

.tl-landing-highlight {
  position: relative;
  overflow: hidden;
}

/* Gradient border on hover for price cards */
.tl-landing-price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
}

.tl-landing-price-card:hover::after {
  background: linear-gradient(135deg, var(--tl-landing-primary), var(--tl-landing-accent));
}

/* Staggered fade in animation */
@keyframes tl-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tl-landing-hero__content > * {
  animation: tl-fade-in-up 0.6s ease-out backwards;
}

.tl-landing-hero__badge { animation-delay: 0.1s; }
.tl-landing-hero__title { animation-delay: 0.2s; }
.tl-landing-hero__subtitle { animation-delay: 0.3s; }
.tl-landing-hero__ctas { animation-delay: 0.4s; }
.tl-landing-hero__trust { animation-delay: 0.5s; }
.tl-landing-hero__badges { animation-delay: 0.6s; }

/* Smooth reveal for mockup */
.tl-landing-hero__visual {
  animation: tl-fade-in-up 0.8s ease-out 0.3s backwards;
}

/* Counter animation placeholder */
[data-counter] {
  font-variant-numeric: tabular-nums;
}
/* ═══════════════════════════════════════════════════════
   ENHANCED PREMIUM MICRO-INTERACTIONS (2026)
   ═══════════════════════════════════════════════════════ */

/* Improved button hover state */
.tl-landing-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 40px var(--tl-landing-glow),
    0 4px 12px rgba(99, 91, 255, 0.3);
}

.tl-landing-btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--tl-landing-glow);
}

/* Enhanced feature card hover */
.tl-landing-feature:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(99, 91, 255, 0.1);
  border-color: rgba(99, 91, 255, 0.2);
}

.tl-landing-feature:hover .tl-landing-feature__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.25), rgba(0, 212, 255, 0.15));
}

.tl-landing-feature__icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Highlight card improvements */
.tl-landing-highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(99, 91, 255, 0.15);
}

.tl-landing-highlight:hover .tl-landing-highlight__icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 24px var(--tl-landing-glow);
}

.tl-landing-highlight__icon {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Timeline step hover */
.tl-landing-timeline__step:hover .tl-landing-timeline__number {
  transform: scale(1.15);
  box-shadow: 0 12px 32px var(--tl-landing-glow);
}

.tl-landing-timeline__number {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Security item enhanced hover */
.tl-landing-security__item:hover {
  transform: translateX(8px);
}

.tl-landing-security__item:hover .tl-landing-security__item-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.tl-landing-security__item-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* FAQ item hover enhancement */
.tl-landing-faq__question:hover {
  padding-left: 0.5rem;
}

.tl-landing-faq__question {
  transition: color 0.2s ease, padding-left 0.3s ease;
}

/* Navbar link underline effect */
.tl-landing-nav__link {
  position: relative;
}

.tl-landing-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tl-landing-primary), var(--tl-landing-accent));
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
}

.tl-landing-nav__link:hover::after {
  width: 80%;
  left: 10%;
}

/* CTA section enhanced glow */
.tl-landing-cta {
  position: relative;
  transition: box-shadow 0.4s ease;
}

.tl-landing-cta:hover {
  box-shadow: 
    0 0 80px rgba(99, 91, 255, 0.15),
    inset 0 0 60px rgba(99, 91, 255, 0.05);
}

/* Badge subtle bounce on hover */
.tl-landing-badge--animated:hover {
  animation: tl-badge-bounce 0.5s ease;
}

@keyframes tl-badge-bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-6px); }
}

/* Mockup enhanced float and glow */
.tl-landing-mockup:hover {
  box-shadow: 
    0 60px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 60px rgba(99, 91, 255, 0.15);
}

/* Loading shimmer for visual elements */
@keyframes tl-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Trust logos subtle animation */
.tl-landing-hero__trust-logo {
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.tl-landing-hero__trust-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--tl-landing-primary-light);
}

/* Enhanced scroll reveal animation */
@keyframes tl-reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tl-landing-feature.is-visible,
.tl-landing-timeline__step.is-visible,
.tl-landing-security__item.is-visible {
  animation: tl-reveal-up 0.6s ease-out forwards;
}

/* Improved focus states for accessibility */
.tl-landing-btn:focus-visible,
.tl-landing-nav__link:focus-visible,
.tl-landing-faq__question:focus-visible {
  outline: 2px solid var(--tl-landing-primary-light);
  outline-offset: 3px;
}

/* Smooth scroll behavior enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM EFFECTS
   ═══════════════════════════════════════════════════════ */

/* Premium glass card effect */
.tl-landing-price-card,
.tl-landing-feature,
.tl-landing-highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
}

/* Subtle card inner glow on hover */
.tl-landing-price-card:hover,
.tl-landing-feature:hover,
.tl-landing-highlight:hover {
  background: linear-gradient(
    180deg,
    rgba(99, 91, 255, 0.06) 0%,
    rgba(99, 91, 255, 0.02) 100%
  );
}

/* Enhanced section headers */
.tl-landing-section__title {
  position: relative;
  display: inline-block;
}

.tl-landing-section__title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tl-landing-primary), var(--tl-landing-accent));
  border-radius: 999px;
  opacity: 0.7;
}

/* Floating animation for mockup */
@keyframes tl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tl-landing-hero__mockup {
  animation: tl-float 6s ease-in-out infinite;
}

/* Premium badge glow effect */
.tl-landing-hero__badge {
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.2);
}

/* Stagger animation delay for features */
.tl-landing-feature:nth-child(1) { animation-delay: 0s; }
.tl-landing-feature:nth-child(2) { animation-delay: 0.1s; }
.tl-landing-feature:nth-child(3) { animation-delay: 0.2s; }
.tl-landing-feature:nth-child(4) { animation-delay: 0.3s; }
.tl-landing-feature:nth-child(5) { animation-delay: 0.4s; }
.tl-landing-feature:nth-child(6) { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES (360px - 480px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Logo responsive constraints */
  .tl-landing-logo {
    font-size: 1rem;
    gap: 0.375rem;
  }
  
  .tl-landing-logo__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  
  /* Navbar mobile padding */
  .tl-landing-nav {
    padding: 0.75rem 0;
  }
  
  .tl-landing-nav__inner {
    gap: 0.75rem;
  }
  
  /* Ensure nav actions don't overflow */
  .tl-landing-nav__actions {
    gap: 0.5rem;
  }
  
  .tl-landing-nav__toggle {
    width: 40px;
    height: 40px;
  }
  
  /* Hero section mobile fixes */
  .tl-landing-hero {
    padding-top: 5rem;
  }
  
  .tl-landing-hero__badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }
  
  /* Badges responsive wrap */
  .tl-landing-hero__badges {
    gap: 0.5rem;
  }
  
  .tl-landing-badge {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
  }
  
  /* Container mobile padding */
  .tl-landing-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Mobile menu logo size */
  .tl-landing-mobile-menu__header .tl-landing-logo {
    font-size: 1rem;
  }
  
  .tl-landing-mobile-menu__header .tl-landing-logo__icon {
    width: 28px;
    height: 28px;
  }
}

/* Tablet responsive adjustments (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .tl-landing-logo {
    font-size: 1.125rem;
  }
  
  .tl-landing-logo__icon {
    width: 30px;
    height: 30px;
  }
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  .tl-landing-hero__mockup,
  .tl-landing-cta::before,
  .tl-landing-cta::after,
  .tl-landing-hero__glow {
    animation: none;
  }
  
  .tl-landing-price-card,
  .tl-landing-feature,
  .tl-landing-highlight {
    transition: none;
  }
}