/* ============================================================
   KLIZAR ENTRÜMPELUNG – style.css
   Farben: Dark #2D3436 | Teal #00B4D8 | Orange #FF6B00 | Gray #F3F4F6
   Fonts: Barlow Condensed (Headings) | DM Sans (Body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ── Variables ── */
:root {
  --dark:   #2D3436;
  --teal:   #00B4D8;
  --teal-d: #0090AF;
  --orange: #FF6B00;
  --orange-d: #E05A00;
  --gray:   #F3F4F6;
  --gray-2: #E8EAED;
  --text:   #2D3436;
  --muted:  #6B7280;
  --white:  #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --transition: all 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 0.875rem;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 0; }
strong { font-weight: 700; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-sm { padding: 0 1.5rem; } }
.container-md { max-width: 1024px; margin: 0 auto; padding: 0 1rem; }

/* ── Layout helpers ── */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap    { flex-wrap: wrap; }
.flex-1       { flex: 1; }
.flex-shrink-0{ flex-shrink: 0; }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* ── Grid ── */
.grid { display: grid; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.g-4  { gap: 1rem; }
.g-5  { gap: 1.25rem; }
.g-6  { gap: 1.5rem; }
.g-8  { gap: 2rem; }
.g-10 { gap: 2.5rem; }
.g-12 { gap: 3rem; }
.g-16 { gap: 4rem; }
@media (max-width: 1023px) { .lg-grid-2 { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .lg-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .md-grid-2, .md-grid-3 { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.col-span-2 { grid-column: span 2; }
.lg-col-span-2 { grid-column: span 1; }
@media (min-width: 1024px) { .lg-col-span-2 { grid-column: span 2; } }
.lg-col-span-3 { grid-column: span 1; }
@media (min-width: 1024px) { .lg-col-span-3 { grid-column: span 3; } }

/* ── Spacing ── */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.py-2 { padding: 0.5rem 0; }
.py-3 { padding: 0.75rem 0; }
.py-4 { padding: 1rem 0; }
.py-8 { padding: 2rem 0; }
.py-16 { padding: 4rem 0; }
.py-20 { padding: 5rem 0; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* ── Text Utilities ── */
.text-xs  { font-size: 0.75rem; }
.text-sm  { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg  { font-size: 1.125rem; }
.text-xl  { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.uppercase   { text-transform: uppercase; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-relaxed { line-height: 1.7; }
.leading-tight   { line-height: 1.2; }
.leading-none    { line-height: 1; }
.font-heading { font-family: 'Barlow Condensed', sans-serif; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.italic       { font-style: italic; }

/* ── Color Utilities ── */
.text-white    { color: var(--white); }
.text-dark     { color: var(--dark); }
.text-teal     { color: var(--teal); }
.text-orange   { color: var(--orange); }
.text-muted    { color: var(--muted); }
.text-gray-300 { color: #D1D5DB; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-green-500 { color: #22C55E; }
.text-red-500   { color: #EF4444; }
.bg-white  { background-color: #fff; }
.bg-dark   { background-color: var(--dark); }
.bg-teal   { background-color: var(--teal); }
.bg-gray   { background-color: var(--gray); }
.bg-gray-2 { background-color: var(--gray-2); }

/* ── Borders / Radius ── */
.rounded-sm { border-radius: 6px; }
.rounded    { border-radius: 8px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 16px; }
.rounded-2xl{ border-radius: 24px; }
.rounded-full { border-radius: 9999px; }
.border     { border: 1px solid var(--gray-2); }
.border-t   { border-top: 1px solid var(--gray-2); }
.border-b   { border-bottom: 1px solid var(--gray-2); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.shadow-2xl { box-shadow: 0 25px 80px rgba(0,0,0,0.2); }
.object-cover { object-fit: cover; }
.opacity-30 { opacity: 0.3; }
.opacity-5  { opacity: 0.05; }

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #fff;
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #9CA3AF;
  transition: var(--transition);
}
.topbar-links a:hover { color: var(--teal); }
.topbar-phone { color: var(--teal) !important; font-weight: 600; }
.topbar-phone:hover { color: #fff !important; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-2);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px) { .header-inner { height: 80px; } }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -0.01em; }
.logo-sub  { font-size: 0.6rem; color: var(--teal); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

/* Desktop Nav */
.desktop-nav { display: none; }
@media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 0.25rem; } }
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }

/* Dropdown */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: var(--teal); }
.nav-dropdown-btn i { font-size: 0.7rem; transition: transform 0.2s; }
.nav-dropdown-btn.open i { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  transition: var(--transition);
}
.nav-dropdown-item:hover { background: var(--gray); color: var(--teal); }
.nav-dropdown-item.highlight { font-weight: 700; color: var(--teal); }

/* Header CTA (desktop) */
.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}
.header-phone:hover { color: var(--teal); }
.header-phone i { color: var(--teal); }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--dark);
  font-size: 1.25rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.hamburger:hover { background: var(--gray); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--gray-2);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  border-bottom: 1px solid var(--gray);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--teal); }
.mobile-submenu-label {
  padding: 0.625rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mobile-sub-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--dark);
  transition: var(--transition);
}
.mobile-sub-link:hover { color: var(--teal); }
.mobile-sub-link.highlight { color: var(--teal); font-weight: 700; }
.mobile-cta-group { padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.sm { font-size: 0.875rem; padding: 0.6rem 1.25rem; }
.btn-primary.lg { font-size: 1.1rem; padding: 1.1rem 2.5rem; }
.btn-primary.w-full { width: 100%; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-teal:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,0.35); }
.btn-teal.sm { font-size: 0.875rem; padding: 0.6rem 1.25rem; }
.btn-teal.lg { font-size: 1.1rem; padding: 1.1rem 2.5rem; }
.btn-teal.w-full { width: 100%; }
.btn-teal:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-white:hover { background: #fff; color: var(--dark); transform: translateY(-2px); }
.btn-outline-white.lg { font-size: 1.1rem; padding: 1rem 2.5rem; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 2px solid var(--gray-2);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ── BADGE ── */
.badge-teal {
  display: inline-block;
  background: rgba(0,180,216,0.12);
  color: var(--teal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  border-top: 3px solid var(--teal);
  width: 60px;
  margin: 0 0 1.5rem 0;
}
.section-divider.center { margin: 0 auto 1.5rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
@media (min-width: 1024px) { .hero { min-height: 700px; } }
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,52,54,0.92) 0%, rgba(45,52,54,0.75) 50%, rgba(0,180,216,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  width: 100%;
}
.hero-label { font-size: 0.875rem; }
.hero-title { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1; margin-bottom: 1rem; }
.hero-sub-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem; }
.hero-desc { font-size: 1.05rem; color: #E5E7EB; margin-bottom: 1.5rem; max-width: 520px; line-height: 1.7; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.375rem; color: #D1D5DB; font-size: 0.875rem; }
.hero-trust-item i { color: var(--teal); font-size: 0.875rem; }

/* Hero Dark (inner pages) */
.hero-dark {
  background: var(--dark);
  padding: 5rem 1rem;
  text-align: center;
}
.hero-dark h1 { color: #fff; }
.hero-dark .divider-line { width: 64px; height: 4px; background: var(--teal); margin: 1rem auto; }
.hero-dark p  { color: #D1D5DB; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── USP STRIP ── */
.usp-strip {
  background: #fff;
  border-bottom: 1px solid var(--gray-2);
  padding: 2rem 0;
}
.usp-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.usp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1rem;
}
.usp-title { font-weight: 700; font-size: 0.875rem; color: var(--dark); margin-bottom: 0.125rem; }
.usp-desc  { font-size: 0.75rem; color: var(--muted); }

/* ── SERVICE CARD ── */
.service-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.highlight { border: 2px solid var(--teal); background: rgba(0,180,216,0.03); }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}
.service-card-icon.bg-teal { background: var(--teal); color: #fff; }
.service-card-icon.bg-gray { background: var(--gray); color: var(--teal); }
.service-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.service-card h3.teal { color: var(--teal); }
.service-card p { font-size: 0.875rem; color: #4B5563; line-height: 1.65; margin-bottom: 1rem; }
.service-card-more { display: flex; align-items: center; gap: 0.25rem; color: var(--teal); font-size: 0.875rem; font-weight: 700; transition: gap 0.2s; }
.service-card:hover .service-card-more { gap: 0.5rem; }

/* ── STATS ── */
.stats-section { background: var(--dark); padding: 4rem 0; }
.stat-card { text-align: center; padding: 1.5rem 1rem; }
.stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label  { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }

/* ── PROCESS ── */
.process-step { text-align: center; padding: 2rem 1.5rem; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.process-number { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

/* ── TESTIMONIAL ── */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--teal); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 0.75rem; color: var(--orange); font-size: 0.875rem; }
.testimonial-card p { font-size: 0.875rem; color: #374151; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-card strong { font-size: 0.875rem; color: var(--dark); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gray-2); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-question span { font-weight: 600; color: var(--dark); font-size: 0.9375rem; line-height: 1.4; flex: 1; }
.faq-question i { color: #9CA3AF; flex-shrink: 0; transition: transform 0.2s, color 0.2s; font-size: 0.9rem; }
.faq-question.open i { color: var(--teal); transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1rem; font-size: 0.875rem; color: #4B5563; line-height: 1.7; }
.faq-answer.open { display: block; }
.faq-group { background: var(--gray); border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; }
.faq-group-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 1.25rem; text-transform: uppercase; }
.faq-group-title::before { content: ''; display: inline-block; width: 30px; height: 3px; background: var(--teal); }
.faq-group .faq-item { padding: 0 1.5rem; }

/* ── SEO TEXT BOX ── */
.seo-box { background: var(--gray); border-radius: var(--radius); padding: 2.5rem; border-left: 4px solid var(--teal); }
.seo-box h2 { font-size: 1.375rem; text-transform: uppercase; margin-bottom: 1rem; }
.seo-box p  { font-size: 0.875rem; color: #374151; line-height: 1.75; }

/* ── CONTACT FORM ── */
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); margin-bottom: 0.375rem; }
.form-input {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,216,0.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-select {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: var(--teal); }
.form-textarea {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--dark);
  background: #fff;
  resize: none;
  transition: border-color 0.2s;
  outline: none;
  min-height: 120px;
}
.form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,216,0.1); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-hint { font-size: 0.75rem; color: #9CA3AF; margin-bottom: 1rem; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #D1FAE5; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #10B981; font-size: 1.75rem; }
.form-error { color: #EF4444; font-size: 0.875rem; background: #FEF2F2; padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }

/* Contact info card */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(0,180,216,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal); font-size: 1.1rem; }
.contact-info-label { font-size: 0.6875rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 700; color: var(--dark); font-size: 0.9375rem; }
.contact-info-value a { color: var(--dark); transition: var(--transition); }
.contact-info-value a:hover { color: var(--teal); }

/* ── BOOKING WIZARD ── */
.booking-progress { background: var(--dark); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.booking-step-indicator { display: flex; align-items: center; gap: 0.5rem; }
.booking-step-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; background: #4B5563; color: #9CA3AF; flex-shrink: 0; transition: var(--transition); }
.booking-step-circle.active { background: var(--teal); color: #fff; }
.booking-step-circle.done { background: var(--teal); color: #fff; }
.booking-step-label { font-size: 0.75rem; font-weight: 600; color: #9CA3AF; display: none; }
@media (min-width: 480px) { .booking-step-label { display: block; } }
.booking-step-label.active { color: #fff; }
.booking-step-connector { width: 60px; height: 2px; background: #4B5563; display: none; }
@media (min-width: 480px) { .booking-step-connector { display: block; } }
.booking-step-connector.done { background: var(--teal); }

.booking-step { display: none; padding: 2rem; }
.booking-step.active { display: block; }
.service-select-btn {
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray-2);
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.service-select-btn:hover { border-color: rgba(0,180,216,0.5); }
.service-select-btn.selected { border-color: var(--teal); background: rgba(0,180,216,0.05); color: var(--teal); }
.date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-height: 200px; overflow-y: auto; padding-right: 4px; }
@media (min-width: 480px) { .date-grid { grid-template-columns: repeat(5, 1fr); } }
.date-btn { padding: 0.5rem 0.25rem; border-radius: 8px; border: 2px solid var(--gray-2); text-align: center; cursor: pointer; background: #fff; transition: var(--transition); }
.date-btn:hover { border-color: rgba(0,180,216,0.5); }
.date-btn.selected { border-color: var(--teal); background: var(--teal); color: #fff; }
.date-btn .d-day { font-size: 0.625rem; font-weight: 700; }
.date-btn .d-num { font-size: 0.875rem; font-weight: 700; }
.date-btn .d-mon { font-size: 0.625rem; }
.time-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 480px) { .time-grid { grid-template-columns: repeat(3, 1fr); } }
.time-btn { padding: 0.75rem; border-radius: 8px; border: 2px solid var(--gray-2); text-align: center; font-size: 0.875rem; font-weight: 600; cursor: pointer; background: #fff; transition: var(--transition); }
.time-btn:hover { border-color: rgba(0,180,216,0.5); }
.time-btn.selected { border-color: var(--teal); background: var(--teal); color: #fff; }
.booking-summary { background: var(--gray); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.875rem; margin-bottom: 1.5rem; }
.booking-summary strong { color: var(--dark); }

/* ── BEFORE / AFTER ── */
.before-after-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.before-after-img { position: relative; }
.before-after-img img { width: 100%; height: 208px; object-fit: cover; }
.ba-label { position: absolute; top: 0.75rem; left: 0.75rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 4px; color: #fff; }
.ba-label.before { background: #EF4444; }
.ba-label.after  { background: #22C55E; }

/* ── REGION CARDS ── */
.district-tag { background: var(--gray); color: #374151; font-size: 0.75rem; padding: 0.25rem 0.625rem; border-radius: 9999px; display: inline-block; }
.region-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.region-img-wrap img { width: 100%; height: 288px; object-fit: cover; }
.region-img-overlay { position: absolute; inset: 0; background: rgba(45,52,54,0.3); }
.region-img-badge { position: absolute; bottom: 1rem; left: 1rem; background: #fff; border-radius: 8px; padding: 0.625rem 1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.5rem; }
.region-img-badge strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--dark); }
.region-img-badge i { color: var(--teal); }
.region-img-badge small { display: block; font-size: 0.75rem; color: var(--muted); }

/* ── TIMELINE ── */
.timeline-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.timeline-year { flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.875rem; text-align: center; }
.timeline-content { flex: 1; background: var(--gray); border-radius: var(--radius); padding: 1rem; }
.timeline-content p { font-size: 0.875rem; color: #374151; line-height: 1.6; }

/* ── VALUE CARD ── */
.value-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(0,180,216,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--teal); font-size: 1.375rem; }
.value-card h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: #4B5563; line-height: 1.65; }

/* ── HOURS TABLE ── */
.hours-row { display: flex; justify-content: space-between; padding: 0.375rem 0; border-bottom: 1px solid var(--gray); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 0.875rem; color: #4B5563; }
.hours-time { font-size: 0.875rem; font-weight: 700; color: var(--dark); }

/* ── WHATSAPP GREEN CARD ── */
.whatsapp-card {
  background: #25D366;
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-card:hover { background: #1ebe5d; }
.whatsapp-card-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.whatsapp-card strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; }
.whatsapp-card small { font-size: 0.8125rem; opacity: 0.85; }

/* ── FLOATING BUTTONS ── */
.phone-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  z-index: 999;
  color: #fff;
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}
.phone-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(255,107,0,0.5); }
@media (min-width: 768px) { .phone-float { display: none; } }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  color: #fff;
  font-size: 1.375rem;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand-desc { font-size: 0.875rem; color: #6B7280; line-height: 1.7; margin-top: 1rem; margin-bottom: 1.25rem; }
.footer-cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: #6B7280; transition: var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #6B7280; margin-bottom: 0.75rem; }
.footer-contact-item i { color: var(--teal); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item a { color: #6B7280; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p  { font-size: 0.8125rem; color: #6B7280; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: #6B7280; transition: var(--transition); }
.footer-legal a:hover { color: var(--teal); }

/* ── ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MISC ── */
.img-cover-xl { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.img-cover-lg { width: 100%; height: 260px; object-fit: cover; }
.checklist { display: flex; flex-direction: column; gap: 0.625rem; }
.checklist li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #374151; }
.checklist li i { color: var(--teal); flex-shrink: 0; font-size: 0.875rem; }
.tag-group { display: flex; flex-wrap: gap; gap: 0.5rem; flex-wrap: wrap; }
.tag { display: inline-block; background: var(--gray); color: #374151; font-size: 0.75rem; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.tag.white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); }
.prose p { margin-bottom: 1rem; font-size: 0.9375rem; line-height: 1.75; color: #374151; }
.prose h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 0.75rem; margin-top: 1.5rem; }
.prose h3 { font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.prose a { color: var(--teal); }
.prose a:hover { text-decoration: underline; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { text-transform: uppercase; margin-bottom: 0; }
.section-header .section-divider { margin: 1rem auto 1rem; }
.section-header p { color: #4B5563; max-width: 500px; margin: 0 auto; font-size: 0.9375rem; }

.cta-dark-section { background: var(--dark); padding: 5rem 0; position: relative; overflow: hidden; }
.cta-teal-section { background: var(--teal); padding: 4rem 0; }
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 10; }
.cta-content h2 { color: #fff; text-transform: uppercase; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.info-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--dark); background: var(--gray); padding: 0.5rem 0.875rem; border-radius: 9999px; }
.info-badge i { color: var(--teal); }

/* Step layout (Ablauf) */
.step-row { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; }
@media (min-width: 768px) { .step-row { flex-direction: row; align-items: flex-start; } }
.step-row.reverse { }
@media (min-width: 768px) { .step-row.reverse { flex-direction: row-reverse; } }
.step-icon-box { flex-shrink: 0; width: 80px; height: 80px; border-radius: 18px; background: var(--teal); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.125rem; box-shadow: 0 8px 24px rgba(0,180,216,0.35); }
.step-icon-box span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.6875rem; font-weight: 800; opacity: 0.75; text-transform: uppercase; }
.step-icon-box i { font-size: 1.375rem; }
.step-content { flex: 1; border-radius: var(--radius-lg); padding: 2rem; background: var(--gray); border-left: 4px solid var(--teal); }
.step-row.reverse .step-content { border-left: none; border-right: 4px solid var(--teal); }
.step-content h2 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.step-content p  { font-size: 0.9375rem; color: #4B5563; line-height: 1.7; margin-bottom: 1rem; }
.step-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.step-detail-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: #374151; }
.step-detail-item i { color: var(--teal); font-size: 0.8125rem; }

/* Gratis page overlay circles */
.hero-circles .circle-teal { position: absolute; top: 0; right: 0; width: 384px; height: 384px; border-radius: 50%; background: var(--teal); opacity: 0.1; transform: translate(33%, -33%); }
.hero-circles .circle-orange { position: absolute; bottom: 0; left: 0; width: 256px; height: 256px; border-radius: 50%; background: var(--orange); opacity: 0.1; transform: translate(-33%, 33%); }

/* Quick gratis form */
.quick-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 25px 80px rgba(0,0,0,0.2); }

/* Feature check list (grid) */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #374151; }
.feature-item i { color: var(--teal); font-size: 0.8125rem; flex-shrink: 0; }

/* Service detail feature cards */
.feature-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.feature-card-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,180,216,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--teal); font-size: 1.25rem; }
.feature-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.8125rem; color: #4B5563; line-height: 1.6; }

/* About stats boxes */
.about-stat { background: var(--dark); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.about-stat-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--teal); }
.about-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* Responsive utilities */
@media (max-width: 639px)  { .sm-hide { display: none; } }
@media (max-width: 767px)  { .md-hide { display: none; } }
@media (max-width: 1023px) { .lg-hide { display: none; } }
@media (min-width: 640px)  { .sm-show { display: flex; } }
@media (min-width: 768px)  { .md-show { display: flex; } }
@media (min-width: 1024px) { .lg-show { display: flex; } }

/* ── ABOUT TEAM IMAGE ── */
.team-img-wrap { position: relative; }
.team-img-wrap img { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-xl); }
.team-badge { position: absolute; bottom: -24px; left: -24px; background: var(--teal); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-xl); color: #fff; }
.team-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.team-badge-label { font-size: 0.875rem; opacity: 0.85; }

/* ── RESPONSIVE GRID HELPERS ── */
.usp-grid       { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
@media(min-width:1024px) { .usp-grid { grid-template-columns:repeat(4,1fr); } }

.stats-grid     { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
@media(min-width:1024px) { .stats-grid { grid-template-columns:repeat(4,1fr); } }

.services-grid  { display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px)  { .services-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns:repeat(3,1fr); } }

.values-grid    { display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px)  { .values-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .values-grid { grid-template-columns:repeat(4,1fr); } }

.two-col  { display:grid; grid-template-columns:1fr; gap:3rem; align-items:center; }
@media(min-width:1024px) { .two-col { grid-template-columns:1fr 1fr; gap:4rem; } }

.two-col-5-3  { display:grid; grid-template-columns:1fr; gap:3rem; }
@media(min-width:1024px) { .two-col-5-3 { grid-template-columns:2fr 3fr; } }

.three-col { display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px)  { .three-col { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .three-col { grid-template-columns:repeat(3,1fr); } }

.four-col  { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
@media(min-width:1024px) { .four-col { grid-template-columns:repeat(4,1fr); } }

.before-after-grid { display:grid; grid-template-columns:1fr; gap:2rem; }
@media(min-width:768px)  { .before-after-grid { grid-template-columns:repeat(2,1fr); } }

.testimonials-grid { display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px)  { .testimonials-grid { grid-template-columns:repeat(3,1fr); } }

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

.quick-form-grid   { display:grid; grid-template-columns:1fr; gap:3rem; align-items:center; }
@media(min-width:1024px) { .quick-form-grid { grid-template-columns:1fr 1fr; } }

.leistungen-grid  { display:grid; grid-template-columns:1fr; gap:2rem; }
@media(min-width:768px)  { .leistungen-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1024px) { .leistungen-grid { grid-template-columns:repeat(3,1fr); } }

.booking-benefits { display:grid; grid-template-columns:1fr; gap:1rem; }
@media(min-width:640px)  { .booking-benefits { grid-template-columns:repeat(3,1fr); } }

.gratis-items-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
@media(min-width:768px)  { .gratis-items-grid { grid-template-columns:repeat(3,1fr); } }

/* Gratis testimonials 2-col */
.two-col-testimonials { display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px) { .two-col-testimonials { grid-template-columns:repeat(2,1fr); } }
