/* SMG Vision & Werte v2.1R22 – Kursseiten-Style final */

:root{
  --vw-text:#0a0a0f;
  --vw-dark:#0b1f44;
  --vw-muted:#5b6470;
  --vw-line:#0b5fa5;
  --vw-bg-card:#f8faff;
  --vw-border:#e3e8f0;
  --vw-border-soft:#e9eef6;
  --vw-section-divider:#f0f3f8;
  --vw-cta-dark:#041833;
  --vw-cta-grad-start:#041833;
  --vw-cta-grad-end:#0077ff;
  --vw-radius-card:16px;
  --vw-radius-banner:20px;
  --vw-radius-btn:999px;
  --vw-shadow-card:0 1px 0 rgba(2,12,30,.04);
  --vw-shadow-banner:0 24px 40px rgba(4,24,51,.4);
}

.smg-vw *{
  box-sizing:border-box;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--vw-text);
  -webkit-font-smoothing:antialiased;
}

.smg-vw-section{
  padding:clamp(24px,4vw,48px) 0;
  border-bottom:1px solid var(--vw-section-divider);
}
.smg-vw-section:last-of-type{
  border-bottom:none;
}
.smg-vw-container{
  max-width:1080px;
  margin:0 auto;
  padding:0 20px;
}

/* breadcrumb */
.smg-vw-breadcrumb{
  max-width:1080px;
  margin:0 auto;
  padding:24px 20px 0;
  font-size:14px;
  line-height:1.4;
  color:var(--vw-muted);
  font-weight:500;
}
.smg-vw-breadcrumb .smg-vw-bc-link{
  color:var(--vw-muted);
  text-decoration:none;
}
.smg-vw-breadcrumb .smg-vw-bc-link:hover{
  text-decoration:underline;
}
.smg-vw-breadcrumb .smg-vw-bc-sep{
  display:inline-block;
  margin:0 6px;
  color:var(--vw-muted);
}
.smg-vw-breadcrumb .smg-vw-bc-current{
  font-weight:700;
  color:var(--vw-dark);
}

/* intro */
.smg-vw-headline{
  margin:0 0 16px;
  font-size:clamp(28px,2.5vw,40px);
  font-weight:800;
  line-height:1.2;
  color:var(--vw-dark);
}
.smg-vw-introtext{
  font-size:18px;
  line-height:1.6;
  max-width:900px;
  color:var(--vw-muted);
  margin:0 0 16px;
}
.smg-vw-accent-bar{
  width:110px;
  height:4px;
  border-radius:3px;
  background:var(--vw-line);
  margin:0 0 16px;
}
.smg-vw-leadcall{
  background:#eef5ff;
  border-left:4px solid var(--vw-line);
  border-radius:8px;
  padding:10px 14px;
  max-width:900px;
  font-size:17px;
  line-height:1.5;
  color:var(--vw-dark);
  margin:0;
}

/* pillars */
.smg-vw-grid3{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media(max-width:900px){
  .smg-vw-grid3{
    grid-template-columns:1fr;
  }
}
.smg-vw-card{
  background:var(--vw-bg-card);
  border:1px solid var(--vw-border);
  border-radius:var(--vw-radius-card);
  box-shadow:var(--vw-shadow-card);
  padding:18px;
}
.smg-vw-card h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.4;
  font-weight:700;
  color:var(--vw-dark);
}
.smg-vw-card p{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:var(--vw-muted);
}

/* section h2 */
.smg-vw-section h2{
  font-size:22px;
  line-height:1.3;
  font-weight:700;
  color:var(--vw-dark);
  margin:0 0 12px;
}

/* ausbildungskonzept liste */
.smg-vw-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}
.smg-vw-richlist li{
  background:#fff;
  border:1px solid var(--vw-border-soft);
  border-radius:14px;
  padding:14px 16px;
}
.smg-vw-richlist b{
  display:block;
  font-weight:700;
  font-size:16px;
  line-height:1.4;
  color:var(--vw-dark);
  margin:0 0 4px;
}
.smg-vw-richlist p{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:var(--vw-muted);
}

/* FAQ */
.smg-vw-center{
  text-align:center;
  font-size:clamp(24px,2vw,28px);
  font-weight:800;
  line-height:1.2;
  color:var(--vw-dark);
  margin:0 0 24px;
}
.smg-vw-accordion details{
  background:#fff;
  border:1px solid var(--vw-border-soft);
  border-radius:12px;
  margin:0 0 12px;
  overflow:hidden;
}
.smg-vw-accordion summary{
  cursor:pointer;
  padding:16px;
  font-size:16px;
  line-height:1.4;
  font-weight:700;
  color:var(--vw-dark);
  position:relative;
  list-style:none;
}
.smg-vw-accordion summary::-webkit-details-marker{
  display:none;
}
.smg-vw-accordion summary::after{
  content:'+';
  position:absolute;
  right:16px;
  top:16px;
  font-weight:700;
  color:var(--vw-line);
}
.smg-vw-accordion details[open] summary::after{
  content:'–';
}
.smg-vw-accordion div{
  padding:0 16px 16px;
  font-size:16px;
  line-height:1.6;
  color:var(--vw-muted);
}

/* CTA Banner */
.smg-vw-cta-banner{
  background:var(--vw-cta-dark);
  border-radius:var(--vw-radius-banner);
  box-shadow:var(--vw-shadow-banner);
  padding:24px;
  color:#fff;
  max-width:980px;
  margin:0 auto;
}
.smg-vw-cta-inner{
  display:flex;
  flex-direction:column;
  gap:16px;
  text-align:center;
}
@media(min-width:640px){
  .smg-vw-cta-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    text-align:left;
  }
}
.smg-vw-cta-text h2{
  margin:0 0 8px;
  font-size:clamp(22px,2vw,26px);
  line-height:1.3;
  font-weight:800;
  color:#fff;
}
.smg-vw-cta-text p{
  margin:0;
  font-size:16px;
  line-height:1.5;
  color:#fff;
}
.smg-vw-cta-action{
  flex-shrink:0;
}
.smg-vw-btn-primary{
  display:inline-block;
  background:linear-gradient(90deg,var(--vw-cta-grad-start),var(--vw-cta-grad-end));
  color:#fff;
  font-weight:700;
  font-size:16px;
  line-height:1.4;
  padding:.8em 1.4em;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.4);
  border:0;
  cursor:pointer;
  text-align:center;
  white-space:nowrap;
}
.smg-vw-btn-primary:hover{
  filter:brightness(1.1);
}
