/* ============================================
   PR Coverage Hub - Modern Premium Design
   ============================================ */

/* CSS Variables & Design System */
:root {
  /* Core Colors - Maintained */
  --primary: #2c6e8e;
  --primary-dark: #235a75;
  --primary-light: #3d8db8;
  --primary-ultra-light: rgba(44, 110, 142, 0.08);
  
  --text-dark: #3a4252;  /* Softer black */
  --text-body: #5a6578;  /* Softer body text */
  --text-light: #718096;
  --text-muted: #a0aec0;
  
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  
  --accent: #ff6b6b;
  --accent-light: rgba(255, 107, 107, 0.1);
  --success: #48bb78;
  --success-light: rgba(72, 187, 120, 0.1);
  --warning: #f6ad55;
  --warning-light: rgba(246, 173, 85, 0.1);
  
  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #ff8787 100%);
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #e6f3ff 100%);
  --gradient-dark: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-mesh: radial-gradient(circle at 20% 80%, rgba(44, 110, 142, 0.05) 0%, transparent 50%),
                   radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
                   radial-gradient(circle at 40% 40%, rgba(72, 187, 120, 0.03) 0%, transparent 50%);
  
  /* Typography System */
  --font-primary: 'Nunito', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-mono: 'Montserrat', sans-serif;
  
  /* Fluid Type Scale */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
  --fs-3xl: clamp(2rem, 1.75rem + 1.25vw, 2.5rem);
  --fs-4xl: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  --fs-5xl: clamp(3rem, 2.25rem + 3vw, 4.5rem);
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Layout */
  --container-max: 1280px;
  --container-padding: max(1.5rem, calc((100vw - var(--container-max)) / 2));
  
  /* Premium Shadows */
  --shadow-sm: 0 1px 2px 0 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 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(44, 110, 142, 0.15);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.08);
  
  /* Animations */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* ============================================
   Global Reset & Base
   ============================================ */

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

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

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Smooth Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  color: #414a5b;
  font-weight: 600;
}

h1 { 
  font-size: var(--fs-5xl);
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

h3 { 
  font-size: var(--fs-2xl);
  font-weight: 700;
}

p {
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 400;
}

.lead {
  font-size: var(--fs-lg);
  color: var(--text-body);
  font-weight: 400;
  opacity: 0.9;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

/* ============================================
   Alert Styles (Form Messages)
   ============================================ */

.alert {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInAlert 0.3s ease-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideInAlert {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-error {
  background-color: #fee;
  color: #c62828;
  border-left: 4px solid #c62828;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.alert::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.alert-error::before {
  content: '⚠';
  font-size: 20px;
}

.alert-success::before {
  content: '✓';
  font-size: 20px;
  font-weight: bold;
}

.alert-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

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

/* Form Field Validation Styles */
.form-error {
  border: 2px solid #c62828 !important;
  background-color: #ffebee;
}

.form-error:focus {
  outline: none;
  border-color: #c62828 !important;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.field-error-message {
  color: #c62828;
  font-size: 13px;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.field-error-message.show {
  display: block;
}

/* Loading State */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Smooth scroll highlight */
.highlight-section {
  animation: highlightPulse 2s ease-out;
}

@keyframes highlightPulse {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(79, 70, 229, 0.05);
  }
}

/* ============================================
   Navigation - Premium Glass Effect
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

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

.nav-brand {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-sm);
  position: relative;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

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

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

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

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform var(--transition-base);
  border-radius: var(--radius-md);
}

.nav-toggle:hover {
  background: var(--gray-100);
}

.nav-toggle:active {
  transform: scale(0.95);
}

.nav-toggle.toggle-active {
  background: var(--primary-ultra-light);
}

/* ============================================
   Buttons - Premium Styles
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-outline {
  font-family: var(--font-secondary);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: var(--fs-sm);
  box-shadow: 0 4px 15px rgba(44, 110, 142, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 110, 142, 0.4);
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-body);
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-sm);
}

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

.btn-outline {
  background: var(--white);
  color: var(--primary);
  padding: 0.875rem 2rem;
  font-size: var(--fs-sm);
  border: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-ultra-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Hero Section - Premium Design
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4xl) 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(44, 110, 142, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -25%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(1deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  animation: slideDown 0.8s ease-out;
  box-shadow: 0 4px 15px rgba(44, 110, 142, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin-bottom: var(--space-lg);
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

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

.hero-description {
  font-size: var(--fs-lg);
  color: var(--text-body);
  margin-bottom: var(--space-xl);
  animation: slideUp 0.8s ease-out 0.3s backwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.text-accent {
  color: var(--accent);
}

/* ============================================
   Partners Section - Clean Design
   ============================================ */

.partners {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
  position: relative;
  padding-top: 3rem;
  padding-bottom: 10rem;
}

.partners-text {
  text-align: center;
  color: var(--text-light);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-base);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.partner-logo {
  opacity: 0.5;
  transition: all var(--transition-base);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.partner-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   Features Section - Modern Cards
   ============================================ */

.features {
  padding: var(--space-4xl) 0;
  position: relative;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.features-text {
  max-width: 500px;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-ultra-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.features-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
  color: var(--text-dark);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: var(--gray-50);
  transform: translateX(10px);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  font-size: var(--fs-sm);
}

.feature-item span {
  color: var(--text-body);
  font-size: var(--fs-base);
  line-height: 1.6;
}

.features-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.stats-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-green {
  top: 20%;
  right: -10%;
  background: linear-gradient(135deg, var(--success), #5fc983);
}

.stats-dark {
  bottom: 20%;
  left: -10%;
  background: linear-gradient(135deg, var(--text-dark), var(--text-body));
}

.stats-card h3 {
  font-size: var(--fs-sm);
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stats-value {
  font-family: var(--font-mono);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stats-change {
  font-size: var(--fs-xs);
  color: var(--white);
  opacity: 0.8;
}

/* ============================================
   How It Works - Scrollytelling Experience
   ============================================ */

.how-it-works-scroll {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Intro Section */
.scroll-intro {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--white) 50%, var(--accent-light) 100%);
  position: relative;
  display: none;
}

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

.scroll-intro .section-header h2 {
  margin-bottom: var(--space-md);
}

.scroll-intro .section-header p {
  color: var(--text-body);
  font-size: var(--fs-base);
  line-height: 1.8;
}

/* Scroll Steps Container */
.scroll-steps {
  position: relative;
  background: var(--white);
}

/* Individual Step */
.scroll-step {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--space-3xl) 0;
}

.scroll-step-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Step Content (Left Side - Sticky) - ALWAYS VISIBLE */
.scroll-step-content {
  position: sticky;
  top: 120px;
  padding: var(--space-2xl);
  opacity: 1;
  transform: translateX(0);
}

.step-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  letter-spacing: 0.05em;
}

.scroll-step-content h3 {
  font-size: var(--fs-3xl);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

.scroll-step-content p {
  font-size: var(--fs-lg);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

/* Step Features List */
.step-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.step-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.step-feature:hover {
  background: var(--primary-ultra-light);
  transform: translateX(10px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-feature span:last-child {
  font-size: var(--fs-sm);
  color: var(--text-dark);
  font-weight: 500;
}

/* Step Image (Right Side) - ALWAYS VISIBLE */
.scroll-step-image {
  position: relative;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 110, 142, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
  opacity: 1;
  pointer-events: none;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* Alternating Layout for Even Steps */
.scroll-step:nth-child(even) .scroll-step-container {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.scroll-step:nth-child(even) .scroll-step-container > * {
  direction: ltr;
}

/* Outro Section */
.scroll-outro {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--accent-light) 100%);
  text-align: center;
}

.outro-content {
  max-width: 600px;
  margin: 0 auto;
}

.outro-content h3 {
  font-size: var(--fs-3xl);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.outro-content p {
  font-size: var(--fs-lg);
  color: var(--text-body);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

/* ============================================
   Coverage Section - Premium Grid
   ============================================ */

.coverage {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.coverage-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.coverage-feature {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.coverage-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.coverage-feature:hover::before {
  transform: scaleX(1);
}

.coverage-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.coverage-feature.green .feature-icon { background: var(--gradient-primary); }
.coverage-feature.red .feature-icon { background: var(--gradient-accent); }
.coverage-feature.blue .feature-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.coverage-feature.orange .feature-icon { background: linear-gradient(135deg, var(--warning), #f6ad55); }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.feature-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.coverage-feature h3 {
  font-size: var(--fs-lg);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.coverage-feature p {
  color: var(--text-body);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.coverage-mockup {
  display: none;
}

/* ============================================
   Templates Section - Carousel
   ============================================ */

.templates {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.templates::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(44, 110, 142, 0.03) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: rotateBackground 60s linear infinite;
}

@keyframes rotateBackground {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Carousel Container */
.templates-carousel {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 60px;
  z-index: 1;
}

/* Carousel Track Container */
.carousel-track-container {
  overflow: hidden;
  border-radius: 12px;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Template Slide */
.template-slide {
  min-width: 50%;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Template Image Container */
.template-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: #fff;
}

.template-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.template-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 450px;
  object-fit: cover;
}

/* Template Overlay (appears on hover) */
.template-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.template-image:hover .template-overlay {
  transform: translateY(0);
}

.template-overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Featured Badge */
.template-slide.featured .template-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #2d3748;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover:not(:disabled) {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: #a0aec0;
  transform: scale(1.2);
}

.carousel-dot.active {
  background: #667eea;
  width: 32px;
  border-radius: 6px;
}

/* Smooth fade in for new slides */
@keyframes slideIn {
  from {
    opacity: 0.8;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.template-slide {
  animation: slideIn 0.4s ease;
}

/* Pulse effect for active dot */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0);
  }
}

.carousel-dot.active {
  animation: pulse 2s infinite;
}

/* Accessibility */
.carousel-btn:focus,
.carousel-dot:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

/* ============================================
   Testimonials - Modern Carousel
   ============================================ */

.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
  overflow: hidden;
}

.testimonials-marquee {
  margin-top: var(--space-3xl);
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  display: flex;
  gap: var(--space-lg);
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.track-right .testimonials-grid {
  animation-direction: reverse;
}

.testimonials:hover .testimonials-grid {
  animation-play-state: paused;
}

.testimonial {
  flex: 0 0 auto;
  width: 350px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-icon {
  font-size: var(--fs-3xl);
  color: var(--primary);
  opacity: 0.2;
}

.testimonial p {
  color: var(--text-body);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-200);
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: var(--fs-xs);
  font-weight: 400;
}

/* ============================================
   Pricing - Premium Cards
   ============================================ */

.pricing {
  padding: var(--space-4xl) 0;
  background: var(--white);
  position: relative;
}

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

.pricing .section-header h2 {
  margin-bottom: var(--space-md);
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: var(--space-3xl) auto 0;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-base);
  border: 2px solid var(--gray-200);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-ultra-light) 100%);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.currency {
  font-size: var(--fs-xl);
  color: var(--text-body);
}

.amount {
  font-family: var(--font-mono);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--text-dark);
}

.billing {
  color: var(--text-light);
  font-size: var(--fs-sm);
  margin-bottom: 2rem;
}

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

.pricing-card .features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e4e7ec;
  font-size: var(--fs-sm);
  color: var(--text-body);
}

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

.check {
  color: var(--success);
  font-weight: bold;
}

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

.no-card {
  text-align: center;
  color: var(--text-light);
  font-size: var(--fs-xs);
  margin-top: var(--space-sm);
}

/* ============================================
   Contact - Modern Form with 75/25 Split
   ============================================ */

.contact {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.contact-container {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 75% 25%;
  box-shadow: var(--shadow-2xl);
  margin-top: var(--space-3xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  padding: var(--space-3xl);
}

.contact-form h3 {
  font-size: var(--fs-2xl);
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.contact-form > p {
  color: var(--text-body);
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f7f8fa;
  border: 2px solid #d1d5db;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--text-dark);
  transition: all var(--transition-base);
  font-family: var(--font-secondary);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--primary-light);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-ultra-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.contact-form button {
  width: 100%;
  margin-top: var(--space-md);
}

.contact-image {
  background: linear-gradient(rgba(83, 152, 185, 0.9), rgba(31, 115, 155, 0.9)), url("assets/photo-1573496359142-b8d87734a5a2.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

.contact-quote {
  color: var(--white);
}

.contact-quote p {
  color: var(--white);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.quote-author {
  color: var(--white);
  opacity: 0.9;
  font-size: var(--fs-xs);
}

/* ============================================
   FAQ - Clean Accordion
   ============================================ */

.faq {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  color: var(--text-dark);
  transition: all var(--transition-base);
}

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

.faq-toggle svg {
  transition: transform var(--transition-base);
}

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

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-body);
  line-height: 1.7;
  animation: slideDownFaq 0.3s ease-out;
}

@keyframes slideDownFaq {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
}

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

/* ============================================
   Footer - Compact Horizontal Design
   ============================================ */

.footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-2xl) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: var(--space-xl);
}

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

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.social-link:hover img {
  filter: brightness(0) invert(1);
}

.social-link img {
  width: 20px;
  height: 20px;
  transition: filter var(--transition-base);
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-section h4 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
}

.footer-section a {
  color: var(--text-body);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .templates-carousel {
    padding: 0 50px;
  }
  
  .template-image img {
    min-height: 400px;
  }
  
  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .features {
    padding: var(--space-3xl) 0;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }
  
  .features-text {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .features-title {
    text-align: center;
  }
  
  .features-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-item {
    text-align: left;
  }
  
  .feature-item:hover {
    transform: translateX(0);
    background: var(--gray-50);
  }
  
  .features-image {
    order: -1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .features-image img {
    max-width: 100%;
    width: 100%;
  }
  
  .stats-card {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: var(--space-md) auto;
    max-width: 300px;
  }
  
  /* Scrollytelling Responsive */
  .scroll-step-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .scroll-step:nth-child(even) .scroll-step-container {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .scroll-step-content {
    position: relative;
    top: 0;
    padding: var(--space-lg);
  }
  
  .scroll-step-content h3 {
    font-size: var(--fs-2xl);
  }
  
  .scroll-step-content p {
    font-size: var(--fs-base);
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-2xl);
  }
  
  .contact-image {
    min-height: 300px;
    padding: var(--space-xl);
  }
  
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    position: relative;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    z-index: 9998;
  }
  
  .nav-links.nav-active {
    left: 0;
  }
  
  .nav-links a {
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .nav-buttons {
    position: fixed;
    bottom: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    padding: var(--space-lg);
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    flex-direction: column;
    gap: 0.75rem;
    transition: left 0.3s ease;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
  
  .nav-buttons.nav-active {
    left: 0;
  }
  
  .nav-buttons .btn-primary,
  .nav-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Overlay for mobile menu */
  body::after {
    content: '';
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
    pointer-events: none;
  }
  
  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  /* Footer Responsive */
  .footer-content {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links {
    width: 100%;
    justify-content: center;
  }
  
  .footer-section {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --fs-5xl: clamp(2rem, 5vw, 3rem);
    --fs-4xl: clamp(1.75rem, 4vw, 2.5rem);
    --fs-3xl: clamp(1.5rem, 3.5vw, 2rem);
  }
  
  .templates {
    padding: var(--space-3xl) 0;
  }
  
  .templates-carousel {
    padding: 0 50px;
    margin-top: 40px;
  }
  
  .template-slide {
    min-width: 100%;
    padding: 0 8px;
  }
  
  .template-image img {
    min-height: 350px;
  }
  
  .template-overlay h3 {
    font-size: 20px;
  }
  
  .carousel-btn {
    width: 38px;
    height: 38px;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
  
  .carousel-dots {
    margin-top: 30px;
    gap: 10px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
  
  .carousel-dot.active {
    width: 28px;
  }
  
  .hero {
    min-height: 100vh;
    padding: var(--space-3xl) 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
  }
  
  .features {
    padding: var(--space-3xl) 0;
  }
  
  .features-content {
    gap: var(--space-2xl);
  }
  
  .features-text {
    padding: 0 1rem;
  }
  
  .features-title {
    font-size: var(--fs-2xl);
  }
  
  .features-list {
    gap: var(--space-sm);
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .features-image {
    max-width: 500px;
    padding: 0 0.5rem;
  }
  
  .features-image img {
    border-radius: var(--radius-xl);
  }
  
  .stats-card {
    padding: 1.25rem;
    min-width: 250px;
    display: none;
  }
  
  .stats-value {
    font-size: var(--fs-2xl);
  }
  
  /* Scrollytelling Mobile */
  .scroll-step {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
  
  .scroll-step-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .scroll-step:nth-child(even) .scroll-step-container {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .scroll-step-content {
    position: relative;
    top: 0;
    padding: var(--space-md);
  }
  
  .step-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .scroll-step-content h3 {
    font-size: var(--fs-xl);
  }
  
  .scroll-step-content p {
    font-size: var(--fs-sm);
  }
  
  .step-features {
    gap: var(--space-sm);
  }
  
  .step-feature {
    padding: 0.5rem 0.75rem;
  }
  
  .image-wrapper {
    border-radius: var(--radius-lg);
  }
  
  .scroll-outro {
    padding: var(--space-3xl) 0;
  }
  
  .outro-content h3 {
    font-size: var(--fs-2xl);
  }
  
  .outro-content p {
    font-size: var(--fs-base);
  }
  
  .coverage-features {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-2xl);
  }
  
  .contact-image {
    min-height: 250px;
    padding: var(--space-lg);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    max-width: 100%;
    padding: var(--space-lg);
  }
  
  .nav-buttons {
    max-width: 100%;
  }
  
  .footer-brand h3 img {
    max-width: 120px !important;
  }
  
  .social-links {
    gap: 0.5rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link img {
    width: 18px;
    height: 18px;
  }
  
  .footer-content {
    gap: var(--space-xl);
    text-align: center;
  }
  
  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .templates-carousel {
    padding: 0 40px;
  }
  
  .template-image img {
    min-height: 300px;
  }
  
  .template-slide.featured .template-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .carousel-btn {
    width: 34px;
    height: 34px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .carousel-track {
    transition: none;
  }
  
  .template-image,
  .template-overlay {
    transition: none;
  }
  
  .carousel-dot.active {
    animation: none;
  }
  
  .template-slide {
    animation: none;
  }
}
