/* ==========================================
   ShiftEarn Website - Main Stylesheet
   ========================================== */

/* CSS Variables */
:root {
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --primary-glow: rgba(16, 185, 129, 0.4);

  --bg-dark: #0a0a0b;
  --bg-card: #111113;
  --bg-elevated: #18181b;
  --bg-hover: #1f1f23;

  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --border: #27272a;
  --border-light: #3f3f46;

  --gradient-start: #10b981;
  --gradient-end: #06b6d4;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px var(--primary-glow);

  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

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

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--text-muted);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
}

.nav-cta:hover {
  background: var(--primary-light) !important;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 1rem;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

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

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

/* Phone Demo */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a1d;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 2px #2a2a2d,
    var(--shadow-lg),
    0 0 80px rgba(16, 185, 129, 0.15);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a0b;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f0f12;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

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

/* Demo App Styles - Matches actual ShiftEarn app */
.demo-app {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 44px 12px 65px;
  background: #0a0a0b;
  overflow: hidden;
}

.demo-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.demo-app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.demo-app-logo img {
  border-radius: 6px;
}

.demo-app-icons {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
}

.demo-earnings {
  margin-bottom: 8px;
}

.demo-earnings-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.demo-insight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.demo-stat-cards {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.demo-stat-card {
  flex: 1;
  padding: 10px 8px;
  border-radius: 10px;
  text-align: center;
}

.demo-stat-card.green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.demo-stat-card.yellow {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.demo-stat-card.red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.demo-card-value {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.demo-card-label {
  display: block;
  font-size: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.demo-progress {
  margin-bottom: 12px;
}

.demo-progress-bar {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.demo-progress-fill {
  height: 100%;
  width: 83%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 1s ease;
}

.demo-progress-text {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.demo-stats-row {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

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

.demo-stat-num {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.demo-stat-item .demo-stat-label {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.demo-upcoming {
  margin-bottom: 10px;
}

.demo-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.demo-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.demo-tap-log {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.demo-see-all {
  color: var(--primary);
  font-size: 0.7rem;
}

.demo-upcoming-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 6px;
}

.demo-upcoming-day {
  display: block;
  font-size: 0.55rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}

.demo-upcoming-job {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.demo-upcoming-job::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.demo-upcoming-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.demo-upcoming-add {
  width: 24px;
  height: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
}

.demo-recent {
  flex: 1;
}

.demo-tabbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px 6px;
}

.demo-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 0.5rem;
  cursor: pointer;
}

.demo-tab.active {
  color: var(--primary);
}

.demo-tab svg {
  width: 20px;
  height: 20px;
}

.demo-tab-add {
  margin-top: -20px;
}

.demo-add-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.demo-add-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Add Shift Overlay */
.demo-add-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 20;
}

.demo-add-overlay.active {
  opacity: 1;
  visibility: visible;
}

.demo-add-modal {
  width: 100%;
  background: var(--bg-elevated);
  border-radius: 24px 24px 0 0;
  padding: 20px 16px 24px;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.demo-add-overlay.active .demo-add-modal {
  transform: translateY(0);
}

.demo-add-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.demo-close-btn {
  background: var(--bg-card);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.demo-add-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.demo-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.demo-amount-input {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  width: 120px;
  text-align: center;
  outline: none;
}

.demo-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.demo-key {
  height: 48px;
  background: var(--bg-card);
  border: none;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-key:hover {
  background: var(--bg-hover);
}

.demo-key:active {
  transform: scale(0.95);
}

.demo-key-delete svg {
  stroke: var(--text-secondary);
}

.demo-save-btn {
  width: 100%;
  height: 50px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

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

/* Hero Background */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
  z-index: -1;
}

/* Features Section */
.features {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
}

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

.feature-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
  border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 12px;
}

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

.feature-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Who It's For Section */
.who-its-for {
  padding: 120px 0;
  background: var(--bg-card);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.audience-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.audience-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.audience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

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

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

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-dark);
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--border));
  margin-top: 32px;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}

.pricing-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-save {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-label {
  display: inline-block;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.pricing-featured .pricing-label {
  background: var(--primary);
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-featured .price-amount {
  color: var(--primary);
}

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

.price-breakdown {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

.feature-note {
  color: var(--text-muted) !important;
}

.feature-note svg {
  color: var(--text-muted) !important;
}

.feature-highlight {
  color: var(--text-primary) !important;
}

/* Lifetime Offer */
.lifetime-offer {
  margin-top: 48px;
}

.lifetime-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.05));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.lifetime-content {
  flex: 1;
}

.lifetime-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lifetime-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.lifetime-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 400px;
}

.lifetime-price {
  text-align: center;
  padding: 0 24px;
}

.lifetime-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.lifetime-period {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* No Ads Promise */
.no-ads-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.promise-icon {
  width: 56px;
  height: 56px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
}

.promise-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.promise-text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-featured {
    transform: none;
    order: -1;
  }

  .pricing-featured:hover {
    transform: translateY(-4px);
  }

  .lifetime-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .lifetime-card p {
    max-width: none;
  }

  .lifetime-price {
    padding: 16px 0;
  }

  .no-ads-promise {
    flex-direction: column;
    text-align: center;
  }
}

/* Comparison Table Section */
.comparison {
  padding: 120px 0;
  background: var(--bg-card);
}

.comparison-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead {
  background: var(--bg-dark);
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

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

.comparison-table th.pro-column {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.1));
  color: var(--primary);
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.comparison-table tbody tr:hover {
  background: var(--bg-hover);
}

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

.comparison-table .highlight-row {
  background: rgba(16, 185, 129, 0.03);
}

.comparison-table .highlight-row:hover {
  background: rgba(16, 185, 129, 0.08);
}

.comparison-table .check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: var(--text-muted);
  font-size: 1rem;
}

.comparison-table .limited {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }

  .comparison-table th:not(:first-child),
  .comparison-table td:not(:first-child) {
    width: 80px;
  }
}

/* Download Section */
.download {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark) 100%);
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-content h2 {
  margin-bottom: 16px;
}

.download-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.store-button:hover {
  background: var(--bg-hover);
  border-color: var(--border-light);
}

.store-button svg {
  width: 32px;
  height: 32px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.store-name {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Download Features */
.download-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.download-feature svg {
  color: var(--primary);
}

@media (max-width: 640px) {
  .download-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

.footer-privacy {
  color: var(--primary) !important;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-phone {
    order: -1;
    margin-bottom: 40px;
  }

  .steps {
    flex-direction: column;
    gap: 24px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), var(--border));
    margin: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .phone-frame {
    width: 260px;
    height: 540px;
  }

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

  .pricing-card {
    padding: 32px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
