/* ============================================
   Gutachter Wagner – Stylesheet
   Design: Warm, vertrauensvoll, seriös
   Mobile-first, responsive
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #FAF7F2;
  --color-surface: #F0EBE1;
  --color-primary: #5C3D2E;
  --color-accent: #A07850;
  --color-text: #2C1810;
  --color-text-muted: #7A6A5A;
  --color-white: #FFFFFF;
  --color-border: #D8D0C4;
  --color-success: #4A7C59;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

/* SVG Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  padding-left: 1.5em;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--surface {
  background-color: var(--color-surface);
}

.section--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--primary h2,
.section--primary h3 {
  color: var(--color-white);
}

.section--primary a {
  color: var(--color-surface);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.nav__logo:hover {
  color: var(--color-primary);
}

.nav__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* DEKRA Badge (Nav) */
.dekra-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dekra-badge-small svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Desktop Menu */
.nav__menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  padding: 0;
}

.nav__menu a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav__menu a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav__cta {
  display: none;
}

.nav__cta .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Nav Dropdown ---------- */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  padding-bottom: 2px;
  position: relative;
}

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

.nav__dropdown:hover .nav__dropdown-toggle::after {
  width: 100%;
}

.nav__dropdown-arrow {
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.1);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text);
  white-space: nowrap;
}

.nav__dropdown-menu li a::after {
  display: none;
}

.nav__dropdown-menu li a:hover {
  background: var(--color-surface);
  color: var(--color-primary);
}

/* ---------- Nav Phone ---------- */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-left: 0.75rem;
  white-space: nowrap;
}

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

.nav__phone svg {
  fill: currentColor;
}

/* ---------- Mobile Nav Group ---------- */
.nav__mobile-group {
  border-bottom: none;
}

.nav__mobile-label {
  display: block;
  padding: 1rem 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

.nav__mobile-group ul {
  list-style: none;
  padding: 0;
}

.nav__mobile-group ul li {
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile-group ul li a {
  padding-left: 1rem;
  font-size: 1rem;
}

.nav__mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-surface);
  border-radius: 6px;
  text-decoration: none;
}

.nav__mobile-phone svg {
  fill: currentColor;
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  z-index: 999;
}

.nav__mobile.active {
  transform: translateX(0);
}

.nav__mobile ul {
  list-style: none;
  padding: 0;
}

.nav__mobile li {
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--color-text);
}

.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav__mobile .btn {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Layout with DEKRA Seal */
.hero__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero__text {
  text-align: center;
}

.hero__dekra-seal {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(-5deg);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.hero__dekra-seal:hover {
  transform: rotate(0deg) scale(1.05);
}

@media (min-width: 900px) {
  .hero__layout {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  .hero__text {
    text-align: center;
    flex: 1;
    max-width: 700px;
  }

  .hero__dekra-seal {
    width: 140px;
    height: 140px;
    order: 1;
  }
}

/* Hero Dark Variant */
.hero--dark {
  position: relative;
  overflow: hidden;
}

/* Crossfade Background Images */
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero__bg--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(44, 24, 16, 0.65), rgba(44, 24, 16, 0.65));
  z-index: 1;
}

.hero--dark > .container {
  position: relative;
  z-index: 2;
}

.hero--dark h1 {
  color: var(--color-white);
}

.hero--dark .hero__sub {
  color: rgba(255, 255, 255, 0.75);
}

.hero--dark .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero--dark .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Hero Phone Link */
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

.hero__phone:hover {
  color: var(--color-white);
}

.hero__phone svg {
  fill: currentColor;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--color-surface);
  padding: 1.25rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-bar__item svg path {
  stroke: var(--color-accent);
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ---------- DEKRA Badge (Large) ---------- */
.dekra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3D261D 100%);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(92, 61, 46, 0.2);
}

.dekra-badge__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dekra-badge__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.dekra-badge__text {
  text-align: left;
}

.dekra-badge__title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dekra-badge__sub {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.08);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--color-accent);
}

.card__link:hover {
  color: var(--color-primary);
}

.card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition);
}

.card__link:hover svg {
  transform: translateX(4px);
}

/* ---------- Nav DEKRA Image ---------- */
.nav__dekra-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

/* ---------- Cert Grid ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.cert-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.cert-item img {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.cert-item__text h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cert-item__text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cert-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------- Anlass Grid ---------- */
.anlass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.anlass-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
}

.anlass-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 15px rgba(44, 24, 16, 0.06);
  color: var(--color-primary);
}

.anlass-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anlass-item__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.anlass-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}

.anlass-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- SVG Avatar Placeholder ---------- */
.avatar-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-border) 50%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(92, 61, 46, 0.15);
}

.avatar-placeholder svg {
  width: 100px;
  height: 100px;
  fill: var(--color-primary);
  opacity: 0.6;
}

/* ---------- Teaser Row ---------- */
.teaser-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.teaser-row__content {
  max-width: 600px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201E';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.testimonial__text {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

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

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ---------- Content Page ---------- */
.page-header {
  padding: 3rem 0 2rem;
  text-align: center;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  max-width: 800px;
  margin: 0 auto;
}

.page-header p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.content h2 {
  border-bottom: 2px solid var(--color-surface);
  padding-bottom: 0.5rem;
}

.content ul, .content ol {
  margin-bottom: 1.5rem;
}

.content li {
  margin-bottom: 0.4rem;
}

/* ---------- Process Steps ---------- */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step__content h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.step__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ---------- Price Table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table th {
  background: var(--color-surface);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.price-table tr:hover td {
  background: rgba(240, 235, 225, 0.3);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info__item a {
  color: var(--color-text);
  font-weight: 600;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(160, 120, 80, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ---------- Form Success Banner ---------- */
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  color: #2E7D32;
}

.form-success svg {
  flex-shrink: 0;
}

.form-success p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--color-white);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer__contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

.footer__bottom a {
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (min-width: 900px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .teaser-row {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Desktop nav */
  .nav__menu {
    display: flex;
  }

  .nav__cta {
    display: block;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .anlass-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Lead Funnel
   ============================================ */

/* Section */
.funnel-section {
  padding: 4rem 0 5rem;
}

.funnel-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.funnel-section__header h2 {
  margin-top: 0;
}

.funnel-section__header p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0.5rem auto 0;
}

/* Funnel Container */
.funnel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.08);
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem;
  overflow: hidden;
}

/* Progress Bar */
.funnel__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.funnel__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-surface);
  border-radius: 3px;
  overflow: hidden;
}

.funnel__progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.funnel__progress-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Step Container & Animations */
.funnel__body {
  position: relative;
  min-height: 320px;
}

.funnel__step {
  width: 100%;
}

.funnel__step--active {
  animation: funnelFadeIn 0.35s ease forwards;
}

.funnel__step--exit-next {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: funnelSlideOutLeft 0.3s ease forwards;
}

.funnel__step--exit-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: funnelSlideOutRight 0.3s ease forwards;
}

.funnel__step--enter-next {
  animation: funnelSlideInRight 0.35s ease forwards;
}

.funnel__step--enter-back {
  animation: funnelSlideInLeft 0.35s ease forwards;
}

@keyframes funnelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes funnelSlideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-60px); }
}

@keyframes funnelSlideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(60px); }
}

@keyframes funnelSlideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes funnelSlideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Title */
.funnel__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  margin: 0 0 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* Tiles Grid */
.funnel__tiles {
  display: grid;
  gap: 0.75rem;
}

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

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

.funnel__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s ease;
  text-align: center;
}

.funnel__tile:hover {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 4px 15px rgba(44, 24, 16, 0.06);
  transform: translateY(-2px);
}

.funnel__tile--selected {
  border-color: var(--color-accent);
  background: rgba(160, 120, 80, 0.08);
}

.funnel__tile-icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
}

.funnel__tile-icon svg {
  width: 100%;
  height: 100%;
}

/* Form Fields */
.funnel__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funnel__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.funnel__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.funnel__field--small {
  flex: 0 0 120px;
}

.funnel__field--large {
  flex: 1;
}

.funnel__row:has(.funnel__field--small) {
  display: flex;
}

.funnel__field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

.funnel__field input,
.funnel__field textarea,
.funnel__field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funnel__field input:focus,
.funnel__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(160, 120, 80, 0.12);
  background: var(--color-white);
}

.funnel__field textarea {
  resize: vertical;
  min-height: 80px;
}

.funnel__input--error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1) !important;
}

.funnel__optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.funnel__charcount {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-top: 0.15rem;
}

/* Anrede Buttons */
.funnel__anrede {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.funnel__anrede label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

.funnel__anrede-btns {
  display: flex;
  gap: 0.5rem;
}

.funnel__anrede-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.funnel__anrede-btn:hover {
  border-color: var(--color-accent);
}

.funnel__anrede-btn--active {
  border-color: var(--color-accent);
  background: rgba(160, 120, 80, 0.08);
  color: var(--color-primary);
  font-weight: 600;
}

/* Checkbox */
.funnel__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-top: 0.5rem;
}

.funnel__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.funnel__checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Error */
.funnel__error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.2rem;
}

.funnel__webhook-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #991b1b;
}

.funnel__webhook-error p {
  margin: 0 0 0.3rem;
}

.funnel__webhook-error a {
  color: #991b1b;
}

/* Navigation (Back/Next) */
.funnel__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.funnel__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.funnel__back:hover {
  color: var(--color-primary);
}

.funnel__back svg {
  flex-shrink: 0;
}

.funnel__next,
.funnel__submit {
  margin-left: auto;
}

.funnel__submit {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

/* Success / Confirmation */
.funnel__success {
  text-align: center;
  padding: 2rem 0;
}

.funnel__success .funnel__title {
  color: var(--color-success);
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.funnel__success p {
  color: var(--color-text-muted);
  max-width: 450px;
  margin: 0.5rem auto 1.5rem;
  line-height: 1.6;
}

.funnel__success-contact {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 380px;
  margin: 0 auto;
}

.funnel__success-contact p {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.funnel__success-phone,
.funnel__success-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.funnel__success-phone:hover,
.funnel__success-email:hover {
  color: var(--color-accent);
}

.funnel__success-phone svg,
.funnel__success-email svg {
  flex-shrink: 0;
}

/* Checkmark Animation */
.funnel__checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.funnel__checkmark-svg {
  width: 80px;
  height: 80px;
}

.funnel__checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: funnelCircle 0.6s ease-in-out forwards;
}

.funnel__checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: funnelCheck 0.3s ease-in-out 0.5s forwards;
}

@keyframes funnelCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes funnelCheck {
  to { stroke-dashoffset: 0; }
}

/* Responsive Funnel */
@media (min-width: 480px) {
  .funnel__tiles--objekttyp {
    grid-template-columns: repeat(3, 1fr);
  }
  .funnel__tiles--anlass {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .funnel {
    padding: 2.5rem 3rem;
  }
  .funnel__tiles--objekttyp {
    grid-template-columns: repeat(4, 1fr);
  }
  .funnel__tiles--anlass {
    grid-template-columns: repeat(4, 1fr);
  }
  .funnel__tile {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 479px) {
  .funnel {
    padding: 1.25rem;
    border-radius: 8px;
  }
  .funnel__row {
    grid-template-columns: 1fr;
  }
  .funnel__row:has(.funnel__field--small) {
    flex-direction: column;
  }
  .funnel__field--small {
    flex: auto;
  }
  .funnel__submit {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
  }
  .funnel__anrede-btns {
    flex-wrap: wrap;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
