/*
Theme Name: AI Websites
Theme URI: https://ai-websites.eu
Author: Jullie Bedrijfsnaam
Author URI: https://ai-websites.eu
Description: Spectaculaire AI-website theme
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== GLOBAL RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --secondary-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --warning-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-primary: #fafafa;
  --bg-secondary: #f8fafc;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LOADING SCREEN ===== */
/* ========================================
   FAST MINI LOADING BAR - OPTION 2
   ======================================== */

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  backdrop-filter: blur(10px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top::before {
  content: '↑';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

/* ========================================
   TOOLTIPS
   ======================================== */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.95);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip::before {
  content: '';
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(15, 23, 42, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* ========================================
   BREADCRUMBS
   ======================================== */

/* ========================================
   MOBILE ENHANCEMENTS
   ======================================== */
/* Touch Feedback */
.touch-feedback {
  position: relative;
  overflow: hidden;
}

.touch-feedback::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.3s ease, height 0.3s ease;
  pointer-events: none;
}

.touch-feedback:active::before {
  width: 300px;
  height: 300px;
}

/* Pull to Refresh Indicator */
.pull-to-refresh {
  position: fixed;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  transform: translateY(0);
  transition: transform 0.3s ease;
  z-index: 9998;
}

.pull-to-refresh.pulling {
  transform: translateY(60px);
}

.pull-to-refresh.refreshing {
  transform: translateY(60px);
}

.pull-to-refresh::before {
  content: '↓ Trek naar beneden om te verversen';
  animation: pullText 2s ease-in-out infinite;
}

@keyframes pullText {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Swipe Gestures */
.swipeable {
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.swipeable.swiping {
  transition: none;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
  .mobile-nav-menu {
    overscroll-behavior: contain;
  }
  
  .mobile-nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .mobile-nav-link:active {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(0.98);
  }
  
  /* Better mobile button feedback */
  .btn-primary:active,
  .btn-secondary:active,
  .form-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
  
  /* Mobile scroll improvements */
  .portfolio-grid,
  .services-grid,
  .usps-grid {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}

/* ========================================
   AI FEATURES
   ======================================== */
/* Smart Form Validation */
.form-group {
  position: relative;
}

.ai-validation-hint {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  font-size: 14px;
  color: #92400e;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.ai-validation-hint.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ai-validation-hint::before {
  content: '💡';
  margin-right: 8px;
}

/* Dynamic Pricing Animation */
.price-animation {
  animation: pricePulse 0.6s ease-in-out;
}

@keyframes pricePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* AI Loading States */
.ai-loading {
  position: relative;
  overflow: hidden;
}

.ai-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: aiShimmer 1.5s infinite;
}

@keyframes aiShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Personalized Content Indicators */
.personalized-content {
  position: relative;
}

.personalized-content::before {
  content: '🤖 AI Aanbeveling';
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
  z-index: 5;
}

/* ========================================
   ANALYTICS & CONVERSION TRACKING
   ======================================== */
/* Heatmap Tracking Elements */
.heatmap-track {
  position: relative;
}

.heatmap-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.heatmap-track:hover::after {
  opacity: 1;
}

/* Conversion Tracking Buttons */
.conversion-track {
  position: relative;
}

.conversion-track::before {
  content: '📊';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.conversion-track:hover::before {
  opacity: 1;
}

/* A/B Testing Framework */
.ab-test-variant {
  position: relative;
}

.ab-test-variant::after {
  content: 'A/B';
  position: absolute;
  top: 5px;
  right: 5px;
  background: #f59e0b;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  opacity: 0.7;
}

/* User Journey Tracking */
.journey-step {
  position: relative;
}

.journey-step::before {
  content: '📍';
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.journey-step:hover::before {
  opacity: 1;
}

/* ========================================
   INTERACTIVE ELEMENTS
   ======================================== */
/* Parallax Scrolling */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* 3D Card Hover Effects */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.card-3d:hover {
  transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
}

.card-3d .card-content {
  transform: translateZ(30px);
}

/* Micro-interactions */
.micro-interaction {
  position: relative;
  overflow: hidden;
}

.micro-interaction::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

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

/* Button Click Animations */
.btn-click {
  position: relative;
  overflow: hidden;
}

.btn-click::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  pointer-events: none;
}

.btn-click:active::after {
  width: 200px;
  height: 200px;
}

/* Form Focus Animations */
.form-focus {
  position: relative;
}

.form-focus::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  transition: width 0.3s ease, left 0.3s ease;
}

.form-focus:focus-within::after {
  width: 100%;
  left: 0;
}

/* Confetti Animation */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
  animation: confettiFall 3s ease-in-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Success Animation */
.success-animation {
  animation: successPulse 0.6s ease-in-out;
}

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

/* Loading Spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(99, 102, 241, 0.1);
  border-left: 4px solid #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========================================
   WEBP SUPPORT & PERFORMANCE
   ======================================== */
/* WebP Support */
.webp .hero-bg-video {
  background-image: url('./images/hero-bg.webp');
}

.no-webp .hero-bg-video {
  background-image: url('./images/hero-bg.jpg');
}

/* Performance Optimizations */
.performance-optimized {
  will-change: transform;
  contain: layout style paint;
}

/* Critical CSS Inline */
.critical-content {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Lazy Loading */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Preload Critical Resources */
.preload-critical {
  font-display: swap;
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 2px solid currentColor;
  }
  
  .form-group input,
  .form-group textarea {
    border: 2px solid currentColor;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0f172a;
    --text-primary: #f8fafc;
    --border-color: #334155;
  }
}

/* Print Styles */
@media print {
  .loading-screen,
  .scroll-to-top,
  .whatsapp-float,
  .ai-chat-widget,
  .floating-buttons {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero,
  .services-section,
  .portfolio-section {
    break-inside: avoid;
  }
}

/* ========================================
   ADVANCED FEATURES
   ======================================== */
/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Selection Styling */
::selection {
  background: rgba(99, 102, 241, 0.2);
  color: #1e293b;
}

::-moz-selection {
  background: rgba(99, 102, 241, 0.2);
  color: #1e293b;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Back to Top Enhancement */
.scroll-to-top {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Button States */
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  transform: scale(1.02);
}

/* Form Enhancement */
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Card Hover Effects */
.service-card:hover,
.portfolio-item:hover,
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Text Gradient Animation */
.gradient-text-animated {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================================
   VALIDATION & ENHANCED FORMS
   ======================================== */
.validation-hint {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 4px;
  font-size: 12px;
  color: #92400e;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 10;
}

.validation-hint.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.validation-hint.error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-color: #ef4444;
  color: #991b1b;
}

/* Enhanced Form Styling */
.form-group {
  position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  animation: shake 0.5s ease-in-out;
}

/* ========================================
   ENHANCED ANIMATIONS
   ======================================== */
/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

/* Pulse Animation */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Bounce Animation */
.bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
  40%, 43% { transform: translate3d(0, -30px, 0); }
  70% { transform: translate3d(0, -15px, 0); }
  90% { transform: translate3d(0, -4px, 0); }
}

/* ========================================
   ENHANCED RESPONSIVE
   ======================================== */
/* Ultra-wide screens */
@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 60vh;
  }
  
  .mobile-nav {
    max-height: 80vh;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .site-logo,
  .footer-logo,
  .loading-logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #64748b;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  color: #94a3b8;
  font-weight: bold;
}

.breadcrumb-link {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #5b21b6;
  text-decoration: underline;
}

.breadcrumb-current {
  color: #475569;
  font-weight: 500;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Loading bar with gradient */
.loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  animation: loadingProgress 1.5s ease-out forwards;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

/* Loading bar glow effect */
.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
  animation: loadingGlow 1.5s ease-out forwards;
}

/* Loading animation */
@keyframes loadingProgress {
  0% { width: 0%; }
  20% { width: 20%; }
  40% { width: 45%; }
  60% { width: 70%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

@keyframes loadingGlow {
  0% { opacity: 0; transform: translateX(-20px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(20px); }
}

/* Hide all old loading elements */
.loading-background,
.bg-grid,
.bg-particles,
.bg-particle,
.loading-content,
.loading-logo-container,
.logo-spotlight,
.loading-logo-main,
.logo-glow {
  display: none !important;
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(6, 182, 212, 0.6);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  z-index: 1;
}

/* ===== SCROLL PROGRESS ===== */
.loading-elements {
  margin-bottom: 3rem;
  position: relative;
  height: 120px;
}

.loading-orbs {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.orb {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: orbitRotate 3s linear infinite;
}

.orb-1 {
  background: #6366f1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orb-2 {
  background: #8b5cf6;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.75s;
}

.orb-3 {
  background: #06b6d4;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.orb-4 {
  background: #f59e0b;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 2.25s;
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(99, 102, 241, 0.8);
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; }
.particle:nth-child(3) { bottom: 40%; left: 10%; animation-delay: 1s; }
.particle:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 2s; }
.particle:nth-child(6) { bottom: 60%; right: 40%; animation-delay: 2.5s; }

.loading-progress-new {
  position: relative;
}

.progress-ring {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.progress-svg {
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3;
}

.progress-circle {
  fill: none;
  stroke: #6366f1;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: progressCircle 3s ease-in-out forwards;
}

.progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.progress-percent span {
  font-size: 1.2rem;
  opacity: 0.7;
}

.progress-text-new {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

.typing-effect {
  border-right: 2px solid rgba(99, 102, 241, 0.8);
  animation: typing 2s steps(30) 1s both, blink 1s step-end infinite 3s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  font-size: 1.8rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

/* ===== MODERNE WHATSAPP KNOP ===== */
.floating-whatsapp-button {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: white !important;
  text-decoration: none !important;
  padding: 16px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3), 
              0 4px 16px rgba(37, 211, 102, 0.2),
              0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  animation: whatsappFloat 3s ease-in-out infinite !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
  width: auto !important;
  max-width: none !important;
}

.floating-whatsapp-button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s ease !important;
}

.floating-whatsapp-button:hover::before {
  left: 100% !important;
}

.floating-whatsapp-button:hover {
  transform: translateY(-4px) scale(1.05) translateZ(0) !important;
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4),
              0 8px 24px rgba(37, 211, 102, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.15) !important;
  background: linear-gradient(135deg, #20c997 0%, #0d6e5a 100%) !important;
}

.floating-whatsapp-button:active {
  transform: translateY(-2px) scale(1.02);
  transition: all 0.1s ease;
}

.floating-whatsapp-button .whatsapp-icon {
  font-size: 1.4rem !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  animation: whatsappIconPulse 2s ease-in-out infinite !important;
}

.floating-whatsapp-button .whatsapp-text {
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap !important;
}

/* WhatsApp knop animaties */
@keyframes whatsappFloat {
  0%, 100% {
    transform: translateY(0) translateZ(0) !important;
  }
  50% {
    transform: translateY(-8px) translateZ(0) !important;
  }
}

@keyframes whatsappIconPulse {
  0%, 100% {
    transform: scale(1) !important;
  }
  50% {
    transform: scale(1.1) !important;
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  }
}

/* Responsive styling voor WhatsApp knop */
@media (max-width: 768px) {
  .floating-whatsapp-button {
    bottom: 20px !important;
    right: 20px !important;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
    gap: 8px !important;
    max-width: none !important;
    width: auto !important;
  }
  
  .floating-whatsapp-button .whatsapp-icon {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .floating-whatsapp-button {
    bottom: 16px !important;
    right: 16px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    justify-content: center !important;
    gap: 0 !important;
    max-width: 56px !important;
  }
  
  .floating-whatsapp-button .whatsapp-icon {
    font-size: 1.3rem !important;
  }
  
  .floating-whatsapp-button .whatsapp-text {
    display: none !important;
  }
}

/* Hover effecten voor touch devices */
@media (hover: none) and (pointer: coarse) {
  .floating-whatsapp-button:hover {
    transform: none !important;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3), 
                0 4px 16px rgba(37, 211, 102, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  
  .floating-whatsapp-button:active {
    transform: scale(0.95) !important;
    transition: all 0.1s ease !important;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
}

/* ===== RESPONSIVE FIXES ===== */
* {
  box-sizing: border-box;
}

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

/* Samsung Browser specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Prevent horizontal scrolling on all elements */
* {
  max-width: 100%;
}

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  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);
  z-index: 1000;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  min-height: 80px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
  filter: none;
  background: none;
  -webkit-text-fill-color: initial;
}

/* Logo Styling */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo-link:hover {
  transform: scale(1.05);
}

.site-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
}

.footer-logo {
  display: none; /* Logo verwijderd uit footer */
}

.loading-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #6366f1;
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}



/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
              linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  padding: 8rem 0 4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
}

.typing-animation {
  overflow: hidden;
  border-right: 3px solid;
  border-color: transparent;
  animation: typing 4s steps(40, end), blink 1s infinite;
}

.hero-bg-animation {
  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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%236366f1" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-gradient);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-primary);
  padding: 1.25rem 2.5rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.hero-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 300px;
  height: 300px;
}



.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  animation: floatCard 6s ease-in-out infinite;
}

.float-card .card-icon {
  font-size: 2rem;
}

.float-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== USPs SECTION ===== */
.usps-section {
  background: var(--bg-secondary);
}

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

.usps-grid.desktop-only {
  display: grid;
}

.usps-swiper.mobile-only {
  display: none;
}

.usp-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2.5rem 2rem 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
}

.usp-card.featured {
  background: var(--primary-gradient);
  color: white;
  transform: scale(1);
}

.usp-card.featured .usp-icon {
  color: white;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.usp-card:hover::before {
  transform: scaleX(1);
}

.usp-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.usp-icon {
  width: 80px;
  height: 80px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #6366f1;
}

.usp-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.usp-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.usp-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-section::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="services-grid" width="6" height="6" patternUnits="userSpaceOnUse"><path d="M 6 0 L 0 0 0 6" fill="none" stroke="%236366f1" stroke-width="0.2" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grid)"/></svg>');
  animation: float 40s ease-in-out infinite reverse;
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid.desktop-only {
  display: grid;
}

.services-swiper.mobile-only {
  display: none;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  height: 200px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon {
  font-size: 4rem;
  filter: brightness(0) invert(1);
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-content ul {
  list-style: none;
  padding: 0;
}

.service-content li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.service-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.portfolio-section::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="portfolio-grid" width="12" height="12" patternUnits="userSpaceOnUse"><path d="M 12 0 L 0 0 0 12" fill="none" stroke="%238b5cf6" stroke-width="0.4" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-grid)"/></svg>');
  animation: float 30s ease-in-out infinite reverse;
  z-index: 1;
}

.portfolio-section .container {
  position: relative;
  z-index: 2;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-grid.desktop-only {
  display: grid;
}

.portfolio-swiper.mobile-only {
  display: none;
}

.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: var(--transition);
}

.portfolio-item.filtered-out {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  display: none;
}

.portfolio-item {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.portfolio-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.portfolio-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.portfolio-item.featured {
  grid-column: span 2;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 250px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.placeholder-icon {
  font-size: 3rem;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-tags span {
  padding: 0.25rem 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--bg-primary);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::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="testimonials-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%2306b6d4" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-grid)"/></svg>');
  animation: float 35s ease-in-out infinite;
  z-index: 1;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid.desktop-only {
  display: grid;
}

.testimonials-swiper.mobile-only {
  display: none;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0.7;
  transform: scale(0.95);
  transition: var(--transition);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.star {
  font-size: 1.5rem;
  color: #fbbf24;
  transition: var(--transition);
}

.star.filled {
  animation: starGlow 2s ease-in-out infinite alternate;
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(99, 102, 241, 0.2);
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 3rem;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
  background: rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6366f1;
  transition: var(--transition);
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-gradient);
  transform: scale(1.2);
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50px;
  font-weight: 600;
  color: #6366f1;
}

.feature-icon {
  font-size: 1.2rem;
}

.team-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.team-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--text-secondary);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--dark-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::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="contact-grid" width="14" height="14" patternUnits="userSpaceOnUse"><path d="M 14 0 L 0 0 0 14" fill="none" stroke="%2306b6d4" stroke-width="0.4" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
  animation: float 18s ease-in-out infinite;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-section .section-title {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-method strong {
  color: white;
  font-weight: 600;
}

.contact-method span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #1a202c;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  resize: vertical;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.form-select {
  cursor: pointer;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333333' d='M6 9L1.5 4.5h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 12px;
}

.form-select option {
  background: white;
  color: #333;
  padding: 0.5rem;
}

.form-select.selected {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
}

.full-width {
  width: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23334155" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
    display: none; /* Logo verwijderd uit footer */
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.footer-brand p {
  color: #94a3b8;
  margin: 0;
  font-size: 0.95rem;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.info-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #6366f1;
}

.info-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  color: #6366f1;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

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

.footer-column h4 {
  color: #f1f5f9;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 1px;
}

.footer-column a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}

.footer-column a:hover {
  color: #6366f1;
  padding-left: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}

.contact-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
  padding: 0;
}

.contact-item a:hover {
  color: #6366f1;
  padding: 0;
}

.contact-icon {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #6366f1;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-brand h3 {
    text-align: center;
  }
  
  .footer-brand p {
    text-align: center;
  }
  
  .company-info {
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }
  
  .info-item {
    text-align: center;
    justify-content: center;
  }
  
  .info-item a {
    text-align: center;
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
    margin: 1.5rem 0;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h4 {
    text-align: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column a {
    text-align: center;
    justify-content: center;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    text-align: center;
    justify-content: center;
  }
  
  .contact-item a {
    text-align: center;
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom p {
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
    text-align: center;
  }
  
  .badge {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-brand {
    margin-bottom: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-column {
    margin-bottom: 1rem;
  }
  
  .company-info {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .info-item {
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .footer-social {
    margin: 1rem 0;
  }
  
  .contact-info {
    gap: 0.75rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .footer-bottom {
    gap: 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
  
  .footer-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

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

/* ===== LOADING SCREEN ANIMATIONS ===== */
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

@keyframes spotlight {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

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

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

@keyframes orbitRotate {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes progressCircle {
  0% { stroke-dashoffset: 314; }
  100% { stroke-dashoffset: 0; }
}

@keyframes typing {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes blink {
  0%, 50% { border-color: rgba(99, 102, 241, 0.8); }
  51%, 100% { border-color: transparent; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .portfolio-item.featured {
    grid-column: span 1;
  }
}

/* ===== PORTFOLIO ENHANCED STYLING ===== */
.portfolio-item {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}

.portfolio-item.filtered-out {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  display: none;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(99, 102, 241, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-actions {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.portfolio-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.portfolio-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.filter-btn {
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
@media (max-width: 900px) {
  /* Header Mobile */
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .site-header .container {
    padding: 1rem;
  }
  
  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-animation {
    width: 250px;
    height: 250px;
  }
  
  /* Sections Mobile */
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .site-nav ul {
    gap: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Mobile Logo Adjustments */
  .site-logo {
    height: 40px;
    max-width: 150px;
  }
  
  .footer-logo {
    display: none; /* Logo verwijderd uit footer */
  }
  
  .loading-logo-img {
    height: 50px;
    max-width: 150px;
  }
}

/* ===== MOBILE MENU BACKUP RULES ===== */
/* ===== MOBILE MENU FIX ===== */
/* Force mobile menu to be fully visible */
.mobile-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  width: 100% !important;
  height: 100vh !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999 !important;
}

.mobile-nav-overlay.active .mobile-nav {
  display: flex !important;
  width: 100% !important;
  max-width: 400px !important;
  height: auto !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
}

/* ===== UNIVERSAL MOBILE FIX ===== */
@media (max-width: 768px) {
  .mobile-nav-overlay.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    width: 100vw !important;
    height: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    min-height: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 99999 !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
    max-height: 90% !important;
    max-height: 90vh !important;
    max-height: 90dvh !important;
    max-height: calc(100vh - 2rem) !important;
    max-height: calc(100dvh - 2rem) !important;
    overflow-y: auto !important;
    padding: 1.5rem !important;
    gap: 2rem !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav-menu {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav-footer {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .mobile-nav-overlay.active {
    padding: 0.5rem !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    max-width: 320px !important;
    padding: 1rem !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 360px) {
  .mobile-nav-overlay.active .mobile-nav {
    max-width: 300px !important;
    padding: 0.8rem !important;
    gap: 1.2rem !important;
  }
}

/* ===== UNIVERSAL MOBILE VIEWPORT FIX ===== */
/* Fix for all mobile devices */
@media (max-width: 768px) {
  .mobile-nav-overlay.active {
    /* Force full screen coverage */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    height: -webkit-fill-available !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    
    /* Force flexbox centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Ensure proper stacking */
    z-index: 999999 !important;
    
    /* Prevent scrolling issues */
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    
    /* Force visibility */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    /* Ensure content fits without scrolling */
    width: 100% !important;
    max-width: 320px !important;
    height: 100% !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    max-height: calc(100vh - 1rem) !important;
    max-height: calc(100dvh - 1rem) !important;
    max-height: calc(-webkit-fill-available - 1rem) !important;
    
    /* Force proper layout with space distribution */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    
    /* Prevent scrolling - content must fit */
    overflow: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    
    /* Ensure proper padding */
    padding: 0.5rem !important;
    box-sizing: border-box !important;
  }
}

/* ===== iOS SAFARI SPECIFIC FIXES ===== */
@supports (-webkit-touch-callout: none) {
  .mobile-nav-overlay.active {
    height: -webkit-fill-available !important;
    min-height: -webkit-fill-available !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    max-height: calc(-webkit-fill-available - 2rem) !important;
  }
}

/* ===== DESKTOP MOBILE VIEWPORT FIX ===== */
@media (max-width: 768px) and (min-height: 600px) {
  .mobile-nav-overlay.active {
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .mobile-nav-overlay.active .mobile-nav {
    max-height: 90vh !important;
    max-width: 320px !important;
  }
}

/* ===== MOBILE SPECIFIC ADJUSTMENTS ===== */
@media (max-height: 700px) {
  .mobile-nav {
    padding: 3rem 1.5rem 2rem;
  }
  
  .mobile-nav-menu {
    padding: 1.5rem;
  }
  
  .mobile-nav-menu li {
    margin: 0.5rem 0;
  }
  
  .mobile-nav-link {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
  
  .mobile-nav-footer {
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .mobile-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .mobile-contact span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-height: 600px) {
  .mobile-nav {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }
  
  .mobile-nav-menu {
    padding: 1.2rem;
    max-width: 300px;
  }
  
  .mobile-nav-menu li {
    margin: 0.4rem 0;
  }
  
  .mobile-nav-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.2rem;
  }
  
  .mobile-nav-footer {
    padding: 1.2rem;
    gap: 1rem;
    max-width: 300px;
  }
  
  .mobile-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .mobile-contact {
    gap: 0.6rem;
  }
  
  .mobile-contact span {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  
  .mobile-nav-close {
    width: 45px;
    height: 45px;
    top: 1.2rem;
    right: 1.2rem;
  }
}

@media (max-height: 500px) {
  .mobile-nav {
    padding: 1rem 0.8rem;
    gap: 1.5rem;
  }
  
  .mobile-nav-menu {
    padding: 1rem;
    max-width: 280px;
  }
  
  .mobile-nav-menu li {
    margin: 0.3rem 0;
  }
  
  .mobile-nav-link {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }
  
  .mobile-nav-footer {
    padding: 1rem;
    gap: 0.8rem;
    max-width: 280px;
  }
  
  .mobile-cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .mobile-contact {
    gap: 0.5rem;
  }
  
  .mobile-contact span {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
  
  .mobile-nav-close {
    width: 40px;
    height: 40px;
    top: 1rem;
    right: 1rem;
  }
}

/* ===== SAMSUNG DEVICE OPTIMIZATIONS ===== */
/* Samsung Galaxy specific breakpoints */
@media (max-width: 430px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .site-header .container {
    padding: 1rem 0.75rem;
  }
}

/* Samsung Galaxy A/S series */
@media (max-width: 390px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .site-header .container {
    padding: 1rem 0.5rem;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }
  
  .hero-actions {
    gap: 0.75rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Small Samsung devices */
@media (max-width: 360px) {
  .container {
    padding: 0 0.4rem;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .site-logo {
    height: 35px;
    max-width: 130px;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .container {
    padding: 0 0.3rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .site-logo {
    height: 30px;
    max-width: 100px;
  }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 120vh;
    padding: 4rem 0 2rem;
  }
  
  .mobile-nav {
    padding: 1rem;
    max-height: 100vh;
    overflow-y: auto;
  }
  
  .mobile-nav-menu {
    padding: 1rem;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

/* Samsung Internet Browser specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero-title {
    -webkit-text-size-adjust: none;
  }
  
  input, textarea, select {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  
  * {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
}

/* High DPI Samsung displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min--moz-device-pixel-ratio: 2),
       only screen and (-o-min-device-pixel-ratio: 2/1),
       only screen and (min-device-pixel-ratio: 2) {
  .site-logo, .footer-logo, .loading-logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Force hardware acceleration for smooth animations on Samsung */
.hero-animation,
.float-card,
.orb,
.particle,
.mobile-nav {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ===== ULTIMATE VISUAL FEATURES ===== */

/* Particle Background */
.particle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

#particleCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Gradient Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.1s ease;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-trail.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

/* Speed Indicator */
.speed-indicator {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 1rem;
  z-index: 1001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.speed-indicator.show {
  opacity: 1;
  visibility: visible;
}

.speed-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.speed-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.4));
}

.speed-score {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speed-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}



/* 3D Hover Cards Enhancement */
.portfolio-item,
.service-card,
.pricing-card,
.testimonial-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 1000px;
}

.portfolio-item:hover,
.service-card:hover,
.pricing-card:hover {
  transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.portfolio-item::before,
.service-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.portfolio-item:hover::before,
.service-card:hover::before,
.pricing-card:hover::before {
  opacity: 1;
}

/* Newsletter Enhancement with AI Guide */
.newsletter-enhancement {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-enhancement::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aiGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23aiGrid)"/></svg>');
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.newsletter-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.newsletter-form-enhanced {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.newsletter-form-enhanced input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  color: white;
  font-size: 1rem;
}

.newsletter-form-enhanced input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-enhanced button {
  background: white;
  color: #6366f1;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form-enhanced button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}
/* Mobile Responsive for New Features */
@media (max-width: 768px) {
  .speed-indicator {
    right: 10px;
    padding: 0.75rem;
  }
  
  .speed-content {
    gap: 0.5rem;
  }
  
  .speed-score {
    font-size: 1.2rem;
  }
  
  .speed-label {
    font-size: 0.65rem;
  }
  
  
  
  .newsletter-form-enhanced {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form-enhanced input,
  .newsletter-form-enhanced button {
    width: 100%;
  }
  
  .cursor-trail {
    display: none; /* Hide on mobile for performance */
  }
  
  .particle-background {
    opacity: 0.3; /* Reduce on mobile */
  }
}

/* ========================================
   🚀 PHASE 3: INTERACTIVE FEATURES
   ======================================== */

/* AI Live Chat Widget */
.ai-chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 10000;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: bounce 2s infinite;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.chat-icon {
  font-size: 24px;
  animation: wave 1s ease-in-out infinite alternate;
}

.chat-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.6);
  animation: pulse 2s infinite;
}

.chat-window {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10001;
}

.chat-window.active {
  display: flex;
  transform: scale(1) translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  font-size: 20px;
}

.chat-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.chat-status {
  font-size: 12px;
  opacity: 0.9;
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.2s;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  animation: fadeInUp 0.3s ease;
}

.message-avatar {
  font-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-content {
  background: white;
  padding: 12px 16px;
  border-radius: 18px;
  max-width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.chat-input-area {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid #eee;
}

.quick-questions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.quick-btn {
  background: #f0f0f0;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-btn:hover {
  background: #667eea;
  color: white;
}

.chat-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

#chatInput {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}

#chatSend {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#chatSend:hover {
  transform: scale(1.1);
}

/* Interactive Project Calculator */
.calculator-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  scroll-margin-top: 80px; /* Ensure proper scroll positioning */
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235946e2' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center repeat;
  opacity: 0.1;
}

.calculator-wizard {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Progress Bar */
.calc-progress {
  margin-bottom: 60px;
}

.progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px;
  width: 33.33%;
  transition: width 0.5s ease;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.progress-step.active,
.progress-step.completed {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #6366f1 !important;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  border: 2px solid rgba(99, 102, 241, 0.3);
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: white !important;
  transition: all 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: #6366f1 !important;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

/* Steps */
.calc-step {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.calc-step.active {
  display: block;
}

.step-header {
  text-align: center;
  margin-bottom: 35px;
}

.step-header h3 {
  font-size: 28px;
  color: #1a202c;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-header p {
  font-size: 16px;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

/* Foundation Cards - Now using Swiper */

.foundation-card {
  background: white;
  border: 3px solid #f1f5f9;
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.foundation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.foundation-card:hover::before,
.foundation-card.selected::before {
  transform: scaleX(1);
}

.foundation-card:hover {
  border-color: #667eea;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.foundation-card.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.foundation-card.popular {
  border-color: #f59e0b;
}

.popular-badge {
  position: absolute;
  top: -3px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.card-header h4 {
  font-size: 24px;
  color: #1a202c;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-price {
  font-size: 28px;
  font-weight: 800;
  color: #667eea;
}

.card-content p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.included-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-features li {
  padding: 8px 0;
  color: #374151;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-timeline {
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
}

/* Add-ons */
.addons-container {
  margin-bottom: 40px;
}

/* Bundle Info */
.bundle-info {
  margin-bottom: 30px;
}

.bundle-card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.bundle-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.bundle-card p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
}

.bundle-tiers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bundle-tier {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.bundle-tier.active {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.tier-count {
  font-size: 12px;
  opacity: 0.9;
}

.tier-discount {
  font-size: 16px;
  font-weight: 700;
}

.addon-category {
  margin-bottom: 40px;
}

.addon-category h4 {
  font-size: 24px;
  color: #1a202c;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.addon-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.addon-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.addon-card.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.addon-card.recommended {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
}

.recommended-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.addon-toggle {
  flex-shrink: 0;
}

.addon-toggle .toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.addon-toggle .toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.addon-toggle input[type="checkbox"]:checked + .toggle-switch {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.addon-toggle input[type="checkbox"]:checked + .toggle-switch::before {
  transform: translateX(22px);
}

.addon-toggle input[type="checkbox"] {
  display: none;
}

@media (max-width: 480px) {
  .addon-toggle .toggle-switch {
    width: 45px;
    height: 24px;
    border-radius: 12px;
  }
  
  .addon-toggle .toggle-switch::before {
    width: 20px;
    height: 20px;
    top: 2px;
    left: 2px;
  }
  
  .addon-toggle input[type="checkbox"]:checked + .toggle-switch::before {
    transform: translateX(21px);
  }
}

.addon-info {
  flex: 1;
}

.addon-info h5 {
  font-size: 18px;
  color: #1a202c;
  margin-bottom: 6px;
  font-weight: 600;
}

.addon-info p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.addon-price {
  font-weight: 700;
  color: #667eea;
  font-size: 16px;
}

/* Summary Page */
.summary-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.price-display {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.price-main {
  margin-bottom: 20px;
}

.price-label {
  display: block;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.price-amount {
  display: block;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-timeline {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}

.price-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.discount-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.summary-left {
  /* Left column styles handled by grid */
}

.summary-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.config-summary {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.price-breakdown-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.price-breakdown-card h4 {
  font-size: 18px;
  color: #1a202c;
  margin-bottom: 15px;
  font-weight: 700;
}

.summary-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.summary-section h4 {
  font-size: 20px;
  color: #1a202c;
  margin-bottom: 15px;
  font-weight: 700;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.item-name {
  color: #64748b;
  font-weight: 500;
}

.item-price {
  font-weight: 700;
  color: #667eea;
  font-size: 16px;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-breakdown {
  margin-top: 20px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #64748b;
}

.breakdown-item.discount {
  color: #10b981;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid #667eea;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
}

.summary-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.cta-content h4 {
  font-size: 24px;
  color: #1a202c;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-content p {
  color: #64748b;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.cta-note p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Navigation */
.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.nav-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
  background: white;
  color: #667eea;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.nav-btn:hover:not(:disabled) {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nav-next {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.nav-restart {
  background: #f1f5f9;
  color: #64748b;
  border-color: #e2e8f0;
}

.nav-restart:hover {
  background: #e2e8f0;
  color: #374151;
}



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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  
  .addon-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .calc-step {
    padding: 30px 20px;
  }
  
  .step-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .step-header p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .foundation-grid.desktop-only {
    display: none !important;
  }
  
  .foundation-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .usps-grid.desktop-only {
    display: none !important;
  }
  
  .usps-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .services-grid.desktop-only {
    display: none !important;
  }
  
  .services-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .portfolio-grid.desktop-only {
    display: none !important;
  }
  
  .portfolio-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .portfolio-swiper.mobile-only .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .portfolio-swiper.mobile-only .swiper-slide {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .portfolio-swiper.mobile-only .portfolio-item {
    width: 100% !important;
    height: 100% !important;
    /* Behoud originele portfolio styling - geen gradient of witte tekst */
  }
  
  .portfolio-swiper.mobile-only .portfolio-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 20px !important;
    padding: 10px 0 !important;
  }
  
  .testimonials-grid.desktop-only {
    display: none !important;
  }
  
  .testimonials-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .testimonials-swiper.mobile-only .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .testimonials-swiper.mobile-only .swiper-slide {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .testimonials-swiper.mobile-only .testimonial-card {
    width: 100% !important;
    height: 100% !important;
    /* Behoud originele testimonial styling - geen gradient of witte tekst */
  }
  
  .testimonials-swiper.mobile-only .testimonials-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 20px !important;
    padding: 10px 0 !important;
  }
  
  .pricing-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .pricing-swiper.mobile-only .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .pricing-swiper.mobile-only .swiper-slide {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .pricing-swiper.mobile-only .pricing-card {
    width: 100% !important;
    height: 100% !important;
    /* Behoud originele pricing styling - geen gradient of witte tekst */
  }
  
  .pricing-swiper.mobile-only .pricing-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 20px !important;
    padding: 10px 0 !important;
  }
  
  .blog-swiper.mobile-only {
    display: block !important;
    padding-bottom: 40px;
  }
  
  .blog-swiper.mobile-only .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .blog-swiper.mobile-only .swiper-slide {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto;
    padding: 0;
    margin: 0;
  }
  
  .blog-swiper.mobile-only .blog-card {
    width: 100% !important;
    height: 100% !important;
    /* Behoud originele blog styling - geen gradient of witte tekst */
  }
  
  .blog-swiper.mobile-only .blog-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 20px !important;
    padding: 10px 0 !important;
  }
  
  .foundation-swiper.mobile-only .swiper-slide {
    width: 100% !important;
    max-width: 350px !important;
    flex-shrink: 0;
  }
  
  .foundation-swiper.mobile-only .foundation-card {
    width: 100% !important;
    max-width: 350px !important;
    min-width: 300px !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
  }
  
  .foundation-swiper.mobile-only .swiper-pagination {
    display: flex;
    margin-top: 15px;
    gap: 8px;
    justify-content: center;
  }
  
  /* UNIFORM PAGINATION STYLING - MODERN THEME */
  .foundation-swiper.mobile-only .swiper-pagination-bullet,
  .usps-swiper.mobile-only .swiper-pagination-bullet,
  .usps-swiper.mobile-only .usps-pagination .swiper-pagination-bullet,
  .services-swiper.mobile-only .services-pagination .swiper-pagination-bullet,
  .portfolio-swiper.mobile-only .portfolio-pagination .swiper-pagination-bullet,
  .testimonials-swiper.mobile-only .testimonials-pagination .swiper-pagination-bullet,
  .pricing-swiper.mobile-only .pricing-pagination .swiper-pagination-bullet,
  .blog-swiper.mobile-only .blog-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    background: rgba(99, 102, 241, 0.2) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    border: 2px solid rgba(99, 102, 241, 0.3) !important;
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
  }
  
  .foundation-swiper.mobile-only .swiper-pagination-bullet::before,
  .usps-swiper.mobile-only .swiper-pagination-bullet::before,
  .usps-swiper.mobile-only .usps-pagination .swiper-pagination-bullet::before,
  .services-swiper.mobile-only .services-pagination .swiper-pagination-bullet::before,
  .portfolio-swiper.mobile-only .portfolio-pagination .swiper-pagination-bullet::before,
  .testimonials-swiper.mobile-only .testimonials-pagination .swiper-pagination-bullet::before,
  .pricing-swiper.mobile-only .pricing-pagination .swiper-pagination-bullet::before,
  .blog-swiper.mobile-only .blog-pagination .swiper-pagination-bullet::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
  }
  
  .foundation-swiper.mobile-only .swiper-pagination-bullet-active,
  .usps-swiper.mobile-only .swiper-pagination-bullet-active,
  .usps-swiper.mobile-only .usps-pagination .swiper-pagination-bullet-active,
  .services-swiper.mobile-only .services-pagination .swiper-pagination-bullet-active,
  .portfolio-swiper.mobile-only .portfolio-pagination .swiper-pagination-bullet-active,
  .testimonials-swiper.mobile-only .testimonials-pagination .swiper-pagination-bullet-active,
  .pricing-swiper.mobile-only .pricing-pagination .swiper-pagination-bullet-active,
  .blog-swiper.mobile-only .blog-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    opacity: 1 !important;
    transform: scale(1.3) !important;
    border-color: #667eea !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
  }
  
  .foundation-swiper.mobile-only .swiper-pagination-bullet-active::before,
  .usps-swiper.mobile-only .swiper-pagination-bullet-active::before,
  .usps-swiper.mobile-only .usps-pagination .swiper-pagination-bullet-active::before,
  .services-swiper.mobile-only .services-pagination .swiper-pagination-bullet-active::before,
  .portfolio-swiper.mobile-only .portfolio-pagination .swiper-pagination-bullet-active::before,
  .testimonials-swiper.mobile-only .testimonials-pagination .swiper-pagination-bullet-active::before,
  .pricing-swiper.mobile-only .pricing-pagination .swiper-pagination-bullet-active::before,
  .blog-swiper.mobile-only .blog-pagination .swiper-pagination-bullet-active::before {
    opacity: 1 !important;
  }
  
  /* Hover effects for better UX */
  .foundation-swiper.mobile-only .swiper-pagination-bullet:hover,
  .usps-swiper.mobile-only .swiper-pagination-bullet:hover,
  .usps-swiper.mobile-only .usps-pagination .swiper-pagination-bullet:hover,
  .services-swiper.mobile-only .services-pagination .swiper-pagination-bullet:hover,
  .portfolio-swiper.mobile-only .portfolio-pagination .swiper-pagination-bullet:hover,
  .testimonials-swiper.mobile-only .testimonials-pagination .swiper-pagination-bullet:hover,
  .pricing-swiper.mobile-only .pricing-pagination .swiper-pagination-bullet:hover,
  .blog-swiper.mobile-only .blog-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.1) !important;
    border-color: rgba(99, 102, 241, 0.6) !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2) !important;
  }
  
  /* Clean USPs pagination styling */
  .usps-swiper.mobile-only .usps-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 20px !important;
    padding: 10px 0 !important;
  }
  
  .foundation-card {
    padding: 20px;
    text-align: center;
    min-height: 250px;
  }
  
  .card-header {
    margin-bottom: 15px;
  }
  
  .card-header h4 {
    font-size: 18px;
    margin: 10px 0 5px 0;
  }
  
  .card-price {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .included-features {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .card-timeline {
    font-size: 13px;
  }
  
  .addon-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .addon-card {
    padding: 15px;
    border-radius: 12px;
  }
  
  .addon-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .addon-info p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .addon-price {
    font-size: 16px;
    font-weight: 600;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .step-navigation {
    flex-direction: column-reverse;
    gap: 15px;
    margin-top: 30px;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .progress-steps {
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .progress-step {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: auto;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .step-label {
    font-size: 12px;
    text-align: center;
  }
  
  .summary-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .summary-right {
    order: -1; /* Price display first on mobile */
  }
  
  .price-display {
    text-align: center;
    padding: 25px 20px;
  }
  
  .price-amount {
    font-size: 32px;
  }
  
  .config-summary {
    padding: 20px;
  }
}

/* === USPs Modal Styling: huisstijl AI Websites === */
.usps-modal .modal-container {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(99,102,241,0.10), 0 2px 8px rgba(99,102,241,0.08);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  padding: 0 0 32px 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: box-shadow 0.3s;
}
.usps-modal .modal-header {
  width: 100%;
  background: linear-gradient(90deg, #7b6cf6 0%, #5ee7df 100%);
  padding: 24px 32px 18px 32px;
  display: flex;
  align-items: center;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.06);
}
.usps-modal .modal-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-right: 18px;
}
.usps-modal .modal-title {
  flex: 1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.usps-modal .modal-close {
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.15s;
}
.usps-modal .modal-close:hover {
  background: rgba(255,255,255,0.32);
}
.usps-modal .modal-content {
  color: #23243a;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 28px 32px 0 32px;
  width: 100%;
  text-align: left;
  background: #fff;
}
.usps-modal .modal-content h4,
.usps-modal .modal-content h5 {
  color: #7b6cf6;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
.usps-modal .modal-content ul {
  margin: 0 0 0 1.2em;
  padding: 0;
}
.usps-modal .modal-content li {
  margin-bottom: 0.5em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #23243a;
}
.usps-modal .modal-content li::before {
  content: '✔';
  color: #7b6cf6;
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 6px;
}
.usps-modal .modal-footer,
.usps-modal .modal-footer a,
.usps-modal .modal-cta .btn-primary {
  background: linear-gradient(90deg, #7b6cf6 0%, #5ee7df 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(30,34,54,0.10);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  margin: 0 8px;
  text-decoration: none;
  display: inline-block;
}
.usps-modal .modal-footer button:hover,
.usps-modal .modal-footer a:hover,
.usps-modal .modal-cta .btn-primary:hover {
  background: linear-gradient(90deg, #5ee7df 0%, #7b6cf6 100%);
  box-shadow: 0 4px 16px 0 rgba(30,34,54,0.16);
}
@media (max-width: 600px) {
  .usps-modal .modal-container {
    max-width: 98vw;
    padding: 0 0 18px 0;
  }
  .usps-modal .modal-header,
  .usps-modal .modal-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .calc-step {
    padding: 25px 15px;
  }
  
  .step-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .step-header p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  

  
  .foundation-card {
    padding: 18px;
  }
  
  .card-header h4 {
    font-size: 17px;
    margin: 8px 0 4px 0;
  }
  
  .card-price {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .included-features {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .card-timeline {
    font-size: 12px;
  }
  
  .bundle-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .bundle-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .bundle-card p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .bundle-tiers {
    gap: 15px;
  }
  
  .bundle-tier {
    padding: 10px 12px;
    min-width: 90px;
  }
  
  .tier-discount {
    font-size: 14px;
  }
  
  .addon-category {
    margin-bottom: 25px;
  }
  
  .addon-category h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .addon-grid {
    gap: 12px;
  }
  
  .addon-card {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .addon-toggle {
    flex-shrink: 0;
  }
  
  .addon-info {
    flex: 1;
  }
  
  .addon-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .addon-info p {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .addon-price {
    font-size: 14px;
    font-weight: 600;
  }
  
  .price-amount {
    font-size: 28px;
  }
  
  .nav-btn {
    padding: 12px 18px;
    font-size: 15px;
  }
  
  .progress-step {
    gap: 6px;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .step-label {
    font-size: 11px;
  }
}

/* Animated Transformation Timeline */
.transformation-timeline {
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  color: white;
}

.transformation-timeline .section-header h3 {
  color: white;
  font-size: 32px;
  margin-bottom: 10px;
}

.transformation-timeline .section-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.timeline-instructions {
  margin-top: 15px;
  text-align: center;
}

.timeline-instructions span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-container {
  margin-top: 50px;
}

/* Progress Bar */
.timeline-progress {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.progress-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-track:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scaleY(1.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.progress-track.playing {
  animation: progressGlow 2s ease-in-out infinite;
}

.progress-controls {
  display: flex;
  gap: 10px;
}

.play-pause-btn,
.reset-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-pause-btn:hover,
.reset-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.play-pause-btn .pause-icon {
  display: none;
}

.play-pause-btn.playing .play-icon {
  display: none;
}

.play-pause-btn.playing .pause-icon {
  display: block;
}

/* Timeline Steps */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  opacity: 0.6;
  transform: scale(0.95);
}

.timeline-step.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.timeline-step.active::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #4facfe, #00f2fe, #4facfe);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.step-content {
  text-align: center;
}

.website-preview {
  width: 100%;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.old-website {
  background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
}

.transition-website {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.new-website {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.preview-header {
  height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.old-header {
  background: rgba(255, 255, 255, 0.2);
}

.transition-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.new-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.preview-content {
  padding: 20px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.content-line {
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.new-website .content-line {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.step-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.step-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Results Display */
.transformation-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.result-card.animating {
  animation: resultPulse 0.6s ease-in-out;
}

.result-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.result-number {
  font-size: 36px;
  font-weight: bold;
  color: #4facfe;
  margin-bottom: 8px;
}

.result-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Timeline Animations */
@keyframes stepEntrance {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes progressGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes resultPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .transformation-results {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-progress {
  flex-direction: column;
    gap: 15px;
}

  .play-pause-btn,
  .reset-btn {
    width: 60px;
    height: 60px;
  font-size: 24px;
  }
  
  .progress-track {
    height: 12px;
  }
  
  .timeline-step {
    padding: 25px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .result-card {
    padding: 20px;
  }
  
  .result-number {
    font-size: 28px;
  }
}

/* Multi-step Contact Form */
.multistep-form {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-progress {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 25px 30px;
  color: white;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 0.8;
}

.step-number {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.progress-step.active .step-number {
  border-color: white;
  background: white;
  color: #667eea;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.progress-step.completed .step-number {
  border-color: #10b981;
  background: #10b981;
  color: white;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-step.active .step-label {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.contact-form {
  padding: 30px;
}

/* Form rows for side-by-side layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* OVERRIDE ALL EXISTING MOBILE FORM STYLING */
  .contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 1.5rem 1rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }
  
  /* FORCE ALL FORM STEPS TO BE VISIBLE */
  .form-step {
    display: block !important;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1) !important;
  }
  
  .form-step:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* COMPACT FORM GROUPS */
  .form-group {
    margin-bottom: 0.75rem !important;
  }
  
  .form-group label {
    margin-bottom: 0.5rem !important;
  }
  
  .form-step > p {
    margin-bottom: 0.75rem !important;
  }
  
  /* COMPACT NAVIGATION */
  .form-navigation {
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
}

/* Calculator Summary Styling */
.calculator-summary {
  margin-bottom: 30px;
}

.summary-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cbd5e0;
}

.summary-header h4 {
  color: #1a202c;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.edit-config {
  color: #667eea;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.edit-config:hover {
  background: #667eea;
  color: white;
}

.config-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.config-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.config-item:last-child {
  border-bottom: none;
}
.config-item.total {
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
  padding-top: 20px;
  margin-top: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #f0fff4 0%, #ecfdf5 100%);
  padding: 20px;
  border-radius: 12px;
  margin: 15px -10px 0 -10px;
}

.config-label {
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  width: 100px;
}

.config-value {
  color: #1a202c;
  font-weight: 600;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
}

.config-item.total .config-label {
  color: #065f46;
  font-size: 16px;
}
.config-item.total .config-value {
  color: #10b981;
  font-size: 24px;
  font-weight: 800;
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 13px;
}

.addon-name {
  color: #475569;
  font-weight: 500;
}

.addon-price {
  color: #10b981;
  font-weight: 600;
}

.no-config-card {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.no-config-card h4 {
  color: #dc2626;
  margin-bottom: 10px;
}

.no-config-card p {
  color: #7f1d1d;
  margin-bottom: 20px;
}

.form-step {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  color: #1a202c;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-step > p {
  color: #4a5568;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: #f8fafc;
  color: #1a202c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.project-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.project-type {
  cursor: pointer;
}

.project-type input[type="radio"] {
  display: none;
}

.type-card {
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
}

.type-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.project-type input[type="radio"]:checked + .type-card {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.type-card.selected {
  border-color: #667eea !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3) !important;
}

.type-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.type-card h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.type-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

.form-summary {
  /* Removed background and styling to prevent double background */
  margin-bottom: 30px;
}

.summary-preview h4 {
  color: #1a202c;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: none;
  background: rgba(248, 250, 252, 0.8);
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #e2e8f0;
}

.preview-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.preview-item.total {
  border-left: 4px solid #667eea;
  margin-top: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin: 20px 0 0 0;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.preview-label {
  color: #374151;
  font-weight: 600;
  font-size: 15px;
}

.preview-value {
  color: #111827;
  font-weight: 600;
  font-size: 15px;
}

.preview-item.total .preview-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

.preview-item.total .preview-value {
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FORM CHECKBOXES - COMPLETELY ISOLATED
   ======================================== */

/* Reset any inherited styles */
.form-step .checkbox-label,
.form-step .checkbox-label *,
.form-step .checkbox-label::before,
.form-step .checkbox-label::after {
  all: unset;
  box-sizing: border-box;
}

/* Isolated checkbox container */
.form-step .checkbox-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.2s ease !important;
  margin-bottom: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: #374151 !important;
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: auto !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  white-space: normal !important;
  overflow: visible !important;
  vertical-align: baseline !important;
  direction: ltr !important;
  unicode-bidi: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  text-indent: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: auto !important;
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Hover state */
.form-step .checkbox-label:hover {
  background: #f1f5f9 !important;
  border-color: #cbd5e0 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Hide the actual checkbox input */
.form-step .checkbox-label input[type="checkbox"] {
  display: none !important;
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  clip: rect(0, 0, 0, 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
}

/* Custom checkbox box */
.form-step .checkbox-label .checkmark {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #94a3b8 !important;
  border-radius: 4px !important;
  position: relative !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
  background: white !important;
  display: block !important;
  box-sizing: border-box !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  overflow: visible !important;
  z-index: 1 !important;
  pointer-events: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Hover state for checkbox */
.form-step .checkbox-label:hover .checkmark {
  border-color: #667eea !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Checked state */
.form-step .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #667eea !important;
  border-color: #667eea !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Checkmark symbol */
.form-step .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓' !important;
  position: absolute !important;
  top: -1px !important;
  left: 2px !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: bold !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  white-space: normal !important;
  overflow: visible !important;
  vertical-align: baseline !important;
  direction: ltr !important;
  unicode-bidi: normal !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  text-indent: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2 !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Links within checkboxes */
.form-step .checkbox-label a {
  color: #667eea !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline !important;
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: auto !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.form-step .checkbox-label a:hover {
  color: #5a67d8 !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  transform: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure text content is properly styled */
.form-step .checkbox-label span,
.form-step .checkbox-label div,
.form-step .checkbox-label p {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline !important;
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: auto !important;
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.form-btn {
  padding: 14px 28px;
  border: 2px solid #667eea;
  border-radius: 12px;
  background: white;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  text-decoration: none;
}

.form-btn:hover:not(:disabled) {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.form-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #cbd5e0;
  color: #a0aec0;
}

.form-next {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.form-next:hover:not(:disabled) {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.form-submit {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* ========================================
   📱 RESPONSIVE FOR INTERACTIVE FEATURES  
   ======================================== */

@media (max-width: 768px) {
  .ai-chat-widget {
    right: 20px;
    bottom: 80px;
  }
  
  .chat-window {
    width: 300px;
    height: 450px;
    right: 20px;
    bottom: 150px;
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .calculator-result {
    position: static;
  }
  
  .calc-options {
    grid-template-columns: 1fr;
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .transformation-item {
    padding: 20px;
  }
  
  .project-types {
    grid-template-columns: 1fr;
  }
  
  .progress-steps {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .progress-step {
    flex: 1;
    min-width: 60px;
  }
  
  .step-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 140px;
    height: 400px;
  }
  
  .ai-chat-widget {
    right: 20px;
    bottom: 70px;
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
  }
  
  .before-after-slider {
    height: 200px;
  }
  
  .mockup-placeholder.mobile {
    width: 80%;
  }
  
  .form-progress {
    padding: 20px;
  }
  
  .contact-form-wrapper {
    padding: 25px 20px;
    margin: 20px 0;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .form-progress {
    padding: 20px;
  }
  
  .progress-steps {
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .progress-step {
    gap: 6px;
  }
  
  .step-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-width: 2px;
  }
  
  .step-label {
    font-size: 11px;
    font-weight: 600;
  }
  
  .progress-step.active .step-number {
    transform: scale(1.05);
  }
  
  .form-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .form-step > p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .project-types {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .type-card {
    padding: 20px;
  }
  
  .type-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .form-navigation {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }
  
  .form-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
  }
  
  .form-submit {
    order: -1; /* Submit button first on mobile */
    padding: 18px 24px;
    font-size: 17px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .summary-card {
    padding: 20px;
  }
  
  .summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ========================================
   🚀 PHASE 4: CASE STUDIES & PRICING COMPARISON
   ======================================== */
/* Case Study Modal */
.case-study-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.case-study-modal.active {
  display: flex !important;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* === Case Study Modal Styling: zelfde als USPs Modal === */
.case-study-modal .modal-container {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(99,102,241,0.10), 0 2px 8px rgba(99,102,241,0.08);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  padding: 0 0 32px 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: box-shadow 0.3s;
}

.case-study-modal .modal-header {
  width: 100%;
  background: linear-gradient(90deg, #7b6cf6 0%, #5ee7df 100%);
  padding: 24px 32px 18px 32px;
  display: flex;
  align-items: center;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.06);
}

.case-study-modal .modal-header h2 {
  flex: 1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.case-study-modal .modal-close {
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.15s;
}

.case-study-modal .modal-close:hover {
  background: rgba(255,255,255,0.32);
}

.case-study-modal .modal-content {
  color: #23243a;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 28px 32px 0 32px;
  width: 100%;
  text-align: left;
  background: #fff;
}

.case-study-modal .modal-content h4,
.case-study-modal .modal-content h5 {
  color: #7b6cf6;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

.case-study-modal .modal-content ul {
  margin: 0 0 0 1.2em;
  padding: 0;
}

.case-study-modal .modal-content li {
  margin-bottom: 0.5em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #23243a;
}

.case-study-modal .modal-content li::before {
  content: '✔';
  color: #7b6cf6;
  font-weight: bold;
  font-size: 1.1em;
  margin-right: 6px;
}

.case-study-modal .modal-footer,
.case-study-modal .modal-cta {
  width: 100%;
  text-align: center;
  padding: 18px 0 0 0;
  background: #fff;
}

.case-study-modal .modal-footer button,
.case-study-modal .modal-footer a,
.case-study-modal .modal-cta .btn-primary {
  background: linear-gradient(90deg, #7b6cf6 0%, #5ee7df 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(30,34,54,0.10);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  margin: 0 8px;
  text-decoration: none;
  display: inline-block;
}

.case-study-modal .modal-footer button:hover,
.case-study-modal .modal-footer a:hover,
.case-study-modal .modal-cta .btn-primary:hover {
  background: linear-gradient(90deg, #5ee7df 0%, #7b6cf6 100%);
  box-shadow: 0 4px 16px 0 rgba(30,34,54,0.16);
}

@media (max-width: 600px) {
  .case-study-modal .modal-container {
    max-width: 98vw;
    padding: 0 0 18px 0;
  }
  .case-study-modal .modal-header,
  .case-study-modal .modal-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Pricing Comparison Modal */
.pricing-comparison-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-comparison-modal.active {
  display: block;
  opacity: 1;
}

.comparison-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 20px;
  max-width: 1400px;
  max-height: 90vh;
  width: 95%;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.pricing-comparison-modal.active .comparison-container {
  transform: translate(-50%, -50%) scale(1);
}

.comparison-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
}

.comparison-header h2 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 700;
}

.comparison-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
}

.comparison-header .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comparison-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 40px;
  max-height: 70vh;
  overflow-y: auto;
}

.comparison-column {
  padding: 30px;
  border-right: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
}

.comparison-column:last-child {
  border-right: none;
}

.comparison-column:hover {
  background: rgba(102, 126, 234, 0.02);
}

.comparison-column.featured {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  transform: scale(1.02);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  border: 2px solid #667eea;
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
}

.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
}

.package-price {
  margin-bottom: 15px;
}

.package-price .price {
  font-size: 32px;
  font-weight: 700;
  color: #667eea;
}

.package-price .period {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.package-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.feature-list {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.feature .check {
  color: #25d366;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

.feature .cross {
  color: #ff6b6b;
  font-weight: bold;
  margin-right: 10px;
  font-size: 16px;
}

.feature span:last-child {
  color: #333;
}

.feature.not-included span:last-child {
  color: #999;
}

.package-cta {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.package-cta.starter {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  border: 2px solid #dee2e6;
}

.package-cta.starter:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-cta.professional {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.package-cta.professional:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.package-cta.enterprise {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  color: white;
}

.package-cta.enterprise:hover {
  background: linear-gradient(135deg, #343a40 0%, #212529 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.comparison-footer {
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.comparison-footer p {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: #495057;
}

.comparison-footer .btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.comparison-footer .btn-secondary:hover {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }
  
  .comparison-column {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .comparison-column:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .comparison-container {
    width: 98%;
    max-height: 95vh;
    margin: 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .comparison-column {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
  }
  
  .comparison-column.featured {
    transform: none;
  }
  
  .comparison-header {
    padding: 20px;
  }
  
  .comparison-header h2 {
    font-size: 24px;
  }
  
  .comparison-header p {
    font-size: 14px;
  }
  
  .package-header h3 {
    font-size: 20px;
  }
  
  .package-price .price {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .comparison-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }
  
  .comparison-grid {
    padding: 15px;
  }
  
  .comparison-column {
    padding: 15px;
  }
  
  .comparison-header {
    padding: 15px;
  }
  
  .comparison-header h2 {
    font-size: 20px;
  }
  
  .package-header h3 {
    font-size: 18px;
  }
  
  .package-price .price {
    font-size: 24px;
  }
  
  .feature {
    font-size: 13px;
  }
  
  .package-cta {
    padding: 12px 15px;
    font-size: 14px;
  }
}

.pricing-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/* Live Preview Button Enhancement */
.portfolio-btn.view-live:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

/* Responsive for Phase 4 */
@media (max-width: 768px) {
  .case-study-modal {
    padding: 10px;
    align-items: center;
    justify-content: center;
  }
  
  .modal-container {
    width: 100%;
    max-height: 95vh;
    border-radius: 16px;
    margin: auto;
  }
  
  .modal-header {
    padding: 20px 25px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  
  .modal-content {
    padding: 25px 20px;
    max-height: calc(95vh - 100px);
  }
  
  .case-study-hero {
    padding: 15px;
    margin-bottom: 25px;
  }
  
  .case-study-logo {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .case-study-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .case-study-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .case-study-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .stat-box {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .case-study-section {
    margin-bottom: 25px;
  }
  
  .case-study-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .tech-stack {
    gap: 8px;
  }
  
  .tech-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .comparison-container {
    width: 100%;
    max-height: 95vh;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .comparison-column {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
  }
  
  .comparison-column:last-child {
    border-bottom: none;
  }
  
  .comparison-column.featured {
    transform: none;
    margin: 20px 0;
  }
  
  .pricing-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .comparison-header {
    padding: 20px;
  }
  
  .comparison-header h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .case-study-stats {
    grid-template-columns: 1fr;
  }
  
  .tech-stack {
    justify-content: center;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
}

/* ===== SWIPER CAROUSELS ===== */

/* Testimonials Swiper */
.testimonials-swiper {
  padding-bottom: 60px;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonials-swiper .testimonial-card {
  height: 100%;
    display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #6366f1;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
    border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: #6366f1;
  color: white;
}

/* Services Swiper */
.services-swiper {
  padding-bottom: 60px;
}

.services-swiper .swiper-slide {
  height: auto;
}

.services-swiper .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-swiper .swiper-pagination {
  bottom: 0;
}

/* Services Swiper Mobile Styling */
.services-swiper.mobile-only {
  padding-bottom: 80px !important;
}

.services-swiper.mobile-only .swiper-wrapper {
  align-items: stretch !important;
}

.services-swiper.mobile-only .swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.services-swiper.mobile-only .service-card {
  width: 100% !important;
  height: 100% !important;
  /* Behoud originele styling - geen gradient of witte tekst */
}

/* Services Pagination Styling */
.services-swiper.mobile-only .services-pagination {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  bottom: auto !important;
  margin-top: 30px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 20px !important;
  padding: 10px 0 !important;
}

/* Services pagination styling is now handled by the uniform styling above */

/* Foundation Grid (Desktop) - NORMAL LAYOUT */
.foundation-grid.desktop-only {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Foundation Swiper (Mobile) - SWIPER LAYOUT */
.foundation-swiper.mobile-only {
    display: none;
  padding-bottom: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.foundation-swiper.mobile-only .swiper-wrapper {
    display: flex;
  width: 100%;
  height: 100%;
}

.foundation-swiper.mobile-only .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.foundation-swiper.mobile-only .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  gap: 10px;
}

.foundation-swiper.mobile-only .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 0.5;
    transition: all 0.3s ease;
  margin: 0 4px;
  border-radius: 50%;
}

.foundation-swiper.mobile-only .swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
  transform: scale(1.2);
}

.foundation-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.foundation-swiper .swiper-slide {
  height: auto;
    display: flex;
  width: 100%;
  flex-shrink: 0;
}

.foundation-grid .foundation-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.foundation-swiper .swiper-pagination {
  bottom: 0;
  position: relative;
  margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  gap: 10px;
}

.foundation-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 0.5;
    transition: all 0.3s ease;
  margin: 0 4px;
  border-radius: 50%;
}

.foundation-swiper .swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
  transform: scale(1.2);
}
/* USPs Swiper */
.usps-swiper {
  padding-bottom: 60px;
}
.usps-swiper .swiper-slide {
  height: auto;
}

.usps-swiper .usp-card {
  height: 100%;
    display: flex;
  flex-direction: column;
}

.usps-swiper .swiper-pagination {
  bottom: 0;
}

/* USPs Swiper Mobile Specific Styling - Exact same as foundation */
.usps-swiper.mobile-only {
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}

.usps-swiper.mobile-only .swiper-wrapper {
  display: flex;
  transition-property: transform;
  width: 100%;
}

.usps-swiper.mobile-only .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 360px !important;
  position: relative;
  transition-property: transform;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 0 !important;
  margin: 0 !important;
}
.usps-swiper.mobile-only .usp-card {
  width: 100%;
  height: 360px !important;
  padding: 30px 20px 70px 20px !important;
  margin: 0 !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  text-align: center !important;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
  transform: scale(1) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.usps-swiper.mobile-only .usp-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  pointer-events: none !important;
}

.usps-swiper.mobile-only .usp-card h3 {
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: white !important;
  position: relative !important;
  z-index: 2 !important;
}

.usps-swiper.mobile-only .usp-card p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: 30px !important;
}

.usps-swiper.mobile-only .usp-icon {
  font-size: 48px !important;
  margin-bottom: 25px !important;
  margin-top: 20px !important;
  color: white !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Portfolio Swiper */
.portfolio-swiper {
  padding-bottom: 60px;
}

.portfolio-swiper .swiper-slide {
  height: auto;
}

.portfolio-swiper .portfolio-item {
  height: 100%;
    display: flex;
  flex-direction: column;
}

.portfolio-swiper .swiper-pagination {
  bottom: 0;
}

/* Swiper Pagination Styling */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(99, 102, 241, 0.3);
  opacity: 1;
    transition: all 0.3s ease;
  margin: 0 6px;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: #6366f1;
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Desktop Grid Layout for larger screens */
@media (min-width: 1200px) {
  .services-swiper,
  .foundation-swiper,
  .usps-swiper {
    padding-bottom: 0;
  }
  
  .services-swiper .swiper-pagination {
    display: none;
  }
  
  /* Ensure foundation cards are properly sized on desktop - DEBUG VERSION */
  .foundation-swiper .swiper-slide {
    width: 300px !important;
    flex-shrink: 0;
    border: 2px solid green !important;
    background: rgba(0, 255, 0, 0.1) !important;
  }
  
  .foundation-swiper .swiper-wrapper {
    justify-content: center;
    width: 100%;
    gap: 30px;
  }
  
  .foundation-swiper .foundation-card {
    min-height: 350px;
    width: 100% !important;
  }
  
  .foundation-swiper .swiper-pagination {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}







/* ===== FLOATING CHAT BUTTONS ===== */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.loaded .floating-buttons {
  opacity: 1;
  pointer-events: auto;
}
.floating-buttons .ai-chat-widget,
.floating-buttons .whatsapp-float {
  position: static;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10);
  z-index: 1;
}
.floating-buttons .ai-chat-widget {
  margin-bottom: 0;
}
.floating-buttons .whatsapp-float {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .floating-buttons {
    right: 12px;
    bottom: 12px;
    gap: 12px;
  }
}

/* Contact Form Progress Steps */
.contact-form .progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.contact-form .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-form .progress-step.active {
  opacity: 1;
}

.contact-form .progress-step.completed {
  opacity: 0.8;
}

.contact-form .step-number {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .progress-step.active .step-number {
  border-color: white;
  background: white;
  color: #667eea;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-form .progress-step.completed .step-number {
  border-color: #10b981;
  background: #10b981;
  color: white;
}

.contact-form .step-label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form .progress-step.active .step-label {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-form .progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.contact-form .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Form validation styles */
.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Form step transitions */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Multistep Form Progress Steps */
.multistep-form .progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.multistep-form .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.multistep-form .progress-step.active {
  opacity: 1;
}

.multistep-form .progress-step.completed {
  opacity: 0.8;
}

.multistep-form .step-number {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.multistep-form .progress-step.active .step-number {
  border-color: white;
  background: white;
  color: #667eea;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.multistep-form .progress-step.completed .step-number {
  border-color: #10b981;
  background: #10b981;
  color: white;
}

.multistep-form .step-label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.multistep-form .progress-step.active .step-label {
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.multistep-form .progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.multistep-form .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Improved Summary Preview Styling */
.summary-preview {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.summary-preview h4 {
  color: #1a202c;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  border-radius: 10px;
  border-left: 4px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.preview-item:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.preview-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.preview-item.total {
  border-left: 4px solid #667eea;
  margin-top: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin: 20px 0 0 0;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.preview-label {
  color: #374151;
  font-weight: 600;
  font-size: 15px;
}

.preview-value {
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
}

.preview-item.total .preview-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
}

.preview-item.total .preview-value {
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact Form Success Overlay */
.form-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.success-content h3 {
  color: #1a202c;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.success-content p {
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Field Error Styling */
.field-error {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  animation: fadeIn 0.2s ease;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

/* ===== ENHANCED FAQ ANIMATIONS ===== */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes faqIconPulse {
  0%, 100% {
    transform: rotate(45deg) scale(1.2);
  }
  50% {
    transform: rotate(45deg) scale(1.4);
  }
}

@keyframes aiScan {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) translateX(15px);
    opacity: 0.5;
  }
}

/* Enhanced FAQ Styling */
.faq-item {
  position: relative;
  overflow: visible; /* Allow scanning line to extend beyond boundaries */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 2rem; /* Add margin to prevent clipping by parent container */
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.faq-question {
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border-radius: 12px 12px 0 0; /* Ensure top corners are rounded */
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
  transform: translateX(5px);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-icon {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-icon {
  color: #6366f1;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.faq-answer {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: visible; /* Changed from hidden to allow scanning line to show */
  max-height: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(-10px);
  border-radius: 0 0 12px 12px; /* Ensure bottom corners are rounded */
}

.faq-item.active .faq-answer {
  max-height: 800px; /* Increased to accommodate longer answers */
  padding: 0 2rem 1.5rem;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  animation: aiScan 2s ease-in-out infinite;
}

.faq-answer p {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

/* AI Particle Effects */
.faq-particles {
  pointer-events: none;
}

.faq-particle {
  filter: blur(0.5px);
}

/* Enhanced FAQ Search */
.faq-search {
  position: relative;
  margin-bottom: 3rem;
}

.faq-search input {
  width: 100%;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.faq-search input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.faq-search input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
/* Responsive FAQ */
@media (max-width: 768px) {
  /* Force full width on mobile */
  .faq-item {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Override container padding for FAQ items */
  .faq-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .faq-question {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }
  
  .faq-answer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }
  
  /* Original mobile styles */
  .faq-item {
    margin: 0 0 1rem 0 !important;
    width: 100% !important;
    touch-action: manipulation;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    width: 100% !important;
  }
  
  .faq-question:active {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(0.98);
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    width: 100% !important;
  }
  
  .faq-search input {
    padding: 1rem 2.5rem 1rem 1.2rem;
    font-size: 0.9rem;
    -webkit-appearance: none;
    border-radius: 25px;
  }
  
  .search-icon {
    right: 1.2rem;
    font-size: 1rem;
  }
  
  /* Optimize animations for mobile */
  .faq-item {
    transition: all 0.3s ease;
  }
  
  .faq-question {
    transition: all 0.2s ease;
  }
  
  /* Reduce particle count on mobile for performance */
  .faq-particle {
    display: none;
  }
  
  /* Improve touch targets */
  .faq-icon {
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-animation {
    width: 200px;
    height: 200px;
  }
  
  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 1.2rem 1rem;
    font-size: 0.9rem;
  }
  
  .faq-search input {
    padding: 0.9rem 2.2rem 0.9rem 1rem;
    font-size: 0.85rem;
  }
  
  .search-icon {
    right: 1rem;
    font-size: 0.9rem;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-item {
    margin: 0 0 0.8rem 0 !important;
    width: 100% !important;
  }
  
  .faq-question {
    padding: 0.8rem 1.5rem;
    min-height: 50px;
  }
}

/* ===== CONTACT FORM 7 INTEGRATION ===== */
/* Direct mail submission - no CF7 needed */
/* All CF7 styles removed since we use direct wp_mail() */

/* ===== FALLBACK SWIPER STYLING ===== */
.mobile-only .swiper-slide {
  display: none;
}

.mobile-only .swiper-slide:first-child {
  display: block;
  transform: scale(1);
}

/* Ensure swiper containers are properly styled */
.swiper.mobile-only {
  overflow: hidden;
  position: relative;
}

.swiper.mobile-only .swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.swiper.mobile-only .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.mobile-only .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.mobile-only .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.mobile-only .swiper-pagination-bullet:hover {
  background: rgba(99, 102, 241, 0.6);
}

.mobile-only .swiper-pagination-bullet-active {
  background: #6366f1;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

/* Swipe Hand Indicator */
.swipe-hand-indicator {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.swipe-hand-icon {
  font-size: 2rem;
  animation: swipeHandMove 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.swipe-hand-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
  padding: 4px 8px;
  border-radius: 12px;
  white-space: nowrap;
  animation: swipeTextPulse 2s ease-in-out infinite;
}

@keyframes swipeHandMove {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  25% {
    transform: translateX(-15px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateX(-30px) scale(1.2);
    opacity: 1;
  }
  75% {
    transform: translateX(-15px) scale(1.1);
    opacity: 1;
  }
}

@keyframes swipeTextPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Hide swipe indicator after first interaction */
.foundation-swiper.mobile-only.swiper-initialized .swipe-hand-indicator {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition: all 0.8s ease;
}

/* USPs Modal Styling */
.usps-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.usps-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.usps-modal.active .modal-container {
  display: block !important;
  opacity: 1 !important;
  z-index: 10000 !important;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.modal-title {
  flex: 1;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-content {
  padding: 30px;
  color: white;
}

.modal-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.modal-features h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.features-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

.modal-cta {
  text-align: center;
}

.modal-cta .btn-primary {
  background: white;
  color: #667eea;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.modal-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* USPs Card Click Hints */
.usp-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Desktop-specific click hint styling */
@media (min-width: 769px) {
  .usp-click-hint {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
  }
  
  .usp-click-hint::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .usp-click-hint:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  }
  
  .usp-click-hint:hover::before {
    left: 100%;
  }
  
  .usp-card:hover .usp-click-hint {
    transform: translateX(-50%) translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
  }
  
  .usp-card:hover .usp-click-hint::before {
    left: 100%;
  }
}

.usp-card:hover .usp-click-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Mobile-specific click hint styling */
@media (max-width: 768px) {
  .usp-click-hint {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Always show hint on mobile for better UX */
  .usp-card .usp-click-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  .usp-card:hover .usp-click-hint {
    transform: translateX(-50%) translateY(-3px);
  }
}

/* Make USPs cards clickable */
.usp-card {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5) !important;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
    max-height: 85vh;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .usps-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .modal-header {
    padding: 20px 20px 15px;
    gap: 15px;
  }
  
  .modal-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-close {
    width: 35px;
    height: 35px;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .modal-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .modal-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .features-list li {
    padding: 10px 0;
    gap: 12px;
  }
  
  .features-list li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .modal-cta .btn-primary {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .modal-container {
    width: 98%;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .usps-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .modal-header {
    padding: 15px 15px 10px;
    gap: 10px;
  }
  
  .modal-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-content {
    padding: 15px;
  }
  
  .modal-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .modal-features h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .features-list li {
    padding: 8px 0;
    gap: 10px;
    font-size: 14px;
  }
  
  .features-list li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}/* ===== MOBILE CONTACT FORM REDESIGN ===== */

@media (max-width: 768px) {
  /* Hide desktop progress steps on mobile */
  .form-progress {
    display: none !important;
  }
  
  /* Mobile-specific form container */
  .contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Show all form steps on mobile */
  .form-step {
    display: block !important;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  .form-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /* Mobile step headers */
  .form-step h3 {
    font-size: 22px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .form-step > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Large touch-friendly form groups */
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    position: relative;
  }
  
  .form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
  }
  
  /* Large input fields with modern styling */
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 18px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15), 0 4px 15px rgba(102, 126, 234, 0.2);
    background: white;
    transform: translateY(-2px);
  }
  
  /* Large textarea */
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Compact row layout for mobile */
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row .form-group {
    flex: none;
  }
  
  /* Mobile-specific navigation */
  .form-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  /* Large touch-friendly buttons */
  .form-btn {
    padding: 18px 24px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    min-height: 56px;
  }
  
  .form-btn:hover:not(:disabled) {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  }
  
  .form-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Prominent submit button */
  .form-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-radius: 18px;
    min-height: 60px;
  }
  
  .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
  }
  
  /* Mobile-specific select styling */
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236676ea' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
  }
  
  /* Mobile checkbox styling */
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .checkbox-label:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-1px);
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 0;
    accent-color: #667eea;
  }
  
  /* Mobile summary styling */
  .summary-preview {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  .preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  .preview-item:last-child {
    border-bottom: none;
  }
  
  .preview-item.total {
    font-weight: 700;
    font-size: 18px;
    color: #667eea;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
  }
  
  /* Calculator summary mobile styling */
  .calculator-summary {
    margin-bottom: 2rem;
  }
  
  .summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  }
  
  .summary-header h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }
  
  .edit-config {
    color: #667eea;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
  }
  
  .edit-config:hover {
    background: #667eea;
    color: white;
  }
  
  .config-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .config-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.05);
  }
  
  .config-item:last-child {
    border-bottom: none;
  }
  
  .config-item.total {
    border-top: 2px solid rgba(102, 126, 234, 0.1);
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 1rem;
    border-radius: 12px;
    margin: 0.5rem -0.5rem 0 -0.5rem;
  }
  
  .config-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    width: 80px;
  }
  
  .config-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    font-size: 14px;
    line-height: 1.4;
  }
  
  .config-item.total .config-label {
    color: #667eea;
    font-size: 16px;
  }
  
  .config-item.total .config-value {
    color: #667eea;
    font-size: 20px;
  }
  
  /* No config card mobile styling */
  .no-config-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .no-config-card h4 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 1rem;
  }
  
  .no-config-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .no-config-card .btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }
  
  .no-config-card .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  }
}

/* ===== FORCE MOBILE CONTACT FORM REDESIGN ===== */
@media (max-width: 768px) {
  /* HIDE PROGRESS STEPS COMPLETELY */
  .form-progress {
    display: none !important;
  }
  
  /* FORCE COMPACT FORM CONTAINER */
  .contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 1rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }
  
  /* FORCE ALL STEPS VISIBLE AND COMPACT */
  .form-step {
    display: block !important;
    margin-bottom: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1) !important;
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
  }
  
  .form-step:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
  /* ULTRA COMPACT FORM GROUPS */
  .form-group {
    margin-bottom: 0.5rem !important;
  }
  
  .form-group label {
    margin-bottom: 0.25rem !important;
  }
  
  .form-step > p {
    margin-bottom: 0.5rem !important;
  }
  
  /* ULTRA COMPACT NAVIGATION */
  .form-navigation {
    margin-top: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  
  /* COMPACT BUTTONS */
  .form-btn {
    padding: 12px 20px !important;
    min-height: 48px !important;
  }
  
  .form-submit {
    padding: 16px 24px !important;
    min-height: 52px !important;
  }
}






  /* DYNAMIC HEIGHT OPTIMIZATION */
  .form-step.active .form-group {
    margin-bottom: 0.75rem !important;
  }
  
  .form-step.active .form-group:last-child {
    margin-bottom: 0 !important;
  }
  
  /* COMPACT SUMMARY IN ACTIVE STEP */
  .form-step.active .summary-card,
  .form-step.active .calculator-summary {
    margin: 0 0 0.75rem 0 !important;
    padding: 0.75rem !important;
  }
  
  /* COMPACT PROJECT TYPES IN ACTIVE STEP */
  .form-step.active .project-types {
    gap: 0.5rem !important;
  }
  
  .form-step.active .type-card {
    padding: 0.75rem !important;
  }
  
  /* COMPACT CHECKBOXES IN ACTIVE STEP */
  .form-step.active .checkbox-label {
    margin: 0.5rem 0 !important;
  }
  
  /* ENSURE FORM FITS VIEWPORT */
  .contact-form {
    max-height: calc(100vh - 200px) !important;
    min-height: auto !important;
  }
  
  /* SMOOTH HEIGHT TRANSITIONS */
  .form-step {
    transition: all 0.3s ease !important;
  }
  
  .form-step.active {
    transition: all 0.3s ease !important;
  }

/* ===== PERFECT MOBILE FORM - NO SCROLL ===== */
@media (max-width: 768px) {
  /* COMPACT FORM CONTAINER */
  .contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    padding: 1rem !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  /* HIDE PROGRESS BAR */
  .form-progress,
  .progress-steps,
  .multistep-form .form-progress {
    display: none !important;
  }
  
  /* SHOW ONLY ACTIVE STEP */
  .form-step {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: auto !important;
  }
  
  .form-step.active {
    display: block !important;
    animation: fadeIn 0.3s ease !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  /* COMPACT STEP CONTENT */
  .form-step h3 {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
  }
  
  .form-step > p {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #6b7280 !important;
  }
  
  /* COMPACT FORM GROUPS */
  .form-group {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
  }
  
  .form-group:last-child {
    margin-bottom: 0 !important;
  }
  
  .form-group label {
    display: block !important;
    margin: 0 0 0.25rem 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
  }
  
  /* COMPACT INPUTS */
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100% !important;
    padding: 10px 14px !important;
    min-height: 44px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    background: white !important;
    color: #374151 !important;
    transition: border-color 0.2s ease !important;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
  }
  
  /* COMPACT NAVIGATION - ALWAYS VISIBLE */
  .form-navigation {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin: 0.75rem 0 0 0 !important;
    padding: 0 !important;
    gap: 10px !important;
    position: sticky !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(102, 126, 234, 0.1) !important;
    padding-top: 0.75rem !important;
    z-index: 100 !important;
  }
  
  /* COMPACT BUTTONS */
  .form-btn,
  .form-next,
  .form-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    min-height: 44px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex: 1 !important;
  }
  
  .form-submit {
    padding: 12px 20px !important;
    min-height: 48px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
  }
  
  .form-btn:not(.form-submit) {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
  }
  
  /* COMPACT SUMMARY CARD */
  .summary-card,
  .calculator-summary {
    margin: 0 0 0.75rem 0 !important;
    padding: 0.75rem !important;
    background: rgba(102, 126, 234, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(102, 126, 234, 0.1) !important;
  }
  
  .summary-header {
    margin: 0 0 0.5rem 0 !important;
    padding: 0 0 0.5rem 0 !important;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1) !important;
  }
  
  .summary-header h4 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  
  .config-details {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .config-item {
    margin: 0.25rem 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .config-label {
    font-size: 14px !important;
    color: #6b7280 !important;
  }
  
  .config-value {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
  }
  
  /* COMPACT CHECKBOXES */
  .checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    margin: 0.5rem 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  
  .checkbox-label input[type="checkbox"] {
    margin: 0 0.5rem 0 0 !important;
    padding: 0 !important;
  }
  
  /* COMPACT PROJECT TYPES */
  .project-types {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .project-type {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .type-card {
    padding: 0.75rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: white !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
  }
  
  .type-card:hover {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.05) !important;
  }
  
  .type-card.selected {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.1) !important;
  }
  
  /* ANIMATION */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Hero Lead Magnet - Modern Card Design */
.hero-lead-magnet {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-lead-magnet::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-lead-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-lead-badge {
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-lead-magnet h3 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-lead-subtitle {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.95;
}
.hero-lead-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-lead-form {
  margin-bottom: 25px;
}

.form-inputs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-inputs input {
  flex: 1;
  min-width: 200px;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transition: all 0.3s ease;
}

.form-inputs input:focus {
  outline: none;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-lead-form button {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.hero-lead-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
}

.hero-lead-bonus {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-lead-bonus p {
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 1.1em;
}

.hero-lead-bonus ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.hero-lead-bonus li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.hero-lead-bonus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.hero-lead-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.8;
}

.hero-lead-stats span {
  display: flex;
  align-items: center;
}

/* Exit Intent Popup - Minimalistisch Design */
.exit-intent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  animation: fadeIn 0.3s ease;
}

.exit-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.exit-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.exit-popup-close:hover {
  color: #333;
}

.exit-popup-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.exit-popup-badge {
  background: #f59e0b;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exit-popup-header h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #333;
}

.exit-popup-subtitle {
  font-size: 1.1em;
  color: #666;
  font-weight: 500;
}

.exit-popup-body p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.exit-popup-form {
  margin-bottom: 25px;
}

.exit-popup-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
}

.exit-popup-form input:focus {
  outline: none;
  border-color: #6366f1;
}

.exit-popup-form button {
  width: 100%;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.exit-popup-form button:hover {
  transform: translateY(-2px);
}

.exit-popup-bonus {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #f093fb;
}

.exit-popup-bonus p {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.exit-popup-bonus ul {
  margin: 0;
  padding-left: 15px;
  list-style: none;
}

.exit-popup-bonus li {
  margin-bottom: 5px;
  font-size: 13px;
  color: #666;
  position: relative;
  padding-left: 15px;
}

.exit-popup-bonus li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f093fb;
  font-weight: bold;
}

.exit-popup-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #666;
}

/* Floating ROI Calculator - Interactive Design */
.floating-roi-calculator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-roi-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.floating-roi-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.6);
}

.roi-icon {
  font-size: 18px;
}

.floating-roi-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 350px;
  max-height: 500px;
  overflow-y: auto;
  display: none;
  animation: slideUp 0.3s ease;
}

.roi-panel-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 20px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-panel-header h4 {
  margin: 0;
  font-size: 1.2em;
}

.roi-panel-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.roi-panel-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.roi-panel-content {
  padding: 20px;
}

.roi-panel-content p {
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 14px;
}

.roi-panel-form input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
}

.roi-panel-form input:focus {
  outline: none;
  border-color: #10b981;
}

.roi-panel-form button {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.roi-panel-form button:hover {
  transform: translateY(-2px);
}

.roi-panel-bonus {
  background: #f0fdf4;
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  border-left: 4px solid #10b981;
}

.roi-panel-bonus p {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.roi-panel-bonus ul {
  margin: 0;
  padding-left: 15px;
  list-style: none;
}

.roi-panel-bonus li {
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
  position: relative;
  padding-left: 15px;
}

.roi-panel-bonus li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.roi-panel-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #666;
  text-align: center;
}

/* Animations */
@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to { 
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-lead-magnet {
    padding: 30px 20px;
    margin: 20px 0;
  }
  
  .hero-lead-magnet h3 {
    font-size: 2em;
  }
  
  .form-inputs {
    flex-direction: column;
  }
  
  .form-inputs input {
    min-width: auto;
  }
  
  .exit-popup-content {
    width: 95%;
    padding: 30px 20px;
  }
  
  .floating-roi-calculator {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-roi-panel {
    width: 300px;
    right: -50px;
  }
  
  .floating-roi-button {
    padding: 12px 15px;
    font-size: 12px;
  }
  
  .roi-text {
    display: none;
  }
}

/* === DEBUG CASE STUDY MODAL: altijd als laatste! === */
.case-study-modal.debug .modal-container {
  background: #fffbe6 !important;
  border: 3px solid #ffb300 !important;
}
.case-study-modal.debug .modal-header {
  background: #ffe0e0 !important;
  border-bottom: 3px solid #ff5252 !important;
  color: #8e24aa !important;
  padding: 30px 30px 20px !important;
}
.case-study-modal.debug .modal-close {
  background: #e1bee7 !important;
  color: #8e24aa !important;
  border: 2px solid #8e24aa !important;
}
.case-study-modal.debug .modal-content {
  background: #e3f2fd !important;
  color: #1976d2 !important;
  border: 2px solid #1976d2 !important;
  padding: 30px !important;
}
.case-study-modal.debug .modal-content > * {
  border: 2px dashed #ff5252 !important;
  margin-bottom: 10px !important;
  background: #fffde7 !important;
  color: #23243a !important;
  padding: 10px !important;
}