/*Grundlegende Informationen*/
:root {
  --setronic-blau: rgba(22, 64, 144);
  --zweites-setronic-blau: #d3f2ff;
  --versions-colour: rgb(233, 114, 16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: var(--setronic-blau) !important;
}

.center {
  text-align: center !important;
}
/* 
=========================
Navigation
========================= 
*/

.hamburger {
  position: fixed;
  right: 12px;
  display: none; /* erst ab Mobile sichtbar */
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  margin-left: auto; /* schiebt Button nach rechts */
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 4px;
  background: #000;
  margin: 6px 0;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background: rgba(38, 38, 59, 0.623); /* grau transparent */
  /*background: rgba(5, 22, 59, 0.623); /* dark blue transparent */
  /*background: rgba(22, 64, 144, 0.623); /*Setronic blau transparent */
  z-index: 20;
}

.top-bar_standard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--setronic-blau);
  z-index: 20;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 4px 4px;
  border-bottom: 3px solid transparent;
}

.top-bar a:hover {
  border-bottom: 3px solid var(--setronic-blau);
}

.top-bar_standard a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.top-bar i {
  margin-right: 8px;
}

.contact-info {
  align-items: center;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  margin-right: 40px;
  font-size: 14px;
}

.mobile-contact {
  display: none;
}

.nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.nav > a {
  border-bottom: 3px solid transparent;
}
.nav > a:hover {
  border-bottom-color: var(--setronic-blau);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
}

.dropdown-menu a:hover {
  border: none !important;
}

.dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown summary:focus {
  outline: none;
}

.dropdown summary:hover {
  border-bottom: 3px solid var(--setronic-blau);
}

.dropdown summary {
  padding: 4px 4px;
}

.arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.dropdown[open] .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: rgba(22, 64, 144, 0.95);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 30;
}

.dropdown[open] .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: none !important;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* NAVIGATION*/
header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 10;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
}

/*SLIDESHOW*/
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
}

/* Slides */
.slides {
  position: absolute;
  width: 100%;
  height: 100%;
  /*animation: slideShow 18s infinite;*/
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  inset: 0;
  animation: fade 18s infinite;
}

/* Einzelne Slides 
.slide:nth-child(1) {
  background-image: url("img/slide1.jpg");
  animation: fade 18s infinite;
}

.slide:nth-child(2) {
  background-image: url("img/slide2.jpg");
  animation: fade 18s infinite 6s;
}

.slide:nth-child(3) {
  background-image: url("img/slide3.jpg");
  animation: fade 18s infinite 12s;
}*/

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 2;
}

/* Timing */
.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 6s;
}

.slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 200px 40px;
  color: #fff;
}

/* FADE ANIMATION */
@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* LOGO */
.hero-logo {
  position: absolute;
  top: 60px;
  left: 80px;
  z-index: 4;
  filter: drop-shadow(2px 2px 2px #615f5f);
}

.hero-logo img {
  height: 120px;
  width: auto;
}

.hero-texts {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  position: absolute;
  max-width: 900px;
  padding: 0 40px;
  opacity: 0;
  animation: fade 18s infinite;
}

/* TIMING (identisch zu Slides) */
.hero-text:nth-child(1) {
  animation-delay: 0s;
}

.hero-text:nth-child(2) {
  animation-delay: 6s;
}

.hero-text:nth-child(3) {
  animation-delay: 12s;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.6;
}

.hero-text h1,
.hero-text p {
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
}

main {
  margin-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 60px); /* nur Header berücksichtigen */
  background: #fff;
}

main h1 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #111827;
}

main h2 {
  font-size: 28px;
  margin: 2.5rem 0 1rem;
  color: #1e40af;
}

main.main-content {
  position: relative;
  z-index: 5;
  background: #f8f9fa;
  color: #333;
  margin-top: 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0; /* Abstand als padding statt margin */
}

.container-content {
  margin-top: 120px;
  color: black;
  list-style-type: none;
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  color: #1a1a1a;
}

.welcome p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: var(--versions-colour);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #000000;
}

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}

.feature-card-link:hover .feature-card {
  background-color: var(--setronic-blau);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card-link:hover .feature-card h3 {
  color: #ffffff;
}

.add-site-info {
  min-height: 360px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.site-info-text {
  height: auto;
}

.info-logo_left {
  max-width: 240px;
  width: 100%;
  height: auto;
  transform: translateX(-30px);
}

.info-logo_right {
  max-width: 240px;
  width: 100%;
  height: auto;
  transform: translateX(30px);
}

.site-info {
  padding: 80px 0;
}

.add-info {
  margin: 20px 0;
}

.add-site-info-1 {
  width: 36%;
  height: 320px;
  border-radius: 0px 28px 28px 0px;
  background-color: #164190;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  transition: all 0.55s ease;
}

.add-site-info-1 i {
  margin-right: 20px;
  font-size: 240px;
}

.add-site-info-2 {
  width: 44%;
  padding: 10px 60px;
  transition: all 0.55s ease;
}

.add-site-info-2 h1 {
  font-size: 36px;
}

.add-site-info-2 p {
  margin: 12px 0px;
  font-size: 20px;
}

.add-site-info-2 ul {
  margin: 16px 0px 16px 16px;
  font-size: 16px;
}

.add-site-info-2 li {
  margin: 8px 0px;
}

.add-site-info .more-infos-button button {
  background-color: #164190;
  padding: 8px 12px;
  border: none;
  border-radius: 0.5rem;
  font-size: 20px;
  color: white;
}

.add-site-info .more-infos-button button:hover {
  background-color: #1551c0;
}

.add-site-info-3 {
  width: 20%;
  transition: all 0.55s ease;
}

.add-info:nth-child(even) .add-site-info {
  flex-direction: row-reverse;
}

.add-info:nth-child(even) .add-site-info-1 {
  border-radius: 28px 0px 0px 28px;
  justify-content: flex-start;
}

.add-info:nth-child(even) .add-site-info-1 i {
  margin-left: 20px;
  font-size: 240px;
}

.cta {
  background: #164090;
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
}

.cta .btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background: white;
  color: #0d47a1;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s;
}

.cta .btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* Footer*/

.minimal-footer {
  background: #05163b;
  color: #64748b;
  font-size: 13px;
  text-align: center;
  padding: 40px 20px 30px;
}

.footer-line {
  width: 120px;
  height: 1px;
  background: #334155;
  margin: 0 auto 24px;
  border: none;
}

.footer-links {
  margin: 0 0 20px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 16px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #e2e8f0;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.7;
}

/* VORTEILE*/

.vorteile-section {
  background: #f8f9fa;
  padding: 80px 40px;
  color: #333;
}

.vorteile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.vorteil {
  flex: 1 1 300px;
  text-align: center; /* Icon & Headline zentriert */
}

/* Icon */
.vorteil-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #164090;
  line-height: 1;
}

/* Überschrift */
.vorteil h3 {
  font-size: 1.8rem;
  margin: 0 0 1.2rem;
  color: #164090;
  font-weight: 600;
}

/* BULLETPOINTS */
.vorteil ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px; /* schöne Textbreite */
  text-align: left; /* Bulletpoints linksbündig */
}

.vorteil li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.vorteil li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1.4rem;
  color: #164090;
}

.bildbeschreibung {
  font-size: small;
  color: darkgray;
  font-style: italic;
  text-align: center;
}

.info_uebersicht {
  display: flex;
  gap: 50px;
}

.info_uebersicht_left {
  width: 50%;
}

.info_uebersicht_right {
  width: 50%;
}

.info_uebersicht_right img {
  width: 100%;
}

.info_uebersicht_left img {
  width: 100%;
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Aktiv = sichtbar */
#overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Bild-Animation */
#overlay img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;

  transform: scale(0.85);
  transition: transform 0.3s ease;
}

/* Bild beim Öffnen */
#overlay.active img {
  transform: scale(1);
}

/* Close-Button bleibt gleich */
#close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.modul_einsatzbereiche {
  display: flex;
  gap: 100px;
  align-items: center;
}

.modul_einsatzbereiche_left {
  width: 33%;
}

.modul_einsatzbereiche_right {
  width: 66%;
}

.modul_einsatzbereiche_left img {
  width: 100%;
}

.modul_vorteile {
  display: flex;
  gap: 100px;
  align-items: center;
}

.modul_vorteile_left {
  width: 66%;
}

.modul_vorteile_right {
  width: 33%;
}

.abstand {
  margin: 80px 0px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-item {
  padding: 20px;
  border-radius: 8px;
}

.small_heading {
  margin-bottom: 20px;
}

.abstand-klein {
  margin: 20px 0px;
}

.absatz {
  margin: 50px 0px;
}

.list-abstand li {
  margin-left: 15px;
  margin-top: 5px;
}

.list-abstand p {
  margin-top: 5px;
}

.schnittstellen {
  width: 100%;
}

.schnittstellen__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.schnittstellen__rule {
  margin: 20px 0px;
}

.schnittstellen__grid article ul li {
  list-style-type: none;
}

.schnittstellen__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schnittstellen__li {
  margin: 2px 0 10px;
  line-height: 1.25;
}

.schnittstellen__itemtitle {
  font-weight: 400; /* wie dein Screenshot */
}

.schnittstellen__sublist {
  margin: 6px 0 0 18px; /* Einzug */
  padding: 0;
  list-style: disc; /* Bulletpoints */
}

.schnittstellen__sublist .schnittstellen__subli {
  margin: 2px 0;
  list-style-type: disc;
}

.cta h2 {
  margin-top: 10px;
}

.page-subtitle {
  margin: 6px 0 24px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.85;
}

/* Wichtig: verhindere zentrierte Texte in Cards */
.info-cards,
.info-card,
.info-card * {
  text-align: left;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 18px 0 34px;
}

.info-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;

  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(13, 61, 137, 0.08); /* leicht blau */
  color: #0d3d89;
  font-size: 22px;
  line-height: 1;
}

.info-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0d3d89;
}

.info-card__text {
  margin: 0 0 10px;
  opacity: 0.9;
}

.info-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card__list li {
  margin: 8px 0;
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.info-card__list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.page-subtitle {
  margin: 8px 0 22px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1.4;
}

/* ---------- Kontakt Text ---------- */

.contact-intro p {
  margin: 0 0 10px;
  line-height: 1.55;
  opacity: 0.95;
}

.contact-cta {
  margin: 14px 0 0;
  font-weight: 600;
}

/* ---------- Vorteile ---------- */

.contact-benefits ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  margin: 8px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}

/* ---------- Formular ---------- */

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 15px;
  background: #fff;
  outline: none;
  font-family: inherit; /* WICHTIG */
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(13, 61, 137, 0.55);
  box-shadow: 0 0 0 4px rgba(13, 61, 137, 0.12);
}

.form-hint {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.35;
}

.contact-form .btn {
  font-family: inherit;
  max-width: 250px;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--setronic-blau), #0f4bb5);
  color: #fff;
  cursor: pointer;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* Hover / Focus */
.contact-form .btn:hover,
.contact-form .btn:focus-visible {
  transform: translateY(-2px);
}

/* Click */
.contact-form .btn:active {
  transform: translateY(0);
}

/* Checkbox */

.form-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  align-items: start;
}

/* Textblock zusammenhalten */
.form-checkbox span {
  display: inline;
}

/* Link nicht trennen */
.form-checkbox a {
  white-space: nowrap;
}

.contact-strip {
  color: #000;
  padding: 52px 0;
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-strip__item {
  text-align: center;
}

.contact-strip__icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
}

.contact-strip__heading {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.contact-strip__subheading {
  margin: 24px 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.contact-strip__text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.95;
}

.contact-strip__muted {
  margin: 18px 0 8px;
  font-size: 14px;
  opacity: 0.85;
}

.contact-strip__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}

.contact-strip__link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.link-sections {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.link-section {
  width: 100%;
  margin-bottom: 40px;
}

.link-heading {
  display: block;
  background-color: var(--setronic-blau);
  color: white;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: bold;
}

.link-point {
  display: block;
  background-color: var(--zweites-setronic-blau);
  color: black;
  padding: 10px 15px;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.link-point i {
  margin-right: 10px;
}

.small-pic {
  width: 50% !important;
  position: relative;
  right: 0;
}

#status {
  font-weight: bold;
}

.timeline-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

/* Vertikale Linie */
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #f07c00; /* euer Orange */
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-date {
  position: absolute;
  left: -5px;
  top: 0;
  background: #f07c00;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.timeline-content {
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 10px;
  overflow: visible;
  margin-left: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.timeline-content h3 {
  margin-top: 0;
}

.timeline-content img {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Wenn aktiv → Text sichtbar */
.timeline-item.active .timeline-content img {
  max-height: 300px; /* ggf. anpassen */
  max-width: 100%;
}

.mitarbeiter_karte {
  display: flex;
  gap: 100px;
  margin: 30px 0px;
}

.info_uebersicht_client,
.info_uebersicht_server {
  margin: 20px 0px;
}

.br-1,
.br-2,
.br-3,
.br-4,
.br-5,
.br-6 {
  display: block;
  width: 100%;
}

.br-1 {
  height: 0.25rem;
} /* 4px */
.br-2 {
  height: 0.5rem;
} /* 8px */
.br-3 {
  height: 0.75rem;
} /* 12px */
.br-4 {
  height: 1rem;
} /* 16px */
.br-5 {
  height: 1.5rem;
} /* 24px */
.br-6 {
  height: 2rem;
} /* 32px */

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.5rem;
}
.mb-6 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.5rem;
}
.mt-6 {
  margin-top: 2rem;
}

.list-gap > li + li {
  margin-top: 0.5rem;
  list-style-type: none;
}

.list-gap {
  list-style-type: none;
}

.rn-section {
  margin-bottom: 2rem;
}
.rn-section > h2 {
  margin: 0 0 1rem;
}

.rn-block {
  margin-bottom: 1.5rem;
}
.rn-block > h4 {
  margin: 0 0 0.75rem;
}

.rn-block > .rn-label {
  margin: 0.75rem 0 0.5rem;
  font-weight: 600;
}

.rn-block > p {
  margin: 0;
}
.rn-block > p + p {
  margin-top: 0.5rem;
}

.rn-block > .rn-label + p {
  margin-top: 0.25rem;
}

.release-sep {
  margin: 2rem 0;
}

.pillars__brand {
  display: none; /* optional – bei Bedarf anzeigen */
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.pillars__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.io_column {
  border: none;
  margin: 22px 0px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.18s ease;
}

.io_column__top {
  position: relative;
  margin-bottom: 14px;
}

.io_column h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.io_column__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #7a3f00;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  line-height: 1.35;
  font-size: 14px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: darkgreen;
  font-weight: 700;
}

.btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  outline: none;
}

.btn--primary,
.btn--ghost {
  background: var(--accent);
  transition: all 0.3s ease;
  color: #1a1208;
}

.btn--primary:hover,
.btn--ghost:hover {
  background-color: var(--setronic-blau);
  color: white;
  transition: all 0.3s ease;
}

.btn--ghost {
  border-color: black;
}

.ids__container {
  max-width: 1100px;
  margin: 0 auto;
}

.ids__header {
  margin-bottom: 24px;
}

.ids__header h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.02em;
}

.ids__header p {
  margin: 10px 0 0;
  max-width: 65ch;
}

.ids__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.id {
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.id__head {
  position: relative;
  margin-bottom: 14px;
}

.id__head h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.id__sub {
  margin: 8px 0 0;
  font-size: 14px;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 0, 0.25);
  color: #7a3f00;
  font-weight: 650;
}

.id--lpd {
  border-color: rgba(255, 138, 0, 0.45);
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.12);
}

.lps {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.lps__item {
  position: relative;
  padding-left: 28px;
  line-height: 1.35;
  font-size: 14px;
}

.lps__item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-weight: 800;
  content: "";
}

.lps__item.is-included::before {
  content: "✓";
  background: rgba(22, 58, 138, 0.1);
}

.lps__item.is-add::before {
  content: "+";
  background: rgba(15, 23, 42, 0.06);
}

.d5-5 {
  justify-content: space-between;
  display: flex;
}

.d5-5-left,
.d5-5-right {
  flex: 0 0 48%;
  max-width: 48%;
}

.d5-5 img.nozoomimage {
  max-width: 100%;
  max-height: 300px;
  border-radius: 2rem;
  display: block;
  margin: 0 auto;
}
