:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --secondary: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 30px -5px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[role="switch"]:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.btn-primary {
  color: white !important;
}

.nav-links a.btn-primary:hover {
  color: white !important;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
  margin-top: 1rem;
}

.mobile-nav-links a {
  display: block;
  padding: 1.25rem 0;
  color: var(--text);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

.mobile-nav-cta {
  text-align: center;
  justify-content: center;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgb(0 0 0 / 0.1);
}

.sticky-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-secondary);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 6rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 50%;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-content h1 .highlight {
  color: var(--primary);
  position: relative;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-badge svg {
  color: var(--secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

/* Dashboard Slider Styles */
.dashboard-slider {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid var(--border);
  padding-bottom: 3rem;
}

.slider-container {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-header {
  height: 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  justify-content: space-between;
}

.slide-dots {
  display: flex;
  gap: 0.5rem;
}

.slide-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.slide-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.slide-content {
  padding: 2rem;
  height: calc(100% - 60px);
}

/* Club Overview Slide */
.slide-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-mini {
  text-align: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.stat-mini-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-mini-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.slide-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.5rem;
  gap: 0.5rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: all 0.3s;
}

.chart-bar:hover {
  opacity: 0.8;
}

/* Finances Slide */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.finance-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.5rem;
}

.finance-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.finance-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.finance-change {
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.finance-change.positive {
  color: var(--secondary);
}

.finance-change.positive::before {
  content: '↑';
}

.finance-change.negative {
  color: var(--danger);
}

.finance-change.negative::before {
  content: '↑';
}

.revenue-chart {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.5rem;
}

/* AI Insights Slide */
.insight-item {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  border-left: 4px solid;
}

.insight-item.critical {
  background: #fef2f2;
  border-left-color: var(--danger);
}

.insight-item.warning {
  background: #fffbeb;
  border-left-color: var(--warning);
}

.insight-item.success {
  background: #f0fdf4;
  border-left-color: var(--secondary);
}

.insight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.insight-text {
  flex: 1;
}

.insight-title-mini {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.insight-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Player Analytics Slide */
.player-stats {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.player-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.player-stat-row:last-child {
  border-bottom: none;
}

.player-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.player-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.level-distribution {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.5rem;
}

.level-bar {
  margin-bottom: 1rem;
}

.level-bar:last-child {
  margin-bottom: 0;
}

.level-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.level-progress {
  height: 24px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  transition: width 0.5s;
}

/* Scheduling Slide */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--border);
}

.schedule-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 80px;
}

.schedule-info {
  flex: 1;
}

.schedule-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.schedule-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.schedule-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 12px;
  white-space: nowrap;
}

.schedule-status.full {
  background: var(--danger);
  color: white;
}

.schedule-status.open {
  background: var(--secondary);
  color: white;
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot:hover {
  background: var(--text-muted);
}

.slider-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

/* Slider Labels */
.slider-labels {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}

.slider-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.slider-label:hover {
  color: var(--text-secondary);
}

.slider-label.active {
  color: var(--primary);
  font-weight: 700;
}

/* Social Proof */
.social-proof {
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.social-proof h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

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

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

.stat-box-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-box-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Problem/Solution Section */
.problem-section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.problem-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.problem-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

/* How It Works */
.how-it-works-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

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

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  flex-shrink: 0;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

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

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

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

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.toggle-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.toggle-label.active {
  color: var(--text);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--border);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: var(--shadow);
}

.toggle-switch.active .toggle-switch-slider {
  transform: translateX(26px);
}

.save-badge {
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.plan-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.plan-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.plan-period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-billing {
  font-size: 0.875rem;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.plan-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.disabled {
  opacity: 0.4;
}

.plan-features li strong {
  color: var(--text);
}

/* Comparison Table */
.comparison-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.comparison-table {
  max-width: 1400px;
  margin: 3rem auto 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.check-icon {
  color: var(--secondary);
}

.minus-icon {
  color: var(--text-muted);
}

/* ROI Calculator */
.roi-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
}

.roi-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.roi-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.roi-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.calculator-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  color: var(--text);
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.input-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.input-group input {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.calculator-results {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

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

.result-item {
  text-align: center;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

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

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

.faq-grid {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

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

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: var(--text);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.cta-container p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

.btn-white {
  background: white;
  color: var(--text);
}

.btn-white:hover {
  background: var(--bg-secondary);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ========================================
   Page Hero (features.html, pricing.html)
   ======================================== */

.page-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-secondary);
  text-align: center;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ========================================
   Feature Nav (features.html)
   ======================================== */

.feature-nav {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.feature-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0;
}

.feature-nav-container::-webkit-scrollbar {
  display: none;
}

.feature-nav-link {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.feature-nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ========================================
   Feature Modules — Zigzag (features.html)
   ======================================== */

.feature-module {
  padding: 5rem 2rem;
}

.feature-module.module-alt {
  background: var(--bg-secondary);
}

.module-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.module-row-reverse {
  direction: rtl;
}

.module-row-reverse > * {
  direction: ltr;
}

.module-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0.5rem 0 0.25rem;
}

.module-tagline {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.module-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.module-benefits {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-benefits li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.module-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.module-impact {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary-light);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.impact-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.impact-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.module-visual-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-radius: 12px;
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.placeholder-icon {
  font-size: 3rem;
}

.placeholder-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================
   Integrations (features.html)
   ======================================== */

.integrations-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.integrations-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.integration-icon {
  font-size: 2rem;
}

.integration-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   About Page (about.html)
   ======================================== */

.about-section {
  padding: 5rem 2rem;
}

.about-section-alt {
  background: var(--bg-secondary);
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-block {
  max-width: 800px;
}

.about-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0.75rem 0 1.5rem;
}

.about-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.approach-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.approach-point h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.approach-point p {
  margin-bottom: 0;
}

/* ========================================
   Legal Pages (privacy.html, terms.html)
   ======================================== */

.legal-page {
  padding: 3rem 2rem 5rem;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-container h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-container h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.legal-container p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-container ul {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

.legal-container a {
  color: var(--primary);
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* ========================================
   404 Error Page (404.html)
   ======================================== */

.error-page {
  padding: 10rem 2rem 6rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container {
  max-width: 500px;
  margin: 0 auto;
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.error-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.error-subtitle {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.error-actions {
  margin-bottom: 2.5rem;
}

.error-links {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.error-links p {
  margin-bottom: 0.75rem;
}

.error-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.error-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.error-links a:hover {
  text-decoration: underline;
}

/* Scroll Reveal Animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger children */
  .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
  .reveal-stagger > .reveal:nth-child(2) { transition-delay: 100ms; }
  .reveal-stagger > .reveal:nth-child(3) { transition-delay: 200ms; }
  .reveal-stagger > .reveal:nth-child(4) { transition-delay: 300ms; }
  .reveal-stagger > .reveal:nth-child(5) { transition-delay: 400ms; }

  /* Hero stagger sequence */
  .hero-content > *:nth-child(1) { transition-delay: 0ms; }
  .hero-content > *:nth-child(2) { transition-delay: 100ms; }
  .hero-content > *:nth-child(3) { transition-delay: 200ms; }
  .hero-content > *:nth-child(4) { transition-delay: 300ms; }
  .hero-content > *:nth-child(5) { transition-delay: 400ms; }

  .hero-visual.reveal { transition-delay: 300ms; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }

  .steps-grid {
    gap: 1rem;
  }

  .module-row,
  .module-row-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .sticky-mobile-cta {
    display: block;
  }

  /* Add bottom padding for sticky CTA */
  footer {
    padding-bottom: 5rem;
  }
  
  .hero {
    padding: 6rem 1.5rem 4rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-inputs {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  /* Slider responsive */
  .slider-container {
    height: 420px;
  }
  
  .slide-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .finance-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-labels {
    gap: 0.75rem;
  }
  
  .slider-label {
    font-size: 0.7rem;
  }
  
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .schedule-time {
    min-width: auto;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 400px;
  }

  .page-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .feature-nav {
    top: 56px;
    padding: 0 1rem;
  }

  .feature-module {
    padding: 3rem 1.5rem;
  }

  .module-title {
    font-size: 1.5rem;
  }

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

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  .error-page {
    padding: 8rem 1.5rem 4rem;
  }

  .error-code {
    font-size: 4rem;
  }

  .error-title {
    font-size: 1.5rem;
  }
}
