/* ================================================
   SCHIKORA TERRASSENDACH – style.css
   Version: Iteration 1 (Header · Hero · Floating Cards)
   ================================================ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────── */
:root {
  /* Primary */
  --color-primary:        #1A94F3;
  --color-primary-dark:   #0E7AD8;
  --color-primary-light:  #E6F1FB;
  --color-primary-pale:   #F4FAFE;

  /* Hero Accent */
  --color-hero-accent:    #FFB76A;

  /* Neutrals */
  --color-white:              #FFFFFF;
  --color-background-light:   #F5F5F7;
  --color-background-dark:    #1A1A2E;

  /* Text */
  --color-text-primary:   #1A1A2E;
  --color-text-secondary: #5A5F6E;
  --color-text-mute:      #9BA1B0;
  --color-text-on-dark:   #FFFFFF;
  --color-text-on-primary:#FFFFFF;

  /* Borders */
  --color-border-light:  #EAECEF;
  --color-border-medium: #D8DCE3;
  --color-border-dark:   #2A2A35;

  /* States */
  --color-success: #2BB97A;
  --color-warning: #F5A623;
  --color-error:   #E24B4A;

  /* Shadows (all use primary blue tint) */
  --shadow-sm:  0 4px 12px rgba(26, 148, 243, 0.06);
  --shadow-md:  0 8px 24px rgba(26, 148, 243, 0.10);
  --shadow-lg:  0 12px 32px rgba(26, 148, 243, 0.15);
  --shadow-xl:  0 16px 48px rgba(26, 148, 243, 0.20);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;

  /* Transitions */
  --transition-fast:   all 0.15s ease;
  --transition-base:   all 0.25s ease;
  --transition-slow:   all 0.4s ease;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full: 9999px;
}


/* ── 2. RESET & BASE ───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}


/* ── 3. TYPOGRAPHY ────────────────────────────── */
h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
}

p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "// ";
  opacity: 0.55;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}


/* ── 4. LAYOUT ────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-md); }
}


/* ── 5. BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-medium);
}
.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Hero primary button (with glow) */
.btn-hero-primary {
  background: var(--color-primary);
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(26, 148, 243, 0.40);
  transition: var(--transition-base);
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 148, 243, 0.50);
}
.btn-hero-primary:active { transform: translateY(-1px); }


/* ── 6. SKIP LINK (a11y) ──────────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 2px;
}


/* ── 7. HEADER ────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--header-height);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26, 148, 243, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop nav */
.nav-desktop > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}
.nav-link:hover {
  color: var(--color-text-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-item-dropdown .nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(26,26,46,0.12);
  padding: 8px 0;
  min-width: 200px;
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
.nav-item-dropdown .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  height: 16px;
}
.nav-item-dropdown:hover .nav-dropdown {
  display: flex;
  flex-direction: column;
}
.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-link:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

/* Mobile dropdown sub */
.mobile-dropdown-item { list-style: none; }
.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-dropdown-toggle.open svg { transform: rotate(180deg); }
.mobile-dropdown-toggle svg { transition: transform 0.2s ease; }
.mobile-dropdown-sub {
  display: none;
  flex-direction: column;
  background: var(--color-bg-light);
  padding: 4px 0;
}
.mobile-dropdown-sub.open { display: flex; }
.mobile-dropdown-sub li a {
  padding-left: 40px !important;
  font-size: 15px !important;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.header-phone:hover { color: var(--color-primary); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.nav-toggle:hover { background: var(--color-background-light); }
.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hamburger → X animation */
.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ── 8. MOBILE NAV ────────────────────────────── */
.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-xl);
}
.nav-mobile nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border-light);
  transition: color 0.15s ease;
}
.nav-mobile nav ul li:last-child a { border-bottom: none; }
.nav-mobile nav ul li a:hover { color: var(--color-primary); }

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}


/* ── 9. HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(480px, 70vh, 700px);
  overflow: hidden;
  background: #1A1A2E;
}

/* Ken Burns keyframe: 140% → 100% */
@keyframes kenBurns {
  from { transform: scale(1.4); }
  to   { transform: scale(1.0); }
}

/* Hero image fills the full area, cropped to fit */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center center;
  animation: kenBurns 10s ease-in-out infinite alternate;
  will-change: transform;
}

/* Dark gradient overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.55) 0%,
    rgba(26, 26, 46, 0.35) 50%,
    rgba(26, 26, 46, 0.75) 100%
  );
  z-index: 1;
}

/* Content wrapper – relative so max-width + margin:auto centers it correctly */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.hero-text {
  max-width: 580px;
  color: white;
}

/* Eyebrow with decorative line */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-hero-accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-hero-accent);
  flex-shrink: 0;
}

/* H1 on dark background */
.hero-text h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-subline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Play button */
.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.play-circle {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-play-btn:hover .play-circle {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.play-label {
  font-size: 14px;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Google badge (glassmorphism) */
.hero-google-badge {
  position: absolute;
  top: 24px;
  right: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.badge-stars {
  color: var(--color-primary);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}

/* Trust bullets (desktop only, bottom-left) */
.hero-trust {
  position: absolute;
  bottom: 28px;
  left: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item svg {
  color: var(--color-hero-accent);
  flex-shrink: 0;
}


/* ── 10. FLOATING CARDS ───────────────────────── */
.floating-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding: 0 var(--space-xl);
  padding-bottom: var(--space-4xl);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.floating-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 0.5px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}
.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 148, 243, 0.12);
  border-color: var(--color-primary-light);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.floating-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}
.floating-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-secondary);
}


/* ── 11. MOBILE STICKY CTA ────────────────────── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  height: 60px;
  background: var(--color-white);
  box-shadow: 0 -4px 16px rgba(26, 148, 243, 0.12);
  border-top: 1px solid var(--color-border-light);
}
.mobile-sticky-cta.visible {
  display: flex;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
  cursor: pointer;
  border: none;
}
.sticky-btn:active { opacity: 0.85; }

.sticky-btn-primary {
  background: var(--color-primary);
  color: white;
  border-right: 1px solid var(--color-primary-dark);
}
.sticky-btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: none;
}


/* ── 12. ABOUT SECTION ────────────────────────── */
.about-section {
  background: var(--color-white);
  padding: var(--space-4xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* Image placeholder */
.about-image-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--color-primary-light) 0%, #C8E0F8 50%, #D8EBF8 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  overflow: hidden;
}
.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-placeholder-icon {
  width: 100px;
  height: 100px;
  opacity: 0.6;
}
.about-placeholder-label {
  font-size: 14px;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}

/* Experience badge */
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-xl);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-badge-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* About content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.about-content .eyebrow { margin-bottom: 0; }

.about-content h2 { margin: 0; }
.text-accent { color: var(--color-primary); }

.about-lead {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Tabs */
.tabs-component {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-background-light);
}
.tab-button {
  flex: 1;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.tab-button:hover { color: var(--color-text-primary); }
.tab-button.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: var(--color-white);
  font-weight: 600;
}
.tabs-content {
  padding: var(--space-lg);
  background: var(--color-white);
  min-height: 80px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Inhaber block */
.inhaber-block {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-light);
}
.inhaber-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.inhaber-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}
.inhaber-title {
  font-size: 14px;
  color: var(--color-text-secondary);
}


/* ── 13. STATS SECTION ────────────────────────── */
.stats-section {
  background: var(--color-background-light);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.stat-icon-circle {
  width: 68px;
  height: 68px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xs);
}

.stat-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Feature list below stats */
.stats-features {
  border-top: 1px solid var(--color-border-medium);
  padding-top: var(--space-2xl);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.stats-features-headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-xl);
  margin-bottom: var(--space-lg);
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.features-list li svg { color: var(--color-success); flex-shrink: 0; }

.stats-contact-line {
  font-size: 14px;
  color: var(--color-text-secondary);
}
.stats-contact-line a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}
.stats-contact-line a:hover { text-decoration: underline; }


/* ── 14. PRODUKTE SECTION ─────────────────────── */
.produkte-section {
  background: var(--color-primary);
  padding: var(--space-4xl) 0;
}

/* Section header */
.produkte-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 14px;
}
.eyebrow-light::before { opacity: 0.5; }

.produkte-h2 {
  color: white;
  margin-bottom: var(--space-md);
}
.produkte-subline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Product cards grid */
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.produkt-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}
.produkt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

/* Product image placeholder areas */
.produkt-card-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--space-sm);
}
.produkt-img-exclusiv {
  background: url('assets/img/terrassendach4.webp') center / cover no-repeat;
}
.produkt-img-carport {
  background: url('assets/img/carport.webp') center / cover no-repeat;
}
.produkt-img-lamelle {
  background: url('assets/img/lamellendach.webp') center / cover no-repeat;
}

/* Placeholder lines suggesting a roof structure */
.produkt-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(255,255,255,0.04) 28px,
      rgba(255,255,255,0.04) 30px
    );
}
/* A subtle horizontal beam line */
.produkt-card-img::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

/* Badges */
.produkt-badge {
  position: relative;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}
.badge-premium      { background: var(--color-primary); color: white; }
.badge-bestseller   { background: #5A5F6E; color: white; }
.badge-carport      { background: white; color: var(--color-primary); border: 1px solid var(--color-primary); }
.badge-premium-plus { background: #1A1A2E; color: white; }

/* Card body */
.produkt-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.produkt-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}
.produkt-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1;
}

.produkt-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--color-border-light);
}
.price-from {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.produkt-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.produkt-cta:hover { gap: 10px; }


/* ── 15. SHARED SECTION HEADER ───────────────── */
.section-header { margin-bottom: var(--space-3xl); }
.section-header h2 { margin-bottom: var(--space-md); }
.section-header.text-center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-3xl);
}
.section-subline {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}
.section-header.text-center .section-subline { margin: 0 auto; }


/* ── 16. PROJEKTE-BENTO ───────────────────────── */
.projekte-section {
  background: var(--color-white);
  padding: var(--space-4xl) 0;
}

/* Asymmetric Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 220px;
  gap: 12px;
  margin-bottom: var(--space-xl);
}
.bento-item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-item-2 { grid-column: 3;     grid-row: 1; }
.bento-item-3 { grid-column: 3;     grid-row: 2; }
.bento-item-4 { grid-column: 1;     grid-row: 3; }
.bento-item-5 { grid-column: 2 / 4; grid-row: 3; }

.bento-item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }

/* Bento image base */
.bento-img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.bento-item:hover .bento-img { transform: scale(1.03); }

/* Subtle structure lines texture */
.bento-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 44px,
    rgba(255,255,255,0.04) 44px,
    rgba(255,255,255,0.04) 46px
  );
}

/* Hover overlay */
.bento-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(26, 148, 243, 0);
  transition: background 0.3s ease;
}
.bento-item:hover .bento-img::after {
  background: rgba(26, 148, 243, 0.08);
}

/* Caption */
.bento-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(0deg, rgba(26,26,46,0.88) 0%, transparent 100%);
  padding: 32px 18px 16px;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bento-item:hover .bento-caption { transform: translateY(0); opacity: 1; }

.caption-title { font-size: 14px; font-weight: 600; color: white; }
.caption-city  { font-size: 14px; color: rgba(255,255,255,0.75); }

/* Project-specific gradient backgrounds */
.bento-wesel {
  background: url('assets/img/terrassendach.webp') center / cover no-repeat;
}
.bento-duisburg {
  background: url('assets/img/carport.webp') center / cover no-repeat;
}
.bento-oberhausen {
  background: url('assets/img/terrassendach3.webp') center / cover no-repeat;
}
.bento-moers {
  background: url('assets/img/terrassendach4.webp') center / cover no-repeat;
}
.bento-krefeld {
  background: url('assets/img/kaltwintergarten.webp') center / cover no-repeat;
}

/* Gallery CTA row */
.projekte-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.projekte-cta-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}


/* ── 17. TESTIMONIALS ─────────────────────────── */
.testimonials-section {
  background: var(--color-background-light);
  padding: var(--space-3xl) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: var(--space-3xl);
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border: 0.5px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: var(--transition-base);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-quote {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  font-family: Georgia, serif;
  line-height: 1;
  padding-bottom: 2px;
  flex-shrink: 0;
}

.review-stars {
  color: var(--color-primary);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  flex: 1;
}
.review-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  font-style: italic;
  margin: 0;
}

.review-divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--space-xs) 0 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
.review-location {
  font-size: 14px;
  color: var(--color-text-mute);
}

/* Trust stack */
.trust-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
}
.trust-badge-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.google-logo   { background: #E8F0FE; color: #4285F4; }
.facebook-logo { background: #E7F0FF; color: #1877F2; }
.trust-badge-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}
.trust-badge-count {
  font-size: 14px;
  color: var(--color-text-mute);
}
.trust-stack-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border-light);
  flex-shrink: 0;
}


/* ── 18. RATGEBER ─────────────────────────────── */
.ratgeber-section {
  background: var(--color-white);
  padding: var(--space-4xl) 0;
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ratgeber-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}
.ratgeber-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

/* Article image area */
.ratgeber-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.ratgeber-img-1 {
  background: url('assets/img/ratgeber-technik.webp') center/cover no-repeat;
}
.ratgeber-img-2 {
  background: url('assets/img/ratgeber-behoerden.webp') center/cover no-repeat;
}
.ratgeber-img-3 {
  background: url('assets/img/ratgeber-pflege.webp') center/cover no-repeat;
}
/* Subtle structural line texture on article images */
.ratgeber-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.03) 60px,
    rgba(255,255,255,0.03) 62px
  );
}

/* Category badge */
.ratgeber-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Article body */
.ratgeber-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}
.ratgeber-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-mute);
}
.ratgeber-meta time { color: var(--color-text-mute); }

.ratgeber-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.35;
  margin: 0;
}
.ratgeber-snippet {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ratgeber-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: var(--space-xs);
  transition: gap 0.2s ease;
}
.ratgeber-link:hover { gap: 9px; }


/* ── 19. RESPONSIVE (Iter. 3 sections) ───────────────────────── */

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-rows: 220px 220px 190px;
  }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ratgeber-grid { gap: 16px; }
}

@media (max-width: 768px) {
  /* Projekte */
  .projekte-section { padding: var(--space-3xl) 0; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }
  .bento-item-1 { grid-column: 1 / 3; grid-row: 1; }
  .bento-item-2 { grid-column: 1;     grid-row: 2; }
  .bento-item-3 { grid-column: 2;     grid-row: 2; }
  .bento-item-4 { grid-column: 1;     grid-row: 3; }
  .bento-item-5 { grid-column: 2;     grid-row: 3; }
  .bento-caption { opacity: 1; transform: translateY(0); }

  /* Testimonials */
  .testimonials-section { padding: var(--space-3xl) 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-stack { flex-direction: column; gap: var(--space-lg); }
  .trust-stack-divider { width: 40px; height: 1px; }

  /* Ratgeber */
  .ratgeber-section { padding: var(--space-3xl) 0; }
  .ratgeber-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 160px);
  }
  .bento-item-1 { grid-column: 1; grid-row: 1; }
  .bento-item-2 { grid-column: 1; grid-row: 2; }
  .bento-item-3 { grid-column: 1; grid-row: 3; }
  .bento-item-4 { grid-column: 1; grid-row: 4; }
  .bento-item-5 { grid-column: 1; grid-row: 5; }
}

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 var(--space-xl);
  }
  .hero-google-badge {
    right: var(--space-xl);
  }
  .hero-trust {
    left: var(--space-xl);
  }
}

/* Tablet narrow / Large mobile (max 768px) */
@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .nav-desktop { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-content {
    padding: 0 var(--space-md);
    align-items: flex-end;
    padding-bottom: 80px;
  }
  .hero-text h1 {
    font-size: clamp(32px, 8vw, 44px);
  }
  .hero-subline {
    font-size: 14px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-eyebrow::before {
    display: none;
  }
  .hero-trust {
    display: none;
  }
  .hero-google-badge {
    right: 16px;
    top: 16px;
    padding: 8px 12px;
  }
  .badge-stars { font-size: 11px; }
  .badge-text { font-size: 11px; }

  .floating-cards-section {
    padding: 0 var(--space-md);
    padding-bottom: var(--space-3xl);
    margin-top: -30px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mobile-sticky-cta { display: flex; }
  .mobile-sticky-cta.visible { display: flex; }
}

/* Tablet: About, Stats, Produkte adjustments */
@media (max-width: 1024px) {
  .about-badge { right: 0; }

  .stats-grid { gap: var(--space-lg); }

  .produkte-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .about-section { padding: var(--space-3xl) 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .about-img-placeholder { aspect-ratio: 16 / 9; }
  .about-badge {
    right: var(--space-md);
    bottom: -20px;
  }
  .about-content { gap: var(--space-md); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }

  .produkte-section { padding: var(--space-3xl) 0; }
  .produkte-grid { grid-template-columns: 1fr 1fr; }
  .produkte-header { margin-bottom: var(--space-2xl); }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .about-grid { gap: var(--space-xl); }
  .about-img-placeholder { aspect-ratio: 4 / 3; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stat-number { font-size: 32px; }

  .produkte-grid { grid-template-columns: 1fr; }
  .tab-button { font-size: 14px; padding: 10px 8px; }
}


/* ── 20. FAQ SECTION ───────────────────────────────────────── */

.faq-section {
  padding: 120px 0 120px;
  background:
    linear-gradient(to bottom, rgba(240,247,255,0.92) 0%, rgba(230,241,251,0.92) 100%),
    url('assets/img/hero-bg.webp') center 40% / cover no-repeat fixed;
  position: relative;
}
.faq-intro {
  margin-bottom: 48px;
}
.faq-intro h2 { margin-bottom: var(--space-sm); }
.faq-intro > p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.faq-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--color-primary-light); }
.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--color-primary); }
.faq-item.open .faq-question { color: var(--color-primary); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-mute);
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
}


/* ── 21. KONTAKT / ANFRAGEFORMULAR ─────────────────────────── */

.kontakt-section {
  padding: 100px 0 120px;
  background: var(--color-background-light);
}

.kontakt-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.kontakt-header h2 { margin-bottom: var(--space-sm); }
.kontakt-subline {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Form wrap */
.kontakt-form-wrap {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.anfrage-form { display: flex; flex-direction: column; gap: var(--space-lg); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
}
.required-star { color: var(--color-primary); }

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border-medium);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-primary);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  appearance: none;
}
.form-input::placeholder { color: var(--color-text-mute); }
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 148, 243, 0.10);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239BA1B0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

/* Checkbox */
.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border-medium);
  border-radius: 4px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.form-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
}

.form-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-mute);
  margin: 0;
}
.form-trust-line span { display: inline-flex; align-items: center; gap: 4px; }

/* ── File Upload ───────────────────────────────── */
.file-input-hidden {
  position: absolute; width: 1px; height: 1px;
  opacity: 0; pointer-events: none; clip: rect(0,0,0,0); overflow: hidden;
}
.file-drop-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 28px 20px;
  border: 2px dashed #EAECEF; border-radius: 10px;
  cursor: pointer; text-align: center; width: 100%; box-sizing: border-box;
  transition: all 0.2s ease; background: #FAFBFC;
}
.file-drop-zone:hover, .file-drop-zone.dragover { border-color: #1A94F3; background: #F0F7FF; }
.file-drop-text { font-size: 14px; color: #1A1A2E; }
.file-drop-hint { font-size: 12px; color: #8890A4; }
.file-preview-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.file-preview-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: #F8FAFC;
  border: 1px solid #EAECEF; border-radius: 8px;
}
.file-preview-thumb {
  width: 52px; height: 52px; object-fit: cover; border-radius: 6px;
  background: #E6F1FB; flex-shrink: 0;
}
.file-preview-info { flex: 1; min-width: 0; }
.file-preview-name {
  font-size: 13px; font-weight: 500; color: #1A1A2E;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-preview-size { font-size: 12px; color: #8890A4; margin-top: 2px; }
.file-preview-bar-wrap { height: 4px; background: #E6F1FB; border-radius: 2px; margin-top: 7px; overflow: hidden; }
.file-preview-bar {
  height: 100%; border-radius: 2px; width: 0%;
  background: linear-gradient(90deg, #1A94F3, #4FB3FF);
  transition: width 0.2s ease;
}
.file-preview-remove {
  width: 30px; height: 30px; border: none; background: none; cursor: pointer;
  color: #8890A4; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.15s ease;
}
.file-preview-remove:hover { background: #FEE2E2; color: #EF4444; }

/* ── WhatsApp Button ────────────────────────────── */
.form-divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0 16px;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: #EAECEF;
}
.form-divider span { font-size: 13px; color: #8890A4; white-space: nowrap; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 24px;
  background: #25D366; color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1aad55; transform: translateY(-1px); }

/* Kontakt info column */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.kontakt-map--grow {
  flex: 1;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.kontakt-map--grow iframe {
  flex: 1;
  height: 100% !important;
  min-height: 340px;
}

.kontakt-info-card {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 28px 24px;
  color: var(--color-white);
  text-align: center;
}
.kontakt-info-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
}
.kontakt-phone {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.kontakt-phone:hover { opacity: 0.88; }
.kontakt-info-hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
}
.kontakt-info-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.kontakt-info-email svg { color: rgba(255,255,255,0.75); flex-shrink: 0; }
.kontakt-info-email-link {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
}
.kontakt-info-email-link:hover { color: #fff; text-decoration: underline; }

.kontakt-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--color-white);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kontakt-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}
.kontakt-trust-list li svg { color: var(--color-success); flex-shrink: 0; }


/* ── 22. FOOTER ─────────────────────────────────────────────── */

.site-footer {
  background: var(--color-background-dark);
  color: var(--color-text-on-dark);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid var(--color-border-dark);
}

/* Brand column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-md);
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  color: var(--color-text-mute);
  line-height: 1.65;
  margin: 0 0 var(--space-md);
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-border-dark);
  border-radius: 8px;
  color: var(--color-text-mute);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Footer columns */
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-mute);
  margin: 0 0 var(--space-md);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer-link:hover { color: var(--color-white); }

/* Address column */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}
.footer-address p svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-link:hover { color: var(--color-white); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 14px;
  color: var(--color-text-mute);
  margin: 0;
}
.footer-legal-nav {
  display: flex;
  gap: var(--space-lg);
}
.footer-legal-link {
  font-size: 14px;
  color: var(--color-text-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-link:hover { color: var(--color-white); }


/* ── 23. RESPONSIVE (Iter. 4 sections) ─────────────────────── */

@media (max-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  .kontakt-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .kontakt-info-card { flex: 0 0 100%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 480px; }
}

@media (max-width: 768px) {
  .faq-section { padding: 80px 0; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-question { padding: 18px 20px; font-size: 14px; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }

  .kontakt-form-wrap { padding: 28px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .kontakt-info { flex-direction: column; }

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

@media (max-width: 480px) {
  .faq-question { font-size: 14px; padding: 14px 16px; }

  .kontakt-form-wrap { padding: 22px 18px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
}


/* ── 24. KONTAKT MAP ────────────────────────────────────────── */

.kontakt-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.kontakt-map iframe { display: block; }

.kontakt-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 14px 4px;
  flex-wrap: wrap;
}
.kontakt-map-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.kontakt-map-address svg { color: var(--color-primary); flex-shrink: 0; }

.kontakt-map-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--color-primary);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.kontakt-map-route-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* ── 25. VIDEO MODAL ────────────────────────────────────────── */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal[hidden] { display: none; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.3); }

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  background: #111;
  text-align: center;
  padding: 24px;
}
.video-placeholder svg { opacity: 0.4; }
.video-placeholder p { font-size: 14px; line-height: 1.6; margin: 0; }


/* ── 25. SCROLL ANIMATIONS ──────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
