/* SameDayReinigung – Modern Design System v2.0 */

/* ===== FARBEN (hier zentral änderbar) ===== */
:root {
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --primary-light: #06b6d4;
  --primary-50: #ecfeff;
  --primary-100: #cffafe;
  --primary-200: #a5f3fc;
  --secondary: #0f766e;
  --secondary-light: #14b8a6;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --dark: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --success: #22c55e;
  --star: #facc15;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #0f766e 100%);
  --gradient-hero: linear-gradient(135deg, #0c4a6e 0%, #0e7490 40%, #0891b2 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-cta: linear-gradient(135deg, #0891b2 0%, #14b8a6 100%);
  --gradient-card: linear-gradient(135deg, rgba(8,145,178,0.05) 0%, rgba(20,184,166,0.05) 100%);
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 30px rgba(8,145,178,0.25);
  --shadow-accent: 0 8px 30px rgba(245,158,11,0.3);
  --shadow-glow: 0 0 40px rgba(8,145,178,0.15);
}

/* ===== GRUNDLEGENDES ===== */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--gray-900); overflow-x: hidden; }

/* ===== SCROLL ANIMATIONEN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
/* Staggered delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
}
.glass-dark {
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-md);
}

/* ===== STICKY NAVIGATION (Glassmorphism) ===== */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.5);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nav-sticky.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.nav-sticky.nav-hidden { transform: translateY(-100%); }

/* ===== HERO ===== */
.hero-section {
  background: var(--gradient-hero);
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Hero Contact Form (Glassmorphism) */
.hero-contact-form {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  padding: 28px;
  position: relative;
  z-index: 2;
}
.hero-contact-form h3 { color: var(--white); }
.hero-contact-form input,
.hero-contact-form select,
.hero-contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.hero-contact-form input::placeholder,
.hero-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}
.hero-contact-form select { color: rgba(255,255,255,0.8); }
.hero-contact-form select option { color: var(--gray-900); background: var(--white); }
.hero-contact-form input:focus,
.hero-contact-form select:focus,
.hero-contact-form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

/* ===== TRUST-BADGES ===== */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.trust-badge:hover {
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.trust-badge:hover::before { opacity: 1; }
.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

/* ===== LEISTUNGS-KARTEN ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-8px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-primary);
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

/* ===== BEZIRKE-KARTEN ===== */
.bezirk-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  text-decoration: none;
  color: var(--gray-900);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bezirk-card::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  color: var(--primary);
  font-weight: 600;
}
.bezirk-card:hover {
  border-color: var(--primary);
  background: var(--gradient-card);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  padding-right: 44px;
}
.bezirk-card:hover::after { opacity: 1; transform: translateX(0); }

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--white);
}
.faq-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--gray-700);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; color: var(--primary); }

/* ===== SCHRITTE ===== */
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-primary);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--primary-100);
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-primary);
}

/* ===== CTA-BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}
.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;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(8,145,178,0.4);
}
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
/* Light variant for non-hero sections */
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
}
.btn-secondary-light:hover {
  background: var(--primary-50);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-accent);
  color: var(--dark);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}
.btn-accent::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.5s;
}
.btn-accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(245,158,11,0.45);
}
.btn-accent:hover::before { left: 100%; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-500); padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { text-decoration: underline; color: var(--primary-dark); }
.breadcrumb-sep { color: var(--gray-300); }

/* ===== PREISTABELLE ===== */
.price-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.price-table th { background: var(--gradient-primary); color: var(--white); padding: 16px 24px; text-align: left; font-weight: 600; }
.price-table td { padding: 16px 24px; border-bottom: 1px solid var(--gray-100); background: var(--white); transition: background 0.2s; }
.price-table tr:hover td { background: var(--primary-50); }
.price-table tr:last-child td { border-bottom: none; }

/* ===== KONTAKTFORMULAR ===== */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8,145,178,0.1);
}

/* ===== STERNE-BEWERTUNG ===== */
.stars { color: var(--star); display: flex; gap: 2px; }

/* ===== SCROLL-TO-TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: var(--shadow-primary);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(8,145,178,0.4); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 28px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.active { transform: translateX(0); }

/* ===== SECTION STYLING ===== */
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-light-blue { background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%); }
.section-dark {
  background: var(--gradient-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-primary {
  background: var(--gradient-primary);
  color: var(--white);
}
.section-gradient {
  background: linear-gradient(135deg, #ecfeff 0%, #f0fdfa 50%, #f8fafc 100%);
}
.section-pattern {
  position: relative;
}
.section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(8,145,178,0.07) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ===== STATISTIK-KARTEN ===== */
.stat-card {
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  transition: all 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.section-dark .stat-number {
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CHECKMARK-LISTE ===== */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.check-list li::before {
  content: "✓";
  color: var(--white);
  background: var(--gradient-primary);
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  margin-top: 2px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.content-section p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== SECTION DIVIDERS ===== */
.wave-divider {
  position: relative;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== FEATURE CARDS (dark section) ===== */
.feature-card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.feature-card-dark:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

/* ===== COUNTER ANIMATION ===== */
.counter { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { padding-top: 80px; padding-bottom: 32px; }
  .stat-number { font-size: 2rem; }
  .content-section h2 { font-size: 1.5rem; }
  .service-card { padding: 24px 20px; }
  .testimonial-card { padding: 24px; }
  .btn-primary, .btn-accent, .btn-secondary, .btn-white { padding: 12px 24px; font-size: 15px; }
}
