/* Landing Page Specific Styles */
/* Override root variables for landing page if needed */
:root {
  /* Use the same primary color as the app for consistency */
  --landing-primary: var(--primary-600);
  --landing-primary-hover: var(--primary-700);
  --landing-secondary: var(--neutral-50);
  --landing-text-dark: var(--text-primary);
  --landing-text-light: var(--text-secondary);
  --radius-full: 30px;
}

/* Landing-specific body styles */
body.landing-page {
  font-family: var(--font-sans);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto; /* Override the base.css overflow: hidden */
  height: auto; /* Allow natural height */
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  padding: var(--space-sm) 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.urgency-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.urgency-banner i {
  font-size: 1rem;
}

/* Modern Navbar */
.landing-navbar {
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.landing-navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.landing-navbar-brand .logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: var(--space-sm);
}

.landing-navbar-brand:hover {
  color: var(--primary-600);
  text-decoration: none;
}

.landing-navbar-brand img {
  width: 32px;
  height: 32px;
  margin-right: var(--space-sm);
}

.landing-nav-link {
  color: var(--text-secondary);
  margin: 0 var(--space-lg);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: 0.875rem;
}

.landing-nav-link:hover {
  color: var(--primary-600);
  text-decoration: none;
}

/* Hero Section */
.landing-hero {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.landing-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.landing-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  color: var(--text-primary);
}

.landing-hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-600);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  text-align: center;
  position: relative;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
  border-radius: var(--radius-sm);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
}

/* Hero Badge */
.hero-badge {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.hero-badge span {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  color: var(--primary-700);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--primary-200);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: all var(--transition-fast);
}

.hero-badge span:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hero Tagline Container */
.hero-tagline {
  margin-bottom: var(--space-xl);
  position: relative;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-300), transparent);
  z-index: 1;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-600);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

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

.landing-hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

/* Enhanced CTA Buttons */
.landing-cta-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  border: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.landing-cta-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.landing-cta-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.landing-cta-secondary:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--border-strong);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

/* Stats Section */
.landing-stats {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.landing-stat-item {
  text-align: center;
}

.landing-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

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

/* Logos Section */
.landing-logos {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.logos-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.landing-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.landing-logos-grid img {
  max-width: 100px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
  filter: grayscale(100%);
}

.landing-logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Audience Section */
.landing-audience {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.landing-audience h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.landing-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.landing-audience-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}

.landing-audience-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.landing-audience-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.landing-audience-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.landing-audience-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* 30-Day Transformation Section - Dark Theme */
.landing-transformation {
  padding: var(--space-3xl) 0;
  background: #1a1a1a; /* Dark background */
}

.landing-transformation h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 2.5rem;
  font-weight: 700;
  color: white; /* White text on dark background */
}

.transformation-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: white; /* White text on dark background */
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.zero-lifting-banner {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.zero-lifting-banner span {
  background: var(--primary-500);
  color: white;
  padding: var(--space-sm) var(--space-xl);
  border-radius: 25px; /* Fixed rounded corners */
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
}

.transformation-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  align-items: stretch; /* Ensure equal height cards */
}

.timeline-card {
  background: #2a2a2a; /* Dark gray card background */
  border-radius: 12px; /* Fixed rounded corners */
  padding: var(--space-xl);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  border: 1px solid #3a3a3a;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%; /* Full height for alignment */
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.day-range {
  position: absolute;
  top: -12px;
  left: var(--space-lg);
  background: #525252; /* Light gray for inactive */
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px; /* Fixed rounded corners */
  font-size: 0.875rem;
  font-weight: 600;
}

.day-range.active {
  background: var(--primary-500);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-600); /* Blue for steps 1 and 4 */
  color: white;
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-number.active {
  background: var(--primary-500); /* Blue for steps 2 and 3 */
}

.step-icon {
  font-size: 1.5rem;
  color: #a3a3a3; /* Light gray for icons */
}

.timeline-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white; /* White text on dark background */
  text-transform: lowercase;
  text-align: center;
}

.timeline-card p {
  color: #cccccc; /* Light gray text */
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  text-align: center;
  flex-grow: 1; /* Take up available space */
}

.experience-box {
  background: white; /* White background for experience box */
  border-radius: 8px; /* Fixed rounded corners */
  padding: var(--space-md);
  border: 1px solid var(--border-light);
  margin-top: auto; /* Push to bottom for alignment */
}

.experience-item {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.4;
  color: #666666; /* Dark gray text on white background */
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-item strong {
  color: #333333; /* Darker text for strong elements */
  font-weight: 600;
}

/* AI Tools Section - Dark Theme */
.landing-ai-tools {
  padding: var(--space-3xl) 0;
  background: #1a1a1a; /* Dark background */
}

.landing-ai-tools h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 2.5rem;
  font-weight: 700;
  color: white; /* White text on dark background */
}

.tools-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #cccccc; /* Light gray text on dark background */
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tools-filter {
  margin-bottom: var(--space-2xl);
}

.filter-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 var(--space-md);
}

.filter-tab {
  background: #2a2a2a; /* Dark gray background */
  color: #cccccc; /* Light gray text */
  border: 1px solid #3a3a3a;
  border-radius: 25px;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.filter-tab:hover {
  background: #3a3a3a; /* Lighter gray on hover */
  color: white;
}

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

.tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.filter-tab.active .tab-count {
  background: rgba(255, 255, 255, 0.3);
}

.tools-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.tools-scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: var(--space-md) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tools-scroll::-webkit-scrollbar {
  display: none;
}

.tools-grid {
  display: flex;
  gap: var(--space-xl);
  min-width: max-content;
}

.tool-card {
  position: relative;
  background: #2a2a2a; /* Dark gray card background */
  border-radius: 16px;
  border: 1px solid #3a3a3a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  overflow: hidden;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  opacity: 0.5;
}

.card-gradient.gray {
  background: linear-gradient(135deg, var(--neutral-50), var(--neutral-100));
}

.card-gradient.primary {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
}

.card-content {
  position: relative;
  padding: var(--space-xl);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.tool-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.tool-card:hover .tool-icon {
  transform: scale(1.1);
}

.tool-icon.gray {
  background: linear-gradient(135deg, var(--neutral-600), var(--neutral-700));
}

.tool-icon.primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

/* Category-specific tool icon colors */
.tool-icon.operations {
  background: linear-gradient(135deg, var(--primary-600), var(--neutral-700));
}

.tool-icon.hr {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.tool-icon.finance {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.tool-icon.sales {
  background: linear-gradient(135deg, var(--warning-500), var(--warning-600));
}

.tool-icon.support {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Purple gradient */
}

.tool-icon.payments {
  background: linear-gradient(135deg, var(--error-500), var(--error-600));
}

.tool-icon.legal {
  background: linear-gradient(135deg, #059669, #047857); /* Emerald gradient */
}

.tool-icon.marketing {
  background: linear-gradient(135deg, #ec4899, #db2777); /* Pink gradient */
}

.tool-icon.it {
  background: linear-gradient(135deg, #0ea5e9, #0284c7); /* Sky blue gradient */
}

.icon-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.team-badge {
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}

.team-badge.hr {
  background: #3a3a3a; /* Dark gray background */
  color: white; /* White text */
  border-color: #4a4a4a;
}

.team-badge.sales {
  background: #3a3a3a; /* Dark gray background */
  color: white; /* White text */
  border-color: #4a4a4a;
}

.team-badge.operations {
  background: #3a3a3a; /* Dark gray background */
  color: white; /* White text */
  border-color: #4a4a4a;
}

.team-badge.finance {
  background: #3a3a3a; /* Dark gray background */
  color: white; /* White text */
  border-color: #4a4a4a;
}

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white; /* White text on dark background */
  margin-bottom: var(--space-md);
  transition: color var(--transition-normal);
}

.tool-card:hover h3 {
  color: var(--primary-500);
}

.tool-card p {
  color: #cccccc; /* Light gray text on dark background */
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.benefits-section {
  background: #3a3a3a; /* Dark gray background for benefits */
  border-radius: 12px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.benefits-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaaaaa; /* Light gray text */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: #cccccc; /* Light gray text */
  transition: color var(--transition-fast);
}

.benefit-item:hover {
  color: white; /* White text on hover */
}

.benefit-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--success-500), var(--success-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check.gray {
  background: linear-gradient(135deg, var(--neutral-600), var(--neutral-700));
}

.benefit-check.primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.benefit-check i {
  color: white;
  font-size: 0.75rem;
}

.example-section {
  background: #3a3a3a; /* Dark gray background */
  border-radius: 12px;
  padding: var(--space-md);
  border: 1px solid #4a4a4a;
}

.example-section.gray {
  background: #3a3a3a; /* Dark gray background */
}

.example-section.primary {
  background: #3a3a3a; /* Dark gray background */
}

.example-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.example-header span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaaaaa; /* Light gray text */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.example-header i {
  color: #aaaaaa; /* Light gray text */
  font-size: 1rem;
}

.example-section p {
  font-size: 0.75rem;
  color: #cccccc; /* Light gray text */
  font-style: italic;
  margin: 0;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #2a2a2a; /* Dark gray background */
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
  z-index: 10;
  color: white; /* White arrow icons */
}

.scroll-arrow:hover {
  background: #3a3a3a; /* Lighter gray on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.scroll-left {
  left: var(--space-md);
}

.scroll-right {
  right: var(--space-md);
}

/* Testimonials Section */
.landing-testimonials {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.landing-testimonials h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.landing-testimonial-item {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}

.landing-testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: var(--space-lg);
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs) 0;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Pricing Section */
.landing-pricing {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

/* Pricing Icons */
.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--neutral-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  font-size: 1.5rem;
}

.pricing-icon.pro {
  background: var(--primary-600);
}

/* Pricing Metrics */
.pricing-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-metric i {
  color: var(--warning-500);
  font-size: 0.875rem;
}

/* Pro Plan Styling */
.landing-pricing-card.most-popular {
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), var(--bg-primary));
}

.landing-pricing-card.most-popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-600);
  border-radius: 12px 12px 0 0;
}

/* CTA Button Variants */
.landing-pricing-cta.pro-cta {
  background: var(--primary-600);
  border-color: var(--primary-600);
}

.landing-pricing-cta.pro-cta:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

.landing-pricing-cta.elite-cta {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

.landing-pricing-cta.elite-cta:hover {
  background: var(--primary-800);
  border-color: var(--primary-800);
}

.landing-pricing h2 {
  text-align: center;
  margin-bottom: var(--space-md);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.landing-pricing-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.landing-pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  align-items: stretch; /* Ensure all cards have equal height */
}

.landing-pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  /* overflow: hidden; */
  box-shadow: var(--shadow-sm);
}

.landing-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
}

.landing-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-600);
}

.landing-pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.landing-pricing-card > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.landing-pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.landing-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
  flex-grow: 1;
}

.landing-pricing-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  line-height: 1.4;
  text-align: left;
}

.landing-pricing-list li i {
  margin-right: var(--space-sm);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.landing-pricing-cta {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.landing-pricing-cta:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

/* Most Popular Badge */
.landing-pricing-card .most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-600);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* Most popular card styling - badge overlays without pushing content */
.landing-pricing-card:has(.most-popular-badge) {
  /* Remove margin-top to allow badge to overlay properly */
  margin-top: 0;
}


/* Trust Signals */
.pricing-trust-signals {
  text-align: center;
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: #000000;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-trust-signals p {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pricing-trust-signals p:last-child {
  margin-bottom: 0;
}

.pricing-trust-signals i {
  margin-right: var(--space-xs);
}

/* Footer */
.landing-footer {
  background: var(--bg-inverse);
  color: var(--text-inverse);
  padding: var(--space-2xl) 0;
}

.landing-footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-footer a:hover {
  color: var(--text-inverse);
}

.landing-footer hr {
  border-color: var(--neutral-700);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Urgency Banner Mobile Fix */
  .urgency-banner {
    padding: var(--space-sm) var(--space-md);
  }
  
  /* Navbar Mobile Fix */
  .landing-navbar {
    padding: var(--space-lg) var(--space-md);
  }
  
  .landing-hero h1 {
    font-size: 2.5rem;
  }
  
  .landing-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .landing-cta-primary,
  .landing-cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .landing-pricing-cards {
    grid-template-columns: 1fr;
    padding: 0 var(--space-md);
    gap: var(--space-lg);
  }
  
  .landing-audience-grid,
  .landing-features-grid,
  .landing-testimonials-grid,
  .transformation-timeline {
    grid-template-columns: 1fr;
    padding: 0 var(--space-md);
  }
  
  .landing-transformation h2 {
    font-size: 2rem;
    color: white; /* Maintain white text on mobile */
  }
  
  .transformation-subtitle {
    font-size: 1.125rem;
    color: white; /* Maintain white text on mobile */
  }
  
  .zero-lifting-banner span {
    font-size: 1rem;
    padding: var(--space-xs) var(--space-lg);
  }
  
  .timeline-card {
    padding: var(--space-lg);
    background: #2a2a2a; /* Maintain dark card background on mobile */
  }
  
  .timeline-card h3 {
    color: white; /* Maintain white text on mobile */
  }
  
  .timeline-card p {
    color: #cccccc; /* Maintain light gray text on mobile */
  }
  
  .day-range {
    top: -10px;
    left: var(--space-md);
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .card-header {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  /* AI Tools Mobile Styles */
  .landing-ai-tools h2 {
    font-size: 2rem;
    color: white; /* Maintain white text on mobile */
  }
  
  .tools-subtitle {
    font-size: 1.125rem;
    color: #cccccc; /* Maintain light gray text on mobile */
  }
  
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 var(--space-md);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tab {
    flex-shrink: 0;
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-md);
  }
  
  .tools-container {
    padding: 0 var(--space-md);
  }
  
  .tool-card {
    min-width: 280px;
    max-width: 280px;
  }
  
  .card-content {
    padding: var(--space-lg);
  }
  
  .tool-icon {
    width: 48px;
    height: 48px;
  }
  
  .icon-emoji {
    font-size: 1.25rem;
  }
  
  .scroll-arrow {
    display: none; /* Hide scroll arrows on mobile */
  }
  
  .landing-stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0 var(--space-md);
  }
  
  .landing-logos-grid {
    gap: var(--space-xl);
    padding: 0 var(--space-md);
  }
  
  .landing-logos-grid img {
    max-width: 80px;
  }
  
  .hero-stats {
    gap: var(--space-lg);
  }
  
  .hero-stat .stat-number {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-badge span {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-md);
  }
  
  .pitfalls-grid,
  .process-steps {
    grid-template-columns: 1fr;
    padding: 0 var(--space-md);
  }
  
  .pitfalls-grid {
    grid-template-columns: 1fr; /* Single column on mobile for proper centering */
  }
  
  .pitfall-item {
    padding: var(--space-lg);
    text-align: center; /* Center content on mobile */
  }
  
  .pitfall-number {
    top: -10px;
    left: 50%;
    transform: translateX(-50%); /* Center the number on mobile */
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .pitfall-icon {
    text-align: center; /* Center the icon on mobile */
  }
  
  .pitfall-item h3 {
    text-align: center; /* Center the heading on mobile */
  }
  
  .pitfall-problem {
    text-align: center; /* Center the problem text on mobile */
  }
  
  .user-quote {
    text-align: center; /* Center the quote box content on mobile */
  }
  
  .user-quote p {
    text-align: center; /* Center the quote text on mobile */
  }
  
  .solution {
    text-align: center; /* Center the solution box content on mobile */
  }
  
  .solution h4 {
    justify-content: center; /* Center the "HOW WE FIX IT" header on mobile */
  }
  
  .solution p {
    text-align: center; /* Center the solution text on mobile */
  }
  
  .landing-pitfalls h2 {
    font-size: 2rem;
  }
  
  .pitfalls-subtitle {
    font-size: 1.125rem;
  }
  
  .roi-inputs {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-week {
    margin-right: 0;
    margin-bottom: var(--space-md);
    align-self: center;
  }
  
  .testimonial-metrics {
    justify-content: center;
  }
} 

.red-price {
  color: var(--error-600);
}

/* Pitfalls Section - Dark Theme */
.landing-pitfalls {
  padding: var(--space-3xl) 0;
  background: #1a1a1a; /* Dark background */
}

.landing-pitfalls h2 {
  text-align: center;
  margin-bottom: var(--space-sm);
  font-size: 2.5rem;
  font-weight: 700;
  color: white; /* White text on dark background */
}

.pitfalls-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #cccccc; /* Light gray for subtitle */
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

.pitfalls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Smaller min width for better mobile support */
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  align-items: stretch; /* Ensure equal height cards */
}

.pitfall-item {
  background: #2a2a2a; /* Dark gray card background */
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  border: 1px solid #3a3a3a;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* Full height for alignment */
}

.pitfall-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.pitfall-number {
  position: absolute;
  top: -12px;
  left: var(--space-lg);
  width: 40px;
  height: 40px;
  background: var(--primary-600);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.pitfall-icon {
  text-align: right;
  margin-bottom: var(--space-md);
}

.pitfall-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white; /* White text on dark background */
  text-transform: lowercase;
}

.pitfall-problem {
  color: #cccccc; /* Light gray text */
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.user-quote {
  background: #3a3a3a; /* Darker gray for quote box */
  border-left: 4px solid var(--primary-500);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  flex-grow: 1; /* Take up available space for alignment */
}

.user-quote p {
  color: #aaaaaa; /* Lighter gray for quote text */
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.solution {
  background: #1e3a8a; /* Dark blue background */
  border: 1px solid #1e40af;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: auto; /* Push to bottom for alignment */
}

.solution h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa; /* Bright blue for "HOW WE FIX IT" */
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution p {
  color: #93c5fd; /* Lighter blue for solution text */
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

/* Process Section */
.landing-process {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.landing-process h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.process-step {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ROI Calculator Section */
.landing-roi {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.landing-roi h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.roi-calculator {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.roi-input {
  display: flex;
  flex-direction: column;
}

.roi-input label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.roi-input input {
  padding: var(--space-md);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.roi-input input:focus {
  outline: none;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.roi-result {
  text-align: center;
  padding: var(--space-xl);
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary-200);
}

.roi-result h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-700);
  margin-bottom: var(--space-sm);
}

.roi-result p {
  font-size: 1.25rem;
  color: var(--primary-600);
  margin: 0;
  font-weight: 500;
}

/* Timeline Section */
.landing-timeline {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.landing-timeline h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-week {
  background: var(--primary-600);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: var(--space-xl);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.timeline-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.timeline-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Metrics */
.testimonial-metrics {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.metric {
  background: var(--primary-50);
  color: var(--primary-700);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--primary-200);
}