/* ========================================
   MALER WILDSTEIN — Complete Styles
   Converted from React/Tailwind to plain CSS
   ======================================== */

/* --- Custom Properties --- */
:root {
  /* Amber */
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  /* Gray */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  /* Blue */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  /* Green */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  /* Purple */
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  /* Red */
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  /* Indigo */
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background: #fff;
  color: var(--gray-900);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #d4a853; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b8923f; }

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  padding: 20px 0;
  background: transparent;
}

.header.scrolled,
.header.menu-open {
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.header.scrolled .logo img,
.header.menu-open .logo img {
  height: 44px;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  color: #fff;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
  background: var(--gray-100);
}

.nav-link.active {
  background: var(--amber-600);
  color: #fff;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  color: #fff;
}

.header.scrolled .nav-dropdown-btn {
  color: var(--gray-700);
}

.nav-dropdown-btn:hover {
  background: rgba(255,255,255,0.1);
}

.header.scrolled .nav-dropdown-btn:hover {
  background: var(--gray-100);
}

.nav-dropdown-btn.has-active {
  background: var(--amber-100);
  color: var(--amber-700);
}

.nav-dropdown-btn svg {
  width: 16px;
  height: 16px;
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  width: 256px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}

.nav-dropdown-link:hover {
  background: var(--amber-50);
  color: var(--amber-600);
}

/* CTA Button in Nav */
.nav-cta {
  margin-left: 16px;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.2s;
  background: #fff;
  color: var(--amber-600);
}

.nav-cta:hover {
  background: var(--gray-50);
}

.header.scrolled .nav-cta {
  background: var(--amber-600);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(217,119,6,0.2);
}

.header.scrolled .nav-cta:hover {
  background: var(--amber-700);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  padding: 10px;
  border-radius: 12px;
  z-index: 110;
  transition: all 0.2s;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.header.scrolled .menu-btn,
.header.menu-open .menu-btn {
  color: var(--gray-900);
  background: var(--gray-100);
}

.menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Fullscreen Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px);
  transition: all 0.5s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 112px 24px 40px;
  overflow-y: auto;
}

.mobile-menu-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.mobile-menu-main-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-menu-main-link {
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.2s;
}

.mobile-menu-main-link.active {
  color: var(--amber-600);
}

.mobile-menu-service-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-service-link {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
}

.mobile-menu-service-link.active {
  color: var(--amber-600);
}

.mobile-menu-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  margin-right: 16px;
  flex-shrink: 0;
}

.mobile-menu-service-link.active .mobile-menu-service-dot {
  background: var(--amber-600);
}

.mobile-menu-bottom {
  margin-top: auto;
  padding-top: 40px;
}

.mobile-menu-contact {
  background: var(--amber-50);
  border-radius: 24px;
  padding: 24px;
}

.mobile-menu-contact-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--amber-800);
  margin-bottom: 8px;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.mobile-menu-phone svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--amber-600);
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  background: var(--amber-600);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(217,119,6,0.2);
}

/* ========================================
   HERO — Homepage
   ======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--gray-950), var(--gray-900), var(--gray-950));
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.518) 0%, rgba(3,7,18,0.5) 50%, rgba(3,7,18,0.8) 100%);
  z-index: 1;
}

.hero-blob-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: var(--amber-600);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.hero-blob-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: var(--blue-600);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 16px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-text {
  text-align: center;
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(245,158,11,0.1);
  border-radius: 9999px;
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber-500);
  border-radius: 50%;
  margin-right: 12px;
  animation: pulse 2s infinite;
}

.hero-badge-text {
  color: var(--amber-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--amber-600);
  color: #fff;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(217,119,6,0.2);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--amber-500);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 700;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* Trust Badges */
.trust-badges {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trust-users {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-900);
  overflow: hidden;
  margin-left: -8px;
  background: var(--gray-800);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.trust-info-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.trust-info-sub {
  color: var(--gray-500);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.trust-divider {
  display: none;
  width: 1px;
  height: 32px;
  background: var(--gray-800);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stars {
  display: flex;
  color: var(--amber-500);
}

.trust-stars svg {
  width: 16px;
  height: 16px;
}

.trust-score {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* Hero Visual (desktop only) */
.hero-visual {
  display: none;
  position: relative;
}

.hero-visual-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(to right, rgba(245,158,11,0.2), rgba(59,130,246,0.2));
  border-radius: 40px;
  filter: blur(24px);
  opacity: 0.5;
}

.hero-visual-card {
  position: relative;
  background: white;
  border-radius: 40px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}

.hero-illustration-main {
  position: relative;
}

.hero-illustration-box {
  width: 192px;
  height: 192px;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-600));
  border-radius: 24px;
  transform: rotate(12deg);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}

.hero-illustration-main:hover .hero-illustration-box {
  transform: rotate(6deg);
}

.hero-illustration-box svg {
  width: 96px;
  height: 96px;
  color: #fff;
}

.hero-float-1 {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 64px;
  height: 64px;
  background: var(--blue-600);
  border-radius: 16px;
  transform: rotate(-6deg);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-1 svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.hero-float-2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 56px;
  height: 56px;
  background: var(--green-600);
  border-radius: 16px;
  transform: rotate(12deg);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-2 svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.hero-mini-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.hero-mini-stat-number {
  font-size: 30px;
  font-weight: 800;
}

.hero-mini-stat-number.amber { color: var(--amber-500); }
.hero-mini-stat-number.blue { color: var(--blue-500); }

.hero-mini-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.scroll-indicator-pill {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding: 4px;
}

.scroll-indicator-dot {
  width: 4px;
  height: 12px;
  background: rgba(245,158,11,0.5);
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  background: #fff;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(to right, var(--amber-500), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

/* ========================================
   SERVICES SECTION — Homepage
   ======================================== */
.services-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--amber-100);
  color: var(--amber-700);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 672px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: block;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card-icon.blue { background: var(--blue-50); }
.service-card-icon.blue svg { color: var(--blue-600); }
.service-card-icon.green { background: var(--green-50); }
.service-card-icon.green svg { color: var(--green-600); }
.service-card-icon.amber { background: var(--amber-50); }
.service-card-icon.amber svg { color: var(--amber-600); }
.service-card-icon.purple { background: var(--purple-50); }
.service-card-icon.purple svg { color: var(--purple-600); }
.service-card-icon.red { background: var(--red-50); }
.service-card-icon.red svg { color: var(--red-600); }
.service-card-icon.indigo { background: var(--indigo-50); }
.service-card-icon.indigo svg { color: var(--indigo-600); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.service-card:hover h3 {
  color: var(--amber-600);
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-arrow {
  display: flex;
  align-items: center;
  color: var(--amber-600);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s;
}

.service-card:hover .service-card-arrow {
  transform: translateX(8px);
}

.service-card-arrow svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-section {
  padding: 96px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.why-text .section-badge { margin-bottom: 16px; }

.why-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.why-desc {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-check-icon {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}

.why-check-item h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.why-check-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-visual-bg {
  background: linear-gradient(to bottom right, var(--amber-100), var(--amber-50));
  border-radius: 24px;
  padding: 48px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-align: center;
}

.why-feature-emoji {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.why-feature-card h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.why-feature-card p {
  color: var(--gray-500);
  font-size: 14px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  padding: 96px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  gap: 32px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  fill: var(--amber-400);
}

.testimonial-text {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, var(--amber-400), var(--amber-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-location {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-section.dark {
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), var(--gray-900));
}

.cta-blob-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: var(--amber-500);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.cta-blob-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: var(--blue-500);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(to right, var(--amber-500), var(--amber-600));
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(245,158,11,0.25);
  transition: all 0.3s;
}

.btn-cta-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(245,158,11,0.3);
  transform: translateY(-2px);
}

.btn-cta-primary svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.btn-cta-secondary svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gray-900);
  color: #fff;
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  gap: 48px;
}

/* Footer Company */
.footer-company {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-about {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.7;
}

/* Footer Links */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--amber-400);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--gray-400);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--amber-400);
}

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--gray-400);
  font-size: 14px;
}

.footer-contact-item a:hover {
  color: var(--amber-400);
}

/* Footer Hours */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-400);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
}

.footer-hours-row .time {
  color: #fff;
}

.footer-hours-row .closed {
  color: var(--red-400);
}

.footer-cta-box {
  margin-top: 24px;
  padding: 16px;
  background: rgba(245,158,11,0.1);
  border-radius: 12px;
  border: 1px solid rgba(245,158,11,0.2);
}

.footer-cta-title {
  color: var(--amber-400);
  font-size: 14px;
  font-weight: 500;
}

.footer-cta-desc {
  color: var(--gray-400);
  font-size: 12px;
  margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--amber-400);
}

/* ========================================
   SERVICE PAGE TEMPLATE
   ======================================== */
/* Service Hero */
.service-hero {
  position: relative;
  padding: 128px 0 64px;
  overflow: hidden;
}

.service-hero.blue { background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800)); }
.service-hero.green { background: linear-gradient(to bottom right, var(--green-600), var(--green-800)); }
.service-hero.amber { background: linear-gradient(to bottom right, var(--amber-600), var(--amber-800)); }
.service-hero.purple { background: linear-gradient(to bottom right, var(--purple-600), var(--purple-800)); }
.service-hero.red { background: linear-gradient(to bottom right, var(--red-600), var(--red-800)); }
.service-hero.indigo { background: linear-gradient(to bottom right, var(--indigo-600), var(--indigo-800)); }
.service-hero.dark { background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), var(--gray-900)); }
.service-hero.kontakt { background: linear-gradient(to bottom right, var(--amber-600), var(--amber-700)); }

.service-hero-blob-1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background: #fff;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}

.service-hero-blob-2 {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 256px;
  height: 256px;
  background: #fff;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.service-hero-content {
  position: relative;
  max-width: 768px;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  border: 1px solid;
}

.service-hero-badge.blue { background: var(--blue-100); border-color: var(--blue-200); }
.service-hero-badge.blue .badge-dot { background: var(--blue-500); }
.service-hero-badge.blue .badge-text { color: var(--blue-700); }
.service-hero-badge.green { background: var(--green-100); border-color: var(--green-200); }
.service-hero-badge.green .badge-dot { background: var(--green-500); }
.service-hero-badge.green .badge-text { color: var(--green-700); }
.service-hero-badge.amber { background: var(--amber-100); border-color: var(--amber-200); }
.service-hero-badge.amber .badge-dot { background: var(--amber-500); }
.service-hero-badge.amber .badge-text { color: var(--amber-700); }
.service-hero-badge.purple { background: var(--purple-100); border-color: var(--purple-200); }
.service-hero-badge.purple .badge-dot { background: var(--purple-500); }
.service-hero-badge.purple .badge-text { color: var(--purple-700); }
.service-hero-badge.red { background: var(--red-100); border-color: var(--red-200); }
.service-hero-badge.red .badge-dot { background: var(--red-500); }
.service-hero-badge.red .badge-text { color: var(--red-700); }
.service-hero-badge.indigo { background: var(--indigo-100); border-color: var(--indigo-200); }
.service-hero-badge.indigo .badge-dot { background: var(--indigo-500); }
.service-hero-badge.indigo .badge-text { color: var(--indigo-700); }
.service-hero-badge.dark { background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.3); }
.service-hero-badge.dark .badge-dot { background: var(--amber-400); }
.service-hero-badge.dark .badge-text { color: var(--amber-300); }
.service-hero-badge.kontakt { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.service-hero-badge.kontakt .badge-dot { background: #fff; }
.service-hero-badge.kontakt .badge-text { color: #fff; }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.service-hero .hero-gradient-text {
  display: block;
  background: linear-gradient(to right, var(--amber-400), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 672px;
  font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 72px;
  z-index: 30;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb-inner {
  padding: 12px 0;
}

.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-500);
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--amber-600);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.breadcrumb .current {
  color: var(--gray-900);
  font-weight: 700;
}

/* Service Page Grid */
.sp-services {
  padding: 64px 0;
  background: var(--gray-50);
}

.sp-services-header {
  text-align: center;
  margin-bottom: 48px;
}

.sp-services-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sp-services-header p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 672px;
  font-weight: 500;
}

.sp-services-grid {
  display: grid;
  gap: 24px;
}

.sp-service-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.5s;
}

.sp-service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}

.sp-service-card:active {
  transform: scale(0.98);
}

.sp-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 30px;
  transition: transform 0.5s;
}

.sp-service-card:hover .sp-service-icon {
  transform: scale(1.1);
}

.sp-service-icon.blue { background: var(--blue-100); }
.sp-service-icon.green { background: var(--green-100); }
.sp-service-icon.amber { background: var(--amber-100); }
.sp-service-icon.purple { background: var(--purple-100); }
.sp-service-icon.red { background: var(--red-100); }
.sp-service-icon.indigo { background: var(--indigo-100); }

.sp-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  transition: color 0.2s;
}

.sp-service-card:hover h3 {
  color: var(--amber-600);
}

.sp-service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #fff;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.process-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 672px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  gap: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
}

.process-step-icon.blue { background: var(--blue-100); }
.process-step-icon.green { background: var(--green-100); }
.process-step-icon.amber { background: var(--amber-100); }
.process-step-icon.purple { background: var(--purple-100); }
.process-step-icon.red { background: var(--red-100); }
.process-step-icon.indigo { background: var(--indigo-100); }

.process-step-num {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.process-step-num.blue { color: var(--blue-700); }
.process-step-num.green { color: var(--green-700); }
.process-step-num.amber { color: var(--amber-700); }
.process-step-num.purple { color: var(--purple-700); }
.process-step-num.red { color: var(--red-700); }
.process-step-num.indigo { color: var(--indigo-700); }

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-600);
}

.process-line {
  display: none;
}

/* Service CTA */
.service-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta.blue { background: linear-gradient(to bottom right, var(--blue-600), var(--blue-800)); }
.service-cta.green { background: linear-gradient(to bottom right, var(--green-600), var(--green-800)); }
.service-cta.amber { background: linear-gradient(to bottom right, var(--amber-600), var(--amber-800)); }
.service-cta.purple { background: linear-gradient(to bottom right, var(--purple-600), var(--purple-800)); }
.service-cta.red { background: linear-gradient(to bottom right, var(--red-600), var(--red-800)); }
.service-cta.indigo { background: linear-gradient(to bottom right, var(--indigo-600), var(--indigo-800)); }
.service-cta.dark { background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), var(--gray-900)); }

.service-cta-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: #fff;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.service-cta-content {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.service-cta h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.service-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #fff;
  color: var(--gray-900);
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.btn-white:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.btn-white svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
}

.btn-glass svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.about-owner h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.about-owner p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  border-radius: 16px;
  padding: 24px;
}

.about-stat.amber { background: var(--amber-50); }
.about-stat.blue { background: var(--blue-50); }
.about-stat.green { background: var(--green-50); }
.about-stat.purple { background: var(--purple-50); }

.about-stat-number {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-stat-number.amber { color: var(--amber-600); }
.about-stat-number.blue { color: var(--blue-600); }
.about-stat-number.green { color: var(--green-600); }
.about-stat-number.purple { color: var(--purple-600); }

.about-stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

.about-features-bg {
  background: linear-gradient(to bottom right, var(--amber-100), var(--amber-50));
  border-radius: 24px;
  padding: 48px;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.about-feature-icon {
  font-size: 24px;
}

.about-feature-item h4 {
  font-weight: 600;
  color: var(--gray-900);
}

.about-feature-item p {
  font-size: 14px;
  color: var(--gray-600);
}

/* Values */
.values-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.values-grid {
  display: grid;
  gap: 32px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  gap: 64px;
}

.contact-grid h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
}

/* Form */
.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s;
  font-size: 16px;
  background: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--amber-500);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  padding: 16px 32px;
  background: linear-gradient(to right, var(--amber-500), var(--amber-600));
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(245,158,11,0.25);
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
}

.form-submit:hover {
  box-shadow: 0 20px 25px -5px rgba(245,158,11,0.3);
  transform: translateY(-2px);
}

.form-submit svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Success message */
.form-success {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--green-700);
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
}

.contact-info-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon.amber { background: var(--amber-100); }
.contact-info-icon.amber svg { color: var(--amber-600); }
.contact-info-icon.green { background: var(--green-100); }
.contact-info-icon.green svg { color: var(--green-600); }
.contact-info-icon.blue { background: var(--blue-100); }
.contact-info-icon.blue svg { color: var(--blue-600); }
.contact-info-icon.purple { background: var(--purple-100); }
.contact-info-icon.purple svg { color: var(--purple-600); }

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h3 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--gray-600);
}

.contact-info-card a {
  color: var(--amber-600);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-card a:hover {
  color: var(--amber-700);
}

.contact-info-card .closed {
  color: var(--red-500);
}

.contact-map {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  height: 256px;
  background: var(--gray-200);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   LEGAL PAGES (Impressum, Datenschutz)
   ======================================== */
.legal-hero {
  padding: 128px 0 48px;
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
}

.legal-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.legal-content {
  padding: 64px 0;
  background: var(--gray-50);
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 16px;
  margin-bottom: 8px;
}

.legal-section p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--amber-600);
  transition: color 0.2s;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========================================
   HERO BG — Mobile Fix (< 640px)
   ======================================== */
@media (max-width: 639px) {
  .hero-bg img {
    object-position: left center;
    opacity: 0.55;
  }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(3,7,18,0.25) 0%,
      rgba(3,7,18,0.35) 45%,
      rgba(3,7,18,0.7) 100%
    );
  }
}

/* ========================================
   RESPONSIVE — sm (640px+)
   ======================================== */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .container-sm { padding: 0 24px; }

  .logo-icon { width: 48px; height: 48px; }
  .logo-icon svg { width: 28px; height: 28px; }
  .logo-text { font-size: 20px; }

  .hero-content { padding: 128px 24px; }
  .hero-text { padding-top: 0; }
  .hero h1 { font-size: 60px; }
  .hero-badge-text { font-size: 14px; }
  .hero-badge { margin-bottom: 32px; }
  .hero-desc { font-size: 20px; margin-bottom: 40px; }
  .hero-buttons { flex-direction: row; }
  .trust-badges { flex-direction: row; gap: 32px; }
  .trust-divider { display: block; }

  .stat-number { font-size: 48px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

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

  .service-hero { padding-bottom: 80px; }
  .service-hero h1 { font-size: 48px; }
  .service-hero-desc { font-size: 20px; }
  .badge-text { font-size: 14px; }

  .breadcrumb { top: 88px; }
  .breadcrumb-inner { padding: 16px 0; }
  .breadcrumb nav { font-size: 14px; }
  .breadcrumb svg { width: 16px; height: 16px; }

  .sp-services { padding: 80px 0; }
  .sp-services-header { text-align: left; margin-bottom: 64px; }
  .sp-services-header h2 { font-size: 36px; }
  .sp-services-header p { font-size: 18px; }
  .sp-services-grid { grid-template-columns: 1fr 1fr; }
  .sp-service-card { padding: 40px; }
  .sp-service-card:active { transform: none; }
  .sp-service-card p { font-size: 16px; }

  .service-cta h2 { font-size: 36px; }
  .service-cta-buttons { flex-direction: row; }

  .form-row { grid-template-columns: 1fr 1fr; }
  .form-submit { width: auto; }
}

/* ========================================
   RESPONSIVE — md (768px+)
   ======================================== */
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-content h2 { font-size: 48px; }

  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }

  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-line {
    display: block;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-200);
  }
  .process-step:last-child .process-line { display: none; }

  .section-title { font-size: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   RESPONSIVE — lg (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .container-sm { padding: 0 32px; }

  .desktop-nav { display: flex; }
  .menu-btn { display: none; }

  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hero-text { text-align: left; }
  .hero-desc { margin-left: 0; margin-right: 0; }
  .hero-buttons { justify-content: flex-start; }
  .trust-badges { justify-content: flex-start; align-items: center; }
  .hero-visual { display: block; }
  .hero h1 { font-size: 72px; }
  .scroll-indicator { display: block; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }

  .sp-services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .service-hero h1 { font-size: 60px; }

  .about-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-header p {
  color: #64748b;
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: #f59e0b;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #d97706;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  background: #d97706;
}

.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-header h2 { font-size: 26px; }
  .faq-question { padding: 16px 18px; }
  .faq-question-text { font-size: 15px; }
  .faq-answer-inner { padding: 0 18px 16px 18px; padding-top: 14px; }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 3px 8px rgba(0,0,0,0.18);
  animation: none;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7), 0 2px 6px rgba(0,0,0,0.15); }
}

@media (max-width: 768px) {
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}
