/* =========================
   1. Allgemeine Stile / Basis
========================= */

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 0% 20%, rgba(56, 189, 248, 0.10) 0, transparent 55%),
    radial-gradient(circle at 100% 80%, rgba(236, 72, 153, 0.06) 0, transparent 60%),
    #020617;
  color: #f9fafb;
}


/* =========================
   2. Header / Navigation
========================= */

/* HEADER – mit Neon-Glow passend zum Logo */
.header {
  background:
    radial-gradient(circle at 0% 50%, rgba(0, 212, 255, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(236, 72, 153, 0.22) 0%, transparent 60%),
    #020617;
  border-bottom: 1px solid #1e293b;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 10;
}

/* Neon-Streifen unter der Navigation */
.header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00d4ff,
    #3daaff,
    #a855f7,
    #ec4899,
    #00d4ff
  );
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  position: relative;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

/* Hover: Neon-Blau + leuchtender Underline */
.nav a:hover {
  color: #38bdf8;
}

.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #3daaff);
  box-shadow: 0 0 8px #3daaff;
  border-radius: 2px;
}

/* Aktiver Menüpunkt */
.nav a.active {
  color: #38bdf8;
  font-weight: 600;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #3daaff);
  box-shadow: 0 0 8px #3daaff;
  border-radius: 2px;
}


/* =========================
   3. Hero (Standard)
========================= */

.hero {
  background-color: transparent;
  padding: 2.5rem 1.5rem 2rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-media img {
  width: 120px;
  height: auto;
  border-radius: 16px;  /* wegnehmen, wenn reines Logo */
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin: 0;
}


/* =========================
   4. Globale Container / Überschriften
========================= */

.leistungen-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}


/* =========================
   5. Leistungs-Kacheln / Slider (global)
========================= */

/* Pfeilnavigation */
.cards-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cards-btn {
  background-color: #020617;
  color: #e5e7eb;
  border: 1px solid #334155;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.cards-btn:hover {
  background-color: #1e293b;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

/* Horizontale Kartenreihe */
.cards-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.75rem;
  scrollbar-width: none;         /* Firefox – Scrollbar verstecken */
}

.cards-row::-webkit-scrollbar {
  display: none;                 /* Chrome/Edge/Safari – Scrollbar verstecken */
}

/* Karten-Stile (Basis) */
.card {
  position: relative;
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
}

.card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.5;
}


/* =========================
   6. Preis-Badges auf Karten
========================= */

.price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #020617;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;  /* Neonblau */
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;

  /* Neonrand */
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
  border-image: linear-gradient(90deg, #00d4ff, #3daaff) 1;

  opacity: 0.9;
  transition: all 0.2s ease;
  pointer-events: none;          /* Nicht klickbar – rein für Info */
}

/* Hover-Effekt über der ganzen Karte */
.card:hover .price-badge {
  opacity: 1;
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.75);
}


/* =========================
   7. Leistungen-Seite (.page-leistungen)
   → Variante B: exakt 3 Karten sichtbar
========================= */

.page-leistungen .hero {
  padding: 2.3rem 1.5rem 2rem;
}

.page-leistungen .leistungen-wrapper {
  padding-top: 0.5rem;
}

.page-leistungen .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* Neonlinie unter dem Leistungen-Hero (mittig, dezent) */
.page-leistungen .hero-inner::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -2px;
  width: 70%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00d4ff,
    #3daaff,
    #a855f7,
    #ec4899,
    #00d4ff
  );
  opacity: 0.65;
  border-radius: 999px;
}

/* Logo im Banner etwas kompakter */
.page-leistungen .hero-media img {
  width: 110px;
  border-radius: 16px;
}

/* Text im Banner */
.page-leistungen .hero-text h1 {
  margin-bottom: 0.4rem;
}

.page-leistungen .hero-text p {
  margin: 0;
  color: #cbd5e1;
}

/* → Breiten-Logik für genau 3 Karten */
.page-leistungen .cards-row {
  gap: 1.5rem;
}

/* Desktop: 3 Karten sichtbar */
.page-leistungen .card {
  flex: 0 0 calc((100% - 3rem) / 3);   /* 3 Karten + 2*1.5rem Gap */
  max-width: calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
}

/* Mittelgroße Screens: 2 Karten */
@media (max-width: 1100px) {
  .page-leistungen .card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
}

/* Kleine Screens: 1 Karte */
@media (max-width: 700px) {
  .page-leistungen .card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
}


/* =========================
   8. Kontaktseite (.page-kontakt)
========================= */

/* Wrapper für beide Spalten */
.contact-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

/* 2-Spalten-Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Kontakt- & Formular-Boxen mit Neon-Unterlinie */
.contact-box {
  position: relative;
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Neonlinie unten wie im Header */
.contact-box::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #00d4ff,
    #3daaff,
    #a855f7,
    #ec4899,
    #00d4ff
  );
  opacity: 0.75;
  border-radius: 0 0 10px 10px;
}

/* Formular-Container */
.contact-form-embed iframe {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Spezielles Layout nur für die Kontaktseite */
.page-kontakt .hero {
  background-color: transparent;
  padding: 2.5rem 1.5rem 2.5rem;
}

.page-kontakt .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: block;
}

.page-kontakt .hero-text {
  text-align: left;
}

/* WhatsApp-Icon */
.icon-whatsapp i {
  color: #25d366;   /* WhatsApp-Grün */
  font-size: 1.4rem;
}

/* Kontaktliste mit Icons */
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.contact-list .icon,
.contact-list .icon i {
  width: 24px;        /* gleiche Breite */
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-list a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

.contact-list a:hover {
  color: #7dd3fc;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.7);
}

/* Mobile: Kontakt-Spalten untereinander */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   9. Über-uns-Seite (.page-ueber-uns)
========================= */

.page-ueber-uns .hero {
  /* Auf dieser Seite nutzen wir keinen separaten Hero-Block */
  display: none;
}

/* Haupt-Wrapper für den Textbereich */
.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3.5rem;
}

/* Kopfbereich oben */
.about-header {
  margin-bottom: 2.5rem;
}

.about-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #38bdf8;
  margin: 0 0 0.25rem;
}

.about-title {
  font-size: 2.4rem;
  margin: 0 0 1.2rem;   /* Mehr Abstand nach unten! */
  position: relative;
}

/* kleine Neon-Linie unter "Über uns" – weiter nach unten gesetzt */
.about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;       /* mehr Abstand zum Subtitle */
  width: 180px;        /* leicht erweitert */
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #3daaff, #a855f7, #ec4899);
  border-radius: 999px;
  opacity: 0.85;       /* dezenter & professioneller */
}

.page-ueber-uns .about-intro {
  margin-bottom: 2.5rem;
}

.about-subtitle {
  margin: 0;
  color: #cbd5e1;
  max-width: 700px;
}

/* Inhaltliche Blöcke wie "Cards" */
.about-block {
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 18px;
  padding: 1.8rem 2rem 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}

.about-block p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Section-Titel im Block */
.about-section-title {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

/* Neon-Kreisel bei "Warum wir?" */
.about-why-title {
  position: relative;
  padding-left: 3.1rem;   /* Platz für das Kreisel-Symbol */
}

/* Neon-Kreisel außen (conic-gradient) */
.about-why-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: conic-gradient(
    from 0deg,
    #0ea5e9,
    #22c55e,
    #a855f7,
    #ec4899,
    #0ea5e9
  );
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
  animation: about-spin 6s linear infinite;
}

/* Innerer "Kern" – dunkler Kreis, damit es wie ein Ring wirkt */
.about-why-title::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #020617;
}

/* Kreisel-Animation */
@keyframes about-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Bullet-Liste "Warum wir?" */
.about-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

/* Neon-Bullet */
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8 0, #0f172a 70%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  transform: translateY(-50%);
}

/* Kleiner CTA unten */
.about-cta {
  margin-top: 1rem;
  text-align: left;
}

.about-cta p {
  margin: 0;
  color: #cbd5e1;
}

.about-cta a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.about-cta a:hover {
  text-decoration: underline;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.7);
}

.text-cta {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.4);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease, text-shadow .15s ease;
}

.text-cta:hover {
  color: #7dd3fc;
  border-color: rgba(125,211,252,0.9);
  text-shadow: 0 0 8px rgba(56,189,248,0.8);
}


/* =========================
   10. Footer (schlicht)
========================= */

.footer {
  background-color: rgba(2, 6, 23, 0.95);
  border-top: 1px solid #1e293b;
  padding: 1.75rem 1.5rem;
}

.footer-inner.footer-simple {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner.footer-simple p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.footer-inner.footer-simple a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-inner.footer-simple a:hover {
  text-decoration: underline;
}


/* =========================
   11. Globale Responsive-Regeln
========================= */

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .about-wrapper {
    padding-top: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-block {
    padding: 1.5rem 1.4rem 1.7rem;
  }

  .about-why-title {
    padding-left: 2.7rem;
  }

  .about-why-title::before {
    width: 24px;
    height: 24px;
  }

  .about-why-title::after {
    left: 5px;
    width: 14px;
    height: 14px;
  }
}

/* =========================================
   A. Buttons (global nutzbar)
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

/* Primärer Call-to-Action */
.btn-primary {
  background: linear-gradient(90deg, #0ea5e9, #6366f1, #ec4899);
  color: #020617;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.8);
}

/* Sekundärer Button */
.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: #334155;
}

.btn-secondary:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}


/* =========================================================
   HOME / STARTSEITE
   ========================================================= */

/* Grundlayout der Startseite */
.page-home .home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}



/* ------------ HERO-Bereich ------------ */

.home-hero {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.home-hero-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.home-hero-text {
  flex: 1 1 0;
}

.home-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #38bdf8;
  margin: 0 0 0.5rem;
}

.home-title {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.home-subtitle {
  margin: 0 0 1.5rem;
  color: #cbd5e1;
  max-width: 540px;
}

/* Buttons im Hero */
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.55);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.65);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #38bdf8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: #7dd3fc;
  transform: translateY(-1px);
}

/* Tags unter den Buttons */
.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.tag-pill {
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.9);
  color: #cbd5e1;
}

/* Rechte Box "Typische Einsätze" */
.home-issues-card {
  flex: 0 0 360px;
  max-width: 360px;
  background-color: rgba(2, 6, 23, 0.95);
  border-radius: 18px;
  padding: 1.6rem 1.8rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.home-issues-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.home-issues-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.home-issues-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.93rem;
  margin-bottom: 0.55rem;
  color: #e5e7eb;
}

.home-issues-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.home-issues-link {
  font-size: 0.9rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.home-issues-link:hover {
  color: #7dd3fc;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.8);
}

/* ------------ Sektionen unter dem Hero ------------ */

.home-section {
  padding-top: 2.8rem;
}

.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-header {
  margin-bottom: 1.8rem;
}

.home-section-title {
  font-size: 2rem;
  margin: 0 0 0.4rem;
  position: relative;
}

/* Titel mit Unterstrich wird inline-block → Strich so breit wie Text */
.home-section-title.has-underline {
  display: inline-block;
  /* etwas mehr, damit der Text näher an den Neon-Strich rückt */
  margin: 0 0 0.7rem;
}

/* Neon-Unterstrich in voller Titelbreite – näher an Überschrift & Text */
.home-section-title.has-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;      /* vorher -7px → Strich näher an der Überschrift */
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #a855f7, #ec4899);
  border-radius: 999px;
}

/* etwas kleinerer Abstand vom Strich zum Untertitel */
.home-section-subtitle {
  margin: 0.15rem 0 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 650px;
}

.text-cta-inline {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.text-cta-inline:hover {
  color: #7dd3fc;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.8);
}

/* ------------ Service-Karten ------------ */

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-service-card {
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.home-service-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.home-service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.home-service-meta {
  font-size: 0.85rem;
  color: #a5b4fc;
  margin-bottom: 0.4rem;
}

.link-more {
  font-size: 0.9rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.link-more:hover {
  color: #7dd3fc;
  text-shadow: 0 0 6px rgba(56, 189, 248, 0.8);
}

/* ------------ Warum Ziegler Technik ------------ */

.home-why-title {
  font-size: 2rem;
  /* Abstand zu den Aufzählungen verkleinert */
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

.home-why-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;   /* vorher -7px → Strich näher an der Überschrift */
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #a855f7, #ec4899);
  border-radius: 999px;
}

.home-why-content {
  max-width: 800px;
}

.home-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-why-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* kleine Neon-Bullets */
.home-why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #38bdf8 0, #0f172a 70%);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
  transform: translateY(-50%);
}

.home-why-footer {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

/* ------------ Typischer Ablauf ------------ */

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-process-step {
  background-color: rgba(2, 6, 23, 0.9);
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.home-process-number {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #020617;              /* dunkler Kern */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}

/* Neon-Ring außen */
.home-process-number::before {
  content: "";
  position: absolute;
  inset: -3px;                       /* Ring etwas größer als der Kern */
  border-radius: inherit;
  background: conic-gradient(
    #0ea5e9,
    #22c55e,
    #a855f7,
    #ec4899,
    #0ea5e9
  );
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.8);
  z-index: -1;
}

.home-process-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.home-process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: #e5e7eb;
}

/* ------------ Responsive für Startseite ------------ */

@media (max-width: 960px) {
  .home-hero-inner {
    flex-direction: column;
  }

  .home-issues-card {
    width: 100%;
    max-width: none;
  }

  .home-services-grid,
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-main {
    padding: 2rem 1.2rem 3rem;
  }

  .home-title {
    font-size: 2.2rem;
  }

  .home-services-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }
}

