/* Service detail page — specific styles */

.svc-hero {
  position: relative;
  padding: 40px 0 0;
}
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 30px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { opacity: .5; }
.crumbs .here { color: var(--ink); font-weight: 600; }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  column-gap: 56px;
  row-gap: 0;
  align-items: start;
  padding-bottom: var(--section-y);
}
.svc-hero-grid > .svc-tag      { grid-column: 1; grid-row: 1; }
.svc-hero-grid > .svc-hero-copy{ grid-column: 1; grid-row: 2; }
.svc-hero-grid > .svc-hero-img { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.svc-hero-flag { display: none; }
@media (max-width: 980px) {
  .svc-hero-grid { grid-template-columns: 1fr; row-gap: 20px; }
  .svc-hero-grid > .svc-tag       { grid-row: 1; margin-bottom: 0; }
  .svc-hero-grid > .svc-hero-flag {
    grid-column: 1; grid-row: 2; justify-self: start;
    display: inline-flex; align-items: center; gap: 7px;
    background: #fff; box-shadow: var(--shadow-sm);
    padding: 7px 13px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--ink);
  }
  .svc-hero-grid > .svc-hero-flag .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
  .svc-hero-grid > .svc-hero-img  { grid-column: 1; grid-row: 3; }
  .svc-hero-grid > .svc-hero-copy { grid-row: 4; }
}

.svc-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.svc-tag .b2b {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: .08em;
}

.svc-hero h1 {
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
  margin: 0 0 24px;
  text-wrap: balance;
}
.svc-hero .lead {
  font-size: 19px;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}

.svc-hero-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.svc-hero-img .badge {
  position: absolute;
  top: 16px; right: 16px;
  background: white;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.svc-hero-img .badge .dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}
/* Echtes Hero-Foto (WebP) statt SVG-Platzhalter */
.svc-hero-img > picture { position: absolute; inset: 0; display: block; }
.svc-hero-img .svc-hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px) {
  .svc-hero-img.has-photo { aspect-ratio: 16 / 9; }
  .svc-hero-img .badge { display: none; }
}

.hero-quickcta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.qcta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  max-width: 540px;
}
.qcta-grid > div {
  font-size: 13px;
}
.qcta-grid .k {
  font-size: 11px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.qcta-grid .v { font-weight: 600; font-size: 14px; }
.qcta-grid .v.accent { color: var(--accent); }

/* For whom — B2B audience */
.audience {
  background: var(--ink);
  color: white;
  padding: var(--section-y) 0;
}
.audience .section-head h2 { color: white; }
.audience .section-head .tag { color: #ff8a96; }
.audience .section-head p { color: rgba(255,255,255,.6); }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aud-grid { grid-template-columns: 1fr; } }

.aud-card {
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: background .2s, border-color .2s;
}
.aud-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
}
.aud-card .n {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}
.aud-card h4 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.aud-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* Included list */
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) { .lp-grid { grid-template-columns: 1fr; gap: 32px; } }
.lp-main .tag {
  font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
}
.lp-main h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04; letter-spacing: -.028em; font-weight: 700;
  margin: 12px 0 26px; text-wrap: balance;
}
.lp-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  font-size: 16px; line-height: 1.55;
  color: var(--ink-2); font-style: italic;
  text-wrap: pretty;
}
/* Versprechen-Box füllt die rechte Spalte auf voller Höhe, Foto wächst mit */
.lp-grid .promise-card {
  position: static;
  align-self: stretch;
  display: flex; flex-direction: column;
}
.lp-grid .promise-card .pm-photo {
  flex: 1 1 auto;
  aspect-ratio: auto;
  min-height: 260px;
}

.incl-list {
  list-style: none; padding: 0; margin: 0;
}
.incl-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.incl-list li:last-child { border-bottom: none; }
.incl-list .ck {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.promise-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 90px;
}
.promise-card .pm-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.promise-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -.015em;
}
.promise-card .pm-text {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.promise-card .pm-photo {
  border-radius: 14px;
  overflow: hidden;
  margin: 2px 0 20px;
  aspect-ratio: 16 / 11;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
}
.promise-card .pm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promise-card .pm-photo .ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 20px;
  background: linear-gradient(135deg, var(--bg-2), var(--accent-soft));
  color: var(--muted);
}
.promise-card .pm-photo .ph .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff; color: var(--accent);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.promise-card .pm-photo .ph .t { font-weight: 700; color: var(--ink-2); font-size: 14px; }
.promise-card .pm-photo .ph .s { font-size: 12px; }
.promise-card .btn { width: 100%; justify-content: center; }

/* Inline form (light variant) — siehe styles.css ".inline-form / .if-*"
   (in die globale styles.css verschoben, da der Kontaktblock auf allen Seiten genutzt wird). */

/* Related services */
.related {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .rel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  min-height: 160px;
}
.rel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.rel-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-2);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.rel-card .rel-photo {
  margin: -22px -22px 18px;
  background: var(--bg-2);
}
.rel-card .rel-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.rel-card h4 {
  font-size: 17px; margin: 0 0 6px;
  font-weight: 600; letter-spacing: -.01em;
}
.rel-card .arr-link {
  margin-top: auto;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* B2B-highlight strip on home */
.b2b-strip {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin: 40px auto;
  max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.b2b-strip .lhs {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.b2b-strip .b2b-badge {
  background: var(--accent);
  color: white;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: .08em;
}
.b2b-strip .b2b-text {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 580px;
}
.b2b-strip .b2b-text strong { color: white; }
