/* ============================================
   LICHTBLICK BLACKFOREST – STANDESAMT LANDING
   Ad-Funnel Landingpage — Premium Editorial Design
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --bg-deep: #111111;
  --bg-elevated: #232323;
  --bg-card: #1e1e1e;
  --text: #c8c8c8;
  --text-bright: #f2f2f2;
  --text-muted: rgba(200, 200, 200, 0.4);
  --accent: rgba(200, 200, 200, 0.08);
  --border: rgba(200, 200, 200, 0.12);
  --border-hover: rgba(200, 200, 200, 0.35);

  --serif: 'Gilda Display', 'Georgia', 'Times New Roman', serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --section-pad: clamp(80px, 12vw, 160px);
  --content-max: 1200px;
  --content-narrow: 720px;
  --page-gutter: clamp(24px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
  --dur-fast: 0.25s;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--text-bright);
  color: var(--bg);
}


/* ── Utility ── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.container--narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================
   TYPOGRAPHY – MASSIV Editorial
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  color: var(--text-bright);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  letter-spacing: 0;
}

p {
  color: var(--text);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.85;
  font-weight: 300;
  max-width: 600px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 0;
}

.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--text-bright);
  color: var(--bg);
  border: 1px solid var(--text-bright);
}

.btn--primary:hover {
  background: transparent;
  color: var(--text-bright);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  background: var(--text-bright);
  color: var(--bg);
  border-color: var(--text-bright);
}

.btn--whatsapp {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(37, 211, 102, 0.4);
  gap: 10px;
}

.btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn--whatsapp svg {
  flex-shrink: 0;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: none;
  padding: 16px 0;
  letter-spacing: 0.1em;
}

.btn--ghost::after {
  content: '→';
  margin-left: 10px;
  transition: transform var(--dur-fast) var(--ease);
}

.btn--ghost:hover::after {
  transform: translateX(5px);
}

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


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--page-gutter);
  transition: all var(--dur) var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  transition: opacity var(--dur-fast);
}

.nav__logo:hover { opacity: 0.7; }

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

.nav__actions .btn {
  padding: 11px 30px;
  font-size: 0.66rem;
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.nav__burger-line {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  position: absolute;
  left: 5px;
  transition: all var(--dur) var(--ease);
}

.nav__burger-line:nth-child(1) { top: 10px; }
.nav__burger-line:nth-child(2) { top: 16px; width: 14px; }
.nav__burger-line:nth-child(3) { top: 22px; }

.nav__burger.active .nav__burger-line:nth-child(1) {
  top: 16px; transform: rotate(45deg);
}
.nav__burger.active .nav__burger-line:nth-child(2) {
  opacity: 0; transform: translateX(-8px);
}
.nav__burger.active .nav__burger-line:nth-child(3) {
  top: 16px; transform: rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.nav__mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-bright);
  transition: opacity var(--dur-fast);
}

.nav__mobile-menu a:hover { opacity: 0.5; }

.nav__mobile-menu .btn {
  margin-top: 24px;
  font-size: 0.72rem;
}

@media (max-width: 768px) {
  .nav__actions { display: none; }
  .nav__burger { display: block; }
}


/* ============================================
   HERO – Fullscreen, cinematic, truly responsive
   ============================================ */

.hero {
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.15) 0%,
    rgba(17, 17, 17, 0.35) 35%,
    rgba(17, 17, 17, 0.8) 100%
  );
  z-index: 2;
}

.hero__bg-image {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 30%;
  background-color: var(--bg-elevated);
  z-index: 1;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  width: 100%;
  padding: 0 var(--page-gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  margin-bottom: clamp(1rem, 2vh, 1.8rem);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero__sub {
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  color: rgba(200, 200, 200, 0.75);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto clamp(1.5rem, 3vh, 2.5rem);
  font-weight: 300;
}

.hero__price {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-bright);
  margin-bottom: clamp(1.2rem, 2vh, 2rem);
  padding: 10px 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero .btn-group { justify-content: center; }

.hero__scroll {
  position: absolute;
  bottom: clamp(16px, 3vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2.5s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* Short viewports (landscape, small laptops) */
@media (max-height: 700px) {
  .hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .hero__sub {
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
  }
  .hero__scroll { display: none; }
}


/* ============================================
   SECTIONS – Generous spacing, layered feel
   ============================================ */

section {
  padding: var(--section-pad) 0;
  position: relative;
}

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

/* Subtle grain texture on alt sections */
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--alt > * {
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section__header p {
  margin: 1rem auto 0;
}


/* ============================================
   GALERIE – Immersive grid
   ============================================ */

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0;
}

.galerie__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s ease;
  filter: brightness(0.92) contrast(1.05);
}

.galerie__item:hover img {
  transform: scale(1.06);
  filter: brightness(1) contrast(1);
}

/* Subtle overlay on hover */
.galerie__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17,17,17,0.3) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.galerie__item:hover::after {
  opacity: 0;
}

@media (max-width: 600px) {
  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}


/* ============================================
   SOCIAL PROOF – Premium feel
   ============================================ */

.proof {
  max-width: 1000px;
  margin: 0 auto;
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 5rem;
  position: relative;
}

.proof__stat {
  text-align: center;
  padding: 48px 24px;
  position: relative;
}

/* Vertical dividers between stats */
.proof__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}

.proof__number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.proof__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.proof__quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.proof__quote {
  padding: 0;
  position: relative;
}

.proof__quote::before {
  content: '\201C';
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(200,200,200,0.15);
  margin-bottom: 0.8rem;
}

.proof__quote p {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.proof__quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .proof__stats {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .proof__stat { padding: 28px 20px; }

  .proof__stat:not(:last-child)::after {
    right: 20%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 60%;
  }

  .proof__quotes {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ============================================
   ANGEBOT – 3-Tier Pricing Cards
   ============================================ */

/* USP Banner */
.angebot__usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 28px;
  margin-bottom: 3.5rem;
  background: rgba(200, 200, 200, 0.04);
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-bright);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.angebot__usp strong {
  font-weight: 500;
}

.angebot__usp-icon {
  font-size: 1.2rem;
}

.angebot__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.angebot__card {
  padding: 48px 36px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  transition: border-color var(--dur), transform var(--dur);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Subtle top accent line */
.angebot__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.2), transparent);
}

.angebot__card:hover {
  border-color: rgba(200, 200, 200, 0.25);
  transform: translateY(-4px);
}

.angebot__card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text-bright);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

/* Featured / Bestseller card */
.angebot__card--featured {
  background: var(--bg-elevated);
  border-color: rgba(200, 200, 200, 0.35);
  padding-top: 56px;
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.angebot__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.angebot__card--featured::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242,242,242,0.6), transparent);
}

.angebot__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text-bright);
}

.angebot__price {
  margin-bottom: 1.8rem;
}

.angebot__price-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-bright);
  line-height: 1.2;
}

.angebot__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.angebot__list li {
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.angebot__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  margin-top: 8px;
}

.angebot__btn {
  width: 100%;
  margin-top: auto;
}

.angebot__hinweis {
  text-align: center;
  margin: 3rem auto 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
}

@media (max-width: 900px) {
  .angebot__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 20px;
  }

  /* Featured card first on mobile, no scale */
  .angebot__card--featured {
    order: -1;
    transform: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }

  .angebot__card--featured:hover {
    transform: translateY(-4px);
  }

  .angebot__card { padding: 36px 28px; }
  .angebot__card--featured { padding-top: 48px; }
}


/* ============================================
   WARUM ICH / ÜBER MICH
   ============================================ */

.warum__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.warum__text h2 {
  margin-bottom: 1.5rem;
}

.warum__text p {
  text-align: justify;
  hyphens: auto;
}

.warum__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}

/* Subtle border frame effect */
.warum__image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200,200,200,0.08);
  pointer-events: none;
  z-index: 2;
}

.warum__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.warum__image:hover img {
  transform: scale(1.04);
}

.warum__proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.5rem;
}

.warum__point {
  padding: 10px 20px;
  background: var(--accent);
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
}

.warum__point:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(200,200,200,0.05);
}

@media (max-width: 768px) {
  .warum__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .warum__image { order: -1; }
  .warum__proof-points { gap: 8px; }
  .warum__point { padding: 8px 14px; font-size: 0.7rem; }
}


/* ============================================
   ABLAUF – Editorial steps
   ============================================ */

.ablauf__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
}

.step {
  text-align: center;
  padding: 56px 36px;
  position: relative;
  transition: background var(--dur);
}

/* Vertical divider between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.step:hover {
  background: var(--accent);
}

.step__number {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 400;
  color: rgba(200,200,200,0.08);
  line-height: 1;
  margin-bottom: 2rem;
  display: block;
}

.step h3 {
  margin-bottom: 1rem;
  color: var(--text-bright);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.step p {
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text);
  max-width: 260px;
}

@media (max-width: 768px) {
  .ablauf__steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 36px 28px;
    text-align: left;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
  }

  .step:not(:last-child)::after {
    right: 15%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 70%;
  }

  .step__number {
    grid-row: 1 / 3;
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .step h3 { margin-bottom: 0.4rem; align-self: end; }
  .step p { align-self: start; max-width: none; }
}


/* ============================================
   FAQ – Clean accordion
   ============================================ */

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--text-bright);
  text-align: left;
  line-height: 1.4;
  transition: color var(--dur-fast);
}

.faq__question:hover { color: var(--text); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 28px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: all var(--dur) var(--ease);
}

.faq__icon::before {
  width: 14px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq__answer-inner {
  padding: 0 0 28px;
}

.faq__answer-inner p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text);
}


/* ============================================
   CTA / KONTAKT
   ============================================ */

.cta-final {
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}

/* Decorative top glow */
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,200,200,0.2), transparent);
}

.cta-final__content {
  max-width: 640px;
  margin: 0 auto 4rem;
}

.cta-final__content p {
  margin: 0 auto;
}

.cta-final__form-wrapper {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

@media (max-width: 520px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

.cta-final__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 3rem 0;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-final__divider::before,
.cta-final__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.cta-final__whatsapp .btn--whatsapp {
  width: 100%;
}

.cta-final__whatsapp-note {
  margin: 1rem auto 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
}


/* ============================================
   FORMS
   ============================================ */

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-bright);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--dur-fast);
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--text);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form__input[type="date"] {
  color-scheme: dark;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
  border: 1px solid var(--border);
  padding: 16px 18px;
  margin-top: 4px;
}

.form__textarea:focus {
  border-color: var(--text);
}

.form__submit {
  width: 100%;
  margin-top: 20px;
}

.form__message {
  padding: 14px 0;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
  font-weight: 300;
}

.form__message--success {
  display: block;
  color: #aad4aa;
}

.form__message--error {
  display: block;
  color: #d4aaaa;
}

.form__submit.loading {
  pointer-events: none;
  opacity: 0.4;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0 auto;
}

.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.footer__links a {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
}

.footer__links a:hover { color: var(--text-bright); }


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .section__header { margin-bottom: 3.5rem; }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
    padding: 16px 32px;
  }

  h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  .section__header { margin-bottom: 3rem; }

  .angebot__usp {
    font-size: 0.85rem;
    padding: 16px 20px;
  }
}

@media (max-width: 360px) {
  :root { --page-gutter: 16px; }
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 60px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.06) translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 4px 16px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3), 0 2px 8px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.5), 0 2px 12px rgba(0,0,0,0.4); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-float__text {
    display: none;
  }
}


/* ============================================
   COOKIE-CONSENT-BANNER (DSGVO)
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--text-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), transform 0.2s ease;
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--accept {
  background: var(--text-bright);
  color: var(--bg);
}

.cookie-banner__btn--accept:hover {
  background: #fff;
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--decline:hover {
  color: var(--text-bright);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px var(--page-gutter);
    gap: 16px;
  }

  .cookie-banner__actions {
    justify-content: center;
    gap: 8px;
  }

  .cookie-banner__btn {
    flex: 1;
    padding: 14px 16px;
  }
}


/* ============================================
   FORM CONSENT CHECKBOX (DSGVO)
   ============================================ */

.form__consent {
  margin-top: 8px;
  margin-bottom: 4px;
}

.form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.form__consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  top: 2px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.form__consent-label input[type="checkbox"]:checked {
  background: var(--text-bright);
  border-color: var(--text-bright);
}

.form__consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--text-bright);
  outline-offset: 2px;
}

.form__consent-label a {
  color: var(--text-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__consent-label a:hover {
  color: #fff;
}
