/* ==========================================================================
   CAMPING-STROM THEME — Haupt-Stylesheet
   Basiert auf dem Camping-Strom Design-System (automat.camping-strom.de)
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. DESIGN-TOKENS
   ------------------------------------------------------------------------- */
:root {
  --green:        #AFE53C;
  --green-dark:   #94C63E;
  --green-deep:   #10634D;
  --green-hover:  #117459;
  --green-light:  #eaf6cc;
  --dark:         #042D33;
  --gray:         #5a7070;
  --light:        #DCE1D4;
  --white:        #ffffff;
  --border:       #c4d0b8;
  --shadow:       0 4px 28px rgba(4,45,51,.10);
  --radius:       12px;
  --font:         'Inter', system-ui, sans-serif;
}

/* -------------------------------------------------------------------------
   2. RESET & BASIS
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); }
ul { list-style: none; }
button { font-family: var(--font); }

/* WordPress Block-Editor Ausrichtungen */
.alignwide  { margin-left: -2rem;  margin-right: -2rem; }
.alignfull  { margin-left: -5%;    margin-right: -5%;   }
.aligncenter{ text-align: center; }

/* -------------------------------------------------------------------------
   3. NAVIGATION
   ------------------------------------------------------------------------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 68px; transition: box-shadow .2s, top .2s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }

/* WordPress Admin-Bar: Nav nach unten verschieben, damit sie nicht überdeckt wird */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }

.nav-right {
  display: flex; align-items: center; gap: 1.5rem;
}

/* WordPress nav_menu Ausgabe */
.nav-menu {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu > li > a {
  color: var(--gray); text-decoration: none;
  font-size: .92rem; font-weight: 500; transition: color .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > .current-menu-item > a,
.nav-menu > .current-menu-ancestor > a { color: var(--green-deep); }

.nav-cta {
  background: var(--green); color: var(--dark);
  padding: .55rem 1.4rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); color: var(--dark); }

/* Hamburger (mobil) */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   4. ALLGEMEINE ABSCHNITTE
   ------------------------------------------------------------------------- */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block; background: var(--green-light); color: var(--green-deep);
  padding: .28rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 700;
  margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .07em;
}

h2.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800;
  line-height: 1.2; margin-bottom: .9rem; letter-spacing: -.02em;
}
.section-sub {
  font-size: 1.03rem; color: var(--gray); max-width: 600px; line-height: 1.75;
}
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); color: var(--green-deep);
  padding: .9rem 2rem; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: .97rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.28); color: var(--green-deep); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .9rem 2rem; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: .97rem;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--green-deep);
  padding: .75rem 1.6rem; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: .93rem;
  border: 2px solid var(--green-deep);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green-deep); color: var(--white); }

.btn-lime {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: var(--dark);
  padding: .8rem 1.8rem; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-lime:hover { background: var(--green-dark); transform: translateY(-1px); }

/* -------------------------------------------------------------------------
   5. HERO (Startseite)
   ------------------------------------------------------------------------- */
.cs-hero {
  min-height: 110vh;
  background-image: var(--hero-img, none);
  background-color: #042D33;
  background-size: cover;
  background-position: bottom center;
  display: flex; align-items: center;
  padding: 100px 5% 70px; position: relative; overflow: hidden;
}
.cs-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: block;
  position: relative; z-index: 2;
}
.cs-hero-text {
  background: rgba(4, 45, 51, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 2.5rem;
  box-shadow: 0 8px 56px rgba(0, 0, 0, 0.40);
  max-width: 580px;
}
.cs-hero-badge {
  display: inline-block;
  background: rgba(175, 229, 60, 0.18);
  color: #AFE53C;
  padding: .35rem 1.1rem;
  border-radius: 100px; font-size: .84rem; font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(175, 229, 60, 0.30);
  letter-spacing: .01em;
}
.cs-hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800;
  color: var(--white); line-height: 1.15;
  margin-bottom: 1.3rem; letter-spacing: -.02em;
}
.cs-hero h1 em { font-style: normal; color: #AFE53C; }
.cs-hero-lead {
  font-size: 1.12rem; color: rgba(255,255,255,.82);
  margin-bottom: 2.2rem; line-height: 1.75;
}
.cs-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.cs-hero-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 1.5rem;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.15);
}
.cs-hero-stats-group  { display: flex; flex-direction: column; gap: .5rem; min-width: 0; }
.cs-hero-stats-grouplabel {
  font-size: .67rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.38);
}
.cs-hero-stats-items  { display: flex; gap: 1.75rem; }
.cs-hero-stats-divider {
  width: 1px; background: rgba(255,255,255,.15);
  justify-self: center; height: 100%;
}
.cs-hero-stat-num { font-size: 2rem; font-weight: 800; color: #AFE53C; display: block; line-height: 1; margin-bottom: .2rem; }
.cs-hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); display: block; white-space: pre-line; }

/* Hero-Bildkacheln */
.cs-hero-visual { display: flex; justify-content: center; align-items: flex-start; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 390px; }
.detail-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 2.5px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 38px rgba(0,0,0,.4); transition: transform .2s, box-shadow .2s;
}
.detail-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(0,0,0,.5); }
.detail-card-tall { grid-row: span 2; }
.detail-crop { overflow: hidden; width: 100%; }
.detail-card-tall .detail-crop { height: 320px; }
.detail-card:not(.detail-card-tall) .detail-crop { height: 154px; }
.detail-crop img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-tag {
  padding: .48rem .85rem; font-size: .74rem; font-weight: 700;
  color: var(--dark); display: flex; align-items: center; gap: .35rem;
  background: #fff; border-top: 1px solid rgba(4,45,51,.07); letter-spacing: .01em;
}

/* -------------------------------------------------------------------------
   6. PRODUKT-ÜBERSICHT (Systemkacheln auf der Startseite)
   ------------------------------------------------------------------------- */
.cs-produkte-section { background: var(--light); }
.cs-produkte-section .section-tag { background: var(--green-light); color: var(--green-deep); }

.cs-produkte-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.cs-produkt-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.cs-produkt-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.cs-produkt-card-img {
  width: 100%; height: 240px; object-fit: contain; display: block;
  background: var(--white); padding: 1.25rem;
  mix-blend-mode: multiply;
}
.cs-produkt-card-img-placeholder {
  width: 100%; height: 240px; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.cs-produkt-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.cs-produkt-card-badge {
  flex: 0 0 auto; background: var(--green-light); color: var(--green-deep);
  padding: .18rem .55rem; border-radius: 100px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; white-space: nowrap;
}
.cs-produkt-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.cs-produkt-card p  { font-size: .9rem; color: var(--gray); line-height: 1.65; flex: 1; }
.cs-produkt-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem; border-top: 1px solid var(--border);
  background: rgba(220,225,212,.3);
}
.cs-produkt-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700; color: var(--green-deep);
  text-decoration: none; transition: gap .2s;
}
.cs-produkt-card-link:hover { gap: .7rem; color: var(--green-hover); }
.cs-produkt-card-art { font-size: .78rem; color: var(--gray); }

/* -------------------------------------------------------------------------
   7. FUNKTIONEN / USPs
   ------------------------------------------------------------------------- */
.cs-usps-section { background: var(--dark); padding: 90px 5%; }
.cs-usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.cs-usp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background .2s, transform .2s;
}
.cs-usp-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.cs-usp-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  margin-bottom: 1rem;
}
.cs-usp-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.cs-usp-card p  { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.68; margin: 0; }
@media (max-width: 900px) { .cs-usps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cs-usps-grid { grid-template-columns: 1fr; } }

/* ── Produkt-Karussell (CSS bleibt für eventuelle spätere Nutzung)
   ------------------------------------------------------------------------- */
.cs-carousel-section { background: var(--dark); padding: 70px 0; }
.cs-carousel-section .section-tag { background: rgba(175,229,60,.14); color: #AFE53C; }
.cs-carousel-section h2.section-title { color: var(--white); }
.cs-carousel-section .section-sub { color: rgba(255,255,255,.65); }

.cs-carousel-header { max-width: 1200px; margin: 0 auto; padding: 0 5% 2.5rem; }

.cs-carousel-track-wrap { position: relative; overflow: hidden; }
.cs-carousel-track {
  display: flex; gap: 1.5rem;
  padding: 1rem 5% 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  transition: scroll-behavior .3s;
}
.cs-carousel-track::-webkit-scrollbar { display: none; }

.cs-carousel-slide {
  flex: 0 0 280px; scroll-snap-align: start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: background .2s;
}
.cs-carousel-slide:hover { background: rgba(255,255,255,.10); }

.cs-carousel-slide-icon {
  width: 48px; height: 48px; background: rgba(175,229,60,.14);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--green);
}
.cs-carousel-slide h4 { font-size: 1rem; font-weight: 700; color: var(--white); }
.cs-carousel-slide p  { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.6; flex: 1; }
.cs-carousel-slide-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .84rem; font-weight: 600; color: var(--green);
  text-decoration: none; margin-top: auto;
}
.cs-carousel-slide-link:hover { color: var(--green-dark); }

.cs-carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding-top: 1.5rem;
}
.cs-carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.cs-carousel-btn:hover { background: rgba(255,255,255,.2); }
.cs-carousel-dots { display: flex; gap: .5rem; }
.cs-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: background .2s;
}
.cs-carousel-dot.active { background: var(--green); }

/* -------------------------------------------------------------------------
   8. BLOG / NEWS (Startseiten-Preview & Archiv)
   ------------------------------------------------------------------------- */
.cs-blog-section { background: var(--white); }
.cs-blog-section .section-tag { background: var(--green-light); color: var(--green-deep); }

.cs-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }

.cs-blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.cs-blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.cs-blog-card-img {
  width: 100%; height: 200px; object-fit: cover; display: block; background: var(--light);
}
.cs-blog-card-img-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, var(--light), #c0d8b0);
  display: flex; align-items: center; justify-content: center; color: var(--gray);
}
.cs-blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.cs-blog-card-meta {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem;
  font-size: .78rem; color: var(--gray);
}
.cs-blog-card-cat {
  background: var(--green-light); color: var(--green-deep);
  padding: .2rem .65rem; border-radius: 100px; font-weight: 700;
  text-decoration: none; font-size: .76rem;
}
.cs-blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.35; }
.cs-blog-card h3 a { color: inherit; text-decoration: none; transition: color .2s; }
.cs-blog-card h3 a:hover { color: var(--green-deep); }
.cs-blog-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; flex: 1; }
.cs-blog-card-read {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .87rem; font-weight: 700; color: var(--green-deep);
  text-decoration: none; margin-top: 1rem; transition: gap .2s;
}
.cs-blog-card-read:hover { gap: .7rem; }

/* Blog-Archiv (Einzelpost-Liste) */
.cs-archive { padding: 50px 5% 80px; background: var(--white); }
.cs-archive-inner { max-width: 1200px; margin: 0 auto; }
.cs-archive-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.cs-archive-header h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }

/* -------------------------------------------------------------------------
   9. MESSETERMINE
   ------------------------------------------------------------------------- */
.cs-messen-section { background: var(--light); }
.cs-messen-section .section-tag { background: var(--green-light); color: var(--green-deep); }

.cs-messen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* Karte: dunkler Hintergrund — einheitliche Fläche, weiße Logos sichtbar */
.cs-messe-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: box-shadow .2s, border-color .2s, transform .2s; position: relative; overflow: hidden;
}
.cs-messe-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.4); border-color: rgba(255,255,255,.22); transform: translateY(-4px); }
.cs-messe-card.dabei::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.cs-messe-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-top: .1rem; }

/* Logo: kein eigener Hintergrund nötig — Karte ist schon dunkel */
.cs-messe-logo { height: 44px; display: flex; align-items: center; margin-bottom: .1rem; }
.cs-messe-logo img {
  max-height: 44px; max-width: 160px; width: auto;
  object-fit: contain; object-position: left center; display: block;
}

/* Datum, Ort, Stand — Icons im Metro-Stil */
.cs-messe-date {
  font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
}
.cs-messe-date svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.cs-messe-ort {
  font-size: .9rem; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: .5rem;
}
.cs-messe-ort svg { color: rgba(255,255,255,.4); flex-shrink: 0; }
.cs-messe-stand {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(175,229,60,.15); color: var(--green);
  padding: .28rem .75rem; border-radius: 6px; font-size: .8rem; font-weight: 600;
}
.cs-messe-stand svg { flex-shrink: 0; }

.cs-messe-badge-dabei {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--green); color: var(--dark);
  padding: .3rem .85rem; border-radius: 100px; font-size: .8rem; font-weight: 700;
  width: fit-content;
}
.cs-messe-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .84rem; color: var(--green); text-decoration: none;
  font-weight: 600; margin-top: .25rem;
}
.cs-messe-link:hover { color: var(--green-dark); }

/* Messen-Archiv Seite */
.cs-messen-upcoming      { background: var(--light); padding: 70px 5%; }
.cs-messen-past-section  { background: var(--white); padding: 70px 5%; }
.cs-messen-cta {
  background: linear-gradient(135deg, #042D33 0%, #10634D 100%);
  padding: 70px 5%;
}
.cs-messen-cta h3 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }
.cs-messen-cta p  { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.cs-messen-section-inner { max-width: 1200px; margin: 0 auto; }

.cs-messen-empty {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  text-align: center; color: var(--gray); font-size: 1rem; line-height: 1.7;
}
.cs-messen-empty a { color: var(--green-deep); font-weight: 600; }

/* Vergangene Kacheln: gedimmt */
.cs-messe-card--past { opacity: .55; }
.cs-messe-card--past:hover { opacity: .8; }

/* „Beobachten wir"-Badge (dunkle Karte) */
.cs-messe-badge-watch {
  display: inline-block; padding: .28rem .75rem;
  background: rgba(255,255,255,.1); border-radius: 6px;
  font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 600;
}

.cs-messe-excerpt { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

/* -------------------------------------------------------------------------
   10. ÜBER UNS / COMPANY STORY
   ------------------------------------------------------------------------- */
.cs-about-section { background: var(--white); }

.cs-timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 3rem auto 0; }
.cs-timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding-bottom: 2.5rem; position: relative;
}
.cs-timeline-item::before {
  content: ''; position: absolute; left: 39px; top: 24px; bottom: 0;
  width: 2px; background: var(--border);
}
.cs-timeline-item:last-child::before { display: none; }
.cs-timeline-year {
  font-size: 1rem; font-weight: 800; color: var(--green-deep);
  width: 80px; text-align: right; padding-top: 2px;
  position: relative; z-index: 1;
}
.cs-timeline-year::after {
  content: ''; position: absolute; right: -19px; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-dark);
}
.cs-timeline-content { padding-top: 0; }
.cs-timeline-content h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: .35rem; }
.cs-timeline-content p  { font-size: .91rem; color: var(--gray); line-height: 1.65; }

/* Vision/Mission Block */
.cs-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem;
}
.cs-vision-card {
  background: var(--light); border-radius: var(--radius); padding: 2rem;
  border-left: 4px solid var(--green);
}
.cs-vision-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--green-deep); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.cs-vision-card p  { font-size: .95rem; line-height: 1.7; }

/* -------------------------------------------------------------------------
   11. TRUST / VERTRAUEN
   ------------------------------------------------------------------------- */
.cs-trust {
  background: linear-gradient(135deg, #042D33 0%, #10634D 100%);
  color: var(--white); text-align: center; padding: 90px 5%;
}
.cs-trust-inner { max-width: 900px; margin: 0 auto; }
.cs-trust .section-tag { background: rgba(175,229,60,.14); color: #AFE53C; }
.cs-trust h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -.02em; color: var(--white); }
.cs-trust p  { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 3rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.cs-trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cs-trust-stat {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
}
.cs-trust-stat-num   { font-size: 2.5rem; font-weight: 800; color: #AFE53C; display: block; line-height: 1; margin-bottom: .4rem; }
.cs-trust-stat-label { font-size: .85rem; color: rgba(255,255,255,.75); }

/* -------------------------------------------------------------------------
   12. REFERENZEN / LOGOS
   ------------------------------------------------------------------------- */
.cs-logos-section { background: var(--white); }
.cs-logos-section .section-tag { background: var(--green-light); color: var(--green-deep); }

.cs-logos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .9rem;
}
.cs-logo-tile {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 1rem 1.25rem .75rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .55rem; min-height: 100px; transition: border-color .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
}
.cs-logo-tile:hover { border-color: var(--green-dark); box-shadow: 0 4px 14px rgba(4,45,51,.08); }
.cs-logo-tile img {
  max-width: 100%; max-height: 54px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(100%); opacity: .65;
  transition: filter .25s, opacity .25s;
}
.cs-logo-tile:hover img { filter: grayscale(0%); opacity: 1; }
.cs-logo-name { font-size: .72rem; color: var(--gray); text-align: center; line-height: 1.3; }
.cs-logos-note { text-align: center; font-size: .84rem; color: var(--gray); margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* -------------------------------------------------------------------------
   13. KONTAKT + FORMULAR
   ------------------------------------------------------------------------- */
.cs-contact-section { background: var(--dark); }
.cs-contact-section .section-tag { background: rgba(175,229,60,.14); color: #AFE53C; }

.cs-contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }

.cs-contact-info .section-title { font-size: 1.85rem; color: var(--white); }
.cs-contact-info p { color: rgba(255,255,255,.65); margin-bottom: 2rem; line-height: 1.75; font-size: .97rem; }

.cs-contact-detail {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .9rem; font-size: .95rem; color: rgba(255,255,255,.75);
}
.cs-contact-detail a { color: inherit; text-decoration: none; }
.cs-contact-detail a:hover { color: var(--green); }
.cs-contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(175,229,60,.14); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.cs-contact-highlight {
  background: rgba(175,229,60,.10); border: 1px solid rgba(175,229,60,.25);
  border-left: 4px solid var(--green); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin-top: 2rem;
  font-size: .91rem; color: rgba(255,255,255,.82); line-height: 1.6;
}

/* Formular-Box */
.cs-contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.cs-contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.75rem; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font); font-size: .93rem; background: var(--white); color: var(--dark);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(16,99,77,.12);
}

/* Vorauswahl-Highlight: Lime-Glow wenn Dropdown per CTA-Link vorausgefüllt */
@keyframes cs-interesse-hint {
  0%   { border-color: var(--green); box-shadow: 0 0 0 4px rgba(175,229,60,.40); }
  70%  { border-color: var(--green); box-shadow: 0 0 0 4px rgba(175,229,60,.40); }
  100% { border-color: var(--border); box-shadow: none; }
}
.cs-interesse-hint { animation: cs-interesse-hint 2.2s ease-out forwards; }

.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--dark); border: none;
  padding: 1rem; border-radius: 10px; font-family: var(--font);
  font-size: .97rem; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .2s; margin-top: .25rem;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-submit:disabled { background: #b0b8b4; cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { font-size: .8rem; color: #999; margin-top: .75rem; text-align: center; }
/* Hausnummer-Feld schmal */
.cs-form-group--narrow { max-width: 120px; flex-shrink: 0; }
.form-consent { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.1rem; }
.form-consent input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--green-dark); cursor: pointer; }
.form-consent label { font-size: .85rem; color: var(--gray); line-height: 1.55; cursor: pointer; }
.form-consent a { color: var(--green-deep); text-decoration: underline; }

/* Formular-Erfolgsmeldung */
.cs-form-success {
  text-align: center; padding: 3rem 1rem;
  color: var(--green-deep); font-weight: 700; font-size: 1.05rem; line-height: 1.6;
}
.cs-form-success .cs-success-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* -------------------------------------------------------------------------
   14. EINZELNE PRODUKT-SEITE
   ------------------------------------------------------------------------- */
.cs-produkt-single { padding: 55px 5% 80px; }
.cs-produkt-single-inner { max-width: 1200px; margin: 0 auto; }

.cs-produkt-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .84rem; color: var(--gray); margin-bottom: 2rem;
}
.cs-produkt-breadcrumb a { color: var(--green-deep); text-decoration: none; }
.cs-produkt-breadcrumb a:hover { text-decoration: underline; }
.cs-produkt-breadcrumb span { color: var(--border); }

.cs-produkt-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
.cs-produkt-gallery { position: relative; }
.cs-produkt-main-img {
  width: 100%; height: auto; max-height: 580px;
  display: block; object-fit: contain; object-position: center top;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); padding: 1rem;
}
.cs-produkt-thumbs { display: flex; gap: .75rem; margin-top: .75rem; flex-wrap: wrap; }
.cs-produkt-thumb {
  width: 80px; height: 80px; object-fit: contain; background: var(--white);
  border-radius: 8px; border: 2px solid var(--border); cursor: pointer;
  transition: border-color .2s; flex-shrink: 0;
}
.cs-produkt-thumb.active { border-color: var(--green-deep); }
.cs-produkt-thumb:hover   { border-color: var(--green-dark); }

.cs-produkt-info {}
.cs-produkt-info .section-tag { margin-bottom: .75rem; }
.cs-produkt-info h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; letter-spacing: -.02em; }
.cs-produkt-art { font-size: .85rem; color: var(--gray); margin-bottom: 1.25rem; }
.cs-produkt-desc { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 2rem; }

.cs-produkt-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.cs-produkt-lp-link {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: var(--dark); padding: .75rem 1.6rem;
  border-radius: 10px; text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: background .2s;
}
.cs-produkt-lp-link:hover { background: var(--green-dark); color: var(--dark); }

/* Technische Daten Box */
.cs-specs-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cs-specs-box-title { background: var(--green-deep); color: white; padding: 1rem 1.5rem; font-weight: 700; font-size: .95rem; }
.cs-specs-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.cs-specs-table td { padding: .85rem 1.5rem; border-bottom: 1px solid var(--border); }
.cs-specs-table tr:last-child td { border-bottom: none; }
.cs-specs-table tr:nth-child(even) td { background: var(--light); }
.cs-specs-table td:first-child { font-weight: 600; color: var(--dark); width: 45%; }
.cs-specs-table td:last-child { color: var(--gray); }

/* Downloads */
.cs-downloads { margin-top: 2rem; }
.cs-downloads h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.cs-download-list { display: flex; flex-direction: column; gap: .6rem; }
.cs-download-link {
  display: flex; align-items: center; gap: .75rem; padding: .85rem 1.1rem;
  background: var(--light); border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; color: var(--dark); font-size: .9rem; font-weight: 500;
  transition: background .2s, border-color .2s;
}
.cs-download-link:hover { background: var(--green-light); border-color: var(--green-dark); color: var(--green-deep); }
.cs-download-icon { color: var(--green-deep); flex-shrink: 0; }

/* Varianten-Tabelle: dritte Spalte (+ Button) */
.cs-specs-table--varianten td:last-child { color: inherit; width: 3rem; padding-right: .75rem; text-align: right; }

/* + Button in Variantenzeile */
.cs-add-to-list {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 2px solid var(--green-deep); background: transparent;
  color: var(--green-deep); font-size: 1.2rem; line-height: 1;
  cursor: pointer; transition: background .15s, color .15s;
}
.cs-add-to-list:hover { background: var(--green-deep); color: #fff; }
.cs-add-to-list--added { background: var(--green-deep); color: #fff; }
.cs-add-to-list--single {
  width: auto; border-radius: var(--radius); padding: .45rem 1rem;
  font-size: .9rem; font-weight: 600;
}

/* Badge (floating, oben rechts) */
#cs-list-badge {
  position: fixed; top: 80px; right: 1.25rem; z-index: 900;
  display: none; align-items: center; justify-content: center; gap: .35rem;
  background: var(--green-deep); color: #fff;
  border: none; border-radius: 2rem;
  padding: .45rem .85rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  font-size: .85rem; font-weight: 700;
  transition: transform .15s;
}
#cs-list-badge:hover { transform: scale(1.05); }
#cs-list-count { min-width: 1.1rem; text-align: center; }

/* Panel Overlay */
#cs-list-panel { position: fixed; inset: 0; z-index: 1000; }
#cs-list-panel[hidden] { display: none; }
.cs-list-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.cs-list-panel-inner {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(480px, 100vw); background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
}
.admin-bar .cs-list-panel-inner { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .cs-list-panel-inner { top: 46px; }
}
.cs-list-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cs-list-panel-head h3 { margin: 0; font-size: 1.1rem; }
.cs-list-close {
  background: none; border: none; cursor: pointer; padding: .25rem;
  color: var(--gray); display: flex; align-items: center;
}
.cs-list-close:hover { color: var(--dark); }

#cs-list-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cs-list-empty { color: var(--gray); font-size: .95rem; padding: .5rem 0; }

.cs-list-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
}
.cs-list-item:last-child { border-bottom: none; }
.cs-list-item-info { flex: 1; min-width: 0; }
.cs-list-item-info strong { display: block; font-size: .9rem; color: var(--dark); line-height: 1.3; }
.cs-list-item-artnr { font-size: .78rem; color: var(--gray); margin-top: .15rem; display: block; }
.cs-list-item-controls { display: flex; align-items: center; gap: .4rem; flex-shrink: 0; }
.cs-list-minus, .cs-list-plus {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1.5px solid var(--border); background: none;
  cursor: pointer; font-size: 1rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--dark); transition: border-color .15s;
}
.cs-list-minus:hover, .cs-list-plus:hover { border-color: var(--green-deep); color: var(--green-deep); }
.cs-list-menge { min-width: 1.5rem; text-align: center; font-weight: 700; font-size: .95rem; }
.cs-list-remove {
  background: none; border: none; cursor: pointer;
  color: var(--gray); font-size: .85rem; padding: .25rem;
  line-height: 1;
}
.cs-list-remove:hover { color: #c0392b; }

.cs-list-panel-foot {
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0;
}
.cs-list-panel-foot[hidden] { display: none; }
.cs-list-panel-foot .btn-primary { text-align: center; text-decoration: none; }
.cs-list-leeren {
  background: none; border: none; cursor: pointer;
  color: var(--gray); font-size: .82rem; text-align: center;
  padding: 0; text-decoration: underline;
}
.cs-list-leeren:hover { color: #c0392b; }

body.cs-list-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   15. EINZELNER BLOGPOST
   ------------------------------------------------------------------------- */
.cs-single-post { padding: 120px 5% 80px; }
.cs-single-post-inner { max-width: 780px; margin: 0 auto; }

.cs-post-meta {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  font-size: .85rem; color: var(--gray); flex-wrap: wrap;
}
.cs-post-cat {
  background: var(--green-light); color: var(--green-deep);
  padding: .2rem .7rem; border-radius: 100px; font-weight: 700;
  text-decoration: none; font-size: .8rem;
}
.cs-post-hero-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 2.5rem;
}
.cs-post-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 1.75rem;
}

/* Post-Content */
.cs-post-content { font-size: 1.04rem; line-height: 1.8; color: var(--dark); }
.cs-post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: -.01em; }
.cs-post-content h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 .75rem; }
.cs-post-content p  { margin-bottom: 1.3rem; }
.cs-post-content a  { color: var(--green-deep); text-decoration: underline; }
.cs-post-content a:hover { color: var(--green-hover); }
.cs-post-content ul,
.cs-post-content ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
.cs-post-content li { margin-bottom: .4rem; }
.cs-post-content blockquote {
  border-left: 4px solid var(--green); padding: 1rem 1.5rem;
  background: var(--light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0; font-style: italic; color: var(--gray);
}
.cs-post-content img { width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }
.cs-post-content figure { margin: 1.5rem 0; }
.cs-post-content figcaption { font-size: .82rem; color: var(--gray); text-align: center; margin-top: .5rem; }
.cs-post-content .wp-block-separator { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* Post-Footer: Tags + Teilen */
.cs-post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.cs-post-share { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cs-post-share-label { font-size: .88rem; font-weight: 600; color: var(--gray); }
.cs-share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: 8px; font-size: .84rem; font-weight: 600;
  text-decoration: none; transition: opacity .2s;
}
.cs-share-btn:hover { opacity: .85; }
.cs-share-facebook  { background: #1877f2; color: #fff; }
.cs-share-linkedin  { background: #0a66c2; color: #fff; }
.cs-share-whatsapp  { background: #25d366; color: #fff; }

/* Post-Navigation (vorige/nächste) */
.cs-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.cs-post-nav-item {
  background: var(--light); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  text-decoration: none; color: var(--dark); transition: background .2s;
}
.cs-post-nav-item:hover { background: var(--green-light); }
.cs-post-nav-item.next { text-align: right; }
.cs-post-nav-dir { font-size: .78rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.cs-post-nav-title { font-size: .95rem; font-weight: 700; line-height: 1.3; }

/* -------------------------------------------------------------------------
   16. STANDARD-SEITE (page.php)
   ------------------------------------------------------------------------- */
.cs-page { padding: 120px 5% 80px; }
.cs-page-inner { max-width: 860px; margin: 0 auto; }
.cs-page-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 2rem; }
.cs-page-content { font-size: 1rem; line-height: 1.8; color: var(--dark); }
.cs-page-content h2 { font-size: 1.45rem; font-weight: 700; margin: 2rem 0 .75rem; }
.cs-page-content h3 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 .6rem; }
.cs-page-content p  { margin-bottom: 1.2rem; }
.cs-page-content a  { color: var(--green-deep); text-decoration: underline; }
.cs-page-content ul,
.cs-page-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.cs-page-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.cs-page-content th, .cs-page-content td { padding: .75rem 1rem; border: 1px solid var(--border); font-size: .93rem; }
.cs-page-content th { background: var(--light); font-weight: 700; }
.cs-page-content tr:nth-child(even) td { background: rgba(220,225,212,.3); }

/* -------------------------------------------------------------------------
   17. FOOTER-BANNER + FOOTER
   ------------------------------------------------------------------------- */
.cs-footer-banner { background: var(--green); padding: 1.3rem 5%; }
.cs-footer-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.cs-footer-banner-logo { font-weight: 800; font-size: 1.15rem; color: var(--dark); letter-spacing: -.01em; }
.cs-footer-banner-tagline { font-size: .9rem; color: rgba(4,45,51,.7); font-weight: 500; }
.cs-footer-banner-cta {
  background: var(--dark); color: var(--white);
  padding: .65rem 1.6rem; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: background .2s; white-space: nowrap;
}
.cs-footer-banner-cta:hover { background: var(--green-deep); color: var(--white); }

.cs-footer-contact-bar {
  background: rgba(4,45,51,.92); border-top: 1px solid rgba(255,255,255,.1);
  padding: .8rem 5%; font-size: .85rem;
}
.cs-footer-contact-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.65);
}
.cs-footer-contact-bar-inner svg { flex-shrink: 0; color: var(--green); }
.cs-footer-contact-bar-inner a { color: var(--green); font-weight: 600; text-decoration: none; }
.cs-footer-contact-bar-inner a:hover { text-decoration: underline; }

.cs-footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 55px 5% 30px; font-size: .87rem; }
.cs-footer-inner { max-width: 1200px; margin: 0 auto; }
.cs-footer-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.75rem;
}
.cs-footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1.1rem; }
.cs-footer-col p  { line-height: 1.75; color: rgba(255,255,255,.5); }
.cs-footer-col a  { display: block; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: .55rem; transition: color .2s; font-size: .86rem; }
.cs-footer-col a:hover { color: var(--white); }
.cs-footer-col li { list-style: none; padding: 0; margin: 0; }
.cs-footer-logo { height: 32px; width: auto; margin-bottom: 1rem; opacity: .8; }

.cs-footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.cs-footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: background .2s, color .2s;
}
.cs-footer-social a:hover { background: rgba(175,229,60,.2); color: var(--green); }

.cs-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .83rem;
}

/* -------------------------------------------------------------------------
   18. PAGINATION
   ------------------------------------------------------------------------- */
.cs-pagination { padding: 2.5rem 0; text-align: center; }
.cs-pagination-inner { display: inline-flex; gap: .5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.cs-pagination-inner span a,
.cs-pagination-inner span.current {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px; font-size: .9rem;
  font-weight: 600; text-decoration: none;
}
.cs-pagination-inner span a { background: var(--light); color: var(--dark); border: 1px solid var(--border); transition: background .2s; }
.cs-pagination-inner span a:hover { background: var(--green-light); border-color: var(--green-dark); }
.cs-pagination-inner span.current { background: var(--green); color: var(--dark); border: 1px solid var(--green-dark); }
.cs-pagination-inner span.dots { color: var(--gray); padding: 0 .25rem; }

/* -------------------------------------------------------------------------
   19. 404 SEITE
   ------------------------------------------------------------------------- */
.cs-404 { padding: 140px 5% 80px; text-align: center; }
.cs-404-num { font-size: 8rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: .5rem; }
.cs-404-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.cs-404-text { font-size: 1rem; color: var(--gray); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* -------------------------------------------------------------------------
   20. FAQ (Accordion)
   ------------------------------------------------------------------------- */
.cs-faq-section { background: var(--light); }
.cs-faq-section .section-tag { background: var(--green-light); color: var(--green-deep); }

.cs-faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .75rem;
}
.cs-faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
}
.cs-faq-q {
  width: 100%; background: none; border: none; padding: 1.25rem 1.5rem;
  text-align: left; font-size: .98rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark); font-family: var(--font); transition: background .15s; gap: 1rem;
}
.cs-faq-q:hover { background: var(--light); }
.cs-faq-toggle {
  min-width: 28px; height: 28px; background: var(--green-light); color: var(--green-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400; transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.cs-faq-item.open .cs-faq-toggle {
  transform: rotate(45deg); background: var(--green); color: var(--dark);
}
.cs-faq-a {
  display: none; padding: 1rem 1.5rem 1.3rem;
  font-size: .93rem; color: var(--gray); line-height: 1.75;
  border-top: 1px solid var(--border);
}
.cs-faq-item.open .cs-faq-a { display: block; }

/* -------------------------------------------------------------------------
   21. PAGE-HEADER (gemeinsam für Termine, Messen, Über uns etc.)
   ------------------------------------------------------------------------- */
.cs-page-header {
  background: linear-gradient(140deg, #021a1f 0%, #042D33 60%, #10634D 100%);
  padding: 130px 5% 70px;
}
.cs-page-header-inner { max-width: 900px; margin: 0 auto; }
.cs-page-header-badge {
  display: inline-block; background: rgba(175,229,60,.15); color: #AFE53C;
  padding: .3rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 700;
  margin-bottom: 1rem; border: 1px solid rgba(175,229,60,.25);
}
.cs-page-header h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: .9rem; letter-spacing: -.02em;
}
.cs-page-header-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 680px;
}

/* -------------------------------------------------------------------------
   22. TERMINE (page-termine.php)
   ------------------------------------------------------------------------- */

/* Tab-Leiste */
.cs-termin-tabs-wrap {
  background: var(--dark);
  padding: 1.25rem 5% 0;
  border-bottom: none;
}
.cs-termin-tabs {
  max-width: 1000px; margin: 0 auto;
  display: flex; gap: .5rem;
}
.cs-termin-tab {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  padding: .9rem 1.85rem;
  font-family: var(--font); font-size: .97rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: .55rem;
  transition: background .18s, color .18s;
  position: relative; bottom: -1px;
}
.cs-termin-tab:hover {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
}
.cs-termin-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--dark);
  font-weight: 700;
}

/* Panels */
.cs-termin-panel { background: var(--light); padding: 60px 5%; }
.cs-termin-panel[hidden] { display: none; }   /* native hidden-Attribut */

.cs-termin-panel-inner { max-width: 1000px; margin: 0 auto; }
.cs-termin-panel-head {
  display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem;
}
.cs-termin-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--green-light); border-radius: 13px;
  display: flex; align-items: center; justify-content: center; color: var(--green-deep);
}
.cs-termin-embed {
  border-radius: var(--radius);
  overflow: clip;           /* Ecken runden ohne Scroll-Context = iFrame darf frei wachsen */
  border: 1px solid var(--border); background: var(--white);
  box-shadow: var(--shadow);
}
/* Cal.com SDK erzeugt intern ein iFrame das sich selbst auf Höhe setzt — kein fixer Wert nötig */
.cs-cal-container { width: 100%; min-height: 600px; }
.cs-cal-container iframe { border: none !important; }

.cs-termin-hinweis {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1.25rem 5%; font-size: .87rem; color: var(--gray); line-height: 1.7;
}

@media (max-width: 640px) {
  .cs-termin-tab { padding: .75rem .9rem; font-size: .88rem; }
  .cs-termin-panel-head { flex-direction: column; gap: 1rem; }
  .cs-cal-container { min-height: 700px; }
}

/* -------------------------------------------------------------------------
   23. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .cs-trust-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-footer-cols { grid-template-columns: 1fr 1fr; }
  .cs-footer-cols .cs-footer-col:first-child { grid-column: 1 / -1; }
  .cs-produkt-hero { grid-template-columns: 1fr; }
  .cs-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  section { padding: 65px 5%; }
  .cs-hero { padding: 100px 5% 50px; }
  .cs-hero-text { max-width: 100%; }
  .cs-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .cs-post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .cs-hero {
    background-image: var(--hero-img-mobile, var(--hero-img, none));
    background-position: top center;
    padding-top: 90px;
  }
  .cs-hero-text { padding: 1.75rem 1.5rem; border-radius: 14px; }
  .cs-hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .cs-hero-stats { gap: 1.25rem; grid-template-columns: 1fr; }
  .cs-hero-stats-divider { display: none; }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-hamburger { display: flex; }
  .nav-right {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border); flex-direction: column;
    padding: 1.5rem 5%; gap: 1rem; align-items: flex-start; z-index: 99;
  }
  .nav-right.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: .75rem; width: 100%; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { font-size: 1rem; padding: .5rem 0; display: block; }
  .nav-cta { width: 100%; text-align: center; }

  .cs-trust-stats { grid-template-columns: 1fr 1fr; }
  .cs-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .cs-footer-banner-inner { flex-direction: column; align-items: flex-start; }
  .cs-carousel-slide { flex: 0 0 240px; }
  .cs-timeline-item { grid-template-columns: 60px 1fr; }
}

@media (max-width: 480px) {
  .cs-hero h1 { font-size: 1.85rem; }
  .cs-hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .cs-trust-stats { grid-template-columns: 1fr; }
  .cs-produkte-grid { grid-template-columns: 1fr; }
  .cs-blog-grid { grid-template-columns: 1fr; }
  .cs-messen-grid { grid-template-columns: 1fr; }
  .cs-testimonials-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------------------- */
.cs-testimonials-section { background: var(--light); }

.cs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.cs-testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cs-testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
  padding-left: 1.25rem;
  border-left: 3px solid var(--green);
  font-style: italic;
}

.cs-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cs-testimonial-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.cs-testimonial-photo--placeholder {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.cs-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.cs-testimonial-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.cs-testimonial-rolle {
  font-size: .82rem;
  color: var(--gray);
}

.cs-testimonial-stars {
  display: flex;
  gap: .1rem;
  margin-top: .2rem;
}

.cs-star { font-size: .9rem; color: var(--border); }

.cs-star--filled { color: var(--green-deep); }
