body {
  outline: 10px solid red !important;
}


/* =========================================================
   EPOSS Editorial System
   Namespace: ep-
   ========================================================= */

/* ---------- Design Tokens ---------- */

:root{
  --bg: #fbfbf8;
  --paper: #ffffff;

  --text: #141414;
  --muted: rgba(20,20,20,.68);

  --line: rgba(20,20,20,.10);
  --line-strong: rgba(20,20,20,.18);

  --eposs-green: #006980;
  --eposs-green-dark: #184059;

  --radius: 16px;
}

/* ---------- Base ---------- */

html,
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Navigation ---------- */

.navbar-fixed-top{
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

/* ---------- Layout ---------- */

main{
  padding-top: 120px;
  padding-bottom: 90px;
}

.ep-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------- Grid ---------- */

.ep-grid{
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 992px){
  .ep-grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero ---------- */

.ep-hero{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 38px;
}

@media (max-width: 768px){
  .ep-hero{
    padding: 34px 22px;
  }
}

.ep-kicker{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eposs-green);
  font-weight: 600;
  margin-bottom: 14px;
}

.ep-title{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 18px 0;
  font-weight: 600;
}

.ep-lead{
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px 0;
  max-width: 64ch;
}
.ep-hero-logo {
  text-align: center;
  margin-bottom: 16px;
}

/* ---------- Sections ---------- */

.ep-section{
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.ep-h2{
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
  font-weight: 600;
}

.ep-p{
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 10px 0;
  color: var(--muted);
  max-width: 70ch;
}

.ep-p strong{
  color: var(--text);
}
.ep-inline-link {
  color: var(--accent);
  font-weight: 600;
}


/* ---------- Callout ---------- */

.ep-callout{
  margin: 22px 0 0 0;
  padding: 16px 16px 16px 18px;
  border-left: 3px solid var(--eposs-green);
  background: rgba(0,105,128,.04);
  border-radius: 10px;
  color: rgba(20,20,20,.86);
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- Lists ---------- */

.ep-list{
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.ep-list li{
  margin-bottom: 6px;
}

/* ---------- Offer ---------- */

.ep-offer{
  position: sticky;
  top: 110px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}

@media (max-width: 992px){
  .ep-offer{
    position: static;
  }
}

.ep-offer h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.ep-price{
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 8px 0 6px 0;
  font-weight: 700;
}

.ep-meta{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.ep-mini{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
}

/* ---------- Proof ---------- */

.ep-proof{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

@media (max-width: 992px){
  .ep-proof{
    grid-template-columns: 1fr;
  }
}

.ep-proof .box{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

/* ---------- FAQ ---------- */

.ep-faq details{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.ep-faq summary{
  cursor: pointer;
  font-weight: 600;
}

.ep-faq p{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.ep-fine{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.ep-inline-link{
  color: var(--eposs-green);
  font-weight: 600;
}


/* ---------- Buttons ---------- */

.eposs-btn.primary{
  background: var(--eposs-green);
  border-color: var(--eposs-green);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
}

.eposs-btn.primary:hover{
  background: var(--eposs-green-dark);
}

.eposs-btn.ghost{
  background: transparent;
  border: 1px solid var(--eposs-green);
  color: var(--eposs-green);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
}

.eposs-btn.ghost:hover{
  background: rgba(0,105,128,.08);
}

/* ---------- CTA Row ---------- */

.eposs-cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

/* ---------- Footer ---------- */

.sub-footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}

.sub-footer p{
  color: var(--muted);
  line-height: 1.7;
}
/* =========================================================
   EPOSS Editorial – Durchsetzung gegen Alt-CSS
   (bewusst hoch-spezifisch)
   ========================================================= */

main .ep-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

main .ep-hero {
  background: #ffffff;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 16px;
  padding: 46px 38px;
  margin-bottom: 46px;
}

main .ep-section {
  border-top: 1px solid rgba(20,20,20,.10);
  padding-top: 46px;
  margin-top: 46px;
}

main .ep-proof .box,
main .ep-offer {
  background: #ffffff;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 14px;
}

body {
  background: #f4f5f3; /* bewusst dunkler für sichtbaren Kontrast */
}
/* ======================================================
   EPOSS EDITORIAL – HARD RESET GEGEN z-override.css
   ====================================================== */

/* Seitenhintergrund bewusst absetzen */
body.ep-subpage {
  background: #f4f5f3;
}

/* ZENTRALE INHALTSBREITE ZURÜCKHOLEN */
body.ep-subpage .ep-wrap {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 18px !important;
}

/* HERO WIEDER ZUR BOX MACHEN */
body.ep-subpage .ep-hero {
  background: #ffffff !important;
  border: 1px solid rgba(20,20,20,.14) !important;
  border-radius: 16px !important;
  padding: 46px 38px !important;
  margin-bottom: 56px !important;
}

/* SECTIONS NICHT MEHR FLÄCHIG */
body.ep-subpage .ep-section {
  max-width: 980px !important;
  margin: 0 auto !important;
  padding-top: 46px !important;
  margin-top: 46px !important;
}

/* PROOF-BOXEN SICHTBAR */
body.ep-subpage .ep-proof .box,
body.ep-subpage .ep-offer {
  background: #ffffff !important;
  border: 1px solid rgba(20,20,20,.14) !important;
  border-radius: 14px !important;
}

/* OFFER DARF NICHT VOLLBREIT SEIN */
body.ep-subpage .ep-grid {
  display: grid !important;
  grid-template-columns: 1.45fr 0.95fr !important;
  gap: 28px !important;
}

@media (max-width: 992px) {
  body.ep-subpage .ep-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================
   EPOSS EDITORIAL – FINAL SCOPE SHIELD
   ========================================= */

body.ep-subpage main {
  background: #f4f5f3;
}

body.ep-subpage .ep-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

body.ep-subpage .ep-hero {
  background: #ffffff;
  border: 1px solid rgba(20,20,20,.15);
  border-radius: 16px;
  padding: 46px 38px;
  margin-bottom: 56px;
}

body.ep-subpage .ep-section {
  max-width: 980px;
  margin: 0 auto;
}

body.ep-subpage .ep-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 28px;
}

@media (max-width: 992px){
  body.ep-subpage .ep-grid {
    grid-template-columns: 1fr;
  }
}
/* Verbesserte Darstellung für die Leistungen und Referenzen */

/* Container für jede Service-Karte */
.service-card {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9; /* Heller Hintergrund für die Kästen */
  border: 1px solid #e0e0e0; /* Rand für die Kästen */
  border-radius: 8px; /* Abgerundete Ecken */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover-Effekt */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Schatten-Effekt beim Hover */
}

/* Service-Box-Inhalt */
.service-box {
  text-align: center;
}

.service-icon {
  font-size: 48px;
  color: #007bff; /* Blau für die Icons */
  margin-bottom: 15px;
}

/* Verbesserung der Typografie */
h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333; /* Dunklere Schriftfarbe */
  margin-bottom: 10px;
}

/* Listenelemente für Punkte */
ul.service-points {
  list-style-type: none;
  padding: 0;
}

ul.service-points li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555; /* Etwas dunklerer Grauton für Text */
}

/* Link in der Service-Karte */
.service-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.service-card a:hover {
  background-color: #0056b3;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .service-icon {
    font-size: 36px;
  }

  h3 {
    font-size: 1.2rem;
  }

  ul.service-points li {
    font-size: 0.95rem;
  }
}

/* Zweispaltige Darstellung der Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.services-grid .service-card {
  flex: 1 1 calc(50% - 30px); /* Zwei Spalten auf großen Bildschirmen */
}

/* Einspaltige Darstellung auf kleinen Bildschirmen */
@media (max-width: 767px) {
  .services-grid .service-card {
    flex: 1 1 100%; /* Einspaltig auf mobilen Geräten */
  }
}
/* Services-Section: Kästen nebeneinander auf breiten Bildschirmen */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;  /* Abstand zwischen den Kästen */
    padding: 40px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); /* Animation bei Hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    color: #0078d4;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-points {
    font-size: 1rem;
    color: #666;
    list-style-type: none;
    padding: 0;
}

.service-points li {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;  /* Auf mobilen Geräten eine Spalte */
        padding: 20px 0;
    }
}

/* Für das Hero-Image in den Sections */
.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}
/* Services-Section: Vier gleichmäßig verteilte Boxen */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Jede Box nimmt gleich viel Platz */
    gap: 30px;  /* Abstand zwischen den Boxen */
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Auf mittleren Bildschirmen (z.B. Tablets) zwei Boxen nebeneinander */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;  /* Auf mobilen Geräten eine Spalte */
    }
}

/* Für das Hero-Image in den Sections */
.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
}
/* Prozess-Section: Vier gleichmäßig verteilte Schritte */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Jede Box nimmt gleich viel Platz */
    gap: 30px;  /* Abstand zwischen den Boxen */
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* Auf mittleren Bildschirmen (z.B. Tablets) zwei Boxen nebeneinander */
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;  /* Auf mobilen Geräten eine Spalte */
    }
}

/* Für das Bild in der Prozess-Section */
.process-header {
    margin-bottom: 30px;
}

.process-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.process-header p {
    font-size: 18px;
    line-height: 1.5;
}
/* Work-Section: Karten in einem Grid layout */
/* Work-Section: Karten in einem Grid layout */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Auf großen Bildschirmen zwei Spalten nebeneinander */
    gap: 30px;  /* Abstand zwischen den Karten */
    padding: 40px 0;
}

/* Style für die einzelnen Karten */
.work-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Hover-Effekt für die Karten */
.work-card:hover {
    transform: translateY(-10px); /* Effekthervorhebung bei Hover */
}

/* Media-Images: Setzt alle Bilder in den Karten auf eine einheitliche Größe */
.work-media img {
    width: 100%;
    height: 250px; /* Setzt eine gleichmäßige Höhe für alle Bilder */
    object-fit: cover; /* Stellt sicher, dass das Bild richtig skaliert */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Inhalt der Karten */
.work-body {
    padding: 20px;
}

/* Titel der Karte */
.work-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Teaser-Text in den Karten */
.work-teaser {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Tags in den Karten */
.work-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.work-tags li {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    color: #333;
}

/* CTA-Button für jede Karte */
.work-cta a {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.work-cta a:hover {
    background-color: #0056b3; /* Hover-Effekt für den Button */
}

/* Anpassungen für kleinere Bildschirme (Tablets und Handys) */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: 1fr; /* Auf Tablets und Handys eine Spalte */
    }
}
/* CTA-Section */
.cta-section {
    background-color: #f5f5f5;  /* Heller Hintergrund für mehr Kontrast */
    padding: 60px 0;  /* Ausreichend Abstand oben und unten */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);  /* Schatten für mehr Tiefe */
  margin-top: 50px; /* Abstand nach oben */
  padding: 40px 0;  /* optional: etwas Padding für mehr Raum */
}

/* Optional: Für sehr kleine Bildschirme (z.B. mobile) */
@media (max-width: 768px) {
  .cta-section {
    margin-top: 30px; /* Reduzierter Abstand auf kleinen Bildschirmen */
  }
}



/* CTA-Titel */
.cta-section h2 {
    font-size: 28px;
    color: #333;  /* Dunkelgraue Schrift */
    margin-bottom: 20px;
    font-weight: 700;
}

/* CTA-Text */
.cta-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* CTA-Button */
.cta-section .btn {
    background-color: #007bff; /* Blaue Hintergrundfarbe */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

/* Hover-Effekt für den Button */
.cta-section .btn:hover {
    background-color: #0056b3;  /* Dunkleres Blau beim Hover */
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 24px; /* Etwas kleinere Schrift auf mobilen Geräten */
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-section .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}
/* Beratung-Section */
#beratung {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Beratung-Titel */
#beratung h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Beratung-Text */
#beratung p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Liste für Beratung */
#beratung ul {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
    list-style-type: none;
    padding-left: 0;
}

/* Einzelne Listenelemente */
#beratung ul li {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

/* Stil für Bullet-Punkte */
#beratung ul li::before {
    content: "\2022"; /* Verwenden von Standard-Bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #007bff; /* Blau für Bullet */
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    #beratung h2 {
        font-size: 28px;  /* Kleinere Schrift auf mobilen Geräten */
    }

    #beratung p {
        font-size: 14px;
    }

    #beratung ul li {
        font-size: 14px;
    }
}
