/* =========================================================
   Thema der Woche – Website
   Farbsystem aus PPTX:
   --orange: #C34716   (Primary, Akzent)
   --brown:  #574B44   (Body Text)
   --peach:  #FADDD1   (Cards, Soft Highlights)
   --peach-2: #F7CCBA  (Hover / Variation)
   --bg:     #ECE8E2   (warmer Light Grey)
   --bg-2:   #FFFFFF
   ========================================================= */

:root {
  --orange: #C34716;
  --orange-hover: #A03A11;
  --brown: #574B44;
  --brown-soft: #7A6B62;
  --peach: #FADDD1;
  --peach-2: #F7CCBA;
  --bg: #F8F5F1;
  --bg-2: #FFFFFF;
  --line: #DCD6CF;
  --shadow: 0 8px 30px rgba(87, 75, 68, 0.08);
  --radius: 18px;
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--brown);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 232, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--brown);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s, background-color .2s, transform .2s, box-shadow .2s;
}

.nav-links a:hover {
  color: var(--orange);
  text-decoration: none;
  border-color: var(--orange);
}

.nav-links a.active {
  color: var(--orange);
  border-color: var(--orange);
}

/* Wenn auf der Startseite direkt der Produkte-Bereich angesprungen wird */
body:has(#produkte:target) .nav-links a[href="index.html"].active {
  color: var(--brown);
  border-color: transparent;
}

body:has(#produkte:target) .nav-links a[href="index.html#produkte"] {
  color: var(--orange);
  border-color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border-bottom: none !important;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--orange-hover);
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(198, 73, 21, 0.24);
}

@media (max-width: 820px) {
  .nav {
    position: static;
  }

  .nav-inner {
    padding: 18px 20px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .nav-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav-logo img {
    height: 52px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    display: flex;
    width: 100%;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(92, 62, 40, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #18365F;
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 7px 16px rgba(66, 43, 27, 0.06);
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: #1B1612;
    background: rgba(242, 148, 32, 0.18);
    border-color: var(--orange);
    transform: translateY(-1px);
  }

  .nav-links a.active {
    color: #1B1612;
    background: var(--orange);
    border-color: var(--orange);
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(198, 73, 21, 0.18);
  }

  .nav-links li:last-child {
    grid-column: 1 / -1;
  }

  .nav-cta {
    background: var(--orange);
    color: #fff !important;
    min-height: 56px;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 800;
    border-color: var(--orange) !important;
    box-shadow: 0 14px 28px rgba(198, 73, 21, 0.2);
  }

  .nav-cta:hover,
  .nav-cta:focus {
    background: var(--orange-hover);
    color: #fff !important;
  }
}

@media (max-width: 520px) {
  .nav-inner {
    padding: 18px 20px 22px;
    gap: 18px;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links {
    gap: 12px 18px;
  }

  .nav-links a {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .nav-cta {
    min-height: 56px;
    padding: 14px 16px;
    font-size: 16px;
  }
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  color: #1B1612;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5.2vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
}

.lead {
  font-size: 19px;
  color: var(--brown);
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--orange-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange) !important;
  border-color: var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--brown) !important;
}

.btn-ghost:hover {
  color: var(--orange) !important;
  text-decoration: none;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, var(--bg-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-text p.lead {
  margin-bottom: 8px;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(87, 75, 68, 0.18);
  border-radius: 50%;
  transform: translate(22px, 18px);
  filter: blur(18px);
  z-index: 0;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  box-shadow: var(--shadow);
}

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

  .hero-image-wrap {
    margin: 30px auto 0;
  }
}

/* ---------- SECTIONS ---------- */
section {
  padding: 90px 0;
}

.section-light {
  background: var(--bg-2);
}

.section-soft {
  background: var(--peach);
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 50px;
}

/* ---------- FEATURE CARDS ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 820px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover:not(.no-hover-card) {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--peach);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.card p {
  color: var(--brown);
  font-size: 15.5px;
}

.card-soft {
  background: var(--peach);
  border: none;
  border-radius: var(--radius);
  padding: 32px 30px;
}

.card-soft h3 {
  color: #1B1612;
  margin-bottom: 6px;
}

.card-soft .sub {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}

.card-soft ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-soft li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15.5px;
}

.card-soft li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- SPLIT (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.flip {
  grid-template-columns: 1fr 1fr;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.split h2 {
  margin-bottom: 18px;
}

@media (max-width: 820px) {

  .split,
  .split.flip {
    grid-template-columns: 1fr;
  }
}

/* ---------- COMPARE TABLE ---------- */
.compare {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: 14.5px;
}

.compare>div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.compare .h {
  background: #1B1612;
  color: #fff;
  font-weight: 700;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
}

.compare .h-feat {
  background: #2A1F19;
}

.compare .h.va {
  background: var(--orange);
}

.compare .h.vb {
  background: #A6450F;
}

.compare .h.vc {
  background: #7A310B;
}

.compare .h .sub {
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.compare .feat {
  background: var(--peach);
  font-weight: 600;
  color: #1B1612;
}

.compare .v {
  justify-content: center;
  text-align: center;
  color: var(--brown);
}

.compare .v.tick {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

.compare .alt {
  background: #F8F5F1;
}

@media (max-width: 820px) {
  .compare {
    grid-template-columns: 1.4fr repeat(4, 1fr);
    min-width: 920px;
    font-size: 13px;
  }

  .compare .h-feat,
  .compare .feat {
    display: flex;
  }
}

/* ---------- TESTIMONIAL / QUOTE ---------- */
.quote {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 50px 60px;
  font-style: italic;
  font-size: 22px;
  color: #1B1612;
  line-height: 1.45;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
}

.faq summary {
  font-weight: 700;
  color: #1B1612;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: '+';
  color: var(--orange);
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin-top: 12px;
  color: var(--brown);
  font-size: 15.5px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: #1B1612;
  color: #fff;
  text-align: center;
  padding: 80px 28px;
  border-radius: var(--radius);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  color: #D4CFC9;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-band .btn-primary {
  background: var(--orange);
}

/* ---------- NEWSLETTER + KONTAKT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card p {
  color: var(--brown-soft);
  margin-bottom: 22px;
  font-size: 15.5px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  padding: 13px 16px;
  font: inherit;
  color: var(--brown);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #FBF9F6;
  transition: border-color .2s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

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

.form-card .btn {
  width: 100%;
}

.newsletter-inline {
  display: flex;
  gap: 10px;
}

.newsletter-inline input {
  flex: 1;
}

.newsletter-inline button {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .newsletter-inline {
    flex-direction: column;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1B1612;
  color: #D4CFC9;
  padding: 70px 0 30px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid #3A2F28;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 14px;
  filter: brightness(1.1) contrast(0.95);
}

.footer-brand p {
  color: #B5ADA5;
  font-size: 14.5px;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

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

.footer li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.footer a {
  color: #D4CFC9;
}

.footer a:hover {
  color: var(--orange);
  text-decoration: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .label {
  color: #8C857E;
  min-width: 70px;
  display: inline-block;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 13px;
  color: #8C857E;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: #8C857E;
  margin-left: 18px;
}

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

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

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

/* ---------- SMALL HERO (Subpages) ---------- */
.hero-sub {
  padding: 60px 0 50px;
  background: var(--peach);
}

.hero-sub h1 {
  margin-bottom: 14px;
}

.hero-sub .lead {
  max-width: 740px;
}

/* ---------- BREADCRUMB ---------- */
.crumb {
  font-size: 14px;
  color: var(--brown-soft);
  margin-bottom: 14px;
}

.crumb a {
  color: var(--brown-soft);
}

.crumb a:hover {
  color: var(--orange);
}

/* ---------- PRODUCT GALLERY (Subpage hero image grid) ---------- */
.gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gallery-2 .g-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.gallery-2 .g-item img {
  border-radius: 8px;
}

.gallery-2 .g-item p {
  text-align: center;
  font-size: 13px;
  color: var(--brown-soft);
  margin-top: 10px;
  font-style: italic;
}

/* ---------- INFO STRIPS ---------- */
.strip {
  background: var(--peach);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.strip .num {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.strip h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.strip p {
  color: var(--brown);
  margin: 0;
  font-size: 14.5px;
}

@media (max-width: 600px) {
  .strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ---------- STATS ROW ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .stat .n {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stats .stat .l {
  color: var(--brown-soft);
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

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

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

/* ===== Helle Abschlussbereiche: CTA-Container + Footer ===== */
.cta-band,
.footer {
  background: #F8F5F1 !important;
  color: #574B44 !important;
  border-top: 1px solid #DCD6CF;
}

.cta-band {
  border: 1px solid #DCD6CF;
  box-shadow: 0 8px 30px rgba(87, 75, 68, 0.08);
}

.cta-band h2,
.footer h4 {
  color: #1B1612 !important;
}

.cta-band p,
.footer p,
.footer li,
.footer span {
  color: #574B44 !important;
}

.cta-band a,
.footer a {
  color: #574B44 !important;
}

.cta-band a:hover,
.footer a:hover {
  color: #C34716 !important;
}

.footer-contact .label {
  color: #7A6B62 !important;
}

.footer-grid {
  border-bottom: 1px solid #DCD6CF !important;
}

.footer-bottom {
  color: #7A6B62 !important;
  background: #FFFFFF !important;
}

.footer-bottom a {
  color: #7A6B62 !important;
}

.footer-bottom a:hover {
  color: #C34716 !important;
}

.footer-brand p {
  color: #574B44 !important;
}

/* ===== Schwarze Flächen entfernen: hell statt schwarz ===== */

/* Dunkle CTA-/Anfrage-Container hell machen */
.cta-band {
  background: #FFFFFF !important;
  color: #574B44 !important;
  border: 1px solid #DCD6CF !important;
  box-shadow: 0 8px 30px rgba(87, 75, 68, 0.08) !important;
}

.cta-band h2 {
  color: #1B1612 !important;
}

.cta-band p {
  color: #574B44 !important;
}

/* Footer hell machen */
.footer {
  background: #FFFFFF !important;
  color: #574B44 !important;
  border-top: 1px solid #DCD6CF !important;
}

.footer h4 {
  color: #1B1612 !important;
}

.footer p,
.footer li,
.footer span {
  color: #574B44 !important;
}

.footer a {
  color: #574B44 !important;
}

.footer a:hover {
  color: #C34716 !important;
}

.footer-contact .label {
  color: #7A6B62 !important;
}

.footer-grid {
  border-bottom: 1px solid #DCD6CF !important;
}

.footer-bottom {
  background: #FFFFFF !important;
  color: #7A6B62 !important;
}

.footer-bottom a {
  color: #7A6B62 !important;
}

.footer-bottom a:hover {
  color: #C34716 !important;
}

.footer-brand p {
  color: #574B44 !important;
}

/* Schwarze Vergleichstabellen-Köpfe auf der App-Seite entschärfen */
.compare .h,
.compare .h-feat {
  background: #ECE8E2 !important;
  color: #1B1612 !important;
}

.compare .h.va,
.compare .h.vb,
.compare .h.vc {
  background: #FADDD1 !important;
  color: #1B1612 !important;
}

.compare .h .sub {
  color: #574B44 !important;
}

/* ===== Header-Navigation global beruhigen ===== */
.nav-logo {
  flex: 0 0 auto !important;
}

.nav-logo img {
  height: 40px !important;
  width: auto !important;
  max-width: none !important;
}

.nav-links {
  flex: 0 1 auto !important;
  gap: 22px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
}

.nav-links a {
  white-space: nowrap !important;
}

.nav .nav-links a.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 150px !important;
  min-height: 42px !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  background: var(--orange) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 18px rgba(198, 73, 21, 0.20) !important;
  transition: all .2s ease !important;
}

.nav .nav-links a.nav-cta:hover,
.nav .nav-links a.nav-cta:focus {
  background: var(--orange-hover) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(198, 73, 21, 0.28) !important;
}

@media (max-width: 980px) {
  .nav-inner {
    padding: 16px 20px !important;
    gap: 16px !important;
  }

  .nav-links {
    gap: 16px !important;
  }

  .nav-links a {
    font-size: 14px !important;
  }

  .nav .nav-links a.nav-cta {
    min-width: 140px !important;
    min-height: 40px !important;
    padding: 10px 16px !important;
  }
}

/* ===== Footer bereinigt: ruhiger, kompakter, bessere Kontaktspalte ===== */
.footer {
  padding: 54px 0 28px !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns:
    minmax(240px, 1.2fr) minmax(190px, 0.8fr) minmax(210px, 0.8fr) minmax(330px, 1.2fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.footer-brand p {
  max-width: 360px !important;
}

.footer h4 {
  margin-bottom: 22px !important;
}

.footer ul {
  margin: 0 !important;
  padding: 0 !important;
}

.footer li {
  margin-bottom: 14px !important;
}

.footer-contact li {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: start !important;
}

.footer-contact .label {
  white-space: nowrap !important;
}

.footer-contact a,
.footer-contact span:not(.label) {
  overflow-wrap: anywhere !important;
}

.footer-bottom {
  margin-top: 46px !important;
  padding-top: 22px !important;
}

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px !important;
  }
}

@media (max-width: 680px) {
  .footer {
    padding: 42px 0 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer-contact li {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }

  .footer-bottom {
    gap: 14px !important;
  }
}

/* ===== Footer-Bottom kompakter setzen ===== */
.footer-bottom {
  margin-top: 26px !important;
  padding-top: 18px !important;
}

.footer-contact li:last-child {
  margin-bottom: 0 !important;
}

/* ===== Footer-Bottom final enger setzen ===== */
.footer-bottom {
  margin-top: 14px !important;
  padding-top: 14px !important;
}

/* Schritt-Karten ohne Hover-Effekt, weil sie nicht verlinkt sind */
.tisch-steps-grid .card {
  pointer-events: none;
  cursor: default;
}

/* Hover-Effekt nur für die vier "Mehr erfahren"-Buttons im Produktbereich der Index-Seite */
#produkte .card-soft a.btn.btn-outline {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#produkte .card-soft a.btn.btn-outline:hover {
  background: #c94716 !important;
  color: #ffffff !important;
  border-color: #c94716 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 71, 22, 0.22);
}

/* Hover-Effekt für die FAQ-Container auf der Index-Seite */
#faq .faq-hover details {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#faq .faq-hover details:hover {
  background: #f9d8ca;
  border-color: #c94716;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 71, 22, 0.16);
}

#faq .faq-hover details:hover summary {
  color: #111111;
}

#faq .faq-hover details[open] {
  border-color: #c94716;
}

/* Hover für gezielt markierte Karten vollständig abschalten */
.no-hover-card,
.no-hover-card:hover {
  cursor: default !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Hover-Effekt für Outline-Buttons, z. B. "Probedruck mit Wasserzeichen" */
.btn.btn-outline:hover,
button.btn.btn-outline:hover,
a.btn.btn-outline:hover {
  background: #c94716 !important;
  color: #ffffff !important;
  border-color: #c94716 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 71, 22, 0.22);
  cursor: pointer;
}

/* App-Preise im Shop kleiner und ruhiger darstellen */
#app .shop-app-card h3 {
  font-size: 24px !important;
  line-height: 1.15 !important;
  white-space: nowrap;
  margin: 8px 0 10px;
}

/* Abschnittsabstand oben etwas kompakter auf allen Seiten */
.section-light,
.section-warm {
  padding-top: 56px !important;
}

@media (max-width: 760px) {

  .section-light,
  .section-warm {
    padding-top: 42px !important;
  }
}

.podcast-card {
  display: flex;
  flex-direction: column;
}

.podcast-image-link {
  display: block;
  overflow: hidden;
  background: #f3eadf;
  max-width: 300px;
  margin: 0 auto 0 0;
  border-radius: 18px;
}

.podcast-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.podcast-image-link:hover img,
.podcast-image-link:focus img {
  transform: scale(1.04);
}

.podcast-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3e6;
  color: #7a3b05;
  font-weight: 700;
  font-size: 0.95rem;
}

.headphone-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.media-grid {
  display: block;
}

.media-video-row,
.media-podcast-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.media-video-row {
  margin-bottom: 28px;
}

.media-card {
  height: 100%;
}

.video-placeholder {
  background: linear-gradient(135deg, #f8eadc, #fff8f1);
  border-bottom: 1px solid rgba(120, 80, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-inner {
  text-align: center;
  color: #7a3b05;
  font-weight: 700;
}

.video-placeholder-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #d86416;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(216, 100, 22, 0.28);
}

.media-podcast-row .podcast-image-link {
  max-width: 300px;
  margin: 24px 0 0 24px;
}

@media (max-width: 860px) {

  .media-video-row,
  .media-podcast-row {
    grid-template-columns: 1fr;
  }

  .media-podcast-row .podcast-image-link {
    max-width: 300px;
    margin: 24px auto 0;
  }
}

/* ===== Korrektur Medienbereich: Video + Making-of gleich groß ===== */

#hoeren-sehen .media-grid {
  display: block;
}

#hoeren-sehen .media-video-row,
#hoeren-sehen .media-podcast-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

#hoeren-sehen .media-video-row {
  margin-bottom: 34px;
}

#hoeren-sehen .media-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(30, 41, 59, 0.10);
  overflow: hidden;
  height: 100%;
}

#hoeren-sehen .media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3eadf;
}

#hoeren-sehen .media-frame iframe,
#hoeren-sehen .media-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

#hoeren-sehen .media-card-content {
  padding: 24px 26px 28px;
}

#hoeren-sehen .making-of-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.18);
}

#hoeren-sehen .making-of-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

#hoeren-sehen .video-placeholder-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #d86416;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

#hoeren-sehen .media-podcast-row .podcast-image-link {
  max-width: 300px;
  margin: 24px 0 0 24px;
  border-radius: 18px;
}

#hoeren-sehen .media-podcast-row .podcast-image-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 860px) {

  #hoeren-sehen .media-video-row,
  #hoeren-sehen .media-podcast-row {
    grid-template-columns: 1fr;
  }

  #hoeren-sehen .media-podcast-row .podcast-image-link {
    margin: 24px auto 0;
  }
}