/* =============================================================================
   EXPERT CHECK INSPECTIONS - Marketing Website Styles
   Version: 2.0 - Enhanced Design
   
   TABLE OF CONTENTS:
   1. CSS Variables & Reset
   2. Typography
   3. Layout Utilities
   4. Navigation
   5. Hero Section
   6. Trust Bar
   7. Problem/Solution Section
   8. Features Section
   9. Screenshots Section
   10. Pricing Section
   11. Testimonials Section
   12. Final CTA Section
   13. Footer
   14. Animations
   15. Media Queries
   ============================================================================= */

/* =============================================================================
   1. CSS VARIABLES & RESET
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary Colors */
  --color-primary: #333b4d;
  --color-primary-light: #4a5568;
  --color-primary-dark: #1a202c;
  
  /* Accent Colors */
  --color-accent: #3182ce;
  --color-accent-hover: #2b6cb0;
  --color-accent-light: #ebf8ff;
  --color-accent-glow: rgba(49, 130, 206, 0.15);
  
  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  
  /* Neutrals */
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-card: #ffffff;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing - TIGHTENED */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* 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 -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(49, 130, 206, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(49, 130, 206, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* =============================================================================
   2. TYPOGRAPHY - ENHANCED SIZES
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary-dark);
}

/* BIGGER H1 */
h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* BIGGER H2 */
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
}

p {
  color: var(--color-text-muted);
}

/* Gradient Text Effect */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #667eea 50%, var(--color-accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* =============================================================================
   3. LAYOUT UTILITIES
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* TIGHTER SECTIONS */
.section {
  padding: var(--spacing-2xl) 0;
}

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

.section-header p {
  margin-top: var(--spacing-sm);
  font-size: 1.125rem;
}

/* Buttons - ENHANCED */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(49, 130, 206, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}

/* =============================================================================
   4. NAVIGATION
   ============================================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
  overflow: visible;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  display: none;
}

@media (min-width: 480px) {
  .nav-logo-text {
    display: block;
  }
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  display: none;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav-login:hover {
  color: var(--color-accent);
}

.nav-cta {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition-fast);
  z-index: 10000;
  position: relative;
}

.nav-toggle:hover,
.nav-toggle:active {
  background: var(--color-bg-alt);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--color-card);
  padding: var(--spacing-lg);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.active {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.2s ease;
}

.nav-mobile a {
  display: block;
  padding: var(--spacing-sm) 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: var(--spacing-md);
}

/* =============================================================================
   5. HERO SECTION - TIGHTENED
   ============================================================================= */

.hero {
  position: relative;
  padding: calc(72px + var(--spacing-xl)) 0 var(--spacing-xl);
  overflow: hidden;
}

/* Subtle gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, var(--color-accent-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  z-index: -1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.6s ease;
  border: 1px solid rgba(49, 130, 206, 0.2);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto var(--spacing-lg);
  animation: fadeInUp 0.6s ease 0.2s backwards;
  line-height: 1.6;
}

.hero-price {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
}

/* === HERO STATS BAR === */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

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

/* Hero Video */
.hero-video-wrapper {
  margin-top: var(--spacing-xl);
  animation: fadeInUp 0.8s ease 0.5s backwards;
}

.hero-video {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: var(--color-primary-dark);
}

.hero-video video {
  width: 100%;
  display: block;
}

.hero-video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-video-placeholder:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.hero-video-placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.9;
  animation: pulse-play 2s ease-in-out infinite;
}

.hero-video-placeholder span {
  font-weight: 500;
  opacity: 0.7;
  font-size: 1rem;
}

@keyframes pulse-play {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* =============================================================================
   6. TRUST BAR - COMPACT
   ============================================================================= */

.trust-bar {
  padding: var(--spacing-md) 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* =============================================================================
   7. PROBLEM/SOLUTION SECTION
   ============================================================================= */

.problem-solution {
  background: var(--color-card);
}

.comparison-grid {
  display: grid;
  gap: var(--spacing-md);
  max-width: 850px;
  margin: 0 auto;
}

.comparison-card {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
}

.comparison-card.old {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

.comparison-card.new {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(102, 126, 234, 0.08) 100%);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.comparison-card.new:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 800;
}

.comparison-header svg {
  width: 28px;
  height: 28px;
}

.comparison-card.old .comparison-header {
  color: var(--color-text-muted);
}

.comparison-card.old .comparison-header svg {
  color: var(--color-danger);
}

.comparison-card.new .comparison-header {
  color: var(--color-accent);
}

.comparison-card.new .comparison-header svg {
  color: var(--color-success);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.comparison-card.old .comparison-list li {
  color: var(--color-text-muted);
}

.comparison-card.new .comparison-list li {
  color: var(--color-text);
}

.comparison-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.comparison-card.old .comparison-list svg {
  color: var(--color-text-light);
}

.comparison-card.new .comparison-list svg {
  color: var(--color-success);
}

/* Arrow between cards */
.comparison-arrow {
  display: none;
  justify-content: center;
  color: var(--color-accent);
}

.comparison-arrow svg {
  width: 36px;
  height: 36px;
  animation: bounce-right 1.5s ease-in-out infinite;
}

@keyframes bounce-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* =============================================================================
   8. FEATURES SECTION - TIGHTER GRID
   ============================================================================= */

.features {
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  gap: var(--spacing-md);
}

.feature-card {
  padding: var(--spacing-lg);
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(49, 130, 206, 0.12);
  transform: translateY(-6px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(102, 126, 234, 0.1) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

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

.feature-card h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.125rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.features-link {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.features-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  transition: gap var(--transition-base);
}

.features-link a:hover {
  gap: 0.875rem;
}

.features-link svg {
  width: 20px;
  height: 20px;
}

/* =============================================================================
   9. SCREENSHOTS SECTION
   ============================================================================= */

.screenshots {
  background: var(--color-card);
}

.screenshots-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.screenshot-tab {
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.screenshot-tab:hover {
  color: var(--color-text);
  border-color: var(--color-border);
}

.screenshot-tab.active {
  background: var(--color-accent);
  color: white;
}

.screenshot-display {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-frame {
  background: var(--color-primary-dark);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-xl);
}

.screenshot-frame-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.screenshot-frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.screenshot-frame-dot:nth-child(1) { background: #ef4444; }
.screenshot-frame-dot:nth-child(2) { background: #f59e0b; }
.screenshot-frame-dot:nth-child(3) { background: #10b981; }

.screenshot-content {
  display: none;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.screenshot-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  color: var(--color-text-muted);
}

.screenshot-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.screenshot-caption {
  text-align: center;
  margin-top: var(--spacing-md);
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* =============================================================================
   10. PRICING SECTION - ENHANCED
   ============================================================================= */

.pricing {
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  gap: var(--spacing-md);
  max-width: 850px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: var(--spacing-lg);
  background: var(--color-card);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border);
  transition: all var(--transition-base);
}

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

/* FEATURED CARD - ENHANCED */
.pricing-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 25px 50px -12px rgba(49, 130, 206, 0.3);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 2px var(--color-accent), 0 30px 60px -12px rgba(49, 130, 206, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2563eb 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(49, 130, 206, 0.4);
}

.pricing-header {
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--spacing-md);
}

.pricing-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: var(--spacing-sm);
}

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

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
}

.pricing-card.featured .pricing-amount {
  color: var(--color-accent);
}

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

.pricing-description {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-xs);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: var(--spacing-lg);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

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

.pricing-features strong {
  color: var(--color-accent);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-accent-light) 0%, rgba(102, 126, 234, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(49, 130, 206, 0.2);
}

.pricing-note p {
  font-size: 1.0625rem;
  color: var(--color-text);
  font-weight: 500;
}

.pricing-note strong {
  color: var(--color-accent);
}

/* =============================================================================
   11. TESTIMONIALS SECTION
   ============================================================================= */

.testimonials {
  background: var(--color-card);
}

.testimonial-card {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.testimonial-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.testimonial-quote::before {
  content: '"';
  color: var(--color-accent);
  font-size: 1.5em;
}

.testimonial-quote::after {
  content: '"';
  color: var(--color-accent);
  font-size: 1.5em;
}

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

.testimonial-placeholder {
  font-style: italic;
  color: var(--color-text-light);
}

/* =============================================================================
   12. FINAL CTA SECTION
   ============================================================================= */

.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

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

.final-cta h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

.final-cta .btn-primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.final-cta .btn-primary:hover {
  background: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-primary::before {
  background: linear-gradient(90deg, transparent, rgba(49, 130, 206, 0.2), transparent);
}

.final-cta-contact {
  margin-top: var(--spacing-lg);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta-contact a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.final-cta-contact a:hover {
  color: var(--color-accent-light);
}

/* =============================================================================
   13. FOOTER
   ============================================================================= */

.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
}

.footer-canada {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* =============================================================================
   14. ANIMATIONS
   ============================================================================= */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations - NOW VISIBLE BY DEFAULT */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* If JS is working, start hidden */
.js-enabled .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.js-enabled .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   15. MEDIA QUERIES
   ============================================================================= */

/* Tablet and up */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
  
  /* Navigation */
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-login {
    display: block;
  }

  .nav-cta {
    display: inline-flex;
  }
  
  /* Hero */
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-stats {
    gap: var(--spacing-2xl);
  }
  
  /* Comparison */
  .comparison-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  
  .comparison-arrow {
    display: flex;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --container-padding: 2.5rem;
  }
  
  .nav-links {
    gap: 2.5rem;
  }
  
  /* Features - 3 columns on desktop */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large screens */
@media (min-width: 1280px) {
  :root {
    --container-max: 1280px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* =============================================================================
   16. COOKIE CONSENT BANNER
   ============================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-primary-dark);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: white;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--color-accent-hover);
}

.cookie-btn-essential {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-essential:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Desktop layout for cookie banner */
@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
  }
  
  .cookie-banner-buttons {
    flex-shrink: 0;
  }
}

/* === SCREENSHOT IMAGES WITH ZOOM === */
.screenshot-image-wrapper {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 8px;
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.screenshot-image-wrapper:hover .screenshot-img {
  transform: scale(1.02);
}

.screenshot-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.screenshot-image-wrapper:hover .screenshot-zoom-hint {
  opacity: 1;
}

/* === ZOOM MODAL === */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.zoom-modal.active {
  display: flex;
}

.zoom-modal-img {
  max-width: 95%;
  max-height: 95vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.zoom-close:hover {
  opacity: 1;
}

/* === SCREENSHOT SLIDER === */
.screenshot-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.screenshot-slides {
  display: flex;
  transition: transform 0.4s ease;
}

.screenshot-slide {
  min-width: 100%;
  display: none;
  cursor: zoom-in;
}

.screenshot-slide.active {
  display: block;
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 8px 8px;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 10;
}

.screenshot-slider:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 8px 16px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Zoom hint positioning for slider */
.screenshot-content .screenshot-zoom-hint {
  position: absolute;
  bottom: 60px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 5;
}

.screenshot-content:hover .screenshot-zoom-hint {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
    opacity: 1;
  }
  
  .slider-dots {
    padding: 6px 12px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .screenshot-zoom-hint {
    display: none;
  }
}