/* ============================================
   EKS MEISTERWERKSTATT — Design System
   Gold + Schwarz · Premium KFZ-Werkstatt
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Backgrounds — Reines Schwarz wie in der Referenz */
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-tertiary: #1a1a1a;
  --bg-elevated: #242424;
  --bg-card: #111111;

  /* Gold/Orange-Akzente — Warmes Gold wie im Logo */
  --accent-primary: #c4880c;
  --accent-light: #e8b94d;
  --accent-dark: #9a6e0a;
  --accent-gradient: linear-gradient(135deg, #e8b94d 0%, #c4880c 50%, #9a6e0a 100%);
  --accent-gradient-hover: linear-gradient(135deg, #f0c85a 0%, #d49a1a 50%, #a8800a 100%);

  /* Text */
  --text-primary: #f1f1f1;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --text-on-accent: #080808;

  /* Functional */
  --success: #22c55e;
  --error: #ef4444;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(196, 136, 12, 0.35);
  --glass: rgba(8, 8, 8, 0.88);
  --glass-light: rgba(8, 8, 8, 0.6);
  --shadow-glow: 0 0 30px rgba(196, 136, 12, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ============================================
   2. CSS RESET
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section--dark {
  background-color: var(--bg-tertiary);
}

.text-gold {
  color: var(--accent-primary);
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 56px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gradient);
  color: var(--text-on-accent);
  box-shadow: 0 4px 15px rgba(200, 149, 46, 0.3);
}

.btn--primary:hover {
  background: var(--accent-gradient-hover);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 149, 46, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-primary);
}

.btn--secondary:hover {
  background: var(--accent-primary);
  color: var(--text-on-accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-light);
  padding: 8px 0;
  letter-spacing: 1.5px;
  font-size: 13px;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.btn--ghost:hover {
  color: var(--accent-primary);
}

.btn--ghost:hover::after {
  width: 100%;
}

.btn--phone {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-subtle);
}

.btn--phone:hover {
  border-color: var(--accent-primary);
  color: var(--accent-light);
}

/* ============================================
   6. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.nav__logo img {
  height: 150px;
  width: auto;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 20px rgba(196, 136, 12, 0.65)) drop-shadow(0 0 40px rgba(196, 136, 12, 0.35));
}

.nav.scrolled .nav__logo img {
  height: 100px;
  filter: drop-shadow(0 0 12px rgba(196, 136, 12, 0.55)) drop-shadow(0 0 24px rgba(196, 136, 12, 0.25));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__phone:hover {
  color: var(--accent-light);
}

.nav__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-primary);
}

.nav__cta {
  padding: 12px 24px;
  font-size: 13px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav__mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav__mobile-menu a:hover {
  color: var(--accent-light);
}

.nav__mobile-menu .btn {
  margin-top: 16px;
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 24, 0.92) 0%,
    rgba(10, 14, 24, 0.8) 40%,
    rgba(10, 14, 24, 0.6) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(200, 149, 46, 0.08);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-primary);
}

.hero__title {
  font-size: 68px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.hero__title span {
  color: var(--accent-primary);
}

.hero__claim {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hero__description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero__description span {
  display: block;
}

.hero__description-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.hero__description-text {
  margin-bottom: 6px;
}

.hero__description-highlight {
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.hero__description-founder {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Page Hero (subpages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200, 149, 46, 0.08) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: var(--accent-primary);
}

.page-hero__breadcrumb span {
  color: var(--text-muted);
}

.page-hero__title {
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   8. SERVICE CARDS (4 Säulen)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-subtle);
  border-top: 3px solid transparent;
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.service-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(200, 149, 46, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-card__subtitle {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   9. EXTRA SERVICES BAR
   ============================================ */
.extras-bar {
  background: var(--bg-tertiary);
  padding: 50px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.extras-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.extras-bar__label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.extras-bar__items {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.extras-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.extras-bar__item .extras-emoji {
  font-size: 28px;
  line-height: 1;
}

.extras-bar__item svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-primary);
}

/* ============================================
   4-SÄULEN HERO — Piston Visual
   ============================================ */
.vier-saeulen-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #0a0a0a;
}

.vier-saeulen-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(196, 136, 12, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(196, 136, 12, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vier-saeulen-hero .section-header {
  position: relative;
  z-index: 1;
}

.vier-saeulen-hero__visual {
  text-align: center;
  margin: 48px auto 56px;
  position: relative;
  z-index: 1;
}

.vier-saeulen-hero__img {
  max-width: 720px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(196, 136, 12, 0.25))
          drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  animation: pistonFloat 6s ease-in-out infinite;
}

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

.vier-saeulen-hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.vier-saeulen-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 28px;
  background: linear-gradient(160deg, rgba(196, 136, 12, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(196, 136, 12, 0.25);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

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

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

.vier-saeulen-card:hover {
  background: linear-gradient(160deg, rgba(196, 136, 12, 0.15), rgba(255, 255, 255, 0.04));
  border-color: rgba(196, 136, 12, 0.5);
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(196, 136, 12, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.vier-saeulen-card__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.vier-saeulen-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.vier-saeulen-card__sub {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.vier-saeulen-card__arrow {
  font-size: 20px;
  color: var(--accent-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.vier-saeulen-card:hover .vier-saeulen-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .vier-saeulen-hero__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vier-saeulen-hero__img {
    max-width: 500px;
  }
  .vier-saeulen-hero {
    padding: 64px 0 48px;
  }
}

@media (max-width: 600px) {
  .vier-saeulen-hero__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .vier-saeulen-hero__img {
    max-width: 320px;
  }
  .vier-saeulen-card {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 20px 24px;
  }
  .vier-saeulen-card__number {
    font-size: 28px;
    margin-bottom: 0;
  }
  .vier-saeulen-card__arrow {
    margin-left: auto;
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   10. ABOUT TEASER
   ============================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser__text h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-teaser__text h3 span {
  color: var(--accent-primary);
}

.about-teaser__text p {
  margin-bottom: 24px;
}

.about-teaser__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-teaser__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-teaser__feature svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-primary);
  flex-shrink: 0;
}

.about-teaser__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-teaser__image--portrait {
  aspect-ratio: 3/4;
}

.about-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 14, 24, 0.6), transparent);
}

/* ============================================
   11. STATS COUNTER
   ============================================ */
.stats {
  background: var(--bg-tertiary);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   12. CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200, 149, 46, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand img {
  height: 140px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  border-color: var(--accent-primary);
  background: rgba(200, 149, 46, 0.1);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill var(--transition-base);
}

.footer__social a:hover svg {
  fill: var(--accent-primary);
}

.footer__column h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer__column ul li {
  margin-bottom: 12px;
}

.footer__column ul li a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer__column ul li a:hover {
  color: var(--accent-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-secondary);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.footer__hours-row:last-child {
  border-bottom: none;
}

.footer__hours-row span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer__bottom-links a:hover {
  color: var(--accent-light);
}

/* ============================================
   14. DETAIL SECTIONS (Leistungen-Seite)
   ============================================ */
.detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.detail-section--reverse {
  direction: rtl;
}

.detail-section--reverse > * {
  direction: ltr;
}

.detail-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.detail-section__image--contain {
  aspect-ratio: auto;
}

.detail-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.detail-section__image--contain img {
  height: auto;
  object-fit: contain;
}

.detail-section__image:hover img {
  transform: scale(1.05);
}

.detail-section__gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.detail-section__gallery-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-slow);
}

.detail-section__gallery-row img:hover {
  transform: scale(1.05);
}

/* When the image container has a gallery row inside, remove fixed aspect ratio */
.detail-section__image:has(.detail-section__gallery-row) {
  aspect-ratio: auto;
}

.detail-section__content h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.detail-section__content .service-card__badge {
  margin-bottom: 16px;
}

.detail-section__content .service-card__subtitle {
  margin-bottom: 20px;
}

.detail-section__content p {
  margin-bottom: 20px;
}

.detail-section__features-title {
  color: var(--accent-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.detail-section__features {
  margin-bottom: 28px;
}

.detail-section__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.detail-section__features li svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-primary);
  flex-shrink: 0;
}

/* Extra Services Grid */
.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.extra-service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.extra-service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.extra-service-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.extra-service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.extra-service-card p {
  font-size: 15px;
}

/* ============================================
   15. GALLERY (Über-uns / Referenzen)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item--featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 24, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--text-primary);
  stroke-width: 1.5;
  fill: none;
}

/* ============================================
   16. VALUES CARDS
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

/* Footer and About logo glow */
.about-teaser__image img {
  border-radius: 4px;
}

.footer__brand img {
  filter: drop-shadow(0 0 15px rgba(196, 136, 12, 0.5)) drop-shadow(0 0 25px rgba(196, 136, 12, 0.2));
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 44px;
  margin-bottom: 20px;
}

.value-card h4 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
}

/* ============================================
   17. CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

/* Contact Form & Fields */
.contact-form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(200, 149, 46, 0.1);
  outline: none;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error, #e11d48);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.form-submit {
  margin-top: 24px;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-align: center;
  margin-top: 16px;
}

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

.form-success h4 {
  color: var(--success, #22c55e);
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* Contact Info */
.contact-info {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-subtle);
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 149, 46, 0.1);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-primary);
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--text-primary);
}

.contact-info__value a:hover {
  color: var(--accent-light);
}

.contact-info__hours {
  margin-top: 4px;
}

.contact-info__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px 0;
  gap: 24px;
}

.contact-info__hours-row span:first-child {
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 55px;
}

.contact-info__hours-row span:last-child {
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

/* Google Maps */
.contact-map {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.3) brightness(0.8);
}

/* ============================================
   18. LEGAL PAGE
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  list-style: disc;
  padding: 4px 0;
  color: var(--text-secondary);
}

.legal-placeholder {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 4px;
  color: var(--error);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   19. SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold line animation */
.gold-line {
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.gold-line.revealed {
  width: 60px;
}

.gold-line--center {
  margin: 0 auto 20px;
}

/* ============================================
   20. RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  /* Logo & Nav Tablet */
  .nav__logo img {
    height: 100px;
  }
  .nav.scrolled .nav__logo img {
    height: 70px;
  }
  .footer__brand img {
    height: 100px;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 34px; }

  .hero__title {
    font-size: 48px;
  }

  .hero__claim {
    font-size: 22px;
  }

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

  .about-teaser {
    gap: 40px;
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-section {
    gap: 40px;
  }

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

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

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-hero__title {
    font-size: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__content {
    padding: 140px 24px 120px;
  }

  .hero__title {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .hero__claim {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    justify-content: center;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Navigation */
  .nav__links,
  .nav__actions .nav__phone,
  .nav__cta {
    display: none;
  }

  .nav__logo img {
    height: 70px;
  }

  .nav.scrolled .nav__logo img {
    height: 50px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  /* Sections */
  .section-header__title {
    font-size: 28px;
  }

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

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .stat-item__number {
    font-size: 40px;
  }

  .cta-banner__title {
    font-size: 28px;
  }

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

  .footer__brand img {
    height: 90px;
    margin-bottom: 15px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .detail-section {
    grid-template-columns: 1fr;
  }

  .detail-section--reverse {
    direction: ltr;
  }

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

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

  .values-grid,
  .values-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--featured {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

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

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .extras-bar__inner {
    flex-direction: column;
    gap: 20px;
  }

  .extras-bar__items {
    gap: 20px;
  }
}

/* Small Mobile */
@media (max-width: 380px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__claim {
    font-size: 15px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ============================================
   16. BEFORE-AFTER IMAGE SLIDERS
   ============================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.comparison-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card__title {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.comparison-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.before-image {
  z-index: 1;
}

.after-image {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s ease-out;
}

.before-after-slider:hover .after-image {
  transition: none;
}

.slider-label {
  position: absolute;
  bottom: 12px;
  padding: 4px 10px;
  background: rgba(10, 14, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 3;
}

.slider-label--before {
  left: 12px;
}

.slider-label--after {
  right: 12px;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px rgba(196, 136, 12, 0.8);
  z-index: 10;
  pointer-events: none;
  transition: left 0.1s ease-out;
}

.before-after-slider:hover .slider-handle {
  transition: none;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: var(--accent-primary);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(196, 136, 12, 0.3);
}

.slider-button svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-primary);
}
