/* ===========================================
   DESIGN-SYSTEM FÜR DESIGNTRENDS 2025
   Professionelle UI-Komponenten-Bibliothek
   =========================================== */

/* Import der Basis-Variablen */
@import url('styles.css');

/* ===========================================
   FORTGESCHRITTENE KOMPONENTEN
   =========================================== */

/* Hero Section Component */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: -1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Stats Component */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-3xl) 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Feature Grid Component */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-4xl) 0;
}

.feature-card {
  padding: var(--space-2xl);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 1px solid var(--color-gray-100);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 2rem;
}

.feature-primary .feature-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
}

.feature-secondary .feature-icon {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: white;
}

.feature-accent .feature-icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Testimonial Component */
.testimonial-card {
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-gray-50), white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  position: relative;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-gray-700);
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary);
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: serif;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  margin-right: var(--space-md);
}

.testimonial-info h4 {
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* CTA Section Component */
.cta-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===========================================
   ANIMATIONS
   =========================================== */

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Utility Classes für Animationen */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

/* Stagger Animation Classes */
.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}

/* ===========================================
   RESPONSIVE UTILITIES
   =========================================== */

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

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

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

/* ===========================================
   ACCESSIBILITY ENHANCEMENTS
   =========================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle {
    animation: none;
  }

  .animate-fade-in-up,
  .animate-slide-in-left,
  .animate-slide-in-right,
  .animate-scale-in {
    animation: none;
  }
}

/* Focus Styles */
.btn:focus,
.card:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .feature-card {
    border: 2px solid var(--color-gray-900);
  }

  .stat-card {
    border: 2px solid var(--color-gray-900);
  }
}

/* ===========================================
    MINIMALISM 2.0 COMPONENTS
    =========================================== */

.trend-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.trend-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.micro-btn {
  position: relative;
  overflow: hidden;
}

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

.micro-btn:active::before {
  width: 300px;
  height: 300px;
}

.color-btn {
  transition: all 0.2s ease;
}

.color-btn:hover {
  transform: scale(1.05);
}

.color-btn.ring-2 {
  box-shadow: 0 0 0 2px #3b82f6;
}

/* ===========================================
    ENHANCED MINIMALISM COMPONENTS
    =========================================== */

/* Enhanced Micro Buttons */
.micro-btn {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.micro-btn span {
  position: relative;
  z-index: 1;
}

.micro-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.micro-btn:active::before {
  width: 300px;
  height: 300px;
}

.micro-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Enhanced Color Palette */
.palette-color {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  font-family: 'Inter', monospace;
}

.palette-color:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.palette-color .copy-feedback {
  animation: copyPulse 1.5s ease-out;
}

@keyframes copyPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Typography Demo */
#typography-demo {
  transition: all 0.3s ease;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  backdrop-filter: blur(10px);
}

.dark #typography-demo {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  border-color: rgba(255, 255, 255, 0.1);
}

/* Enhanced Spacing Demo */
.spacing-bar {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.spacing-bar::after {
  content: attr(data-value);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

.dark .spacing-bar::after {
  color: var(--color-gray-300);
}

/* Enhanced Example Cards */
.example-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
  z-index: 1;
}

.example-card:hover::before {
  left: 100%;
}

.example-card img {
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1);
}

.example-card:hover img {
  filter: brightness(1.1) contrast(1.05);
}

.example-card .overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  transition: all 0.5s ease;
}

.example-card:hover .overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

/* Enhanced Tags */
.trend-tag {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trend-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Slider */
.slider-container {
  position: relative;
}

.slider-track {
  background: linear-gradient(90deg, var(--color-gray-200), var(--color-gray-300));
  border-radius: 9999px;
  height: 6px;
  position: relative;
  cursor: pointer;
}

.slider-track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-thumb:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced Demo Containers */
.demo-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.9));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark .demo-container {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  border-color: rgba(255, 255, 255, 0.1);
}

/* Loading States */
.loading-shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Enhanced Focus States */
.focus-ring {
  transition: all 0.2s ease;
}

.focus-ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
  border-color: #3b82f6;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .micro-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .palette-color {
    height: 3rem;
  }

  .example-card {
    margin-bottom: 1rem;
  }
}

/* Print Styles for PDF */
@media print {
  .micro-btn,
  .palette-color,
  .example-card {
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .demo-container {
    background: white !important;
    border: 1px solid #ddd !important;
  }
}

/* ===========================================
    FORM COMPONENTS - THEME-AWARE
    =========================================== */

/* Base Form Styles */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: currentColor;
  box-shadow: 0 0 0 3px rgba(var(--focus-ring-color, 99, 102, 241), 0.1);
  background: white;
}

/* Theme-specific Form Styles */
.page1 .form-input,
.page1 .form-textarea {
  --focus-ring-color: 99, 102, 241; /* Indigo */
  border-color: rgba(99, 102, 241, 0.2);
  color: #1e293b;
}

.page1 .form-input::placeholder,
.page1 .form-textarea::placeholder {
  color: rgba(30, 41, 59, 0.6);
}

.page2 .form-input,
.page2 .form-textarea {
  --focus-ring-color: 16, 185, 129; /* Emerald */
  border-color: rgba(16, 185, 129, 0.2);
  color: #1f2937;
  background: rgba(249, 250, 251, 0.9);
}

.page2 .form-input::placeholder,
.page2 .form-textarea::placeholder {
  color: rgba(31, 41, 55, 0.6);
}

.page3 .form-input,
.page3 .form-textarea {
  --focus-ring-color: 139, 92, 246; /* Violet */
  border-color: rgba(139, 92, 246, 0.2);
  color: #1e293b;
  background: rgba(255, 255, 255, 0.95);
}

.page3 .form-input::placeholder,
.page3 .form-textarea::placeholder {
  color: rgba(30, 41, 59, 0.6);
}

.page4 .form-input,
.page4 .form-textarea {
  --focus-ring-color: 239, 68, 68; /* Red */
  border-color: rgba(239, 68, 68, 0.2);
  color: #1e293b;
  background: rgba(255, 255, 255, 0.9);
}

.page4 .form-input::placeholder,
.page4 .form-textarea::placeholder {
  color: rgba(30, 41, 59, 0.6);
}

.page5 .form-input,
.page5 .form-textarea {
  --focus-ring-color: 16, 185, 129; /* Green */
  border-color: rgba(16, 185, 129, 0.2);
  color: #1e293b;
  background: rgba(240, 253, 244, 0.9);
}

.page5 .form-input::placeholder,
.page5 .form-textarea::placeholder {
  color: rgba(30, 41, 59, 0.6);
}

.page6 .form-input,
.page6 .form-textarea {
  --focus-ring-color: 37, 99, 235; /* Blue */
  border-color: rgba(37, 99, 235, 0.2);
  color: #1e293b;
  background: rgba(239, 246, 255, 0.9);
}

.page6 .form-input::placeholder,
.page6 .form-textarea::placeholder {
  color: rgba(30, 41, 59, 0.6);
}

/* Form Buttons */
.form-btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.page1 .form-btn-primary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
}

.page1 .form-btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, #3730a3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.page2 .form-btn-primary {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

.page2 .form-btn-primary:hover {
  background: linear-gradient(135deg, #111827, #000000);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.page3 .form-btn-primary {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: white;
}

.page3 .form-btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #5b21b6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.page4 .form-btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
}

.page4 .form-btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.page5 .form-btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.page5 .form-btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.page6 .form-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.page6 .form-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Form Groups */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: inherit;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

/* Special Form Elements */
.search-input {
  position: relative;
}

.search-input .search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Newsletter Signup */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}

.newsletter-form .form-input {
  flex: 1;
}

.newsletter-form .form-btn-primary {
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

/* Contact Form Grid */
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .form-input,
  .form-textarea,
  .form-select {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(75, 85, 99, 0.3);
    color: #f9fafb;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: rgba(156, 163, 175, 0.7);
  }
}

/* ===========================================
    PRINT STYLES
    =========================================== */

@media print {
  .hero-section,
  .cta-section {
    background: white !important;
    color: black !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .feature-card,
  .stat-card,
  .testimonial-card,
  .trend-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }

  .micro-btn,
  .color-btn {
    transform: none !important;
  }
}
