/* ============================================================
   FLÄCHENFREI — Main Stylesheet  (Light Professional Theme)
   ============================================================ */

:root {
  /* ── Brand ── */
  --orange:      #E8541A;
  --orange-dk:   #CF4812;
  --orange-lt:   #FFF0EB;
  --terracotta:  #E8541A;
  --green:       #16A34A;
  --navy:        #0D1B2A;
  --navy2:       #152238;
  /* backwards-compat aliases */
  --blue:        #E8541A;
  --blue-dk:     #CF4812;
  --blue-lt:     #FFF0EB;
  --blue-mid:    #FFD5C8;
  --accent:      #E8541A;
  --accent-dk:   #CF4812;

  /* ── Backgrounds ── */
  --bg:          #F7F7F5;
  --bg-alt:      #EDECEA;
  --bg-dark:     #0D1B2A;

  /* ── Text ── */
  --text:        #0D1B2A;
  --text-md:     #374151;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;

  /* ── Borders ── */
  --border:      #E5E7EB;
  --border-blue: #D1D5DB;

  /* ── Shadows ── */
  --sh-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:   0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg:   0 12px 40px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.04);
  --sh-acc:  0 6px 22px rgba(232,84,26,0.28);

  /* ── Misc ── */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --max-w:      1320px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ── Container ── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Space Grotesk', system-ui, sans-serif; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange), #F47B3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section helpers ── */
section { padding-block: 112px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; max-width: 540px; margin-inline: auto; }
.section-header h2 { margin-top: 8px; }

.tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,35,50,0.2);
}
.btn-primary:hover { background: #111827; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,35,50,0.28); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--sh-acc);
}
.btn-accent:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,0.36); }
.btn-outline {
  background: transparent;
  color: var(--text-md);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.topbar-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
}
.topbar-item strong { color: white; font-weight: 500; }
.topbar-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 150ms; }
.topbar-item a:hover { color: white; }
.topbar-item i { color: var(--orange); font-size: 0.75rem; }
.topbar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.12); }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; flex: none; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), #F47B3A);
  display: grid; place-items: center; color: #fff; font-size: 0.95rem; flex-shrink: 0;
}
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.logo-text em { color: var(--orange); font-style: normal; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; padding: 8px 14px; border-radius: 8px; }
.nav-links a:not(.btn-nav):hover,
.nav-links a.active { color: var(--text); background: var(--bg-alt); }
.btn-nav {
  padding: 8px 20px; border-radius: 50px;
  background: var(--orange); color: #fff !important; font-weight: 600; font-size: 0.84rem;
  box-shadow: 0 4px 14px rgba(232,84,26,0.25);
}
.btn-nav:hover { background: var(--orange-dk) !important; transform: translateY(-1px) scale(1.02); }

/* Phone link in nav — hidden since it's in the topbar */
.nav-phone { display: none; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang-toggle { display: flex; align-items: center; gap: 6px; }
.lang-sep { color: var(--border); font-size: 0.9rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  padding: 3px 6px; border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  color: var(--orange);
  background: rgba(232,84,26,0.08);
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text-md); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }


/* ============================================================
   HERO  (dark split layout)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes trust-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero {
  background: var(--navy);
  min-height: calc(100vh - 76px - 68px);
  padding: 40px 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px,
    transparent 1px, transparent 24px
  );
  pointer-events: none;
}
.hero-wrap {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
  flex: 1;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  animation: fadeUp 600ms var(--ease) 60ms both;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--orange); border-radius: 1px; flex: none; }
.hero-eyebrow span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
  color: white; margin-bottom: 24px;
  animation: fadeUp 650ms var(--ease) 140ms both;
}
.hero h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 480px; margin-bottom: 48px;
  animation: fadeUp 650ms var(--ease) 210ms both;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
  animation: fadeUp 650ms var(--ease) 280ms both;
}

.btn-hero {
  background: var(--orange); color: white; border: none; cursor: pointer;
  padding: 0 34px; height: 60px; border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  transition: all 200ms var(--ease);
}
.btn-hero:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,84,26,0.35); }
.btn-hero-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer;
  padding: 0 24px; height: 52px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
  display: inline-flex; align-items: center; text-decoration: none;
  transition: all 200ms;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }

/* Hero stats row */
.hero-stats {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  animation: fadeUp 650ms var(--ease) 350ms both;
}
.stat { display: flex; flex-direction: column; }
.stat-val { display: flex; align-items: baseline; gap: 1px; line-height: 1; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: white; line-height: 1;
  display: inline;
}
.stat-plus { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--orange); }
.stat-label { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 4px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Hero image panel */
.hero-right {
  position: relative; overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: clamp(420px, 72vh, 750px);
  max-height: calc(100vh - 76px - 68px - 80px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
/* Slideshow */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,27,42,0.45) 100%);
}
/* Slide label */
.hero-slide-label {
  position: absolute; bottom: 44px; left: 20px; z-index: 10;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(13,27,42,0.45); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 20px;
  pointer-events: none;
}
/* Slide dots indicator */
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px; pointer-events: none;
}
.hero-dot {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 300ms, transform 300ms;
}
.hero-dot.active { background: white; transform: scale(1.4); }

/* legacy – keep for compat */
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-visual { position: relative; }
.float-card { display: none; }
.scroll-hint { display: none; }


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex;
}
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; padding-right: 0; }
.ti-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: white; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.9rem; flex: none;
}
.ti-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; }
.ti-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; line-height: 1.2; }


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--border-blue);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--ic-bg, var(--blue-lt));
  display: grid; place-items: center;
  font-size: 1.3rem;
  color: var(--ic, var(--blue));
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.service-card:hover .svc-icon { transform: scale(1.1) rotate(-4deg); }
.service-card h3 { margin-bottom: 8px; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-size: 0.85rem; font-weight: 600;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }


/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: 96px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--sh-lg); min-height: 360px; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-md);
}
.about-img-badge > i { font-size: 1.8rem; color: var(--blue); }
.about-img-badge strong { display: block; font-size: 0.88rem; font-weight: 700; }
.about-img-badge span  { display: block; font-size: 0.75rem; color: var(--text-muted); }

.about-content .tag { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.about-content p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }
.about-highlights { display: flex; gap: 24px; margin: 28px 0 32px; flex-wrap: wrap; }
.about-hl { text-align: center; }
.hl-num { display: block; font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 2rem; font-weight: 800; color: var(--terracotta); line-height: 1; }
.hl-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }


/* ============================================================
   ABLAUF (PROCESS)
   ============================================================ */
.ablauf { padding-block: 96px; }
.steps-grid {
  display: flex; align-items: flex-start;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.step {
  flex: 1; min-width: 180px; max-width: 210px;
  text-align: center; padding: 0 8px;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), #E8891C);
  color: #fff;
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.2rem; font-weight: 800;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(192,92,30,0.28);
  transition: transform 0.3s;
}
.step:hover .step-num { transform: scale(1.1); }
.step-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 10px; opacity: 0.7; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p  { color: var(--text-muted); font-size: 0.84rem; line-height: 1.5; }
.step-connector {
  color: var(--blue-mid); font-size: 1.1rem;
  align-self: center; padding: 0 4px;
  margin-bottom: 50px; opacity: 0.7;
}


/* ============================================================
   WHY US
   ============================================================ */
.vorteile { padding-block: 96px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(192,92,30,0.1);
  color: var(--terracotta); font-size: 1.05rem;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.why-card h3 { margin-bottom: 8px; font-size: 1rem; }
.why-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }


/* ============================================================
   GALLERY
   ============================================================ */
.galerie { padding-block: 96px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
}
.gallery-item--large { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; }


/* ============================================================
   CONTACT PAGE HERO
   ============================================================ */
.kontakt-hero {
  background: var(--navy);
  padding: 56px 24px 64px;
}
.kontakt-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.kontakt-hero .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.kontakt-hero .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.kontakt-hero .breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.kontakt-hero .breadcrumb i { font-size: 0.65rem; }
.kontakt-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: white; margin-bottom: 12px; }
.kontakt-hero h1 em { color: var(--orange); font-style: normal; }
.kontakt-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 520px; }

/* ── Kontakt CTA band (on index.html) ── */
.kontakt-cta-band {
  background: var(--orange);
  padding: 64px 24px;
  text-align: center;
}
.kontakt-cta-band h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.kontakt-cta-band p  { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.kontakt-cta-band .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--orange); font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none; font-size: 1rem;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.kontakt-cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ============================================================
   CONTACT
   ============================================================ */
.kontakt { padding-block: 96px; }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}
.kontakt-info .tag { margin-bottom: 12px; }
.kontakt-info h2 { margin-bottom: 14px; }
.kontakt-info > p { color: var(--text-muted); margin-bottom: 36px; font-size: 0.97rem; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text-muted);
  transition: color 0.2s;
}
a.contact-row:hover { color: var(--text); }
.contact-ic {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-lt); color: var(--blue);
  display: grid; place-items: center; font-size: 0.95rem; flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 600; }
.contact-row small  { display: block; font-size: 0.76rem; color: var(--text-muted); }
.contact-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
.social-btn.wa-social:hover { background: #25D366; border-color: #25D366; }

/* Form */
.kontakt-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-md); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(232,84,26,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 10px; }


/* ============================================================
   SERVICE DETAIL (leistungen.html)
   ============================================================ */
.page-hero {
  padding: 60px 0 68px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 70%);
  z-index: 0;
}
.page-hero-bg::after {
  content: ''; position: absolute;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,26,0.05) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p   { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin-inline: auto; margin-bottom: 28px; }
.page-hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Service nav bar */
.svc-nav-bar { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 76px; z-index: 50; }
.svc-nav-inner { display: flex; overflow-x: auto; gap: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.svc-nav-inner::-webkit-scrollbar { display: none; }
.svc-nav-item {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 20px;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}
.svc-nav-item i { font-size: 0.9rem; }
.svc-nav-item:hover,
.svc-nav-item.active { color: var(--blue); border-bottom-color: var(--blue); }

/* Service section */
.svc-section { padding-block: 80px; }
.svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.svc-inner > * { min-width: 0; }
.svc-inner--rev { direction: rtl; }
.svc-inner--rev > * { direction: ltr; }

.svc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: var(--ic-bg, var(--blue-lt));
  color: var(--ic, var(--blue));
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.svc-content h2 { margin-bottom: 14px; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.svc-lead { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 24px; line-height: 1.7; }
.svc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.svc-list li { display: flex; align-items: center; gap: 10px; color: var(--text-md); font-size: 0.9rem; }
.svc-list li i { color: var(--green); font-size: 0.82rem; flex-shrink: 0; }

.svc-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-lg); }
.svc-img-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
.svc-facts { display: flex; gap: 12px; margin-top: 14px; }
.svc-fact {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 12px; text-align: center;
}
.svc-fact strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--blue); }
.svc-fact span   { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* CTA band */
.cta-band {
  padding-block: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #2D1F3A 100%);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band-text h2 { color: #fff; margin-bottom: 8px; }
.cta-band-text p  { color: rgba(255,255,255,0.75); font-size: 1.02rem; }
.cta-band-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn-outline:hover { border-color: #fff; }

/* Gradient text on dark bg */
.cta-band-text .gradient-text {
  background: linear-gradient(135deg, #FDE68A, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text em { color: var(--orange); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col a {
  color: rgba(255,255,255,0.5); font-size: 0.86rem;
  transition: color 0.2s; padding-block: 4px;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  color: rgba(255,255,255,0.5); font-size: 0.86rem;
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 8px;
}
.footer-col p i { color: rgba(147,197,253,0.7); width: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { padding-block: 20px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.cookie-settings-btn { background: none; border: none; color: rgba(255,255,255,0.25); font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color 0.2s; padding: 0; font-family: inherit; }
.cookie-settings-btn:hover { color: rgba(255,255,255,0.55); }


/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.wa-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  pointer-events: none;
}
.wa-btn, .wa-widget.open .wa-popup { pointer-events: auto; }

/* Toggle button */
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-icon-close { display: none; font-size: 1.3rem; }
.wa-widget.open .wa-icon-open  { display: none; }
.wa-widget.open .wa-icon-close { display: block; }

/* Pulse ring */
.wa-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Popup */
.wa-popup {
  width: 300px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  transform: scale(0.9) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.wa-widget.open .wa-popup { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

.wa-popup-head {
  background: #075E54;
  padding: 16px 16px;
  display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  color: #fff; font-size: 1.4rem; flex-shrink: 0;
}
.wa-info { flex: 1; overflow: hidden; }
.wa-info strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 600; }
.wa-status { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.wa-status span { color: rgba(255,255,255,0.75); font-size: 0.75rem; }
.wa-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ADE80;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.wa-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 1rem;
  padding: 4px; transition: color 0.2s;
}
.wa-close:hover { color: #fff; }

.wa-popup-body {
  padding: 20px 16px;
  background: #ECE5DD;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='%23e5ddd5' fill-opacity='.3'/%3E%3C/svg%3E");
}
.wa-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  font-size: 0.88rem; color: var(--text-md); line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  max-width: 220px;
}

.wa-popup-foot { padding: 14px 16px; background: #fff; }
.wa-start {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  background: #25D366;
  color: #fff; font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.wa-start:hover { background: #1da855; transform: translateY(-1px); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 400;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--bg); color: var(--blue);
  border: 1.5px solid var(--border-blue);
  cursor: pointer; display: grid; place-items: center;
  font-size: 0.85rem;
  opacity: 0; transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--sh-sm);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }


/* ============================================================
   IMAGE PLACEHOLDERS  (.img-ph)
   ============================================================ */
.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(135deg, var(--ph-c1, #EFF6FF), var(--ph-c2, #DBEAFE));
  color: var(--ph-ic, #2563EB);
  border-radius: var(--radius);
  padding: 32px 24px;
  user-select: none;
}
.img-ph i    { font-size: 3.8rem; opacity: 0.65; }
.img-ph span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-align: center; }

/* Hero portrait */
.hero-img.img-ph {
  aspect-ratio: 5 / 6;
  box-shadow: var(--sh-lg), 0 0 0 6px rgba(0,0,0,0);
  border-radius: 24px;
}

/* About section */
.about-img.img-ph {
  min-height: 400px;
  box-shadow: var(--sh-lg);
}

/* Service detail image */
.svc-img-wrap .img-ph {
  height: 360px;
  border-radius: 0;
  box-shadow: none;
  padding: 24px;
}

/* Gallery cells — fill the grid cell completely */
.gallery-item .img-ph {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  padding: 16px;
  gap: 10px;
}
.gallery-item .img-ph i    { font-size: 2.8rem; }
.gallery-item .img-ph span { font-size: 0.75rem; }


/* ============================================================
   ABOUT OWNER CHIP
   ============================================================ */
.about-owner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  margin-bottom: 24px;
}
.owner-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(192,92,30,0.1);
  color: var(--terracotta);
  display: grid; place-items: center;
  font-size: 1rem; flex-shrink: 0;
}
.about-owner strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.about-owner span   { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* Footer owner line */
.footer-owner {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 8px;
}
.footer-owner i { color: rgba(147,197,253,0.6); }


/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.bewertungen { padding-block: 96px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--border-blue);
  transform: translateY(-3px);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 18px;
  font-size: 5rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: rgba(192,92,30,0.1);
  line-height: 1;
  pointer-events: none;
}
.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 3px; }
.review-card blockquote {
  color: var(--text-md);
  font-size: 0.91rem;
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy2), #374151);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 600; }
.review-author span   { font-size: 0.75rem; color: var(--text-muted); }
.review-source {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--text-light); margin-top: 3px;
}
.review-source i { color: #4285F4; }


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


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

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .hero { min-height: unset; padding: 56px 24px 64px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; align-items: center; }
  .hero-right { height: 360px; min-height: unset; order: -1; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { bottom: -16px; right: -8px; }
  .about-img.img-ph { min-height: 320px; }

  .cards-grid   { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-inner { grid-template-columns: 1fr; gap: 36px; }
  .svc-inner--rev { direction: ltr; }
  .gallery-grid { grid-template-rows: auto; }
  .gallery-item--large { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Trust bar – 2 per row on tablet */
  .trust-item:nth-child(4) { border-right: none; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  html { font-size: 16px; }
  section { padding-block: 56px; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.15rem; color: var(--text); font-weight: 600; }
  .btn-nav { padding: 12px 28px; font-size: 1rem; }
  .burger { display: flex; z-index: 200; position: relative; }

  /* Navbar */
  .nav-inner { height: 66px; }
  .footer .logo-img { height: 30px; padding: 2px 6px; }

  /* Hero */
  .hero { padding: 28px 16px 32px; min-height: unset; }
  .hero-wrap { gap: 20px; }
  .hero-right { height: 260px; min-height: unset; max-height: unset; }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); margin-bottom: 14px; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; max-width: 100%; }
  .hero-cta { gap: 10px; margin-bottom: 28px; }
  .btn-hero { height: 50px; padding: 0 22px; font-size: 0.95rem; border-radius: 10px; }
  .btn-hero-outline { height: 44px; padding: 0 18px; font-size: 0.9rem; }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-stats { gap: 14px; padding-top: 20px; }
  .stat-num { font-size: 1.4rem; }
  .topbar { display: none; }

  /* Trust bar – infinite ticker */
  .trust-bar { padding: 0; overflow: hidden; }
  .trust-inner { display: flex; width: max-content; }
  .trust-inner.ticker-active {
    animation: trust-ticker 24s linear infinite;
  }
  .trust-inner.ticker-active:hover { animation-play-state: paused; }
  .trust-item {
    flex-shrink: 0;
    min-width: 180px;
    padding: 14px 20px;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .trust-item:first-child { padding-left: 20px; }
  .trust-item:last-child  { border-right: 1px solid var(--border); }
  .ti-title { font-size: 0.8rem; }
  .ti-sub   { font-size: 0.7rem; }

  .cards-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); margin-block: -10px; }
  .step { min-width: 200px; max-width: 300px; }

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

  .svc-img-wrap .img-ph { height: 240px; }
  .svc-facts { flex-wrap: wrap; gap: 8px; }
  .svc-fact  { flex: 1 1 calc(33% - 8px); min-width: 80px; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns  { justify-content: center; }

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

  .wa-widget  { bottom: 20px; right: 16px; }
  .wa-popup   { width: 268px; }
  .scroll-top { bottom: 88px; right: 16px; }

  .page-hero-cta { flex-direction: column; align-items: center; }
  .page-hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding-inline: 14px; }
  h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  h2 { font-size: clamp(1.5rem, 7.5vw, 1.9rem); }

  .hero-right { height: 220px; }
  .hero-cta { flex-direction: column; gap: 8px; }
  .hero-cta .btn, .hero-cta .btn-hero, .hero-cta .btn-hero-outline {
    width: 100%; justify-content: center;
  }
  .btn-hero { height: 48px; font-size: 0.9rem; }
  .btn-hero-outline { height: 42px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item        { height: 180px; }
  .gallery-item--large { grid-column: span 1; height: 200px; }
  .gallery-item .img-ph { height: 100%; }

  .about-highlights { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ── Very small (≤ 360px) ── */
@media (max-width: 360px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .wa-popup { width: 240px; }
  .hero-stats .stat-div { display: none; }
}


/* ============================================================
   HERO EDITORIAL ACCENTS
   ============================================================ */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-text-link:hover { color: white; }


/* ============================================================
   DARK BUTTON
   ============================================================ */
.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,35,50,0.2);
}
.btn-dark:hover {
  background: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,35,50,0.28);
}


/* ============================================================
   SERVICE LIST (homepage split layout)
   ============================================================ */
.services { padding-block: 96px; }

.svc-list-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.svc-list-head {
  position: sticky;
  top: 100px;
}

.svc-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.svc-list-head h2 { margin-bottom: 18px; }
.svc-list-head h2 em { color: var(--terracotta); font-style: italic; }

.svc-list-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 32px;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.svc-rows { display: flex; flex-direction: column; }

.svc-row {
  display: grid;
  grid-template-columns: 26px 60px 1fr 18px;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: padding-left var(--transition);
}
.svc-rows .svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { padding-left: 8px; }

.svc-row-num {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  align-self: start;
  padding-top: 4px;
}

.svc-row-ic {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: var(--ic-bg, rgba(192,92,30,0.08));
  color: var(--ic, var(--terracotta));
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.svc-row-info h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
}
.svc-row-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.svc-row-arrow {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color 0.2s, transform 0.2s;
  justify-self: end;
}
.svc-row:hover .svc-row-arrow {
  color: var(--terracotta);
  transform: translate(2px, -2px);
}


/* ============================================================
   ABOUT VISUAL (dark stats card replacing photo)
   ============================================================ */
.about-visual {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-stat-num em {
  color: var(--terracotta);
  font-style: normal;
}

.about-stat-label {
  display: block;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.about-checklist li i {
  color: var(--terracotta);
  font-size: 0.75rem;
  width: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}


/* ============================================================
   HERO PREVIEW CARD (replaces random photo)
   ============================================================ */
.hero-preview-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 28px 22px;
  box-shadow: var(--sh-lg);
  width: 100%;
}

.hpc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
}
.hpc-badge i { color: var(--terracotta); }

.hpc-available {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--green);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
}

.hpc-services {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.hpc-svc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.hpc-services .hpc-svc:last-child { border-bottom: none; }

.hpc-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hpc-svc > div { flex: 1; min-width: 0; }
.hpc-svc > div strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2px;
}
.hpc-svc > div span {
  display: block;
  font-size: 0.77rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hpc-check {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.hpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hpc-stars {
  font-size: 0.82rem;
  color: #F59E0B;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.hpc-stars span { color: var(--text-muted); }

.hpc-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
}
.hpc-time i { color: var(--terracotta); }


/* ── Responsive: service list + about visual ── */
@media (max-width: 1024px) {
  .svc-list-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-list-head { position: static; }
  .about-visual { padding: 36px 28px; }
  .about-stat-num { font-size: 2rem; }
}

@media (max-width: 768px) {
  .svc-row {
    grid-template-columns: 24px 52px 1fr 16px;
    gap: 12px;
    padding: 18px 0;
  }
  .svc-row-ic { width: 52px; height: 52px; font-size: 1.1rem; }
  .about-visual { padding: 28px 20px; }
  .about-stat-grid { gap: 20px; }
  .about-stat-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .svc-row { grid-template-columns: 22px 44px 1fr 14px; gap: 10px; }
  .svc-row-ic { width: 44px; height: 44px; font-size: 1rem; }
}

/* ============================================================
   DESIGN SWITCHER
   ============================================================ */
.ds-switcher {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 14px 20px; background: white; border-radius: 14px;
  border: 1px solid var(--border); box-shadow: var(--sh-sm);
}
.ds-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.ds-btns  { display: flex; gap: 6px; flex-wrap: wrap; }
.ds-btn {
  padding: 7px 16px; border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-md); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 200ms;
}
.ds-btn:hover  { border-color: var(--orange); color: var(--orange); }
.ds-btn.active { background: var(--orange); border-color: var(--orange); color: white; }

/* All design variants hidden by default */
.svc-design { display: none; }
.svc-design.ds-active { display: block; }

/* ── Design 2 · Cards ── */
.d2-head { text-align: center; margin-bottom: 36px; }
.d2-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.d2-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 24px 24px; border-radius: 18px;
  background: white; border: 1.5px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
}
.d2-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--card-c,var(--orange)); }
.d2-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: color-mix(in srgb, var(--card-c,var(--orange)) 12%, white);
  color: var(--card-c,var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.d2-card h3 { font-size: 1.1rem; margin: 0; }
.d2-card p  { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin: 0; }
.d2-link { font-size: 0.85rem; font-weight: 700; color: var(--card-c,var(--orange)); display: flex; align-items: center; gap: 6px; margin-top: auto; }
@media (max-width: 900px) { .d2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .d2-grid { grid-template-columns: 1fr; } }

/* ── Design 3 · Tabs ── */
.d3-head { text-align: center; margin-bottom: 28px; }
.d3-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.d3-tab {
  padding: 10px 22px; border-radius: 50px;
  border: 1.5px solid var(--border); background: white;
  color: var(--text-md); font-size: 0.88rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all 200ms;
}
.d3-tab:hover  { border-color: var(--orange); color: var(--orange); }
.d3-tab.active { background: var(--orange); border-color: var(--orange); color: white; }
.d3-panels { position: relative; }
.d3-panel { display: none; }
.d3-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.d3-img { border-radius: 20px; overflow: hidden; }
.d3-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.d3-info { display: flex; flex-direction: column; gap: 16px; }
.d3-num { font-size: 3rem; font-weight: 800; color: var(--orange); opacity: 0.25; line-height: 1; }
.d3-info h3 { font-size: 2rem; margin: 0; }
.d3-info p  { color: var(--text-muted); margin: 0; font-size: 1rem; line-height: 1.7; }
.d3-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.d3-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-md); }
.d3-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }
@media (max-width: 768px) {
  .d3-panel.active { grid-template-columns: 1fr; }
  .d3-img img { height: 240px; }
}

/* ── Design 4 · Bento ── */
.d4-head { text-align: center; margin-bottom: 32px; }
.d4-head em { color: var(--orange); font-style: normal; }
.d4-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.d4-card { position: relative; border-radius: 20px; overflow: hidden; text-decoration: none; display: block; }
.d4-big  { grid-row: span 2; }
.d4-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 400ms; }
.d4-card:hover img { transform: scale(1.05); }
.d4-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.2) 60%, transparent 100%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: white;
}
.d4-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 4px; }
.d4-overlay h3 { font-size: 1.3rem; margin: 0 0 4px; }
.d4-overlay p  { font-size: 0.85rem; opacity: 0.75; margin: 0; }
.d4-arrow { position: absolute; top: 18px; right: 18px; color: white; opacity: 0.7; font-size: 0.9rem; }
.d4-plain { width: 100%; height: 100%; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; color: white; }
.d4-ico { font-size: 2rem; color: var(--orange); margin-bottom: 8px; }
.d4-plain h3 { font-size: 1.15rem; margin: 0; }
.d4-plain p  { font-size: 0.85rem; opacity: 0.65; margin: 0; flex: 1; }
@media (max-width: 768px) {
  .d4-grid { grid-template-columns: 1fr; grid-template-rows: 280px 200px 200px 200px; }
  .d4-big  { grid-row: span 1; }
}

/* ── Design 5 · Alternating feature rows (now permanent) ── */
.services { padding-block: 96px; }
.d5-head { text-align: center; margin-bottom: 56px; }
.d5-head em { color: var(--orange); font-style: normal; }
.d5-head .svc-list-sub { color: var(--text-muted); max-width: 560px; margin: 12px auto 0; }
.d5-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 72px;
}
.d5-rev { direction: rtl; }
.d5-rev > * { direction: ltr; }
.d5-img { border-radius: 20px; overflow: hidden; box-shadow: var(--sh-lg); }
.d5-img img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 500ms var(--ease); }
.d5-img:hover img { transform: scale(1.03); }
.d5-text { display: flex; flex-direction: column; gap: 18px; }
.d5-num { font-size: 4rem; font-weight: 800; color: var(--orange); opacity: 0.55; line-height: 1; }
.d5-text h3 { font-size: 2rem; margin: 0; }
.d5-text p  { color: var(--text-muted); margin: 0; font-size: 1rem; line-height: 1.8; }
.d5-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.d5-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-md); }
.d5-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.d5-cta { text-align: center; padding-top: 8px; }
@media (max-width: 900px) {
  .d5-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .d5-rev { direction: ltr; }
  .d5-img img { height: 260px; }
  .d5-text h3 { font-size: 1.6rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding-block: 80px; }
.faq-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 8px auto 0; text-align: center; }
.faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms;
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,84,26,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text);
  transition: color 200ms;
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }
.faq-chevron { font-size: 0.9rem; color: var(--text-muted); flex-shrink: 0; transition: transform 300ms var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms var(--ease), padding 250ms;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin: 0; }
@media (max-width: 600px) {
  .faq-q { padding: 16px 18px; font-size: 0.95rem; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
}


/* ============================================================
   LOGO IMAGE
   ============================================================ */
.logo-img {
  width: auto;
  display: block;
  object-fit: contain;
  height: 44px;
}
@media (min-width: 769px) {
  .logo-img { height: 68px; }
}
.footer .logo-img {
  height: 38px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  object-fit: contain;
}


/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--orange-lt); color: var(--orange); border-color: var(--orange); }

/* show/hide sun vs moon based on current theme */
.theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark  { display: none; }
[data-theme="dark"] .theme-icon-light { display: inline; }


/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --bg:          #0f1c2e;
  --bg-alt:      #172438;
  --bg-dark:     #030712;
  --text:        #f1f5f9;
  --text-md:     #e2e8f0;
  --text-muted:  #94a3b8;
  --text-light:  #64748b;
  --border:      #334155;
  --border-blue: #475569;
  color-scheme: dark;
}

/* Navbar */
[data-theme="dark"] .navbar { background: rgba(15,28,46,0.98); }
[data-theme="dark"] .nav-links { background: rgba(15,28,46,0.98); }
[data-theme="dark"] .nav-links a { color: var(--text-muted); }
[data-theme="dark"] .nav-links a:not(.btn-nav):hover,
[data-theme="dark"] .nav-links a.active { color: var(--text); background: var(--bg-alt); }
[data-theme="dark"] .burger span { background: var(--text-md); }

/* Trust bar */
[data-theme="dark"] .ti-icon { background: var(--bg-alt); }

/* Page hero (leistungen) */
[data-theme="dark"] .page-hero-bg { background: linear-gradient(160deg, #0f1929 0%, #111827 70%); }

/* FAQ */
[data-theme="dark"] .faq-item { background: var(--bg-alt); }

/* d5 section */
[data-theme="dark"] .d5-img { box-shadow: 0 12px 40px rgba(0,0,0,0.35); }

/* Steps */
[data-theme="dark"] .step-connector { color: var(--border); }

/* Social buttons */
[data-theme="dark"] .social-btn {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text-muted);
}

/* Logo in dark mode navbar — white badge so JPEG shows naturally */
[data-theme="dark"] .navbar .logo-img {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 3px 6px;
}

/* Kontakt form */
[data-theme="dark"] .kontakt-form { background: var(--bg-alt); border-color: var(--border); }

/* Breadcrumb */
[data-theme="dark"] .breadcrumb a { color: var(--orange); }

/* CTA band — stays orange, fine */

/* WhatsApp widget popup */
[data-theme="dark"] .wa-popup { background: var(--bg-alt); border: 1px solid var(--border); }
[data-theme="dark"] .wa-popup-head { border-bottom-color: var(--border); }
[data-theme="dark"] .wa-bubble { background: var(--bg); color: var(--text-md); }


/* ============================================================
   MOBILE IMPROVEMENTS
   ============================================================ */

/* Show nav phone on desktop (topbar removed) */
.nav-phone {
  display: flex !important;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-phone i { color: var(--orange); font-size: 0.8rem; }
.nav-phone:hover { color: var(--text); }

@media (max-width: 900px) {
  .nav-phone { display: none !important; }
}

/* About image height on tablet/mobile */
@media (max-width: 1024px) {
  .about-img { min-height: 300px; height: 360px; }
}
@media (max-width: 768px) {
  .about-img { height: 280px; min-height: unset; }
  .services { padding-block: 64px; }
  .d5-head { margin-bottom: 40px; }
  .d5-head h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .kontakt-cta-band { padding: 48px 20px; }
  .kontakt-cta-band h2 { font-size: 1.5rem; }
  .faq-section { padding-block: 56px; }
  .hero-slide-label { bottom: 28px; font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .d5-img img { height: 220px; }
  .d5-num { font-size: 3rem; }
  .d5-text h3 { font-size: 1.4rem; }
  .about-img { height: 240px; }
  .hero-right { height: 220px; }
}

/* ── Cookie Settings Modal ── */
#ff-cookie-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.ff-cm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.ff-cm-box { position: relative; z-index: 1; background: var(--bg); border-radius: 16px; padding: 36px 32px 28px; max-width: 420px; width: calc(100% - 40px); box-shadow: var(--sh-lg); }
.ff-cm-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.4rem; color: var(--text-muted); cursor: pointer; line-height: 1; }
.ff-cm-icon { font-size: 2rem; color: var(--orange); margin-bottom: 10px; }
.ff-cm-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.ff-cm-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); }
.ff-cm-row div { display: flex; flex-direction: column; gap: 3px; }
.ff-cm-row strong { font-size: 0.9rem; color: var(--text); }
.ff-cm-row span { font-size: 0.78rem; color: var(--text-muted); }
.ff-cm-badge { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.ff-cm-badge.always { background: #D1FAE5; color: #065F46; }
.ff-cm-badge.on { background: #D1FAE5; color: #065F46; }
.ff-cm-badge.off { background: var(--bg-alt); color: var(--text-muted); }
.ff-cm-actions { display: flex; gap: 10px; margin-top: 22px; }
.ff-cm-btn { flex: 1; padding: 11px 16px; border-radius: 8px; border: none; font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.ff-cm-accept { background: var(--orange); color: #fff; }
.ff-cm-revoke { background: var(--navy); color: #fff; }
.ff-cm-secondary { background: var(--bg-alt); color: var(--text-muted); }
.ff-cm-btn:hover { opacity: 0.85; }
.ff-cm-policy-link { display: block; text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 14px; text-decoration: underline; }

/* ── Cookie Notice Plugin Override ── */
/* Privacy policy Button verstecken – Datenschutz steht im Footer */
#cookie-notice .cn-privacy-policy,
.cookie-notice-container .cn-privacy-policy,
a.cn-privacy-policy { display: none !important; }

#cookie-notice,
#cookie-notice .cookie-notice-container,
.cookie-notice-container {
  background-color: #0D1B2A !important;
  color: #ffffff !important;
  border-top: 2px solid #E8541A !important;
}
#cookie-notice p,
#cookie-notice span,
#cookie-notice .cn-text-container {
  color: #ffffff !important;
}
#cookie-notice .cn-set-cookie,
#cookie-notice .cn-button {
  background: #E8541A !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
}
#cookie-notice .cn-refuse-cookie {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: #fff !important;
  border-radius: 6px !important;
}
#cookie-notice .cn-close-icon { color: rgba(255,255,255,0.5) !important; }

/* ── Legal pages (Impressum, Datenschutz) ── */
.imp-section, .ds-section {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
}
.imp-section h2, .ds-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}
.imp-section p, .imp-section li,
.ds-section p, .ds-section li {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.imp-section a, .ds-section a { color: var(--orange); }
.imp-table { width: 100%; border-collapse: collapse; }
.imp-table td { padding: 7px 0; font-family: 'DM Sans', sans-serif; color: var(--text-md); line-height: 1.6; vertical-align: top; }
.imp-table td:first-child { font-weight: 600; color: var(--text); width: 210px; padding-right: 16px; }
.ds-section ul, .imp-section ul { padding-left: 0; }
.ds-section ul li, .imp-section ul li { margin-bottom: 4px; }
@media (max-width: 600px) {
  .imp-section, .ds-section { padding: 24px 20px; }
  .imp-table td:first-child { width: 130px; font-size: 0.9rem; }
}

