/*
 * ═══════════════════════════════════════════════════════════════
 *  LM Websolution — Premium Landing Page
 *  landing.css — All lp-* classes, isolated from shared style.css
 * ═══════════════════════════════════════════════════════════════
 */

/* ── Custom Properties ───────────────────────────────────────── */
:root {
  --lp-white:   #FAFAF8;
  --lp-black:   #0A0A0A;
  --lp-indigo:  #0D1B4B;
  --lp-navy:    #0F1F44;
  --lp-blue:    #2B6FFF;
  --lp-teal:    #29C4D4;
  --lp-gray:    #F0EFEB;
  --lp-border:  rgba(10,10,10,0.08);
  --lp-muted:   rgba(10,10,10,0.45);
  --lp-ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --lp-ease-in: cubic-bezier(0.4, 0, 1, 1);
  --lp-shadow:  0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --lp-shadow-up: 0 4px 20px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.06);
  --lp-max: 1200px;
}

/* ── Base adjustments for landing page ──────────────────────── */
body {
  background: var(--lp-white);
  color: var(--lp-black);
  padding-top: 0; /* header is transparent over hero, no clearance needed */
}

/* ── Shared layout ───────────────────────────────────────────── */
.lp-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 640px) {
  .lp-inner { padding: 0 24px; }
}

/* ── Scroll reveal base ──────────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}
.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-reveal-d1 { transition-delay: 0.1s; }
.lp-reveal-d2 { transition-delay: 0.2s; }
.lp-reveal-d3 { transition-delay: 0.3s; }
.lp-reveal-d4 { transition-delay: 0.4s; }
.lp-reveal-d5 { transition-delay: 0.5s; }

/* ── Shared section labels ───────────────────────────────────── */
.lp-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp-label--light {
  color: rgba(255,255,255,0.45);
}

.lp-label--teal {
  color: var(--lp-teal);
}

/* ── Shared heading ──────────────────────────────────────────── */
.lp-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--lp-black);
}

.lp-h2--white { color: #ffffff; }
.lp-h2--center { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   1. HERO — Full-screen image carousel (Squarespace-style)
   ══════════════════════════════════════════════════════════════ */

#lp-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* ── Background slides ── */
.lp-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.lp-slide--active { opacity: 1; }

.lp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.lp-slide--active img { transform: scale(1); }

/* ── Dark gradient overlay for text readability ── */
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.18) 0%,
    rgba(10,10,10,0.06) 25%,
    rgba(10,10,10,0.42) 60%,
    rgba(10,10,10,0.84) 100%
  );
}

/* ── Content anchored to bottom ── */
.lp-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 108px;
}

/* ── Eyebrow label ── */
.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  animation: lp-rise 0.9s var(--lp-ease) both;
  animation-delay: 0.1s;
}

.lp-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ── Main headline ── */
.lp-hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(46px, 7.5vw, 108px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: #ffffff;
  margin-bottom: 24px;
  animation: lp-rise 0.9s var(--lp-ease) both;
  animation-delay: 0.2s;
}

.lp-hero-h1 em {
  font-style: normal;
  color: #ffffff;
}

/* ── Subline ── */
.lp-hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.22);
  animation: lp-rise 0.9s var(--lp-ease) both;
  animation-delay: 0.32s;
}

/* ── CTA row ── */
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: lp-rise 0.9s var(--lp-ease) both;
  animation-delay: 0.44s;
}

/* ── Shared buttons ── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--lp-black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
  letter-spacing: -0.01em;
}

.lp-btn-primary:hover {
  background: var(--lp-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,111,255,0.35);
}

/* Primary on light backgrounds */
.lp-btn-primary--dark {
  background: var(--lp-black);
  color: #ffffff;
}

.lp-btn-primary--dark:hover {
  background: var(--lp-blue);
  color: #ffffff;
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
  letter-spacing: -0.01em;
}

.lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

/* ── Slide dots navigation ── */
.lp-hero-dots {
  position: absolute;
  bottom: 44px;
  right: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.32);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}

.lp-dot--active {
  background: #ffffff;
  width: 22px;
}

/* ── Slide category label ── */
.lp-slide-label {
  position: absolute;
  bottom: 50px;
  left: 48px;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.42);
  transition: opacity 0.5s ease;
}

/* ── Scroll hint line ── */
.lp-scroll-hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 12px;
}

.lp-scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: lp-scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-scroll-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════════
   2. TRUST BAND
   ══════════════════════════════════════════════════════════════ */

#lp-trust {
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

/* Fade masks */
#lp-trust::before,
#lp-trust::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
#lp-trust::before {
  left: 0;
  background: linear-gradient(90deg, var(--lp-white), transparent);
}
#lp-trust::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--lp-white));
}

.lp-trust-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: lp-marquee 35s linear infinite;
}

.lp-trust-item {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(10,10,10,0.45);
  padding: 0 28px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-trust-item::after {
  content: none;
}

@keyframes lp-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   3. PROBLEM
   ══════════════════════════════════════════════════════════════ */

#lp-problem {
  background: var(--lp-white);
  padding: 140px 0;
}

.lp-problem-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.lp-problem-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-muted);
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Mockup card base */
.lp-mockup-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--lp-shadow);
  transition: transform 0.28s var(--lp-ease), box-shadow 0.28s var(--lp-ease);
  cursor: default;
}

.lp-mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lp-shadow-up);
}

/* Browser chrome bar */
.lp-chrome {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  flex-shrink: 0;
}

.lp-chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-chrome-url {
  flex: 1;
  height: 18px;
  border-radius: 4px;
  margin: 0 8px;
}

/* ── Before (old) ── */
.lp-mockup-card--before .lp-chrome {
  background: #D1D0CB;
}
.lp-mockup-card--before .lp-chrome-dot:nth-child(1) { background: #E8594A; }
.lp-mockup-card--before .lp-chrome-dot:nth-child(2) { background: #F4BF4F; }
.lp-mockup-card--before .lp-chrome-dot:nth-child(3) { background: #5ABD4A; }
.lp-mockup-card--before .lp-chrome-url { background: rgba(0,0,0,0.12); }

.lp-mockup-before-body {
  background: #E8E6E0;
  padding: 16px;
  min-height: 220px;
}

.lp-old-nav {
  background: #4A6FA5;
  height: 30px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-old-nav-dot {
  width: 40px;
  height: 6px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}

.lp-old-hero {
  background: #B8C0D0;
  height: 60px;
  border-radius: 3px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 6px;
}

.lp-old-hero-line {
  height: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}

.lp-old-content {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-old-block {
  background: #C8C4BA;
  border-radius: 3px;
  flex: 1;
  padding: 6px;
}

.lp-old-block-line {
  height: 5px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  margin-bottom: 4px;
}

.lp-old-footer {
  background: #4A6FA5;
  height: 20px;
  border-radius: 3px;
  margin-top: 8px;
}

/* ── After (new) ── */
.lp-mockup-card--after .lp-chrome {
  background: #F3F4F6;
}
.lp-mockup-card--after .lp-chrome-dot:nth-child(1) { background: #FF5F57; }
.lp-mockup-card--after .lp-chrome-dot:nth-child(2) { background: #FFBD2E; }
.lp-mockup-card--after .lp-chrome-dot:nth-child(3) { background: #28C840; }
.lp-mockup-card--after .lp-chrome-url { background: rgba(10,10,10,0.06); }

.lp-mockup-after-body {
  background: #FFFFFF;
  padding: 16px;
  min-height: 220px;
}

.lp-new-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lp-new-nav-logo {
  width: 40px;
  height: 8px;
  background: var(--lp-navy);
  border-radius: 4px;
}

.lp-new-nav-links {
  display: flex;
  gap: 6px;
}

.lp-new-nav-link {
  width: 24px;
  height: 6px;
  background: rgba(10,10,10,0.15);
  border-radius: 3px;
}

.lp-new-nav-cta {
  width: 44px;
  height: 16px;
  background: var(--lp-blue);
  border-radius: 4px;
}

.lp-new-hero {
  background: linear-gradient(135deg, rgba(43,111,255,0.08), rgba(41,196,212,0.06));
  border-radius: 8px;
  padding: 20px 14px;
  margin-bottom: 12px;
}

.lp-new-hero-h {
  height: 12px;
  width: 70%;
  background: var(--lp-navy);
  border-radius: 6px;
  margin-bottom: 8px;
}

.lp-new-hero-s {
  height: 7px;
  width: 50%;
  background: rgba(10,10,10,0.2);
  border-radius: 4px;
  margin-bottom: 14px;
}

.lp-new-hero-btn {
  width: 60px;
  height: 18px;
  background: var(--lp-blue);
  border-radius: 5px;
}

.lp-new-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
}

.lp-new-card {
  background: #F3F4F6;
  border-radius: 6px;
  height: 36px;
  border: 1px solid rgba(10,10,10,0.07);
}

/* Labels under mockups */
.lp-compare-label {
  padding: 18px 20px;
  background: #ffffff;
}

.lp-compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.lp-compare-badge--before {
  background: rgba(239,68,68,0.1);
  color: #DC2626;
}

.lp-compare-badge--after {
  background: rgba(34,197,94,0.12);
  color: #16A34A;
}

.lp-compare-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-compare-point {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-compare-point--neg { color: #DC2626; }
.lp-compare-point--pos { color: #16A34A; }

/* ══════════════════════════════════════════════════════════════
   4. SERVICES — Was wir anbieten
   ══════════════════════════════════════════════════════════════ */

#lp-services {
  background: var(--lp-white);
  padding: 140px 0;
  border-top: 1px solid var(--lp-border);
}

/* ── Split header ─────────────────────────────────────────────── */
.lp-svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 72px;
}

.lp-svc-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--lp-muted);
  max-width: 380px;
}

/* ── Editorial list ───────────────────────────────────────────── */
.lp-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--lp-border);
}

.lp-svc-item {
  border-bottom: 1px solid var(--lp-border);
}

.lp-svc-link {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.lp-svc-link:focus-visible {
  outline: 2px solid var(--lp-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

.lp-svc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.22);
  transition: color 0.22s var(--lp-ease);
}

.lp-svc-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--lp-black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  transition: color 0.22s var(--lp-ease);
}

.lp-svc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 520px;
}

.lp-svc-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(10, 10, 10, 0.16);
  transition: color 0.22s var(--lp-ease), transform 0.22s var(--lp-ease);
}

.lp-svc-link:hover .lp-svc-num   { color: var(--lp-blue); }
.lp-svc-link:hover .lp-svc-title { color: var(--lp-navy); }
.lp-svc-link:hover .lp-svc-arrow {
  color: var(--lp-navy);
  transform: translateX(6px);
}

/* ── Footer CTA ───────────────────────────────────────────────── */
.lp-svc-footer { margin-top: 52px; }

/* ══════════════════════════════════════════════════════════════
   5. PORTFOLIO
   ══════════════════════════════════════════════════════════════ */

#lp-portfolio {
  background: var(--lp-white);
  padding: 140px 0;
  border-top: 1px solid var(--lp-border);
}

.lp-portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

/* Filter buttons */
.lp-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--lp-border);
  background: transparent;
  color: var(--lp-muted);
  cursor: pointer;
  transition: all 0.2s var(--lp-ease);
  letter-spacing: -0.01em;
}

.lp-filter-btn:hover {
  border-color: rgba(10,10,10,0.25);
  color: var(--lp-black);
}

.lp-filter-btn.lp-active {
  background: var(--lp-navy);
  border-color: var(--lp-navy);
  color: #ffffff;
}

/* Grid */
.lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--lp-shadow);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-portfolio-card.lp-hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  display: none;
}

/* Image area */
.lp-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--lp-ease);
}

.lp-portfolio-card:hover .lp-card-img-wrap img {
  transform: scale(1.05);
}

/* Hover overlay */
.lp-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.58);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--lp-ease);
}

.lp-portfolio-card:hover .lp-card-overlay {
  opacity: 1;
}

.lp-card-overlay-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-teal);
  margin-bottom: 6px;
  transform: translateY(12px);
  transition: transform 0.35s var(--lp-ease);
}

.lp-card-overlay-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  transform: translateY(12px);
  transition: transform 0.35s var(--lp-ease) 0.04s;
}

.lp-portfolio-card:hover .lp-card-overlay-cat,
.lp-portfolio-card:hover .lp-card-overlay-name,
.lp-portfolio-card:hover .lp-card-overlay-link {
  transform: translateY(0);
}

.lp-card-overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transform: translateY(12px);
  transition: transform 0.35s var(--lp-ease) 0.08s, color 0.2s;
}

.lp-card-overlay-link:hover { color: #ffffff; }

/* Card bottom info */
.lp-card-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-card-cat-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-muted);
  background: rgba(10,10,10,0.05);
  padding: 4px 10px;
  border-radius: 100px;
}

.lp-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-black);
}

/* ══════════════════════════════════════════════════════════════
   6. SERVICES
   ══════════════════════════════════════════════════════════════ */

#lp-services {
  background: var(--lp-white);
  padding: 140px 0;
  border-top: 1px solid var(--lp-border);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lp-services-left {
  position: sticky;
  top: 120px;
}

.lp-services-sub {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 340px;
}

.lp-service-list {
  list-style: none;
}

.lp-service-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  border-bottom: 1px solid var(--lp-border);
  border-radius: 8px;
  cursor: default;
  transition: background 0.2s var(--lp-ease);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.55s var(--lp-ease), transform 0.55s var(--lp-ease), background 0.2s;
}

.lp-service-row.lp-visible {
  opacity: 1;
  transform: translateX(0);
}

.lp-service-row:hover {
  background: rgba(10,10,10,0.03);
}

.lp-service-row:hover .lp-service-arrow {
  transform: translateX(5px);
}

.lp-service-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  min-width: 28px;
  font-variant-numeric: tabular-nums;
}

.lp-service-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--lp-black);
  letter-spacing: -0.02em;
  flex: 1;
}

.lp-service-arrow {
  font-size: 18px;
  color: var(--lp-muted);
  transition: transform 0.2s var(--lp-ease), color 0.2s;
}

.lp-service-row:hover .lp-service-arrow {
  color: var(--lp-blue);
}

/* ══════════════════════════════════════════════════════════════
   7. PRICING
   ══════════════════════════════════════════════════════════════ */

#lp-pricing {
  background: var(--lp-white);
  padding: 140px 0;
  border-top: 1px solid var(--lp-border);
}

.lp-pricing-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.lp-price-card {
  border-radius: 16px;
  padding: 36px 32px;
  border: 1.5px solid var(--lp-border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.28s var(--lp-ease), box-shadow 0.28s var(--lp-ease);
  position: relative;
}

.lp-price-card:hover:not(.lp-price-card--featured) {
  transform: translateY(-8px);
  box-shadow: var(--lp-shadow-up);
}

.lp-price-card--featured {
  background: var(--lp-black);
  border-color: var(--lp-black);
  transform: scale(1.025);
  box-shadow: 0 8px 48px rgba(10,10,10,0.18);
}

.lp-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(43,111,255,0.12);
  color: var(--lp-blue);
  padding: 5px 12px;
  border-radius: 100px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.lp-price-name {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-muted);
  margin-bottom: 20px;
}

.lp-price-card--featured .lp-price-name {
  color: rgba(255,255,255,0.4);
}

.lp-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-black);
  line-height: 1;
  margin-bottom: 4px;
}

.lp-price-card--featured .lp-price-amount {
  color: #ffffff;
}

.lp-price-amount sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.lp-price-period {
  font-size: 13px;
  color: var(--lp-muted);
  margin-bottom: 28px;
}

.lp-price-card--featured .lp-price-period {
  color: rgba(255,255,255,0.4);
}

.lp-price-divider {
  height: 1px;
  background: var(--lp-border);
  margin-bottom: 24px;
}

.lp-price-card--featured .lp-price-divider {
  background: rgba(255,255,255,0.1);
}

.lp-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.lp-price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(10,10,10,0.7);
  line-height: 1.4;
}

.lp-price-card--featured .lp-price-feature {
  color: rgba(255,255,255,0.65);
}

.lp-price-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #16A34A;
}

.lp-price-card--featured .lp-price-feature-check {
  background: rgba(41,196,212,0.15);
  color: var(--lp-teal);
}

.lp-price-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.22s var(--lp-ease);
  border: 1.5px solid var(--lp-border);
  color: var(--lp-black);
  text-decoration: none;
}

.lp-price-cta:hover {
  background: var(--lp-navy);
  border-color: var(--lp-navy);
  color: #ffffff;
}

.lp-price-card--featured .lp-price-cta {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--lp-black);
}

.lp-price-card--featured .lp-price-cta:hover {
  background: var(--lp-blue);
  border-color: var(--lp-blue);
  color: #ffffff;
}

.lp-pricing-note {
  margin-top: 36px;
  text-align: center;
  font-size: 15px;
  color: var(--lp-muted);
}

.lp-pricing-note a {
  color: var(--lp-blue);
  font-weight: 600;
  text-decoration: none;
}

.lp-pricing-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   8. PROCESS — Sticky scroll cards
   ══════════════════════════════════════════════════════════════ */

#lp-process {
  background: var(--lp-white);
  padding: 120px 0 200px;
  border-top: 1px solid var(--lp-border);
}

.lp-process-header {
  max-width: 560px;
  margin-bottom: 72px;
}

/* ── Sticky stack container ─────────────────────────────── */
.lp-sticky-stack {
  display: flex;
  flex-direction: column;
}

/* ── Individual sticky card ─────────────────────────────── */
.lp-sc {
  position: sticky;
  top: calc(var(--nav-h, 72px) + 20px);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

/* Stacking order — later cards paint over earlier ones */
.lp-sc--1 { z-index: 1; background: #ffffff; }
.lp-sc--2 { z-index: 2; background: #eef2ff; }
.lp-sc--3 { z-index: 3; background: #ffffff; }
.lp-sc--4 { z-index: 4; background: #eef2ff; }
.lp-sc--5 { z-index: 5; background: var(--lp-navy); border-color: transparent; }

/* Last card needs no bottom margin */
.lp-sc:last-child { margin-bottom: 0; }

/* ── Card body (2-column grid) ──────────────────────────── */
.lp-sc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  height: 480px;
}

/* ── Text column ────────────────────────────────────────── */
.lp-sc-text {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-sc-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-blue);
  background: rgba(43, 111, 255, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.lp-sc-num--light {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.lp-sc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--lp-black);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lp-sc-title--light { color: #ffffff; }

.lp-sc-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-muted);
  max-width: 380px;
}

.lp-sc-desc--light { color: rgba(255, 255, 255, 0.55); }

.lp-sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  background: #ffffff;
  color: var(--lp-navy);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, gap 0.2s;
}

.lp-sc-cta:hover {
  background: var(--lp-blue);
  color: #ffffff;
  gap: 10px;
}

/* ── Image column ───────────────────────────────────────── */
.lp-sc-img-wrap {
  height: 100%;
  overflow: hidden;
}

.lp-sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lp-sc:hover .lp-sc-img-wrap img {
  transform: scale(1.03);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  #lp-process { padding-bottom: 120px; }

  .lp-sc {
    position: relative;
    top: auto;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .lp-sc-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lp-sc-img-wrap {
    min-height: 220px;
    order: -1;
  }

  .lp-sc-text {
    padding: 32px 28px 36px;
  }

  .lp-sc-title { font-size: 24px; }
  .lp-sc-desc  { font-size: 14px; }
}

@media (max-width: 480px) {
  .lp-sc-text { padding: 24px 20px 28px; }
  .lp-sc-img-wrap { min-height: 180px; }
}

/* ══════════════════════════════════════════════════════════════
   9. WHY US
   ══════════════════════════════════════════════════════════════ */

#lp-why {
  background: var(--lp-white);
  padding: 140px 0;
  border-top: 1px solid var(--lp-border);
}

.lp-why-title-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.lp-why-item {
  padding: 36px 32px 36px 0;
  border-top: 1px solid var(--lp-border);
}

/* Right border on first column per row */
.lp-why-item:nth-child(2n+1) {
  padding-right: 40px;
  border-right: 1px solid var(--lp-border);
}

.lp-why-item:nth-child(2n+2) {
  padding-left: 40px;
}

.lp-why-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-teal);
  margin-bottom: 14px;
}

.lp-why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-black);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.lp-why-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* ══════════════════════════════════════════════════════════════
   10. FINAL CTA
   ══════════════════════════════════════════════════════════════ */

#lp-cta {
  background: var(--lp-indigo);
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accents */
#lp-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(43,111,255,0.2) 0%, transparent 65%);
  pointer-events: none;
}

#lp-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(41,196,212,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.lp-cta-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 24px;
}

.lp-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

/* Pulse button */
.lp-btn-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--lp-indigo);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  animation: lp-pulse 2.8s ease-in-out infinite;
  transition: background 0.22s, color 0.22s, transform 0.22s, animation 0.1s;
}

.lp-btn-pulse:hover {
  background: var(--lp-blue);
  color: #ffffff;
  animation: none;
  transform: scale(1.03);
}

@keyframes lp-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(255,255,255,0);
    transform: scale(1.01);
  }
}

.lp-cta-contact {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

.lp-cta-contact a {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-decoration: none;
}

.lp-cta-contact a:hover { color: #ffffff; }

/* ══════════════════════════════════════════════════════════════
   FEATURE SPLIT — Image left, USP text right
   ══════════════════════════════════════════════════════════════ */

#lp-feature {
  background: var(--lp-white);
  overflow: hidden;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.lp-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.lp-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--lp-ease);
}

.lp-feature-img:hover img { transform: scale(1.03); }

.lp-feature-text {
  padding: 80px 80px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-feature-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--lp-black);
}

.lp-feature-check {
  color: var(--lp-blue);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS — Horizontal slider
   ══════════════════════════════════════════════════════════════ */

#lp-testimonials {
  background: var(--lp-gray);
  padding: 120px 0;
}

.lp-testimonials-header {
  margin-bottom: 56px;
}

.lp-testimonials-track {
  position: relative;
  min-height: 240px;
}

.lp-testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease);
  pointer-events: none;
}

.lp-testimonial--active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.lp-testimonial--exit {
  opacity: 0;
  transform: translateX(-32px);
}

.lp-testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--lp-black);
  margin: 0 0 36px;
  max-width: 880px;
  quotes: "„" """ "‚" "'";
}

.lp-testimonial-quote::before { content: open-quote; }
.lp-testimonial-quote::after  { content: close-quote; }

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.lp-testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-black);
  margin: 0;
}

.lp-testimonial-biz {
  font-size: 13px;
  color: var(--lp-muted);
  margin: 3px 0 0;
}

.lp-testimonials-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.lp-t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--lp-black);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.lp-t-btn:hover {
  border-color: var(--lp-black);
  background: var(--lp-black);
  color: #ffffff;
  transform: scale(1.05);
}

.lp-t-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-t-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(10,10,10,0.14);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}

.lp-t-dot--active {
  background: var(--lp-black);
  width: 20px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ — Sticky left label + accordion right
   ══════════════════════════════════════════════════════════════ */

#lp-faq {
  background: var(--lp-white);
  padding: 140px 0;
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.lp-faq-left {
  position: sticky;
  top: 100px;
}

.lp-faq-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 16px 0 28px;
  max-width: 260px;
}

.lp-faq-contact-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.lp-faq-contact-link:hover { gap: 12px; }

.lp-faq-item {
  border-top: 1px solid var(--lp-border);
}

.lp-faq-item:last-child { border-bottom: 1px solid var(--lp-border); }

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--lp-black);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.lp-faq-q:hover { color: var(--lp-blue); }

.lp-faq-icon {
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform 0.32s var(--lp-ease), color 0.2s;
}

.lp-faq-q[aria-expanded="true"] .lp-faq-icon {
  transform: rotate(45deg);
  color: var(--lp-blue);
}

.lp-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--lp-ease), padding 0.3s ease;
  padding-bottom: 0;
}

.lp-faq-a.lp-faq-open {
  max-height: 400px;
  padding-bottom: 24px;
}

.lp-faq-a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════════════════ */

@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .lp-svc-head { grid-template-columns: 1fr; gap: 24px; }

  .lp-pricing-grid,
  .lp-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-feature-text { padding: 56px 40px; }
  .lp-feature-img { min-height: 380px; }

  .lp-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-faq-left { position: static; }

  .lp-services-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-services-left { position: static; }
}

@media (max-width: 768px) {
  .lp-inner { padding: 0 24px; }

  #lp-hero { min-height: 100svh; }
  .lp-hero-h1 { font-size: clamp(40px, 10vw, 64px); }
  .lp-hero-content { padding-bottom: 90px; }
  .lp-hero-dots { right: 24px; bottom: 28px; }
  .lp-slide-label { left: 24px; bottom: 34px; }

  #lp-portfolio,
  #lp-services,
  #lp-pricing,
  #lp-process,
  #lp-why { padding: 80px 0; }

  .lp-feature-text { padding: 48px 24px; }
  .lp-feature-img { min-height: 300px; }

  .lp-svc-link { grid-template-columns: 48px 1fr 32px; gap: 20px; padding: 28px 0; }
  .lp-svc-title { font-size: 19px; }
  .lp-svc-desc  { font-size: 13.5px; }

  .lp-compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-portfolio-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-price-card--featured { transform: scale(1); }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-why-item:nth-child(2n+1) {
    border-right: none;
    padding-right: 0;
  }
  .lp-why-item:nth-child(2n+2) {
    padding-left: 0;
  }
  .lp-portfolio-header { flex-direction: column; align-items: flex-start; }
  .lp-process-n { font-size: 42px; }
  .lp-cta-h2 { font-size: clamp(32px, 8vw, 48px); }
  .lp-faq-grid { grid-template-columns: 1fr; }
  .lp-faq-sub { max-width: 100%; }
  .lp-testimonial-quote { font-size: clamp(18px, 5vw, 22px); }
}

/* ── Kleine Phones (≤ 480px) ──────────────────────────────── */
@media (max-width: 480px) {
  /* Hero: Texte kompakter */
  .lp-hero-sub {
    font-size: 16px;
    padding-top: 14px;
    margin-bottom: 28px;
  }

  /* Hero-Buttons: übereinander + volle Breite */
  .lp-hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .lp-btn-primary,
  .lp-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
  }

  /* H2-Überschriften auf der Landing Page */
  .lp-h2 {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  /* Leistungen-Zeilen */
  .lp-svc-link { padding: 22px 0; }
  .lp-svc-title { font-size: 17px; }
  .lp-svc-desc  { font-size: 13px; }

  /* Ablauf-Header */
  .lp-process-header { margin-bottom: 32px; }

  /* Warum-Abschnitt */
  .lp-why-title-wrap { margin-bottom: 48px; }
  .lp-why-item { padding: 24px 0; }
  .lp-why-title { font-size: 18px; }

  /* Trust-Band */
  #lp-trust { padding: 12px 0; }

  /* Sections kompakter */
  #lp-portfolio,
  #lp-services,
  #lp-process,
  #lp-why { padding: 64px 0; }
}
