/* 
 * Podium HQ - Landing Page Styles
 * Modern, Everfit-inspired design
 */

:root {
  /* Brand Colors */
  --primary: #af1313;
  --primary-dark: #8c0f0f;
  --primary-light: rgba(175, 19, 19, 0.08);
  --primary-lighter: rgba(175, 19, 19, 0.04);
  --accent: #be9d4c;
  --accent-light: rgba(190, 157, 76, 0.2);
  
  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #af1313 0%, #d93636 50%, #af1313 100%);
  --gradient-text: linear-gradient(135deg, #af1313 0%, #e85555 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  
  /* Neutral Colors */
  --text: #1a1a1a;
  --text-secondary: #65676b;
  --text-tertiary: #8a8d91;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-light-secondary: rgba(255, 255, 255, 0.7);
  --background: #ffffff;
  --background-secondary: #f8f9fa;
  --background-tertiary: #f0f2f5;
  --border: #e4e6eb;
  --border-light: #f0f2f5;
  
  /* Semantic Colors */
  --success: #16a34a;
  --success-light: rgba(22, 163, 74, 0.1);
  --warning: #ca8a04;
  --error: #dc2626;
  --blue: #3b82f6;
  --blue-light: rgba(59, 130, 246, 0.1);
  --purple: #8b5cf6;
  --purple-light: rgba(139, 92, 246, 0.1);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography - Fluid Scaling */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.25rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

.navbar-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.navbar-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline-light:hover {
  background: var(--background-tertiary);
  border-color: var(--text-tertiary);
}

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

.btn-ghost:hover {
  background: var(--background-tertiary);
  color: var(--text);
}

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

.btn-white:hover {
  background: var(--background-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: clamp(100px, 15vw, 140px) 0 clamp(40px, 8vw, 80px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-secondary) 100%);
}

.hero-bg-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin: 0;
}

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

.hero-app-preview {
  position: relative;
  background: linear-gradient(145deg, #f8f9fa 0%, #e8eaed 100%);
  border-radius: var(--radius-2xl);
  padding: clamp(30px, 5vw, 60px);
  min-height: clamp(350px, 50vw, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-app-preview .app-screenshot {
  width: clamp(120px, 15vw, 180px);
  height: clamp(120px, 15vw, 180px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(8px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  box-shadow: var(--shadow-float);
  animation: float 6s ease-in-out infinite;
  max-width: calc(100% - 20px);
}

.floating-card.card-1 {
  top: clamp(20px, 4vw, 40px);
  right: clamp(-10px, -2vw, -20px);
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: clamp(60px, 10vw, 100px);
  left: clamp(-15px, -3vw, -30px);
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: clamp(20px, 4vw, 40px);
  right: clamp(10px, 2vw, 20px);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-icon {
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
}

.card-icon.green {
  background: var(--success-light);
  color: var(--success);
}

.card-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}

.card-icon.purple {
  background: var(--purple-light);
  color: var(--purple);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  color: var(--text-tertiary);
  white-space: nowrap;
}

.card-value {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* Stats Bar */
.stats-bar {
  background: var(--text);
  padding: clamp(24px, 3vw, 32px) 0;
}

.stats-bar .stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.stats-bar .stat-item {
  text-align: center;
  min-width: 100px;
}

.stats-bar .stat-number {
  display: block;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stats-bar .stat-label {
  font-size: clamp(0.75rem, 1.5vw + 0.25rem, 0.875rem);
  color: var(--text-light-secondary);
}

.stat-divider {
  width: 1px;
  height: clamp(30px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.2);
}

/* Logo Cloud */
.logo-cloud {
  padding: var(--space-3xl) 0;
  background: var(--background-secondary);
}

.logo-cloud-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.logo-item {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-tertiary);
  opacity: 0.6;
}

/* Sections */
.section {
  padding: var(--space-5xl) 0;
}

.section-dark {
  background: var(--gradient-dark);
}

.section-gradient {
  background: var(--gradient-primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.section-label.light {
  color: var(--text-light-secondary);
}

.section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-title.light {
  color: white;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

.section-description.light {
  color: var(--text-light-secondary);
}

/* Features Showcase */
.features-showcase {
  background: var(--background);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.feature-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--background-secondary);
}

.feature-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

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

.feature-tab:hover {
  color: var(--text);
  background: var(--background);
}

.feature-tab.active {
  color: var(--primary);
  background: var(--background);
  border-bottom-color: var(--primary);
}

.feature-panels {
  padding: var(--space-3xl);
}

.feature-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-panel.active {
  display: grid;
}

.panel-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.panel-content > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.feature-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 1rem;
  color: var(--text);
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* Mockup Cards */
.mockup-card {
  background: var(--background);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mockup-header {
  display: flex;
  gap: 6px;
  padding: var(--space-md);
  background: var(--background-secondary);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-body {
  padding: var(--space-lg);
}

.mockup-workout {
  background: var(--background-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

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

.workout-title {
  font-weight: 600;
  font-size: 0.9375rem;
}

.workout-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

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

.exercise-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

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

.exercise-name {
  color: var(--text);
}

.exercise-detail {
  color: var(--text-tertiary);
}

/* Chart Mockup */
.mockup-chart {
  padding: var(--space-md);
}

.chart-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.chart-visual {
  display: flex;
  align-items: flex-end;
  gap: var(--space-md);
  height: 120px;
  margin-bottom: var(--space-md);
}

.chart-bar {
  flex: 1;
  background: var(--border);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all 0.3s ease;
}

.chart-bar.highlight {
  background: var(--primary);
}

.chart-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--success);
}

/* Chat Mockup */
.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.chat-message.athlete {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-message.athlete .chat-avatar {
  background: var(--blue-light);
  color: var(--blue);
}

.chat-text {
  background: var(--background-secondary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  max-width: 80%;
}

.chat-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
}

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

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

/* Dashboard Mockup */
.mockup-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.dash-stat {
  background: var(--background-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.dash-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.dash-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.dash-growth {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--success-light);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.growth-arrow {
  color: var(--success);
  font-weight: 700;
}

.growth-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--success);
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.audience-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.3s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.audience-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.audience-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.audience-card > p {
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
  margin-bottom: var(--space-lg);
}

.audience-card ul {
  list-style: none;
}

.audience-card li {
  padding: var(--space-xs) 0;
  font-size: 0.875rem;
  color: var(--text-light-secondary);
}

.audience-card li::before {
  content: "✓";
  color: var(--primary);
  margin-right: var(--space-sm);
}

/* Testimonials */
.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.testimonial-card.featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.testimonial-content {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.testimonial-card:not(.featured) .testimonial-content {
  font-size: 0.9375rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

.author-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

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

.testimonial-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

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

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

.tstat-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Results Section */
.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.results-text {
  max-width: 480px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.result-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

.result-number {
  display: block;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.result-label {
  font-size: clamp(0.8125rem, 1.5vw + 0.25rem, 0.9375rem);
  color: var(--text-light-secondary);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.pricing-card {
  background: var(--background);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.pricing-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-md);
}

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

.pricing-currency {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-amount {
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3rem);
  font-weight: 800;
  color: var(--text);
}

.pricing-period {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  color: var(--text-tertiary);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-top: var(--space-xl);
}

/* Final CTA */
.cta-final {
  background: var(--gradient-primary);
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  margin-bottom: var(--space-xl);
}

.cta-actions {
  margin-bottom: var(--space-md);
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
}

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

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-column h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

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

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.site-admin-link {
  /* Same style as other footer links */
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 999;
  padding: var(--space-lg);
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-links {
  list-style: none;
  flex: 1;
}

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

.mobile-menu-links a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.mobile-menu-actions {
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu-actions .btn {
  width: 100%;
}

/* Page Header (for other pages) */
.page-header {
  padding: clamp(100px, 15vw, 160px) 0 var(--space-3xl);
  background: linear-gradient(180deg, var(--background) 0%, var(--background-secondary) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--text-secondary);
  max-width: min(640px, 90%);
  margin: 0 auto;
}

/* Contact Grid (Two-column feature layout) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: var(--space-3xl);
  align-items: center;
}

.contact-info {
  padding-right: var(--space-xl);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

/* Visual placeholder containers */
.contact-grid > div:has(svg) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  min-height: clamp(200px, 30vw, 300px);
  aspect-ratio: 1 / 1;
  max-width: 100%;
}

.contact-grid > div:has(svg) svg {
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  max-width: 100%;
}

/* Section Alt (alternating background) */
.section-alt {
  background: var(--background-secondary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-xl);
}

/* Feature Cards */
.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta .cta-content {
  max-width: min(640px, 90%);
  margin: 0 auto;
}

.cta h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-md);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  margin-bottom: var(--space-xl);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: clamp(16px, 3vw, 24px);
  font-family: var(--font-family);
  font-size: clamp(0.9375rem, 2vw + 0.25rem, 1.0625rem);
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-left: var(--space-md);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Device Mockup */
.device-mockup {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.phone-frame {
  background: #1a1a1a;
  border-radius: clamp(24px, 4vw, 48px);
  padding: clamp(8px, 1.5vw, 16px);
  box-shadow: var(--shadow-2xl);
  max-width: 100%;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen {
  background: var(--background);
  border-radius: clamp(16px, 3vw, 36px);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature Visual Container */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

/* Phone Mockup */
.phone-mockup {
  background: #1a1a1a;
  border-radius: clamp(28px, 5vw, 44px);
  padding: clamp(8px, 1.5vw, 12px);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  max-width: clamp(200px, 50vw, 280px);
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: clamp(8px, 1.5vw, 12px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 15vw, 90px);
  height: clamp(20px, 3vw, 28px);
  background: #1a1a1a;
  border-radius: 0 0 clamp(12px, 2vw, 16px) clamp(12px, 2vw, 16px);
  z-index: 10;
}

.phone-screen-content {
  background: var(--background);
  border-radius: clamp(20px, 4vw, 36px);
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Mockup App Header */
.mockup-app-header {
  background: var(--primary);
  color: white;
  padding: clamp(30px, 5vw, 45px) clamp(12px, 2vw, 16px) clamp(10px, 2vw, 14px);
  text-align: center;
}

.mockup-title {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
}

/* Mockup Workout List */
.mockup-workout-list {
  padding: clamp(8px, 1.5vw, 12px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
}

.mockup-workout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-secondary);
  padding: clamp(8px, 1.5vw, 12px);
  border-radius: var(--radius-md);
}

.workout-name {
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 500;
  color: var(--text);
}

.workout-sets {
  font-size: clamp(9px, 1.25vw, 12px);
  color: var(--text-tertiary);
}

/* Mockup Chart (for progress section) */
.phone-screen-content .mockup-chart {
  flex: 1;
  padding: clamp(12px, 2vw, 20px);
  display: flex;
  flex-direction: column;
}

.chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 1vw, 10px);
  padding-bottom: clamp(8px, 1.5vw, 12px);
}

.chart-bars .chart-bar {
  flex: 1;
  max-width: clamp(20px, 4vw, 30px);
  background: var(--border);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all 0.3s ease;
}

.chart-bars .chart-bar.highlight {
  background: var(--primary);
}

.chart-stat {
  text-align: center;
  font-size: clamp(10px, 1.5vw, 13px);
  font-weight: 600;
  color: var(--success);
  padding-top: clamp(6px, 1vw, 10px);
  border-top: 1px solid var(--border);
}

/* Responsive - Large screens (1200px+) */
@media (min-width: 1201px) {
  .container {
    max-width: 1200px;
  }
}

/* Responsive - Medium-large screens */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

/* Responsive - Tablets and small laptops */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-visual {
    display: none;
  }
  
  .stats-bar .stats-grid {
    gap: var(--space-xl);
    flex-wrap: wrap;
  }
  
  .stats-bar .stat-number {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }
  
  .feature-panel {
    grid-template-columns: 1fr;
  }
  
  .panel-image {
    display: none;
  }
  
  .audience-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card.featured {
    grid-row: auto;
  }
  
  .results-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .results-text {
    max-width: 100%;
    margin-bottom: var(--space-xl);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--space-lg);
  }
  
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
  
  /* Contact grid adjustments */
  .contact-grid {
    gap: var(--space-xl);
  }
  
  .contact-info {
    padding-right: 0;
  }
}

/* Responsive - Tablets (portrait) */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  
  .navbar-toggle {
    display: block;
  }
  
  .navbar-content {
    height: 64px;
  }
  
  .hero {
    padding: clamp(100px, 15vw, 140px) 0 clamp(40px, 8vw, 80px);
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero-description {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.125rem);
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-bar .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .stat-divider {
    display: none;
  }
  
  .stats-bar .stat-item {
    text-align: center;
  }
  
  .logo-grid {
    gap: var(--space-lg);
  }
  
  .logo-item {
    font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-2xl);
  }
  
  .section-title {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  }
  
  .section-description {
    font-size: clamp(0.9375rem, 2vw + 0.25rem, 1.125rem);
  }
  
  .feature-tabs {
    flex-wrap: wrap;
  }
  
  .feature-tab {
    flex: 1 1 50%;
    padding: var(--space-md);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  
  .feature-tab svg {
    width: 18px;
    height: 18px;
  }
  
  .feature-panels {
    padding: var(--space-xl);
  }
  
  .panel-content h3 {
    font-size: clamp(1.25rem, 3vw + 0.25rem, 1.75rem);
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .result-number {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }
  
  .result-label {
    font-size: clamp(0.75rem, 2vw, 0.9375rem);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .cta-final h2,
  .cta h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }
  
  .cta-final p,
  .cta p {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  }
  
  /* Features grid adjustments */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-lg);
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* Audience cards */
  .audience-card {
    padding: var(--space-lg);
  }
  
  .audience-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
  }
  
  .audience-icon svg {
    width: 24px;
    height: 24px;
  }
  
  /* Testimonials */
  .testimonial-content {
    font-size: clamp(0.9375rem, 2vw + 0.25rem, 1.0625rem);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  /* Pricing */
  .pricing-card {
    padding: var(--space-lg);
  }
  
  .pricing-amount {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

/* Responsive - Mobile devices */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .hero-badge .badge-dot {
    width: 6px;
    height: 6px;
  }
  
  .feature-tab {
    flex: 1 1 100%;
  }
  
  .stats-bar .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-bar .stat-number {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
  
  .stats-bar .stat-label {
    font-size: clamp(0.6875rem, 2vw, 0.875rem);
  }
  
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  
  .result-card {
    padding: var(--space-md);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-brand {
    grid-column: 1;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }
  
  /* Logo cloud */
  .logo-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  /* Feature panels */
  .feature-panels {
    padding: var(--space-lg);
  }
  
  .feature-list li {
    font-size: 0.9375rem;
  }
  
  /* Audience grid */
  .audience-grid {
    gap: var(--space-md);
  }
  
  /* Testimonials */
  .testimonials-grid {
    gap: var(--space-md);
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  /* Buttons */
  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
  
  /* CTA sections */
  .cta-final,
  .cta {
    padding: var(--space-3xl) 0;
  }
}

/* Responsive - Very small screens */
@media (max-width: 360px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .navbar-logo span {
    font-size: 1rem;
  }
  
  .navbar-logo img {
    width: 32px;
    height: 32px;
  }
  
  .stats-bar .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .pricing-grid {
    gap: var(--space-md);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .cta-final,
  .stats-bar {
    display: none;
  }
  
  .hero {
    padding-top: 0;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: underline;
  }
}
