//* ============================================
   SYSKOMP 2026 – Design Tokens
   Einmalig ganz oben in die custom.css
============================================ */

:root {
  --sg2026-teal:       #17a6b0;
  --sg2026-teal-dark:  #108890;
  --sg2026-anthrazit:  #434a4a;
  --sg2026-white:      #ffffff;
  --sg2026-light:      #f5f5f5;
  --sg2026-text:       #333333;
  --sg2026-muted:      rgba(255, 255, 255, 0.75);
}

/* ============================================
   SEKTION 1 – HERO
============================================ */
/* --- Hero Container --- */
.sg2026-hero {
  position: relative;
  width: 100%;
  background-color: #434a4a;
  overflow: hidden;
  min-height: 400px;
}

/* --- Bild rechts --- */
.sg2026-hero__image {
  position: absolute;
  top: 0;
  left: 45%;
  right: 0;
  height: 100%;
  z-index: 1;
}

.sg2026-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg2026-hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #434a4a 0%, rgba(67,74,74,0.92) 50%, transparent 100%);
  z-index: 2;
}

/* --- Outer Container --- */
.sg2026-hero__container {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 15px 64px;
}

/* --- Grid --- */
.sg2026-hero__grid {
  display: flex;
  align-items: center;
}

/* --- Textspalte --- */
.sg2026-hero__text {
  width: 58%;
  padding-right: 32px;
}

/* --- Badge --- */
.sg2026-hero__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 18px;
}

/* --- Headline --- */
.sg2026-hero__headline {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.28;
  color: #ffffff;
  margin: 0 0 18px 0;
}

.sg2026-hero__headline em {
  font-style: normal;
  color: #17a6b0;
}

/* --- Subtext --- */
.sg2026-hero__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px 0;
  max-width: 460px;
}

/* --- CTA Buttons --- */
.sg2026-hero__ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 40px;
}

.sg2026-hero__btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: #17a6b0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}

.sg2026-hero__btn-primary:hover {
  background: #129aa4;
  color: #ffffff;
  text-decoration: none;
}

.sg2026-hero__btn-ghost {
  display: inline-block;
  padding: 11px 22px;
  background: transparent;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.40);
  text-decoration: none;
  white-space: nowrap;
}

.sg2026-hero__btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  color: #ffffff;
  text-decoration: none;
}

/* --- Divider --- */
.sg2026-hero__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 24px;
}

/* --- Trust Bar --- */
.sg2026-hero__trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.sg2026-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.35;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.sg2026-hero__trust-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.sg2026-hero__trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.sg2026-hero__trust-icon {
  color: #17a6b0;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 991px) {
  .sg2026-hero__image {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    height: 260px;
  }
  .sg2026-hero__grid {
    flex-direction: column;
  }
  .sg2026-hero__text {
    width: 100%;
    padding-right: 0;
  }
  .sg2026-hero__headline {
    font-size: 1.55rem;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .sg2026-hero__image {
    height: 220px;
  }
  .sg2026-hero__headline {
    font-size: 1.35rem;
  }
  .sg2026-hero__ctas {
    flex-direction: column;
  }
  .sg2026-hero__btn-primary,
  .sg2026-hero__btn-ghost {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .sg2026-hero__trust {
    flex-direction: column;
    gap: 12px;
  }
  .sg2026-hero__trust-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* ================================================
   SEKTION 2: PORTFOLIO
   ================================================ */

.sg2026-portfolio {
  background-color: #f5f6f7;
  padding: 64px 0;
  /* Full-width Fix für Joomla Content-Container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-portfolio__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-portfolio__header {
  text-align: center;
  margin-bottom: 40px;
}

.sg2026-portfolio__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-portfolio__headline {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.25;
  color: #2b2f2f;
  margin: 0 0 14px 0;
}

.sg2026-portfolio__sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5a6262;
  margin: 0 auto;
  max-width: 540px;
}

/* --- Grid --- */
.sg2026-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Card --- */
.sg2026-portfolio__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 5px;
  padding: 24px 22px 20px;
  border: 1.5px solid #e8eaea;
  border-top: 3px solid #e8eaea;
  text-decoration: none;
  color: inherit;
  transition: border-top-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sg2026-portfolio__card:hover {
  border-top-color: #17a6b0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

/* Highlight-Kachel: manual automation */
.sg2026-portfolio__card--highlight {
  border-color: #17a6b0;
  background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
}

/* Shop-Kachel */
.sg2026-portfolio__card--shop {
  border-top-color: #c8d0d0;
}

.sg2026-portfolio__card--shop:hover {
  border-top-color: #17a6b0;
}

/* --- Card Inhalte --- */
.sg2026-portfolio__card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #2b2f2f;
  margin: 0 0 8px 0;
}

.sg2026-portfolio__card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a6262;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.sg2026-portfolio__card-link {
  font-size: 0.80rem;
  font-weight: 600;
  color: #17a6b0;
  margin-top: auto;
  transition: color 0.2s ease;
}

.sg2026-portfolio__card:hover .sg2026-portfolio__card-link {
  color: #129aa4;
}

/* ================================================
   RESPONSIVE: PORTFOLIO
   ================================================ */

@media (max-width: 991px) {
  .sg2026-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg2026-portfolio__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-portfolio {
    padding: 48px 0;
  }
  .sg2026-portfolio__grid {
    grid-template-columns: 1fr;
  }
  .sg2026-portfolio__headline {
    font-size: 1.28rem;
  }
}

/* ================================================
   SEKTION 2B: LEISTUNGSTIEFE
   ================================================ */

.sg2026-leistung {
  background-color: #434a4a;
  padding: 64px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-leistung__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-leistung__header {
  text-align: center;
  margin-bottom: 48px;
}

.sg2026-leistung__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-leistung__headline {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.sg2026-leistung__sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
  max-width: 600px;
}

/* --- Grid --- */
.sg2026-leistung__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* --- Card --- */
.sg2026-leistung__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid #17a6b0;
  border-radius: 5px;
  padding: 28px 24px;
  transition: background 0.2s ease;
}

.sg2026-leistung__card:hover {
  background: rgba(255,255,255,0.10);
}

/* --- Nummer --- */
.sg2026-leistung__number {
  font-size: 2rem;
  font-weight: 300;
  color: #17a6b0;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* --- Card Inhalte --- */
.sg2026-leistung__card-title {
  font-size: 1.05rem;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
}

.sg2026-leistung__card-text {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72); /* war 0.65 */
  margin: 0;
}

/* --- Abschluss-Statement --- */
.sg2026-leistung__statement {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.sg2026-leistung__statement p {
  font-size: 1.0rem; /* war 0.95rem */
  color: rgba(255,255,255,0.80); /* etwas heller */
  line-height: 1.7;
  margin: 0;
}

.sg2026-leistung__statement strong {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* ================================================
   RESPONSIVE: LEISTUNGSTIEFE
   ================================================ */

@media (max-width: 991px) {
  .sg2026-leistung__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg2026-leistung__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-leistung {
    padding: 48px 0;
  }
  .sg2026-leistung__grid {
    grid-template-columns: 1fr;
  }
  .sg2026-leistung__headline {
    font-size: 1.28rem;
  }
}

/* ================================================
   SEKTION 3: BENEFIT PILLARS
   ================================================ */

.sg2026-benefits {
  background-color: #ffffff;
  padding: 64px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-benefits__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-benefits__header {
  text-align: center;
  margin-bottom: 48px;
}

.sg2026-benefits__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-benefits__headline {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.25;
  color: #2b2f2f;
  margin: 0;
}

/* --- List --- */
.sg2026-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background-color: #e8eaea;
  border: 1px solid #e8eaea;
  border-radius: 6px;
  overflow: hidden;
}

/* --- Item --- */
.sg2026-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 28px;
  background: #ffffff;
  transition: background 0.2s ease;
}

.sg2026-benefits__item:hover {
  background: #f5f6f7;
}

/* --- Zahl --- */
.sg2026-benefits__number {
  font-size: 2.2rem;
  font-weight: 300;
  color: #17a6b0;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  opacity: 0.75;
}

/* --- Content --- */
.sg2026-benefits__content {
  flex: 1;
}

.sg2026-benefits__item-title {
  font-size: 1.0rem;
  font-weight: 600;
  color: #2b2f2f;
  margin: 0 0 8px 0;
}

.sg2026-benefits__item-text {
  font-size: 0.87rem;
  line-height: 1.65;
  color: #5a6262;
  margin: 0;
}

/* ================================================
   RESPONSIVE: BENEFIT PILLARS
   ================================================ */

@media (max-width: 767px) {
  .sg2026-benefits__list {
    grid-template-columns: 1fr;
  }
  .sg2026-benefits__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-benefits {
    padding: 48px 0;
  }
  .sg2026-benefits__headline {
    font-size: 1.28rem;
  }
  .sg2026-benefits__item {
    padding: 24px 20px;
  }
  .sg2026-benefits__number {
    font-size: 1.8rem;
    width: 40px;
  }
}

/* ================================================
   SEKTION: BRANCHEN + SOCIAL PROOF
   ================================================ */

.sg2026-trust {
  background-color: #ffffff;
  padding: 80px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-trust__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-trust__header {
  text-align: center;
  margin-bottom: 48px;
}

.sg2026-trust__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-trust__headline {
  font-size: 1.75rem;
  font-weight: 300;
  color: #2b2f2f;
  margin: 0 0 10px;
  line-height: 1.25;
}

.sg2026-trust__subline {
  font-size: 0.95rem;
  color: #6c7474;
  margin: 0;
}

/* --- Branchen Grid: 3x2 typografisch --- */
.sg2026-trust__branchen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.sg2026-trust__branche {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px;
  background: #f5f6f7;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}

.sg2026-trust__branche:hover {
  border-left-color: #17a6b0;
  background: #eef9fa;
}

/* Icon */
.sg2026-trust__branche-icon {
  width: 32px;
  height: 32px;
  color: #17a6b0;
  flex-shrink: 0;
}

/* Name */
.sg2026-trust__branche-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2b2f2f;
  line-height: 1.3;
}

/* Akzentlinie unten */
.sg2026-trust__branche-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #17a6b0;
  border-radius: 2px;
  margin-top: auto;
  transition: width 0.3s ease;
}

.sg2026-trust__branche:hover .sg2026-trust__branche-bar {
  width: 48px;
}

/* --- Divider --- */
.sg2026-trust__divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  color: #a0a8a8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sg2026-trust__divider::before,
.sg2026-trust__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e4e4;
}

/* --- Testimonials: 2x2 --- */
.sg2026-trust__testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.sg2026-trust__testimonial {
  background: #f5f6f7;
  border-radius: 6px;
  padding: 32px 28px;
  border-top: 3px solid #17a6b0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sg2026-trust__quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: #17a6b0;
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: -8px;
}

.sg2026-trust__quote-text {
  font-size: 0.92rem;
  line-height: 1.70;
  color: #434a4a;
  margin: 0;
  flex: 1;
}

.sg2026-trust__quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid #dde1e1;
}

.sg2026-trust__quote-author strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2b2f2f;
}

.sg2026-trust__quote-author span {
  font-size: 0.80rem;
  color: #6c7474;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 767px) {
  .sg2026-trust {
    padding: 64px 0;
  }
  .sg2026-trust__branchen {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg2026-trust__testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .sg2026-trust {
    padding: 48px 0;
  }
  .sg2026-trust__headline {
    font-size: 1.35rem;
  }
  .sg2026-trust__branchen {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sg2026-trust__branche {
    padding: 20px 16px;
  }
}


/* ================================================
   SEKTION 5: MANUAL AUTOMATION
   ================================================ */

.sg2026-ma {
  background-color: #434a4a;
  padding: 64px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-ma__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-ma__header {
  text-align: center;
  margin-bottom: 52px;
}

.sg2026-ma__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-ma__headline {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.sg2026-ma__sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
  max-width: 620px;
}

/* --- Phasen Grid --- */
.sg2026-ma__phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 48px;
}

/* --- Phase --- */
.sg2026-ma__phase {
  display: flex;
  flex-direction: column;
}

/* --- Phase Head (Nummer + Linie) --- */
.sg2026-ma__phase-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sg2026-ma__phase-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #17a6b0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sg2026-ma__phase-number--final {
  background: #ffffff;
  color: #17a6b0;
}

.sg2026-ma__phase-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #17a6b0, rgba(23,166,176,0.3));
  margin-left: 0;
}

/* --- Phase Body --- */
.sg2026-ma__phase-body {
  padding-right: 20px;
}

.sg2026-ma__phase--last .sg2026-ma__phase-body {
  padding-right: 0;
}

.sg2026-ma__phase-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.sg2026-ma__phase-text {
  font-size: 0.82rem;
  line-height: 1.60;
  color: rgba(255,255,255,0.60);
  margin: 0;
}

/* --- CTA --- */
.sg2026-ma__cta {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.sg2026-ma__btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.sg2026-ma__btn:hover {
  border-color: #17a6b0;
  color: #17a6b0;
  text-decoration: none;
}

/* ================================================
   RESPONSIVE: MANUAL AUTOMATION
   ================================================ */

@media (max-width: 991px) {
  .sg2026-ma__phases {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sg2026-ma__phase-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
  }
  .sg2026-ma__phase-line {
    width: 2px;
    height: 32px;
    flex: none;
    background: linear-gradient(to bottom, #17a6b0, rgba(23,166,176,0.3));
    margin-left: 19px;
    margin-top: 0;
  }
  .sg2026-ma__phase-body {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 24px;
  }
  .sg2026-ma__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-ma {
    padding: 48px 0;
  }
  .sg2026-ma__headline {
    font-size: 1.28rem;
  }
}



/* ================================================
   SEKTION 7: FAQ – MODERN
   ================================================ */

.sg2026-faq {
  background-color: #f5f6f7;
  padding: 64px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-faq__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.sg2026-faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.sg2026-faq__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-faq__headline {
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.25;
  color: #2b2f2f;
  margin: 0;
}

/* --- 2-Spalten Grid --- */
.sg2026-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  align-items: start;
}

.sg2026-faq__col {
  display: flex;
  flex-direction: column;
}

/* --- Item --- */
.sg2026-faq__item {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #e8eaea;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sg2026-faq__item[open] {
  border-color: #17a6b0;
  box-shadow: 0 2px 12px rgba(23, 166, 176, 0.08);
}

/* --- Question --- */
.sg2026-faq__question {
  list-style: none;
  padding: 18px 20px;
  font-size: 0.90rem;
  font-weight: 600;
  color: #2b2f2f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
  user-select: none;
}

.sg2026-faq__question::-webkit-details-marker {
  display: none;
}

.sg2026-faq__item[open] .sg2026-faq__question {
  color: #17a6b0;
}

/* --- Plus/Minus Icon --- */
.sg2026-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid #17a6b0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg2026-faq__icon span {
  display: block;
  position: absolute;
  background: #17a6b0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sg2026-faq__icon span:first-child {
  width: 8px;
  height: 1.5px;
}

.sg2026-faq__icon span:last-child {
  width: 1.5px;
  height: 8px;
}

.sg2026-faq__item[open] .sg2026-faq__icon span:last-child {
  transform: rotate(90deg);
  opacity: 0;
}

/* --- Answer --- */
.sg2026-faq__answer {
  padding: 0 20px 18px;
  border-top: 1px solid #f0f1f1;
}

.sg2026-faq__answer p {
  font-size: 0.87rem;
  line-height: 1.70;
  color: #5a6262;
  margin: 14px 0 0 0;
}

/* --- Links --- */
.sg2026-faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sg2026-faq__link {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 14px;
  font-size: 0.80rem;
  font-weight: 600;
  color: #17a6b0;
  background: rgba(23, 166, 176, 0.06);
  border: 1.5px solid rgba(23, 166, 176, 0.35);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.sg2026-faq__link:hover {
  background: #17a6b0;
  border-color: #17a6b0;
  color: #ffffff;
  text-decoration: none;
}

.sg2026-faq__links .sg2026-faq__link {
  margin-top: 0;
}

/* ================================================
   RESPONSIVE: FAQ
   ================================================ */

@media (max-width: 767px) {
  .sg2026-faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sg2026-faq__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-faq {
    padding: 48px 0;
  }
  .sg2026-faq__headline {
    font-size: 1.28rem;
  }
  .sg2026-faq__question {
    font-size: 0.85rem;
  }
}


/* ================================================
   SEKTION 8: FINAL CTA
   ================================================ */

.sg2026-cta {
  background-color: #434a4a;
  padding: 64px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.sg2026-cta__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.sg2026-cta__header {
  text-align: center;
  margin-bottom: 48px;
}

.sg2026-cta__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #17a6b0;
  margin-bottom: 12px;
}

.sg2026-cta__headline {
  font-size: 1.65rem;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.sg2026-cta__sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Grid --- */
.sg2026-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* --- Card --- */
.sg2026-cta__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.sg2026-cta__card--primary {
  background: #17a6b0;
  border-color: #17a6b0;
}

.sg2026-cta__card-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1;
}

.sg2026-cta__card-title {
  font-size: 1.0rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.sg2026-cta__card-text {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.sg2026-cta__card--primary .sg2026-cta__card-text {
  color: rgba(255,255,255,0.85);
}

/* --- Buttons --- */
.sg2026-cta__card-btn {
  display: inline-block;
  padding: 11px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  background: transparent;
  color: #17a6b0;
  border: 1.5px solid #17a6b0;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.sg2026-cta__card-btn:hover {
  background: #17a6b0;
  color: #ffffff;
  text-decoration: none;
}

.sg2026-cta__card-btn--white {
  background: #ffffff;
  color: #17a6b0;
  border-color: #ffffff;
}

.sg2026-cta__card-btn--white:hover {
  background: rgba(255,255,255,0.85);
  color: #17a6b0;
  text-decoration: none;
}

/* --- Footer Statement --- */
.sg2026-cta__footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.sg2026-cta__footer p {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.50);
  margin: 0;
  line-height: 1.65;
}

/* ================================================
   RESPONSIVE: FINAL CTA
   ================================================ */

@media (max-width: 767px) {
  .sg2026-cta__grid {
    grid-template-columns: 1fr;
  }
  .sg2026-cta__headline {
    font-size: 1.45rem;
  }
}

@media (max-width: 575px) {
  .sg2026-cta {
    padding: 48px 0;
  }
  .sg2026-cta__headline {
    font-size: 1.28rem;
  }
}


