/*
Theme Name:  SURAP
Theme URI:   https://www.surap.de
Description: Eigenständiges Theme für SURAP – Sustainable Resource Applications
Author:      SURAP GmbH
Author URI:  https://www.surap.de
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: surap
*/

/* ══ RESET ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #0D2033;
  background: #fff;
  padding-top: 64px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3DAA7D; transition: color .2s; }
a:hover { color: #2A7355; }
ul, ol { padding-left: 1.4em; }
table { border-collapse: collapse; width: 100%; }

/* ══ NAVIGATION ══════════════════════════════════════════════════ */
#surap-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 64px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #D8E6DF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#surap-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2px;
}
/* Logo */
#surap-nav .site-logo {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0D2033;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: auto;
  flex-shrink: 0;
}
#surap-nav .site-logo:hover { color: #0D2033; text-decoration: none; }
#surap-nav .site-logo img { max-height: 38px; width: auto; }
#surap-nav .logo-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3DAA7D, #1E7A52);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  margin-left: 1px;
}
/* Nav links */
#surap-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
#surap-nav .nav-links > a,
#surap-nav .nav-links > .nav-item > a,
#surap-nav .nav-links > .nav-dropdown > button {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 400;
  color: #374151;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
#surap-nav .nav-links > a:hover,
#surap-nav .nav-links > .nav-dropdown > button:hover {
  background: #F0F5F2;
  color: #0D2033;
  text-decoration: none;
}
#surap-nav .nav-links > a.current { color: #3DAA7D; font-weight: 500; }
.nav-arr { font-size: .65rem; opacity: .5; }
.nav-sep { width: 1px; height: 20px; background: #D8E6DF; margin: 0 8px; flex-shrink: 0; }
#surap-nav .nav-login {
  font-size: .875rem;
  font-weight: 500;
  color: #3DAA7D;
  border: 1.5px solid #3DAA7D;
  border-radius: 6px;
  padding: 7px 16px;
  text-decoration: none;
  background: transparent;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
#surap-nav .nav-login:hover { background: #3DAA7D; color: #fff; text-decoration: none; }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #D8E6DF;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 240px;
  padding: 6px;
  z-index: 10000;
}
.nav-dropdown-menu.is-open { display: block; }
.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: .875rem;
  color: #374151;
  text-decoration: none;
  transition: background .2s;
}
.nav-dropdown-menu a:hover { background: #F0F5F2; color: #0D2033; text-decoration: none; }
.nav-dropdown-menu a small {
  font-size: .74rem;
  color: #6B7B85;
  font-weight: 400;
  margin-top: 1px;
}
.nav-dropdown-menu hr { border: none; border-top: 1px solid #D8E6DF; margin: 4px 0; }
/* Mobile toggle */
#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #0D2033;
}

/* ══ PAGE LAYOUT ═════════════════════════════════════════════════ */
#page { min-height: 100vh; }
.site-content { width: 100%; }
.page-article { width: 100%; }
.entry-title, .page-header, .entry-header { display: none; }

/* ══ SECTIONS ════════════════════════════════════════════════════ */
.surap-bg-dark  { background: #1C4232; color: #fff; }
.surap-bg-white { background: #fff; }
.surap-bg-light { background: #F0F5F2; }

.surap-bg-dark,
.surap-bg-white,
.surap-bg-light,
.surap-cta,
.surap-strip    { width: 100%; padding: 4.5rem 5vw; }

.surap-bg-dark > *,
.surap-bg-white > *,
.surap-bg-light > *,
.surap-cta > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.surap-cta {
  background: #F0F5F2;
  border-top: 1px solid #D8E6DF;
  text-align: center;
  padding: 60px 32px;
}
.surap-strip {
  background: #fff;
  border-bottom: 1px solid #D8E6DF;
  padding: 14px 32px;
}

/* Inner max-width */
.surap-bg-dark  .wrap,
.surap-bg-white .wrap,
.surap-bg-light .wrap,
.surap-cta      .wrap,
.surap-strip    .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* ══ TYPOGRAPHY ══════════════════════════════════════════════════ */
h1 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; line-height: 1.2;  margin-bottom: 14px; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1rem;    font-weight: 600; margin-bottom: 8px; }
p  { font-size: .95rem;  line-height: 1.7; margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.surap-bg-dark h1,
.surap-bg-dark h2,
.surap-bg-dark h3 { color: #fff; }
.surap-bg-dark p  { color: rgba(255,255,255,.75); }
.surap-bg-dark a  { color: #42B884; }
.surap-accent     { color: #42B884; }

.surap-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3DAA7D;
  margin-bottom: 10px;
}
.surap-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ══ BUTTONS ═════════════════════════════════════════════════════ */
.btn,
.elementor-button {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.btn-primary,
.elementor-button-primary {
  background: #3DAA7D;
  color: #fff;
}
.btn-primary:hover,
.elementor-button-primary:hover {
  background: #359A6F;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-outline,
.elementor-button-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn-outline:hover,
.elementor-button-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

/* ══ GRIDS ═══════════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;           gap: 20px; margin-top: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr);     gap: 20px; margin-top: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr);     gap: 16px; margin-top: 28px; }
.grid-hero { display: grid; grid-template-columns: 1fr 1fr;        gap: 48px; align-items: center; }

/* ══ CARDS ═══════════════════════════════════════════════════════ */
.card-green {
  background: #2A7355;
  border-radius: 10px;
  padding: 28px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,61,43,.25); }
.card-green h3 { color: #fff; font-weight: 700; margin-bottom: 10px; }
.card-green p  { color: rgba(255,255,255,.72); flex: 1; margin-bottom: 20px; }

.card-white {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D8E6DF;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.card-white h3 { color: #3DAA7D; font-size: 1rem; font-weight: 600; margin-bottom: 10px; }

.card-service {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D8E6DF;
  padding: 32px 28px;
}
.card-service h3 { color: #0D2033; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }

.card-num {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D8E6DF;
  padding: 28px;
  transition: box-shadow .2s;
}
.card-num:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.card-num .num {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(61,170,125,.25);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.card-num h4 { color: #3DAA7D; margin-bottom: 10px; }

.card-ref {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #D8E6DF;
  padding: 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card-ref:hover { border-color: #3DAA7D; box-shadow: 0 8px 32px rgba(46,158,122,.1); transform: translateY(-2px); }
.card-ref h4 { color: #0D2033; font-weight: 700; margin-bottom: 8px; }

.card-pricing {
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #D8E6DF;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.card-pricing.featured { border-color: #3DAA7D; box-shadow: 0 0 0 1px #3DAA7D; }
.card-pricing .price { font-size: 2rem; font-weight: 700; color: #0D2033; line-height: 1.2; margin-bottom: 4px; }
.card-pricing .price-orig { text-decoration: line-through; color: #6B7B85; font-size: 1.2rem; margin-right: 6px; }
.card-pricing .period { font-size: .82rem; color: #6B7B85; margin-bottom: 20px; }

/* ══ CHECKLIST ════════════════════════════════════════════════════*/
ul.checklist { list-style: none; padding: 0; margin: 12px 0; }
ul.checklist li {
  font-size: .875rem;
  color: #6B7B85;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
ul.checklist li::before { content: '✓'; color: #3DAA7D; font-weight: 700; flex-shrink: 0; }

/* Keep compatibility with XML class name */
ul.surap-checklist { list-style: none; padding: 0; margin: 12px 0; }
ul.surap-checklist li { font-size: .875rem; color: #6B7B85; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
ul.surap-checklist li::before { content: '✓'; color: #3DAA7D; font-weight: 700; flex-shrink: 0; }

/* ══ STRIP BAR ═══════════════════════════════════════════════════ */
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.strip-label { font-size: .8rem; color: #6B7B85; white-space: nowrap; }
.strip-items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.strip-items span { font-size: .85rem; font-weight: 500; color: #6B7B85; }
.strip-items span::before { content: '✓ '; color: #3DAA7D; }

/* ══ DOC SIDEBAR ═════════════════════════════════════════════════ */
.doc-wrap {
  display: flex;
  min-height: calc(100vh - 64px);
  align-items: flex-start;
}
.doc-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #F0F5F2;
  border-right: 1px solid #D8E6DF;
  padding: 28px 20px;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #3DAA7D;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 16px;
}
.doc-back:hover { color: #2A7355; }
.doc-sidebar h2 { font-size: 1.05rem; font-weight: 700; color: #0D2033; margin-bottom: 18px; line-height: 1.3; }
.doc-search { display: flex; gap: 6px; margin-bottom: 20px; }
.doc-search input {
  flex: 1;
  background: #fff;
  border: 1.5px solid #D8E6DF;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #0D2033;
  outline: none;
}
.doc-search input:focus { border-color: #3DAA7D; }
.doc-search button {
  background: #3DAA7D;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
}
.doc-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.doc-nav li a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: #0D2033;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.doc-nav li a:hover,
.doc-nav li a.current { background: #fff; color: #3DAA7D; }
.doc-nav ul { list-style: none; padding: 0; margin: 2px 0 2px 12px; }
.doc-nav ul li a { font-size: .845rem; font-weight: 400; color: #6B7B85; }
.doc-nav ul li a:hover,
.doc-nav ul li a.current { background: #fff; color: #0D2033; font-weight: 500; }
.doc-content { flex: 1; padding: 36px 40px; max-width: 820px; }
.doc-content h1 { color: #3DAA7D; font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.doc-content h2 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.doc-content h3 { font-size: 1rem; font-weight: 600; margin: 18px 0 8px; }
.doc-content table th { background: #F0F5F2; padding: 10px 14px; border: 1px solid #D8E6DF; font-weight: 600; text-align: left; }
.doc-content table td { padding: 9px 14px; border: 1px solid #D8E6DF; }
.doc-not-found { background: #F0F5F2; text-align: center; padding: 40px 32px; }
.doc-not-found p { color: #6B7B85; margin-bottom: 16px; }

/* ══ FOOTER ══════════════════════════════════════════════════════ */
#surap-footer {
  background: #fff;
  border-top: 1px solid #D8E6DF;
  padding: 56px 32px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D8E6DF;
}
.footer-brand p { font-size: .845rem; color: #6B7B85; max-width: 220px; line-height: 1.65; margin-top: 10px; }
.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0D2033;
  margin-bottom: 14px;
}
.footer-col a,
.footer-col address a {
  display: block;
  font-size: .845rem;
  color: #6B7B85;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .2s;
}
.footer-col a:hover { color: #3DAA7D; }
.footer-col address p { font-size: .845rem; color: #6B7B85; line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a { font-size: .78rem; color: #6B7B85; text-decoration: none; }
.footer-bottom a:hover { color: #3DAA7D; }

/* ══ FORMS (WPForms) ═════════════════════════════════════════════ */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  font-family: 'DM Sans', sans-serif !important;
  background: #F0F5F2 !important;
  border: 1.5px solid #D8E6DF !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-size: .875rem !important;
  color: #0D2033 !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color .2s !important;
}
.wpforms-field input:focus,
.wpforms-field textarea:focus { border-color: #3DAA7D !important; background: #fff !important; }
.wpforms-submit {
  background: #3DAA7D !important;
  color: #fff !important;
  border: none !important;
  border-radius: 7px !important;
  padding: 12px 24px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: .9rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background .2s !important;
}
.wpforms-submit:hover { background: #359A6F !important; }
#surap-footer .site-logo img {
  max-height: 24px;
  width: auto;
}

/* ══ MOBILE ══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .grid-hero { grid-template-columns: 1fr; gap: 32px; }
  .grid-3    { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .doc-wrap { flex-direction: column; }
  .doc-sidebar { width: 100%; position: static; height: auto; }
}
@media (max-width: 640px) {
  #nav-toggle { display: block; }
  #surap-nav .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #D8E6DF;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 9998;
  }
  #surap-nav .nav-links.is-open { display: flex; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .surap-bg-dark,
  .surap-bg-white,
  .surap-bg-light,
  .surap-cta { padding: 48px 20px; }
  .doc-content { padding: 24px 20px; }
}

/* ══ ALIAS: surap-* Klassennamen aus dem XML ════════════════════ */
/* Das XML verwendet surap- Präfix – diese Regeln mappen sie auf das Theme */

.surap-card-green  { background:#2A7355; border-radius:10px; padding:28px 26px; color:#fff; display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
.surap-card-green:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(26,61,43,.25); }
.surap-card-green h3 { color:#fff; font-weight:700; margin-bottom:10px; }
.surap-card-green p  { color:rgba(255,255,255,.72); flex:1; margin-bottom:20px; }

.surap-card-white { background:#fff; border-radius:10px; border:1px solid #D8E6DF; padding:28px 24px; transition:box-shadow .2s, transform .2s; }
.surap-card-white:hover { box-shadow:0 6px 24px rgba(0,0,0,.07); transform:translateY(-2px); }
.surap-card-white h3 { color:#3DAA7D; font-size:1rem; font-weight:600; margin-bottom:10px; }

.surap-card-service { background:#fff; border-radius:10px; border:1px solid #D8E6DF; padding:32px 28px; }
.surap-card-service h3 { color:#0D2033; font-size:1.1rem; font-weight:700; margin-bottom:10px; }

.surap-card-num { background:#fff; border-radius:10px; border:1px solid #D8E6DF; padding:28px; transition:box-shadow .2s; }
.surap-card-num:hover { box-shadow:0 4px 20px rgba(0,0,0,.07); }
.surap-card-num .surap-num { font-size:2rem; font-weight:700; color:rgba(61,170,125,.25); line-height:1; margin-bottom:10px; display:block; }
.surap-card-num h4 { color:#3DAA7D; margin-bottom:10px; }
.surap-card-num p  { font-size:.875rem; color:#374151; line-height:1.65; margin-bottom:12px; }

.surap-ref-card { background:#fff; border-radius:10px; border:1px solid #D8E6DF; padding:24px; transition:border-color .2s, box-shadow .2s, transform .2s; }
.surap-ref-card:hover { border-color:#3DAA7D; box-shadow:0 8px 32px rgba(46,158,122,.1); transform:translateY(-2px); }
.surap-ref-card h4 { color:#0D2033; font-weight:700; margin-bottom:8px; }

.surap-pricing-card { background:#fff; border-radius:10px; border:1.5px solid #D8E6DF; padding:28px 24px; display:flex; flex-direction:column; }
.surap-pricing-card.featured { border-color:#3DAA7D; box-shadow:0 0 0 1px #3DAA7D; }
.surap-pricing-card .price { font-size:2rem; font-weight:700; color:#0D2033; line-height:1.2; margin-bottom:4px; }
.surap-pricing-card .price-orig { text-decoration:line-through; color:#6B7B85; font-size:1.2rem; margin-right:6px; }

/* ══ AUTO-GRID: Karten ohne Wrapper-Div ═════════════════════════ */
/* JS gruppiert consecutive Karten in ein Grid – CSS stylt es */
.surap-auto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.surap-auto-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .surap-auto-grid, .surap-auto-grid-3 { grid-template-columns: 1fr; }
}

/* ── Scope: alles unter .slp damit Elementor-CSS nicht kollidiert ── */
.slp-wrap { font-family: "DM Sans", -apple-system, "Segoe UI", sans-serif; font-size: 15px; line-height: 1.65; color: #1A2520; }
.slp-wrap *, .slp-wrap *::before, .slp-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Sections ── */
.slp-section        { padding: 4.5rem 5vw; }
.slp-section.off    { background: #F6FBFA; }
.slp-inner          { max-width: 1100px; margin: 0 auto; }
.slp-kicker         { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #2E9E7A; margin-bottom: .75rem; display: block; }
.slp-wrap h2        { font-size: clamp(1.6rem,2.8vw,2rem); color: #1B6B52; font-weight: 700; line-height: 1.15; margin-bottom: .75rem; }
.slp-wrap h3        { font-size: .975rem; font-weight: 700; color: #1B6B52; margin-bottom: .4rem; }
.slp-sub            { font-size: .95rem; color: #4A6560; max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem; }

/* ── Buttons ── */
.slp-btn            { display: inline-flex; align-items: center; gap: 6px; padding: .75rem 1.6rem; border-radius: 8px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: all .2s; border: none; cursor: pointer; font-family: inherit; }
.slp-btn-g          { background: #2E9E7A; color: #ffffff; }
.slp-btn-g:hover    { background: #1B6B52; color: #ffffff; }
.slp-btn-ghost      { background: transparent; color: #ffffff; border: 1.5px solid rgba(255,255,255,.35); }
.slp-btn-ghost:hover{ color: #ffffff; border-color: rgba(255,255,255,.75); }
.slp-btn-white      { background: #ffffff; color: #1B6B52; }
.slp-btn-white:hover{ background: #E3F5EF; color: #1B6B52; }
.slp-btn-group      { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* ── Hero ── */
.slp-hero           { background: #1B6B52; padding: 5rem 5vw 4rem; }
.slp-hero-inner     { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.slp-kicker-hero    { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 5px 14px; font-size: .72rem; font-weight: 600; color: #3DBFA0; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.slp-pulse          { width: 6px; height: 6px; border-radius: 50%; background: #3DBFA0; animation: slp-pulse 2.5s ease-in-out infinite; }
@keyframes slp-pulse{ 0%,100%{opacity:1}50%{opacity:.3} }
.slp-hero h1        { font-size: clamp(2rem,3.5vw,2.8rem); line-height: 1.1; color: #ffffff; font-weight: 700; margin-bottom: 1.25rem; }
.slp-hero h1 em     { color: #3DBFA0; font-style: normal; }
.slp-hero-sub       { font-size: .975rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; }
.slp-hero-note      { font-size: .72rem; color: rgba(255,255,255,.28); margin-top: .75rem; }

/* ── Browser Mockup ── */
.slp-browser        { background: #D8D8D8; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3); transition: transform .4s; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.slp-browser:hover  { transform: perspective(1200px) rotateY(0) rotateX(0); }
.slp-b-chrome       { background: #EAEAEA; padding: 8px 12px; display: flex; align-items: center; gap: 6px; }
.slp-b-dots         { display: flex; gap: 5px; }
.slp-b-dot          { width: 10px; height: 10px; border-radius: 50%; }
.slp-b-tab          { background: #fff; border-radius: 5px 5px 0 0; padding: 3px 10px; font-size: 10.5px; color: #555; margin-left: 6px; }
.slp-b-url          { background: #F0F0F0; border: 1px solid #ddd; border-radius: 20px; padding: 3px 12px; font-size: 10.5px; color: #666; flex: 1; margin-left: 6px; }
.slp-b-page         { background: #F8F8F8; }
.slp-b-nav          { background: #1B6B52; padding: 8px 14px; display: flex; justify-content: space-between; align-items: center; }
.slp-b-nav span     { font-size: 11px; font-weight: 600; color: #fff; }
.slp-b-nav-l        { display: flex; gap: 12px; }
.slp-b-nav-l a      { font-size: 10px; color: rgba(255,255,255,.55); text-decoration: none; }
.slp-pcard          { background: #fff; margin: 10px; border-radius: 8px; border: 1px solid #ddd; overflow: hidden; }
.slp-prow           { padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
.slp-picon          { width: 30px; height: 30px; border-radius: 5px; background: #E3F5EF; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.slp-picon svg      { width: 16px; height: 16px; stroke: #2E9E7A; fill: none; stroke-width: 1.5; }
.slp-pname          { font-size: 11px; font-weight: 600; color: #222; }
.slp-pmeta          { font-size: 9px; color: #888; margin-top: 1px; }
.slp-mrow           { padding: 5px 12px; background: #FAFAFA; border-top: 1px solid #eee; font-size: 9.5px; color: #1B6B52; font-weight: 500; }
.slp-opanel         { background: #F0FAF7; border-top: 1px solid #C8E8DF; padding: 8px 12px; }
.slp-ohead          { font-size: 8.5px; font-weight: 600; color: #2E9E7A; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.slp-okpis          { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 5px; }
.slp-okpi           { background: #fff; border: 1px solid #C8E8DF; border-radius: 4px; padding: 5px 6px; }
.slp-okv            { font-size: 12px; font-weight: 600; color: #1B6B52; }
.slp-okl            { font-size: 8px; color: #4A6560; margin-top: 1px; }
.slp-osave          { background: #fff; border: 1px solid #C8E8DF; border-radius: 4px; padding: 5px 8px; display: flex; justify-content: space-between; }
.slp-osave-l        { font-size: 9px; color: #4A6560; }
.slp-osave-v        { font-size: 11px; font-weight: 600; color: #1B6B52; }

/* ── Trust Bar ── */
.slp-trust          { background: #fff; border-bottom: 1px solid #C8E8DF; padding: .9rem 5vw; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.slp-trust-lbl      { font-size: .7rem; color: #bbb; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.slp-trust-items    { display: flex; gap: 2rem; flex-wrap: wrap; }
.slp-trust-item     { font-size: .82rem; color: #4A6560; display: flex; align-items: center; gap: 5px; }
.slp-trust-chk      { color: #2E9E7A; font-weight: 700; }

/* ── Cards ── */
.slp-grid-2         { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.slp-grid-3         { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.slp-card           { background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; padding: 1.5rem; transition: all .25s; position: relative; overflow: hidden; }
.slp-card::before   { content: ''; position: absolute; inset: 0 0 auto; height: 3px; background: #2E9E7A; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.slp-card:hover     { border-color: #2E9E7A; box-shadow: 0 8px 32px rgba(46,158,122,.1); transform: translateY(-2px); }
.slp-card:hover::before { transform: scaleX(1); }
.slp-card-n         { font-size: 2rem; color: #C8E8DF; line-height: 1; margin-bottom: .75rem; font-weight: 700; }
.slp-card p         { font-size: .875rem; color: #4A6560; line-height: 1.7; }
.slp-checklist      { list-style: none; margin-top: .75rem; display: flex; flex-direction: column; gap: .4rem; }
.slp-checklist li   { font-size: .82rem; color: #4A6560; display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5; }
.slp-checklist li::before { content: '✓'; color: #2E9E7A; font-weight: 700; flex-shrink: 0; }

/* ── Methodik ── */
.slp-m-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.slp-m-card         { background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; overflow: hidden; }
.slp-m-head         { background: #1B6B52; padding: 1.1rem 1.5rem; }
.slp-m-head h3      { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: .2rem; }
.slp-m-head p       { color: rgba(255,255,255,.55); font-size: .78rem; }
.slp-m-body         { padding: 1.25rem 1.5rem; }
.slp-m-body p       { font-size: .875rem; color: #4A6560; line-height: 1.75; margin-bottom: .875rem; }
.slp-tag            { display: inline-block; background: #E3F5EF; color: #1B6B52; border: 1px solid #C8E8DF; border-radius: 20px; padding: 2px 10px; font-size: .74rem; font-weight: 500; margin: .2rem .15rem 0 0; }

/* ── Compare Table ── */
.slp-ctable         { margin-top: 2rem; background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; overflow: hidden; }
.slp-ctable-head    { background: #1B6B52; padding: .875rem 1.5rem; color: #fff; font-size: .9rem; font-weight: 600; }
.slp-crow           { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; font-size: .85rem; }
.slp-crow > div     { padding: .7rem 1rem; border-bottom: 1px solid #C8E8DF; }
.slp-crow.header > div { background: #F6FBFA; font-weight: 600; color: #1B6B52; }
.slp-crow.data > div   { color: #4A6560; }
.slp-crow.data > div:not(:first-child) { font-weight: 500; color: #1A2520; text-align: right; }
.slp-crow.hl > div     { background: #F0FAF7; color: #4A6560; }
.slp-crow.hl > div:not(:first-child) { font-weight: 600; color: #1B6B52; text-align: right; }

/* ── Praxisbeispiel ── */
.slp-praxis         { margin-top: 2rem; background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; overflow: hidden; }
.slp-praxis-head    { background: #F6FBFA; padding: 1rem 1.5rem; border-bottom: 1px solid #C8E8DF; }
.slp-praxis-body    { padding: 1.25rem 1.5rem; }
.slp-praxis-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.slp-praxis-box     { background: #F6FBFA; border: 1px solid #C8E8DF; border-radius: 8px; padding: 1rem; }
.slp-kv-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; font-size: .82rem; }
.slp-ef-row         { display: flex; justify-content: space-between; font-size: .82rem; padding: .4rem .6rem; background: #fff; border-radius: 5px; border: 1px solid #C8E8DF; margin-bottom: .35rem; }
.slp-result-grid    { background: #F0FAF7; border: 1px solid #C8E8DF; border-radius: 8px; padding: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.slp-amort-row      { display: flex; justify-content: space-between; font-size: .84rem; margin-bottom: .4rem; }

/* ── Data Cards ── */
.slp-data-grid      { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.slp-data-card      { background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; padding: 1.5rem; }
.slp-data-src       { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #2E9E7A; margin-bottom: .6rem; display: flex; align-items: center; gap: 8px; }
.slp-data-src::after{ content: ''; flex: 1; height: 1px; background: #C8E8DF; }
.slp-data-card p    { font-size: .875rem; color: #4A6560; line-height: 1.7; margin-bottom: .75rem; }
.slp-data-card a    { font-size: .82rem; color: #2E9E7A; text-decoration: none; font-weight: 500; display: inline-block; }
.slp-data-card a:hover { color: #1B6B52; }
.slp-data-stats     { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #C8E8DF; }
.slp-ds-val         { font-size: 1.2rem; font-weight: 700; color: #1B6B52; }
.slp-ds-lbl         { font-size: .72rem; color: #4A6560; margin-top: 2px; }
.slp-mat-tag        { padding: .5rem .75rem; background: #F0FAF7; border: 1px solid #C8E8DF; border-radius: 6px; font-size: .8rem; color: #4A6560; }

/* ── Referenzen ── */
.slp-ref-card       { background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; padding: 1.75rem; transition: all .25s; text-decoration: none; display: block; }
.slp-ref-card:hover { border-color: #2E9E7A; box-shadow: 0 8px 32px rgba(46,158,122,.1); transform: translateY(-2px); }
.slp-ref-logo       { font-size: 1.5rem; font-weight: 700; color: #1B6B52; margin-bottom: .75rem; line-height: 1; }
.slp-ref-logo small { display: block; font-size: .72rem; font-weight: 500; color: #4A6560; margin-top: 3px; }
.slp-ref-desc       { font-size: .855rem; color: #4A6560; line-height: 1.7; margin-bottom: 1rem; }
.slp-ref-tags       { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.slp-ref-tag        { font-size: .72rem; background: #E3F5EF; color: #1B6B52; border: 1px solid #C8E8DF; border-radius: 20px; padding: 2px 9px; }
.slp-ref-link       { font-size: .8rem; color: #2E9E7A; font-weight: 500; }

/* ── Steps ── */
.slp-steps          { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 2.5rem; position: relative; }
.slp-steps::before  { content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px; background: #C8E8DF; }
.slp-step           { text-align: center; padding: 0 .75rem; }
.slp-step-n         { width: 44px; height: 44px; border-radius: 50%; background: #E3F5EF; border: 2px solid #C8E8DF; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; color: #1B6B52; margin: 0 auto 1rem; position: relative; z-index: 1; transition: all .3s; }
.slp-step:hover .slp-step-n { background: #2E9E7A; border-color: #2E9E7A; color: #fff; }
.slp-step-title     { font-size: .82rem; font-weight: 600; color: #1B6B52; margin-bottom: .3rem; }
.slp-step-desc      { font-size: .77rem; color: #4A6560; line-height: 1.5; }

/* ── Calc ── */
.slp-calc-wrap      { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.slp-calc-table     { background: #fff; border: 1.5px solid #C8E8DF; border-radius: 12px; overflow: hidden; }
.slp-calc-th        { background: #1B6B52; padding: 1rem 1.25rem; }
.slp-calc-th h3     { color: #fff; font-size: .9rem; font-weight: 600; }
.slp-calc-th p      { color: rgba(255,255,255,.55); font-size: .78rem; margin-top: 2px; }
.slp-calc-row       { display: flex; justify-content: space-between; padding: .7rem 1.25rem; border-bottom: 1px solid #C8E8DF; font-size: .875rem; align-items: baseline; }
.slp-calc-row.sub   { background: #F6FBFA; }
.slp-calc-row.total { background: #E3F5EF; font-weight: 600; }
.slp-calc-lbl       { color: #4A6560; }
.slp-calc-sub       { font-size: .75rem; color: #aaa; display: block; }
.slp-calc-val       { font-weight: 500; color: #1A2520; white-space: nowrap; margin-left: 1rem; }
.slp-calc-row.total .slp-calc-val { color: #1B6B52; }

/* ── CTA ── */
.slp-cta            { background: #2E9E7A; padding: 4.5rem 5vw; text-align: center; }
.slp-cta h2         { color: #fff; margin-bottom: .75rem; }
.slp-cta p          { color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; font-size: .95rem; }

/* ── Fade ── */
.slp-fade           { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.slp-fade.visible   { opacity: 1; transform: none; }

/* ── Responsive ── */
@media(max-width: 960px) {
  .slp-hero-inner, .slp-m-grid, .slp-data-grid, .slp-calc-wrap,
  .slp-grid-2, .slp-grid-3, .slp-praxis-grid, .slp-result-grid { grid-template-columns: 1fr; }
  .slp-browser       { display: none; }
  .slp-steps         { grid-template-columns: 1fr 1fr; }
  .slp-steps::before { display: none; }
  .slp-crow          { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .slp-steps { grid-template-columns: 1fr; }
}
