/* Übernommene Stil-Blöcke aus den Divi-Code-Modulen (1:1-Look) */
.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.prob-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.prob-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.prob-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.prob-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prob-icon svg {
  width: 20px;
  height: 20px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prob-card h3 {
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.4;
}
.prob-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

/* Tablet: 2 Spalten halten, enger */
@media (max-width: 900px) {
  .prob-grid {
    gap: 16px;
  }
  .prob-card {
    padding: 20px;
    gap: 14px;
  }
}

/* Mobile: 1 Spalte */
@media (max-width: 680px) {
  .prob-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Sehr schmal: Icon kleiner, falls Text gequetscht wird */
@media (max-width: 380px) {
  .prob-card {
    padding: 18px;
    gap: 12px;
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0;
}
.icon-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.icon-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.icon-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.icon-box {
  width: 52px;
  height: 52px;
  border: 2px solid #E8B606;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-card h3 {
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0px;
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .icon-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    margin: 0 auto;
  }
}

/* Mobile: 1 Spalte */
@media (max-width: 600px) {
  .icon-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .icon-card {
    padding: 28px 20px;
  }
  .icon-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .icon-card h3 {
    min-height: unset;
  }
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
  align-items: stretch;
}
.prod-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.prod-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.prod-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.prod-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.prod-badge {
  background: #E8B606;
  color: #141141;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.08em;
}
.prod-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-icon svg {
  width: 18px;
  height: 18px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prod-card h3 {
  font-weight: 700;
  color: #141141;
  margin: 0;
  line-height: 1.3;
}
.prod-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}
.prod-desc {
  color: #333333;
  line-height: 1.6;
  margin: 0 0 16px;
  font-weight: 400;
}
.prod-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  flex-grow: 1;
}
.prod-list li {
  list-style: none !important;
  color: #333333;
  padding: 4px 0 4px 22px !important;
  position: relative;
  background: none !important;
  font-weight: 400 !important;
}
.prod-list li::marker {
  display: none !important;
  content: '' !important;
}
.prod-list li::before {
  content: '✓' !important;
  position: absolute;
  left: 0;
  color: #E8B606;
  font-weight: 700;
}
.prod-link {
  font-weight: 700;
  color: #141141;
  display: inline-block;
  padding-top: 22px;
}
@media (max-width: 780px) {
  .prod-grid { grid-template-columns: 1fr; }
}

.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.res-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.res-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.res-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.res-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.res-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.res-card h3 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.res-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}

/* Tablet: 2 Spalten halten, enger */
@media (max-width: 900px) {
  .res-grid {
    gap: 16px;
  }
  .res-card {
    padding: 24px 20px;
  }
}

/* Mobile: 1 Spalte */
@media (max-width: 680px) {
  .res-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* JS-Höhen bei 1 Spalte neutralisieren, falls Resize verpasst wird */
  .res-card {
    height: auto !important;
  }
}

.ujk-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Hintergrund-Linie (echtes Element, top/bottom via JS) */
.ujk-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #141141;
  z-index: 0;
}

/* Goldene animierte Fortschritts-Linie */
.ujk-timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #FFC800;
  z-index: 1;
  transition: height 0.15s linear;
  will-change: height;
  pointer-events: none;
}

.ujk-timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 280px;
  margin-bottom: 30px;
  z-index: 2;
}
.ujk-timeline-row:last-child { margin-bottom: 0; }

.ujk-timeline-row.left  { justify-content: flex-start; }
.ujk-timeline-row.right { justify-content: flex-end; }

/* Plus-Knoten */
.ujk-timeline-row::before {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: #141141 !important;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  text-align: center;
  z-index: 3;
  font-family: Arial, sans-serif;
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

/* Knoten leuchtet, sobald Linie ihn erreicht hat */
.ujk-timeline-row.reached::before {
  background: #FFC800 !important;
  color: #141141;
}

.ujk-phase-card {
  background: #141141 !important;
  width: 44%;
  padding: 32px 32px 34px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Goldene Eck-Akzente */
.ujk-phase-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #FFC800;
  border-left: 2px solid #FFC800;
}
.ujk-phase-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #FFC800;
  border-right: 2px solid #FFC800;
}

.ujk-phase-label {
  display: block;
  color: #FFC800 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.ujk-phase-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}

.ujk-phase-text {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .ujk-timeline { padding: 20px 0; }
  .ujk-timeline-line,
  .ujk-timeline-progress { left: 20px; transform: none; }
  .ujk-timeline-row { min-height: auto; margin-bottom: 32px; justify-content: flex-start !important; }
  .ujk-timeline-row::before { left: 20px; }
  .ujk-phase-card { width: calc(100% - 60px); margin-left: 60px; padding: 24px 24px 26px; }
}

.ujk-themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0;
}
.ujk-themen-card {
  background: #141141 !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ujk-themen-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #FFC800;
  border-left: 2px solid #FFC800;
}
.ujk-themen-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #FFC800;
  border-right: 2px solid #FFC800;
}
.ujk-themen-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
}
.ujk-themen-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #FFC800;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ujk-themen-card h3 {
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  font-size: 16px !important;
  padding: 0 !important;
}
.ujk-themen-text {
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.65;
  font-size: 15px;
  flex-grow: 1;
}

/* Untere Reihe: 2 Karten, linksbündig (gleiche Spalten wie oben 1+2) */
.ujk-themen-row-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablet groß: 2 Spalten */
@media (max-width: 1100px) {
  .ujk-themen-grid { grid-template-columns: repeat(2, 1fr); }
  .ujk-themen-row-bottom { grid-template-columns: repeat(2, 1fr); }
  .ujk-themen-row-bottom > .ujk-themen-card:first-child { grid-column: auto; }
}

/* Tablet klein: Gap reduzieren */
@media (max-width: 900px) {
  .ujk-themen-grid { gap: 16px; }
  .ujk-themen-row-bottom { gap: 16px; }
  .ujk-themen-card { padding: 24px 20px; }
}

/* Mobile: 1 Spalte */
@media (max-width: 600px) {
  .ujk-themen-grid { grid-template-columns: 1fr; gap: 16px; }
  .ujk-themen-row-bottom { grid-template-columns: 1fr; gap: 16px; }
  .ujk-themen-card { padding: 26px 22px; }
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.feat-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  box-sizing: border-box;
}
.feat-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.feat-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.feat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon svg {
  width: 32px;
  height: 32px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feat-card h3 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feat-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
}

/* Tablet: 2 Spalten halten, enger */
@media (max-width: 900px) {
  .feat-grid { gap: 16px; }
  .feat-card { padding: 24px 20px; }
}

/* Mobile: 1 Spalte */
@media (max-width: 680px) {
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Sehr schmal: Padding weiter reduzieren */
@media (max-width: 380px) {
  .feat-card { padding: 22px 18px; }
}

.ujk-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Hintergrund-Linie (echtes Element, top/bottom via JS) */
.ujk-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #141141;
  z-index: 0;
}

/* Goldene animierte Fortschritts-Linie */
.ujk-timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #FFC800;
  z-index: 1;
  transition: height 0.15s linear;
  will-change: height;
  pointer-events: none;
}

.ujk-timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 320px;
  margin-bottom: 30px;
  z-index: 2;
}
.ujk-timeline-row:last-child { margin-bottom: 0; }

.ujk-timeline-row.left  { justify-content: flex-start; }
.ujk-timeline-row.right { justify-content: flex-end; }

/* Plus-Knoten */
.ujk-timeline-row::before {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #141141 !important;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  z-index: 3;
  font-family: Arial, sans-serif;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Knoten leuchtet, sobald Linie ihn erreicht hat */
.ujk-timeline-row.reached::before {
  background: #FFC800 !important;
  color: #141141;
  border-color: #FFC800;
}

.ujk-phase-card {
  background: #141141 !important;
  width: 44%;
  padding: 32px 32px 34px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Goldene Eck-Akzente */
.ujk-phase-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #FFC800;
  border-left: 2px solid #FFC800;
}
.ujk-phase-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #FFC800;
  border-right: 2px solid #FFC800;
}

.ujk-phase-label {
  display: block;
  color: #FFC800 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.ujk-phase-card h3,
.ujk-phase-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}

.ujk-phase-text {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
}

.ujk-phase-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 0 22px;
}

.ujk-phase-result-label {
  display: block;
  color: #FFC800 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.ujk-phase-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ujk-phase-list li {
  position: relative;
  padding-left: 22px !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  list-style: none !important;
  list-style-type: none !important;
  background: none !important;
}
.ujk-phase-list li:last-child { margin-bottom: 0 !important; }
.ujk-phase-list li::marker { content: '' !important; display: none !important; }
.ujk-phase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #FFC800;
}

/* Mobile */
@media (max-width: 768px) {
  .ujk-timeline { padding: 20px 0; }
  .ujk-timeline-line,
  .ujk-timeline-progress { left: 20px; transform: none; }
  .ujk-timeline-row { min-height: auto; margin-bottom: 32px; justify-content: flex-start !important; }
  .ujk-timeline-row::before { left: 20px; }
  .ujk-phase-card { width: calc(100% - 60px); margin-left: 60px; padding: 24px 24px 26px; }
}

.ujk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.ujk-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ujk-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.ujk-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.ujk-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ujk-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ujk-card h3 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.ujk-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
  .ujk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .ujk-card { padding: 24px 20px; }
}

/* Mobile: 1 Spalte */
@media (max-width: 600px) {
  .ujk-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.ujk-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Hintergrund-Linie */
.ujk-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #141141;
  z-index: 0;
}

/* Goldene animierte Fortschritts-Linie */
.ujk-timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: #FFC800;
  z-index: 1;
  transition: height 0.15s linear;
  will-change: height;
  pointer-events: none;
}

.ujk-timeline-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 320px;
  margin-bottom: 30px;
  z-index: 2;
}
.ujk-timeline-row:last-child { margin-bottom: 0; }

.ujk-timeline-row.left  { justify-content: flex-start; }
.ujk-timeline-row.right { justify-content: flex-end; }

/* Plus-Knoten */
.ujk-timeline-row::before {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: #141141 !important;
  color: rgba(255,255,255,0.55);
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  z-index: 3;
  font-family: Arial, sans-serif;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.ujk-timeline-row.reached::before {
  background: #FFC800 !important;
  color: #141141;
  border-color: #FFC800;
}

.ujk-phase-card {
  background: #141141 !important;
  width: 44%;
  padding: 32px 32px 34px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Goldene Eck-Akzente */
.ujk-phase-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #FFC800;
  border-left: 2px solid #FFC800;
}
.ujk-phase-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #FFC800;
  border-right: 2px solid #FFC800;
}

.ujk-phase-label {
  display: block;
  color: #FFC800 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.ujk-phase-card h3,
.ujk-phase-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}

.ujk-phase-text {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.ujk-phase-text:last-of-type { margin-bottom: 22px !important; }

.ujk-phase-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 0 22px;
}

.ujk-phase-result-label {
  display: block;
  color: #FFC800 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}

.ujk-phase-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ujk-phase-list li {
  position: relative;
  padding-left: 22px !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  list-style: none !important;
  list-style-type: none !important;
  background: none !important;
}
.ujk-phase-list li:last-child { margin-bottom: 0 !important; }
.ujk-phase-list li::marker { content: '' !important; display: none !important; }
.ujk-phase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #FFC800;
}

/* Innere "Mögliche Inhalte"-Box (Phase 02) */
.ujk-phase-inner-box {
  background: rgba(255,255,255,0.04);
  padding: 22px 24px 24px;
  margin: 0 0 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ujk-phase-inner-label {
  display: block;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
}
.ujk-phase-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.ujk-phase-inner-item {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
}
.ujk-phase-inner-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1.5px;
  background: #FFC800;
}

/* Mobile */
@media (max-width: 768px) {
  .ujk-timeline { padding: 20px 0; }
  .ujk-timeline-line,
  .ujk-timeline-progress { left: 20px; transform: none; }
  .ujk-timeline-row { min-height: auto; margin-bottom: 32px; justify-content: flex-start !important; }
  .ujk-timeline-row::before { left: 20px; }
  .ujk-phase-card { width: calc(100% - 60px); margin-left: 60px; padding: 24px 24px 26px; }
  .ujk-phase-inner-grid { grid-template-columns: 1fr; gap: 12px; }
}

.et-l--body .et_pb_post_content > p:empty { display: none; margin: 0; padding: 0; }
.actpx-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 6px 0 4px;
}
.actpx-fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.actpx-fact::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFC800;
  flex-shrink: 0;
}

.actpx-notebox {
  background: #110F2E;
  border-left: 4px solid #E8B606;
  padding: 28px 26px;
  margin-top: 10px;
  color: #ffffff !important;
  line-height: 1.7;
}
.actpx-notebox p {
  color: #ffffff !important;
  margin: 0;
  line-height: 1.7;
}

.actpx-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.actpx-day {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 32px 30px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.actpx-day::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.actpx-day::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.actpx-day-label {
  display: block;
  color: #FFC800 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
}
.actpx-day h3 {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}
.actpx-day-sub {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 0 18px !important;
}
.actpx-day-listlabel {
  display: block;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
}
.actpx-day-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 22px !important;
  flex-grow: 1;
}
.actpx-day-list li {
  position: relative;
  padding-left: 22px !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  list-style: none !important;
}
.actpx-day-list li::marker { content: '' !important; }
.actpx-day-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #FFC800;
}
.actpx-day-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 0 20px;
}
.actpx-day-resultlabel {
  display: block;
  color: #FFC800 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  margin: 0 0 12px !important;
}
.actpx-day-result {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .actpx-days { grid-template-columns: 1fr; gap: 16px; }
  .actpx-day { padding: 26px 22px 28px; }
}

.actpx-safebox {
  background: #110F2E;
  border-left: 4px solid #E8B606;
  padding: 24px 26px;
  margin-top: 16px;
  color: #ffffff !important;
  line-height: 1.7;
}
.actpx-safebox p {
  color: #ffffff !important;
  margin: 0;
  line-height: 1.7;
}

.actpx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.actpx-card {
  background: #110F2E;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.actpx-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.actpx-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.actpx-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.actpx-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E8B606;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.actpx-card h3 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 16px;
}
.actpx-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}
@media (max-width: 900px) {
  .actpx-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .actpx-card { padding: 24px 20px; }
  .actpx-grid .actpx-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .actpx-grid { grid-template-columns: 1fr; gap: 14px; }
}

.actpx-quote {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  padding: 0 10px;
  color: #ffffff !important;
  font-size: 19px;
  line-height: 1.7;
  font-style: italic;
}
.actpx-quote-mark {
  color: #FFC800;
  font-size: 60px;
  line-height: 1;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 6px;
}
.actpx-quote p {
  color: #ffffff !important;
  font-size: 19px;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 14px;
}
.actpx-quote-src {
  display: block;
  margin-top: 14px;
}
.actpx-quote-src {
  color: #FFC800 !important;
  font-size: 13px !important;
  font-style: normal !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.actpx-schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 10px auto 30px;
}
.actpx-sched-card {
  background: #ffffff;
  border: 1px solid rgba(20,17,65,0.12);
  display: flex;
  align-items: stretch;
  position: relative;
}
.actpx-sched-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.actpx-sched-date {
  background: #141141;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 18px 10px;
}
.actpx-sched-date .d {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #FFC800;
}
.actpx-sched-date .m {
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.actpx-sched-body { padding: 18px 20px; }
.actpx-sched-body .tag {
  color: #B08A00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.actpx-sched-body h3 {
  color: #141141 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
}
.actpx-sched-body p {
  color: #4a4a58;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.actpx-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.actpx-price {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px 28px;
  position: relative;
  text-align: center;
}
.actpx-price::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #FFC800;
  border-left: 2px solid #FFC800;
}
.actpx-price::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #FFC800;
  border-right: 2px solid #FFC800;
}
.actpx-price .lbl, .actpx-price .val, .actpx-price .note {
  padding: 0 !important;
}
.actpx-price .lbl {
  color: #FFC800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.actpx-price .val {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 12px;
}
.actpx-price .note {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.actpx-price .badge {
  display: inline-block;
  background: #FFC800;
  color: #141141;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin: 0 0 14px;
}
.actpx-fineprint {
  text-align: center;
  color: #4a4a58;
  font-size: 13px;
  line-height: 1.7;
  max-width: 700px;
  margin: 22px auto 0;
}
@media (max-width: 820px) {
  .actpx-schedule, .actpx-prices { grid-template-columns: 1fr; }
}

.actpx-popup { position: fixed; inset: 0; z-index: 2147483000; display: none; }
.actpx-popup.is-open { display: flex; align-items: center; justify-content: center; padding: 16px; box-sizing: border-box; }
.actpx-popup-backdrop { position: absolute; inset: 0; background: rgba(8,7,25,0.78); }
.actpx-popup-dialog {
  position: relative;
  max-width: 960px;
  margin: 0;
  background: #110F2E;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 12px 45px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.actpx-popup-scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.actpx-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 5;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  color: #FFC800;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actpx-popup-close:hover { color: #ffffff; }
.actpx-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.actpx-popup-form {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
}
.actpx-popup-title {
  font-family: Oswald, 'Oswald-Roboto', 'Oswald-Verdana', sans-serif;
  color: #ffffff !important;
  font-size: 28px;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px !important;
}
.actpx-popup-fact {
  display: block;
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 34px;
}
.actpx-popup-fact::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #FFC800;
}
.actpx-popup-note {
  color: rgba(255,255,255,0.75) !important;
  font-size: 13px;
  line-height: 1.6;
  margin: 16px 0 0 !important;
}
@media (max-width: 800px) {
  .actpx-popup-grid { grid-template-columns: 1fr; gap: 20px; }
  .actpx-popup-info { order: -1; }
  .actpx-popup-title { font-size: 22px; margin-bottom: 12px !important; padding-right: 52px; }
  .actpx-popup-dialog { margin: 0; padding: 30px 16px; max-height: 94vh; }
  .actpx-popup-note { display: none; }
}

.sr-bio {
  width: 100%;
  margin: 0;
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 34px 36px 36px;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  position: relative;
  box-sizing: border-box;
}
.sr-bio::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.sr-bio::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.sr-bio p {
  margin: 0 0 16px;
  max-width: 62ch;
}
.sr-bio p:first-child {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.sr-bio p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .sr-bio { padding: 26px 22px 28px; font-size: 15px; }
  .sr-bio p:first-child { font-size: 17px; }
}

.sr-toggle {
  width: 100%;
  margin: 0;
}
.sr-toggle summary {
  list-style: none;
  cursor: pointer;
  background: #FFC800;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.2s ease;
}
.sr-toggle summary::-webkit-details-marker { display: none; }
.sr-toggle summary:hover { background: #E8B606; }

.sr-toggle-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sr-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #141141;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.sr-toggle-icon::before,
.sr-toggle-icon::after {
  content: '';
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}
.sr-toggle-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.sr-toggle-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.sr-toggle[open] .sr-toggle-icon { transform: rotate(135deg); }

.sr-toggle-content {
  background: #141141;
  padding: 24px 24px 26px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
  animation: srSlideDown 0.3s ease;
}
.sr-toggle-content p { margin: 0 0 12px; }
.sr-toggle-content p:last-child { margin-bottom: 0; }

@keyframes srSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 8px 0;
}
.num-card {
  background: #141141;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.num-card::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: -2px;
  left: -2px;
  border-top: 2px solid #E8B606;
  border-left: 2px solid #E8B606;
}
.num-card::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #E8B606;
  border-right: 2px solid #E8B606;
}
.num-badge {
  width: 40px;
  height: 40px;
  border: 2px solid #E8B606;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.num-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #E8B606;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.num-card h3 {
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.num-desc {
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
  .num-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .num-card { padding: 24px 20px; }
}

/* Mobile: 1 Spalte */
@media (max-width: 600px) {
  .num-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.sr-legal {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
}
.sr-legal h1 {
  color: #141141 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}
.sr-legal h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: #FFC800;
  margin-top: 14px;
}
.sr-legal h2 {
  color: #141141 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin: 44px 0 6px !important;
  line-height: 1.35 !important;
  padding: 0 !important;
}
.sr-legal h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #FFC800;
  margin-top: 10px;
  margin-bottom: 14px;
}
.sr-legal p {
  margin: 0 0 14px;
}
.sr-legal address {
  font-style: normal;
  background: #f7f7f4;
  border-left: 3px solid #FFC800;
  padding: 16px 20px;
  margin: 0 0 16px;
}
.sr-legal a {
  color: #141141;
  text-decoration: underline;
  text-decoration-color: #FFC800;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  word-break: break-word;
}
.sr-legal a:hover {
  color: #FFC800;
  text-decoration-color: #141141;
}
.sr-legal strong { color: #141141; }
.sr-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 0 0 8px;
}
.sr-legal-row .sr-legal-label {
  color: #6a6a6a;
  min-width: 220px;
}
.sr-legal-row .sr-legal-value {
  color: #141141;
  font-weight: 600;
}
@media (max-width: 600px) {
  .sr-legal { font-size: 15px; }
  .sr-legal h1 { font-size: 22px !important; }
  .sr-legal h2 { font-size: 17px !important; margin-top: 36px !important; }
  .sr-legal-row .sr-legal-label { min-width: 100%; }
}

.sr-legal {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
}
.sr-legal h1 {
  color: #141141 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}
.sr-legal h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: #FFC800;
  margin-top: 14px;
}
.sr-legal h2 {
  color: #141141 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin: 44px 0 6px !important;
  line-height: 1.35 !important;
  padding: 0 !important;
}
.sr-legal h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: #FFC800;
  margin-top: 10px;
  margin-bottom: 14px;
}
.sr-legal p {
  margin: 0 0 14px;
}
.sr-legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.sr-legal ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.sr-legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #FFC800;
}
.sr-legal address {
  font-style: normal;
  background: #f7f7f4;
  border-left: 3px solid #FFC800;
  padding: 16px 20px;
  margin: 0 0 16px;
}
.sr-legal a {
  color: #141141;
  text-decoration: underline;
  text-decoration-color: #FFC800;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  word-break: break-word;
}
.sr-legal a:hover {
  color: #FFC800;
  text-decoration-color: #141141;
}
.sr-legal strong { color: #141141; }
.sr-legal-meta {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  color: #6a6a6a;
}
@media (max-width: 600px) {
  .sr-legal { font-size: 15px; }
  .sr-legal h1 { font-size: 22px !important; }
  .sr-legal h2 { font-size: 17px !important; margin-top: 36px !important; }
}
