/* ============================================================
   Leistungs-Unterseite
   Style-Guide: tsl-lu-* (Tonstudio-Leipzig Leistungs-Unterseite)
   Orientiert an equipment.css + ueber-mich.css
   ============================================================ */

:root {
  --tsl-lu-brand: #DC2751;
  --tsl-lu-text: #282834;
  --tsl-lu-text-soft: #555560;
  --tsl-lu-text-muted: #7c7c88;
  --tsl-lu-border: #e8e8ec;
  --tsl-lu-bg: #ffffff;
  --tsl-lu-bg-soft: #f8f8f8;
  --tsl-lu-bg-dark: #282834;
  --tsl-lu-radius-lg: 18px;
  --tsl-lu-radius-md: 12px;
  --tsl-lu-shadow: 0 1px 3px rgba(40,40,52,.06), 0 4px 16px rgba(40,40,52,.05);
  --tsl-lu-scroll-offset: 110px;
}

html {
  scroll-behavior: smooth;
}

.tsl-lu-page,
.tsl-lu-page * {
  box-sizing: border-box;
}

.tsl-lu-page {
  background: #ffffff;
  color: var(--tsl-lu-text);
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.tsl-lu-page a {
  color: var(--tsl-lu-brand);
  text-decoration: none;
}
.tsl-lu-page a:hover {
  text-decoration: underline;
}
.tsl-lu-page a:focus-visible,
.tsl-lu-page button:focus-visible {
  outline: 2px solid var(--tsl-lu-brand);
  outline-offset: 3px;
}

.tsl-lu-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

#tsl-lu-anwendung,
#tsl-lu-ablauf,
#tsl-lu-faq,
#tsl-lu-verwandt,
#tsl-lu-kontakt {
  scroll-margin-top: var(--tsl-lu-scroll-offset);
}

/* ============================================================
   HERO
   ============================================================ */
.tsl-lu-hero-band {
  background: var(--tsl-lu-bg);
  border-bottom: 1px solid var(--tsl-lu-border);
  width: 100%;
}

.tsl-lu-hero {
  padding: 72px 0 56px;
}

.tsl-lu-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.tsl-lu-hero-content {
  min-width: 0;
}

.tsl-lu-hero-image {
  position: relative;
  border-radius: var(--tsl-lu-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 1px 3px rgba(40,40,52,.08), 0 8px 32px rgba(40,40,52,.10);
}

.tsl-lu-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .tsl-lu-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tsl-lu-hero-image {
    aspect-ratio: 16 / 10;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .tsl-lu-hero-image {
    aspect-ratio: 4 / 3;
  }
}

.tsl-lu-label {
  font-family: 'Architects Daughter', cursive;
  font-size: 16px;
  color: var(--tsl-lu-brand);
  display: block;
  margin-bottom: 14px;
}

.tsl-lu-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  color: var(--tsl-lu-text);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.tsl-lu-h1 span {
  color: var(--tsl-lu-brand);
}

.tsl-lu-lead {
  font-size: 17px;
  line-height: 1.78;
  color: var(--tsl-lu-text-soft);
  max-width: 780px;
  margin-bottom: 28px;
}

/* SPRUNGNAVIGATION */
.tsl-lu-jumpnav-wrap {
  margin-top: 8px;
}

.tsl-lu-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tsl-lu-jumpnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid #d8d8de;
  background: var(--tsl-lu-bg);
  color: var(--tsl-lu-text) !important;
  text-decoration: none !important;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  white-space: nowrap;
}

.tsl-lu-jumpnav a:hover,
.tsl-lu-jumpnav a:focus-visible {
  color: var(--tsl-lu-brand) !important;
  border-color: var(--tsl-lu-brand);
  background: #fff8fa;
}

.tsl-lu-jumpnav a:active {
  transform: translateY(1px);
}

/* ============================================================
   STATS-BAR
   ============================================================ */
.tsl-lu-stats-band {
  background: var(--tsl-lu-bg-dark);
  width: 100%;
}

.tsl-lu-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tsl-lu-stat {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 280px;
  text-align: center;
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tsl-lu-stat:last-child {
  border-right: none;
}

.tsl-lu-stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #ffffff;
  line-height: 1.1;
}

.tsl-lu-stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ============================================================
   INTRO-SEKTION
   ============================================================ */
.tsl-lu-intro-band {
  background: var(--tsl-lu-bg);
  width: 100%;
}

.tsl-lu-intro {
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: start;
}

.tsl-lu-intro-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--tsl-lu-text-soft);
}

.tsl-lu-intro-text p {
  margin-bottom: 18px;
}

.tsl-lu-intro-text p:last-child {
  margin-bottom: 0;
}

.tsl-lu-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.15;
  color: var(--tsl-lu-text);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.tsl-lu-h2 span {
  color: var(--tsl-lu-brand);
}

.tsl-lu-intro-aside {
  background: var(--tsl-lu-bg-soft);
  border-left: 3px solid var(--tsl-lu-brand);
  border-radius: 0 var(--tsl-lu-radius-md) var(--tsl-lu-radius-md) 0;
  padding: 28px 30px;
}

.tsl-lu-intro-aside-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--tsl-lu-brand);
  margin-bottom: 12px;
}

.tsl-lu-intro-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tsl-lu-intro-aside li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--tsl-lu-text);
  padding: 9px 0;
  border-bottom: 1px solid var(--tsl-lu-border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tsl-lu-intro-aside li:last-child {
  border-bottom: none;
}

.tsl-lu-intro-aside li::before {
  content: '✓';
  color: var(--tsl-lu-brand);
  font-weight: 900;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   QUALITÄTSKRITERIEN (gleiche Optik wie Anwendungsfälle)
   ============================================================ */
.tsl-lu-quality-band {
  background: var(--tsl-lu-bg);
  border-top: 1px solid var(--tsl-lu-border);
  width: 100%;
}

.tsl-lu-quality {
  padding: 72px 0;
}

/* 3-Spalten-Grid für Qualitätskriterien (3 Cards = 1 Reihe à 3) */
.tsl-lu-grid-3col {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 980px) {
  .tsl-lu-grid-3col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .tsl-lu-quality {
    padding: 48px 0;
  }
}

/* ============================================================
   ANWENDUNGSFÄLLE / SUB-LEISTUNGEN
   ============================================================ */
.tsl-lu-anwendung-band {
  background: var(--tsl-lu-bg-soft);
  width: 100%;
}

.tsl-lu-anwendung {
  padding: 72px 0;
}

.tsl-lu-section-header {
  margin-bottom: 44px;
  max-width: 760px;
}

.tsl-lu-section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--tsl-lu-text-muted);
  margin-bottom: 0;
}

.tsl-lu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.tsl-lu-card {
  background: var(--tsl-lu-bg);
  border: 1px solid var(--tsl-lu-border);
  border-radius: var(--tsl-lu-radius-md);
  padding: 28px 26px;
  border-top: 3px solid transparent;
  transition: border-top-color .22s, box-shadow .22s, transform .22s;
}

.tsl-lu-card:hover {
  border-top-color: var(--tsl-lu-brand);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.tsl-lu-card-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tsl-lu-brand);
  display: block;
  margin-bottom: 10px;
}

.tsl-lu-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--tsl-lu-text);
  margin-bottom: 12px;
}

.tsl-lu-card-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--tsl-lu-text-soft);
}

/* ============================================================
   BRANCHEN & EINSATZBEREICHE (Pills-Layout)
   ============================================================ */
.tsl-lu-branchen-band {
  background: var(--tsl-lu-bg);
  border-top: 1px solid var(--tsl-lu-border);
  width: 100%;
}

.tsl-lu-branchen {
  padding: 72px 0;
}

.tsl-lu-branchen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tsl-lu-branche {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--tsl-lu-text);
  background: var(--tsl-lu-bg-soft);
  border: 1px solid var(--tsl-lu-border);
  border-radius: 999px;
  padding: 10px 18px;
  transition: border-color .2s, color .2s, background .2s;
}

.tsl-lu-branche:hover {
  border-color: var(--tsl-lu-brand);
  color: var(--tsl-lu-brand);
  background: #fff8fa;
}

.tsl-lu-branchen-note {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--tsl-lu-text-muted);
  font-style: italic;
  max-width: 760px;
  margin: 0;
}

@media (max-width: 640px) {
  .tsl-lu-branchen {
    padding: 48px 0;
  }
  .tsl-lu-branche {
    font-size: 12.5px;
    padding: 8px 14px;
  }
}

/* ============================================================
   EQUIPMENT (dunkler Background, light-Varianten von Section-Header)
   ============================================================ */
.tsl-lu-equipment-band {
  background: var(--tsl-lu-bg-dark);
  width: 100%;
}

.tsl-lu-equipment {
  padding: 72px 0;
}

.tsl-lu-label-light {
  color: #ff6b89 !important;
}

.tsl-lu-h2-light {
  color: #ffffff !important;
}

.tsl-lu-h2-light span {
  color: #ff6b89 !important;
}

.tsl-lu-section-sub-light {
  color: rgba(255,255,255,.72) !important;
}

.tsl-lu-equipment-banner {
  margin: 0 0 36px;
  border-radius: var(--tsl-lu-radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid rgba(255,255,255,.1);
}

.tsl-lu-equipment-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (max-width: 640px) {
  .tsl-lu-equipment-banner {
    aspect-ratio: 16 / 9;
    margin-bottom: 28px;
  }
}

.tsl-lu-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.tsl-lu-equipment-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tsl-lu-radius-md);
  padding: 28px 28px;
  border-left: 3px solid var(--tsl-lu-brand);
}

.tsl-lu-equipment-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ff6b89;
  margin-bottom: 10px;
}

.tsl-lu-equipment-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 12px;
}

.tsl-lu-equipment-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.tsl-lu-equipment-cta {
  text-align: center;
}

@media (max-width: 980px) {
  .tsl-lu-equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tsl-lu-equipment {
    padding: 48px 0;
  }
}

/* ============================================================
   ABLAUF
   ============================================================ */
.tsl-lu-ablauf-band {
  background: var(--tsl-lu-bg);
  width: 100%;
}

.tsl-lu-ablauf {
  padding: 72px 0;
}

.tsl-lu-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--tsl-lu-bg-dark);
  border-radius: var(--tsl-lu-radius-md);
  overflow: hidden;
  background: var(--tsl-lu-bg-dark);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tsl-lu-step {
  background: var(--tsl-lu-bg-dark);
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .2s;
}

.tsl-lu-step:last-child {
  border-right: none;
}

.tsl-lu-step:hover {
  background: #32323f;
}

.tsl-lu-step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tsl-lu-brand);
  margin-bottom: 12px;
  display: block;
}

.tsl-lu-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tsl-lu-step-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ============================================================
   WARUM TONSTUDIO LEIPZIG (USP-Sektion)
   ============================================================ */
.tsl-lu-warum-band {
  background: var(--tsl-lu-bg);
  border-top: 1px solid var(--tsl-lu-border);
  width: 100%;
}

.tsl-lu-warum {
  padding: 72px 0;
}

.tsl-lu-warum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.tsl-lu-warum-aside {
  position: sticky;
  top: 100px;
}

.tsl-lu-warum-portrait {
  border-radius: var(--tsl-lu-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(40,40,52,.06), 0 6px 20px rgba(40,40,52,.08);
}

.tsl-lu-warum-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tsl-lu-warum-aside-text .tsl-lu-section-sub {
  margin-bottom: 0;
}

.tsl-lu-warum-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (max-width: 980px) {
  .tsl-lu-warum-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tsl-lu-warum-aside {
    position: static;
  }
  .tsl-lu-warum-portrait {
    aspect-ratio: 16 / 10;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .tsl-lu-warum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .tsl-lu-warum-portrait {
    aspect-ratio: 4 / 3;
  }
  .tsl-lu-warum-grid {
    grid-template-columns: 1fr;
  }
}

.tsl-lu-warum-card {
  background: var(--tsl-lu-bg-soft);
  border: 1px solid var(--tsl-lu-border);
  border-radius: var(--tsl-lu-radius-md);
  padding: 32px 30px;
  position: relative;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}

.tsl-lu-warum-card:hover {
  border-color: var(--tsl-lu-brand);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.tsl-lu-warum-icon {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--tsl-lu-brand);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.tsl-lu-warum-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--tsl-lu-text);
  margin-bottom: 12px;
}

.tsl-lu-warum-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--tsl-lu-text-soft);
  margin: 0;
}



@media (max-width: 640px) {
  .tsl-lu-warum {
    padding: 48px 0;
  }
  .tsl-lu-warum-card {
    padding: 26px 22px;
  }
  .tsl-lu-warum-icon {
    font-size: 28px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.tsl-lu-faq-band {
  background: var(--tsl-lu-bg-soft);
  width: 100%;
}

.tsl-lu-faq {
  padding: 72px 0;
}

.tsl-lu-faq-item {
  background: var(--tsl-lu-bg);
  border: 1px solid var(--tsl-lu-border);
  border-radius: var(--tsl-lu-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.tsl-lu-faq-q {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--tsl-lu-text);
  transition: color .2s;
}

.tsl-lu-faq-q:hover,
.tsl-lu-faq-q:focus-visible {
  color: var(--tsl-lu-brand);
}

.tsl-lu-faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--tsl-lu-brand);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}

.tsl-lu-faq-item.is-open .tsl-lu-faq-q::after {
  transform: rotate(45deg);
}

.tsl-lu-faq-a {
  display: none;
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--tsl-lu-text-soft);
}

.tsl-lu-faq-a p {
  margin-bottom: 12px;
}

.tsl-lu-faq-a p:last-child {
  margin-bottom: 0;
}

.tsl-lu-faq-item.is-open .tsl-lu-faq-a {
  display: block;
}

/* ============================================================
   VERWANDTE LEISTUNGEN
   ============================================================ */
.tsl-lu-related-band {
  background: var(--tsl-lu-bg);
  width: 100%;
}

.tsl-lu-related {
  padding: 72px 0;
}

.tsl-lu-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.tsl-lu-related-card {
  background: var(--tsl-lu-bg);
  border: 1px solid var(--tsl-lu-border);
  border-radius: var(--tsl-lu-radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  transition: border-color .2s, box-shadow .22s, transform .22s;
}

.tsl-lu-related-card:hover {
  border-color: var(--tsl-lu-brand);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
  text-decoration: none !important;
}

.tsl-lu-related-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tsl-lu-brand);
  margin-bottom: 10px;
}

.tsl-lu-related-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--tsl-lu-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tsl-lu-related-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tsl-lu-text-soft);
  margin-bottom: 16px;
  flex: 1;
}

.tsl-lu-related-arrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--tsl-lu-brand);
  margin-top: auto;
}

.tsl-lu-related-overview {
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tsl-lu-btn-primary,
.tsl-lu-btn-ghost,
.tsl-lu-btn-white,
.tsl-lu-btn-white-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 32px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  padding: 16px 36px;
  text-decoration: none !important;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.tsl-lu-btn-primary {
  background: var(--tsl-lu-brand);
  color: #ffffff !important;
  border-color: var(--tsl-lu-brand);
}
.tsl-lu-btn-primary:hover {
  background: transparent;
  color: var(--tsl-lu-brand) !important;
  transform: translateY(-1px);
}

.tsl-lu-btn-ghost {
  background: transparent;
  color: var(--tsl-lu-text) !important;
  border-color: var(--tsl-lu-border);
}
.tsl-lu-btn-ghost:hover {
  border-color: var(--tsl-lu-brand);
  color: var(--tsl-lu-brand) !important;
  background: #fff8fa;
  transform: translateY(-1px);
}

.tsl-lu-btn-white {
  background: #ffffff;
  color: var(--tsl-lu-brand) !important;
  border-color: #ffffff;
}
.tsl-lu-btn-white:hover {
  background: transparent;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.tsl-lu-btn-white-ghost {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.6);
}
.tsl-lu-btn-white-ghost:hover {
  background: #ffffff;
  color: var(--tsl-lu-brand) !important;
  transform: translateY(-1px);
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.tsl-lu-cta-band {
  background: var(--tsl-lu-brand);
  width: 100%;
}

.tsl-lu-cta {
  padding: 72px 0;
  text-align: center;
}

.tsl-lu-cta-eyebrow {
  font-family: 'Architects Daughter', cursive;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  display: block;
  margin-bottom: 14px;
}

.tsl-lu-cta-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.5vw, 40px);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tsl-lu-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.tsl-lu-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tsl-lu-cta-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.tsl-lu-cta-trust li {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tsl-lu-cta-trust li::before {
  content: '✓';
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .tsl-lu-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .tsl-lu-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tsl-lu-steps {
    grid-template-columns: 1fr 1fr;
  }
  .tsl-lu-step:nth-child(2) {
    border-right: none;
  }
  .tsl-lu-step:nth-child(1),
  .tsl-lu-step:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .tsl-lu-related-grid {
    grid-template-columns: 1fr;
  }
  .tsl-lu-stat {
    min-width: 50%;
  }
}

@media (max-width: 640px) {
  .tsl-lu-inner {
    padding: 0 16px;
  }
  .tsl-lu-hero,
  .tsl-lu-intro,
  .tsl-lu-anwendung,
  .tsl-lu-ablauf,
  .tsl-lu-faq,
  .tsl-lu-related,
  .tsl-lu-cta {
    padding: 48px 0;
  }
  .tsl-lu-steps {
    grid-template-columns: 1fr;
  }
  .tsl-lu-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .tsl-lu-step:last-child {
    border-bottom: none;
  }
  .tsl-lu-stat {
    min-width: 50%;
    flex: 0 0 50%;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .tsl-lu-stat:nth-child(2n) {
    border-right: none;
  }
  .tsl-lu-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .tsl-lu-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .tsl-lu-btn-primary,
  .tsl-lu-btn-ghost,
  .tsl-lu-btn-white,
  .tsl-lu-btn-white-ghost {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px;
    font-size: 12px;
  }
  .tsl-lu-jumpnav a {
    font-size: 10.5px;
    padding: 8px 14px;
    min-height: 36px;
  }
  .tsl-lu-faq-q {
    padding: 18px 20px;
    font-size: 14.5px;
  }
  .tsl-lu-faq-a {
    padding: 0 20px 18px;
  }
}

/* Hero-Konsistenz mit anderen Seiten — alle Endgeräte einheitlich */
.tsl-lu-hero-band {
  padding-top: 0;
}

.tsl-lu-hero-content {
  padding-top: 0;
}

.tsl-lu-label {
  display: block;
  margin: 0 0 16px;
}

.tsl-lu-h1 {
  margin: 0 0 22px;
}

/* Smartphone: identisch zu Kontakt/FAQ/Über-mich (38px / 32px) */
@media (max-width: 560px) {
  .tsl-lu-hero {
    padding: 38px 0 32px !important;
  }
}

/* Tablet/Mobile-mittel: weicher Übergang */
@media (max-width: 640px) and (min-width: 561px) {
  .tsl-lu-hero {
    padding: 48px 0 32px !important;
  }
}


/* Profi-Bildintegration */
img {
  border-radius: 12px;
  filter: contrast(1.08) saturate(0.92) brightness(1.02);
  box-shadow: 0 0 80px 20px rgba(40, 40, 52, 0.6);
}
section[style*="ffffff"] img,
section[style*="fafafb"] img,
section[style*="f4f4f6"] img,
.fg-light img,
.fg-bg-light img,
[class*="white"] img,
[class*="-light"] img {
  box-shadow: 0 0 80px 20px rgba(220, 220, 230, 0.7);
}


