/* ==========================================================================
   LEISTUNGEN.css – FINAL (bereinigt + Icon-Schliff greift sicher)
   Copy-Paste: komplette Datei ERSETZEN
   ========================================================================== */

/* ==========================================================================
   LEISTUNGEN.CSS – INHALTSVERZEICHNIS
   ==========================================================================

   01. ROOT & BASIS
       – Farbvariablen
       – Grundlayout

   02. SECTIONS
       – Section Abstände
       – Section Head (Titel & Untertitel)
       – Sand-Hintergrund

   03. HERO
       – Hero Overlay
       – Titel & Lead

   04. TRUST STRIP
       – Vertrauensleiste
       – Icons & Text

   05. CARD BASIS
       – Tile / Step / FAQ Grunddesign

   06. LEISTUNGEN CARDS
       – Grid Layout
       – Tile Hover
       – Texte & Listen

   07. ICON FEINSCHLIFF
       – Icon Container
       – Lucide SVG
       – Hover Verhalten

   08. FEATURE CARD (GARTEN)
       – Gleich große Karte
       – Dezente Hervorhebung

   09. NACHHALTIGKEIT
       – Grüner Hintergrund
       – Icon Akzent

   10. CTA UNTER DEN CARDS
       – Buttons
       – Hinweistext

   11. PREIS-SECTION
       – Pricing Box
       – Typografie & CTA

   12. STEPS / ABLAUF
       – Nummern
       – Textstruktur

   13. FAQ
       – Details / Summary
       – Textabstände

   14. FINAL CTA
       – Abschlussbereich

   15. RESPONSIVE
       – Tablet
       – Mobile

   ========================================================================== */

.page--leistungen{
  --bg-sand: #f3efe7;
  --text-primary: #243746;
  --text-secondary: #4A6375;
  --text-muted: #6F8594;

  background: var(--bg-sand);
  color: var(--text-primary);
}

/* ------------------------------------------------------------
   SECTIONS
------------------------------------------------------------ */
.page--leistungen .section{
  padding: clamp(56px, 8vh, 96px) 0;
}

.page--leistungen .section-sand{
  background: var(--bg-sand);
}

.page--leistungen .section-head{
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.page--leistungen .section-title{
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.page--leistungen .section-subtitle{
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 62ch;
  margin-inline: auto;
}

/* ------------------------------------------------------------
   HERO OVERLAY (falls global hero kein Overlay setzt)
------------------------------------------------------------ */
.page-hero--leistungen{
  position: relative;
}

.page-hero--leistungen::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 50% 35%, rgba(0,0,0,.18), rgba(0,0,0,.46)),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}

.page-hero--leistungen .page-hero__inner{
  position: relative;
  max-width: 980px;
}

.page-hero--leistungen .page-hero__title{
  color:#fff;
  text-shadow: 0 16px 38px rgba(0,0,0,.45);
}

.page-hero--leistungen .page-hero__lead{
  color: rgba(255,255,255,.9);
  max-width:58ch;
  margin-inline:auto;
}

/* ------------------------------------------------------------
   TRUST STRIP
------------------------------------------------------------ */
.page--leistungen .trust-strip{
  background: rgba(255,255,255,.45);
  border-top: 1px solid rgba(15,30,43,.08);
  border-bottom: 1px solid rgba(15,30,43,.08);
}

.page--leistungen .trust-strip__inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  padding:18px 0;
}

.page--leistungen .trust-item{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
}

.page--leistungen .trust-num{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:#fff;
}

.page--leistungen .trust-text{
  font-weight:800;
  color: var(--text-secondary);
}

/* ------------------------------------------------------------
   CARD BASE
------------------------------------------------------------ */
.page--leistungen .tile,
.page--leistungen .step,
.page--leistungen .faq details{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,30,43,.10);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

/* ------------------------------------------------------------
   TILES GRID
------------------------------------------------------------ */
.page--leistungen .tile-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  align-items: stretch;
}

.page--leistungen .tile{
  padding:16px;
  height:100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page--leistungen .tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(15,30,43,.12);
}

.page--leistungen .tile-top{
  display:flex;
  gap:10px;
  margin-bottom:8px;
  align-items:flex-start;
}

/* ✅ ICON FEINSCHLIFF (greift sicher) */
.page--leistungen .tile-top i{
  width: 40px;
  height: 40px;
  min-width: 40px;

  border-radius: 12px;
  display: grid;
  place-items: center;

  background: rgba(36,55,70,.06);
  color: #243746;

  transition: background .2s ease, transform .2s ease;
}

/* Lucide SVG direkt (falls i ersetzt wird) */
.page--leistungen .tile-top svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.page--leistungen .tile:hover .tile-top i{
  background: rgba(246,196,69,.18);
  transform: translateY(-1px);
}

.page--leistungen .tile-top h3{
  margin:0;
  line-height:1.25;
}

.page--leistungen .tile p{
  margin: 8px 0 10px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.page--leistungen .mini-list{
  margin:0;
  padding-left:18px;
  color: var(--text-secondary);
}

.page--leistungen .mini-list li{
  margin:6px 0;
}

/* ------------------------------------------------------------
   FEATURE CARD (Garten) – gleiche Größe wie alle anderen
------------------------------------------------------------ */
.page--leistungen .tile-actions{
  margin-top: 12px;
}

.page--leistungen .tile--feature{
  /* gleiche Größe: kein span */
  grid-column: auto;
  grid-row: auto;

  border-color: rgba(246,196,69,.55);
  background: linear-gradient(
    180deg,
    rgba(246,196,69,.06),
    rgba(255,255,255,.9)
  );
  box-shadow: 0 22px 70px rgba(15,30,43,.10);
}

.page--leistungen .tile--feature .tile-top i{
  background: rgba(246,196,69,.22);
}

/* ------------------------------------------------------------
   CTA unter Cards
------------------------------------------------------------ */
.page--leistungen .concierge-cta{
  margin-top:24px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  text-align:center;
}

.page--leistungen .concierge-cta__note{
  width:100%;
  text-align:center;
  font-size:14px;
  color: var(--text-muted);
}

.page--leistungen .leistungen-note{
  margin-top: 14px;
  text-align:center;
  color: rgba(36,55,70,.70);
}

.page--leistungen .leistungen-note a{
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------------------------------------
   STEPS
------------------------------------------------------------ */
.page--leistungen .steps{
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.page--leistungen .step{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 14px;
  align-items: start;
}

.page--leistungen .step-num{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(246,196,69,.18);
  color: var(--text-primary);
}

.page--leistungen .step-body h3{
  margin: 0 0 6px;
  line-height: 1.25;
}

.page--leistungen .step-body p{
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.page--leistungen .faq{
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.page--leistungen .faq details{
  padding: 14px 16px;
}

.page--leistungen .faq summary{
  font-weight: 900;
  cursor: pointer;
  color: var(--text-primary);
}

.page--leistungen .faq p{
  margin: 10px 0 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   FINAL CTA
------------------------------------------------------------ */
.page--leistungen .final-cta{
  text-align: center;
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 980px){
  .page--leistungen .trust-strip__inner{ grid-template-columns:1fr; }
  .page--leistungen .tile-grid{ grid-template-columns:1fr; }
  .page--leistungen .step{ grid-template-columns:1fr; }
}

@media (max-width: 520px){
  .page--leistungen .tile-top i{
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .page--leistungen .tile-top svg{
    width: 18px;
    height: 18px;
  }
}

/* ============================================================
   PRICING SECTION – Typografischer Feinschliff
   ruhig · vertrauensvoll · hochwertig
   ============================================================ */

.page--leistungen .section--pricing{
  padding-top: clamp(48px, 7vh, 72px);
  padding-bottom: clamp(48px, 7vh, 72px);
}

.page--leistungen .pricing-box{
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);

  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,30,43,.10);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(15,30,43,.08);

  text-align: center;
}

.page--leistungen .pricing-eyebrow{
  display: inline-block;
  margin-bottom: 8px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: rgba(36,55,70,.55);
}

.page--leistungen .pricing-title{
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.page--leistungen .pricing-text{
  margin: 0 auto 18px;
  max-width: 58ch;

  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page--leistungen .pricing-cta{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.page--leistungen .pricing-note{
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width: 520px){
  .page--leistungen .pricing-text{
    font-size: 16px;
  }
}

/* ============================================================
   Nachhaltigkeit – dezenter Grünton (edel, nicht werblich)
   ============================================================ */

.page--leistungen #nachhaltigkeit{
  background: linear-gradient(
    180deg,
    rgba(80, 140, 100, 0.06),   /* sehr sanftes Grün */
    rgba(255,255,255,0.90)
  );

  border-color: rgba(80, 140, 100, 0.25);
}

/* Icon minimal grünlicher Akzent */
.page--leistungen #nachhaltigkeit .tile-top i{
  background: rgba(80, 140, 100, 0.18);
}
