/* Leistungen — service hub + service pages
   Brand-aligned with homepage: black bg, Bodoni white, gold accents.
   Shipped 2026-05-29 (v2 brand-aligned). */

.lst-page {
  color: var(--white);
  background: var(--black);
}

/* ============ HERO ============ */
.lst-hero {
  position: relative;
  padding: 180px 0 100px;
  background: radial-gradient(ellipse at 50% 30%, #2a1f00 0%, #0a0a0a 65%);
  text-align: center;
  overflow: hidden;
}

.lst-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(201,168,76,0.06) 0%, transparent 22%),
    radial-gradient(circle at 82% 70%, rgba(201,168,76,0.05) 0%, transparent 28%);
  pointer-events: none;
}

.lst-hero > .container {
  position: relative;
  z-index: 1;
}

.lst-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.lst-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin: 0 auto 28px;
  max-width: 980px;
  letter-spacing: -0.01em;
}

.lst-hero-divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto 36px;
}

.lst-lead {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  margin: 0 auto 20px;
  font-weight: 300;
}

.lst-trust {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 44px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.lst-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lst-trust span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ============ SECTIONS ============ */
.lst-section {
  position: relative;
  padding: 110px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.lst-section.alt {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
}

.lst-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  max-width: 820px;
}

.lst-section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 0;
}

.lst-section h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.lst-section p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-light);
  margin: 0 0 14px;
  max-width: 780px;
}

.lst-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.lst-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.7;
  color: var(--gray-light);
  font-size: 15px;
  font-weight: 300;
}

.lst-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* ============ DELIVERABLES GRID ============ */
.lst-deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px 48px;
  list-style: none;
  padding: 56px 0 0;
  margin: 0;
  max-width: none;
}

.lst-deliverables li {
  padding: 0;
  position: relative;
}

.lst-deliverables li::before { content: none; }

.lst-deliverables .num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  font-weight: 400;
}

.lst-deliverables h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
  line-height: 1.25;
}

.lst-deliverables p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 100%;
}

/* ============ HUB SERVICE CARDS ============ */
.lst-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.lst-service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 36px;
  transition: border-color .35s ease, transform .35s ease, background .35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lst-service-card::before {
  content: none;
}

.lst-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201,168,76,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.lst-service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.lst-service-card:hover::after { opacity: 1; }

.lst-service-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--white);
  line-height: 1.2;
}

.lst-service-card p {
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.60);
  flex-grow: 1;
}

.lst-service-card a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
}

.lst-service-card a:hover { color: var(--gold-light); }

.lst-soon {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: auto;
  align-self: flex-start;
}

/* ============ TWO-COL (passt / passt nicht) ============ */
.lst-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

@media (max-width: 720px) {
  .lst-cols { grid-template-columns: 1fr; gap: 40px; }
}

.lst-cols h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

/* ============ STEPS ============ */
.lst-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.lst-steps li {
  padding: 0;
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 28px;
}

.lst-steps li::before { content: none; }

.lst-step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}

.lst-steps h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--white);
}

.lst-steps p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-weight: 300;
}

/* ============ PRICE ============ */
.lst-price {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 52px;
  margin-top: 56px;
  max-width: 760px;
}

.lst-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 24px;
  flex-wrap: wrap;
}

.lst-price-row:first-child { padding-top: 0; }
.lst-price-row:last-child { border-bottom: 0; padding-bottom: 0; }

.lst-price-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.lst-price-value {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  white-space: nowrap;
  font-weight: 700;
}

.lst-price-note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

.lst-price-note strong { color: var(--gold); font-weight: 500; }
.lst-price-note a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); }
.lst-price-note a:hover { border-bottom-color: var(--gold); }

/* ============ CASES ============ */
.lst-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.lst-case {
  background: var(--dark2);
  border-left: 2px solid var(--gold);
  padding: 36px 36px;
}

.lst-case h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.lst-case p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 100%;
}

.lst-case strong { color: var(--white); font-weight: 500; }

/* ============ FAQ (inline, no FAQPage) ============ */
.lst-faq {
  margin-top: 48px;
  max-width: 820px;
}

.lst-faq dt {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  margin: 36px 0 14px;
  color: var(--white);
}

.lst-faq dt:first-child { margin-top: 0; }

.lst-faq dd {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  padding-left: 0;
}

/* ============ CTA ============ */
.lst-cta {
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, #2a1f00 0%, #0a0a0a 70%);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.lst-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.lst-cta > .container { position: relative; z-index: 1; }

.lst-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 700;
  margin: 0 auto 20px;
  max-width: 760px;
  color: var(--white);
  line-height: 1.15;
}

.lst-cta h2::after { content: none; }

.lst-cta p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.lst-cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ RELATED ============ */
.lst-related {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lst-related h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.lst-related ul { margin: 0; padding: 0; }

.lst-related ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

.lst-related ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 9px;
  width: auto;
  height: auto;
  background: none;
  color: var(--gold);
  font-size: 13px;
}

.lst-related a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: border-color .2s, color .2s;
}

.lst-related a:hover { border-bottom-color: var(--gold); color: var(--white); }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .lst-hero { padding: 130px 0 70px; }
  .lst-section { padding: 80px 0; }
  .lst-cta { padding: 100px 0; }
  .lst-trust { gap: 18px; font-size: 11px; letter-spacing: 1.5px; }
  .lst-price { padding: 32px 28px; }
  .lst-case { padding: 28px 28px; }
}
