
/* =========================
   Allgemein
========================= */
.grid-overlay {
  position: relative;
  overflow: hidden;
}

.grid-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(222, 214, 199, 0.06) 0,
      rgba(222, 214, 199, 0.06) 1px,
      transparent 1px,
      transparent 70px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(222, 214, 199, 0.06) 0,
      rgba(222, 214, 199, 0.06) 1px,
      transparent 1px,
      transparent 70px
    );
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

/* Optional: Vignette/Depth Layer (macht’s premium) */
.grid-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 30% 40%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 0;
}

/* Damit Content über dem Grid liegt */
.grid-overlay > * {
  position: relative;
  z-index: 1;
}


/* =========================
   HERO
========================= */
#hero {
  position: relative;
  min-height: calc(90vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--wrapper);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: calc(90vh - 100px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-accent {
  color: var(--action-color);
}

.hero-subline {
  opacity: 0.9;
  font-size: 1rem;
  line-height: 170%;
  max-width: 42rem;
}

/* CTA */
.hero-actions {
  margin-top: 0.8rem;
}

.hero-cta {
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  width: fit-content;
}

/* "Was ist das System?" Pill */
.hero-pill {
  position: absolute;
  right: 0;
  bottom: 18%;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(222, 214, 199, 0.55);
  background: rgba(20, 34, 42, 0.65);
  backdrop-filter: blur(6px);

  transition: 0.2s ease;
}

.hero-pill:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-pill-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(222, 214, 199, 0.55);
  background: rgba(222, 214, 199, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pill-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pill-text {
  font-size: 0.95rem;
  color: var(--text-color);
  white-space: nowrap;
}

.hero-pill-arrow {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  #hero {
    min-height: calc(100svh - 100px);
  }
  .hero-inner {
    min-height: calc(100svh - 100px);
  }
  .hero-pill {
    right: auto;
    left: 0;
    bottom: 10%;
  }
}

@media (max-width: 600px) {
  .hero-subline {
    font-size: 0.95rem;
  }
  .hero-pill {
    bottom: 8%;
    width: fit-content;
    max-width: 100%;
  }
}

/* =========================
   SECTION: Website ohne System
========================= */
#system-problem{
  padding: calc(var(--wrapper) * 1.2) var(--wrapper);
  background: var(--background-color-2);
}

.sp-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.sp-head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#system-problem h2{
  line-height: 135%;
}

.sp-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 2.4rem;
  align-items: start;
}

.sp-card{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.2rem;
}

.sp-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(20, 34, 42, 0.55);
  border: 1px solid rgba(222, 214, 199, 0.10);

  color: rgba(255, 90, 90, 0.9);
  font-weight: 700;
  line-height: 1;
}

.sp-card h3{
  margin-top: 0.2rem;
}

.sp-card p{
  opacity: 0.75;
  max-width: 280px;
}

/* Responsive */
@media (max-width: 1024px){
  .sp-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 1.8rem;
  }
}

@media (max-width: 640px){

  #system-problem{
    padding: calc(var(--wrapper) * 1.4) var(--wrapper);
  }
  .sp-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sp-card p{
    max-width: 220px;
  }
}


/* =========================
   SYSTEM SECTION
========================= */
#system{
  padding: calc(var(--wrapper) * 1.4) var(--wrapper);
  background: var(--background-color);
}

.system-inner{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.system-head{
  text-align: center;
}

.system-sub{
  opacity: 0.6;
  margin-top: 0.3rem;
}

/* Layout */
.system-content{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
}

/* Vertikale Linie */
.system-line{
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent-color),
    transparent
  );
  min-height: 380px;
  opacity: 0.7;
}

/* Steps */
.system-steps{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.system-step{
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.system-number{
  color: var(--accent-color);
  font-weight: 600;
  min-width: 40px;
}

.system-text h3{
  margin-bottom: 0.4rem;
}

.system-text p{
  opacity: 0.75;
  max-width: 420px;
}

/* Responsive */
@media (max-width: 900px){

  .system-content{
    gap: 2rem;
  }

  .system-line{
    display: none;
  }

  .system-step{
    gap: 1rem;
  }

}

/* =========================
   BLUEPRINT / PHASEN
========================= */
#blueprint{
  padding: calc(var(--wrapper) * 1.4) var(--wrapper);
  padding-left: var(--wrapper);
  background: var(--background-color);
}

.bp-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-self: stretch;
}

.bp-head{
  text-align: center;
}

.bp-sub{
  opacity: 0.55;
  margin-top: 0.35rem;
}

/* Bühne / Layout */
.bp-stage{
  min-height: 720px;
  margin: 5rem;
}

/* Connector Line (center) */
.bp-connector{
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  width: 2px;
  height: 76%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(233,171,114,0.9),
    transparent
  );
  opacity: 0.8;
}

/* Phase Tags */
.bp-phase{
  position: absolute;
  left: 50%;
  transform: translateX(22px);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 999px;
  color: var(--text-color-dark);
  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(233,171,114,0.25);
  white-space: nowrap;
}

.bp-phase-1{ top: 8%; }
.bp-phase-2{ top: 46%; }
.bp-phase-3{ top: 84%; }

/* Box */
.bp-box {
  position: absolute;
  width: 320px;
  border-radius: 14px;
  border: 1px solid rgba(222,214,199,0.25);
  background: rgba(20,34,42,0.55);
  backdrop-filter: blur(10px);
  padding: 1.35rem 1.35rem 1.2rem 1.35rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.bp-box-phase {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(233,171,114,0.92);
  color: var(--text-color-dark);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(233,171,114,0.18);
}

.bp-box-title{
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* Positions (wie Screenshot) */
.bp-box-arch{
  left: 25%;
  top: 18%;
}

.bp-box-impl{
  right: 18%;
  top: 45%;
  width: 360px;
}

.bp-box-opt{
  left: 25%;
  bottom: 0%;
  width: 320px;
}

/* Mini Grid (4 Felder) */
.bp-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.bp-mini{
  border-radius: 10px;
  border: 1px solid rgba(222,214,199,0.18);
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.bp-mini-accent{
  border: 1px solid rgba(233,171,114,0.65);
  box-shadow: inset 0 0 0 1px rgba(233,171,114,0.15);
}

/* Lists */
.bp-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bp-list li{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0.85;
}

/* number badges */
.bp-badge{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(222,214,199,0.25);
  font-size: 0.75rem;
  opacity: 0.9;
}

/* icon bullets */
.bp-ico{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(222,214,199,0.18);
  font-size: 0.85rem;
  opacity: 0.9;
}

.bp-box-phase {
  display: none;
}

/* Responsive */
@media (max-width: 1024px){
  .bp-stage{
    min-height: unset;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
  }

  .bp-connector,
  .bp-phase {
    display: none;
  }

  .bp-box{
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding-top: 3.2rem;
  }

  .bp-box-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* =========================
   EIGNUNG (Geeignet / Nicht geeignet)
========================= */
#eignung{
  padding: var(--wrapper) var(--wrapper);
  background: var(--background-color);
}

.fit-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.fit-head{
  text-align: center;
}

.fit-table{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid rgba(222,214,199,0.18);
  background: rgba(20,34,42,0.50);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  overflow: hidden;
}

.fit-row{
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
}

.fit-row--head{
  background: rgba(222,214,199,0.06);
}

.fit-cell{
  padding: 1.05rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 62px;
}

.fit-cell--head{
  justify-content: center;
  opacity: 0.6;
  font-size: 0.95rem;
}

.fit-divider{
  height: 100%;
  background: rgba(222,214,199,0.14);
}

.fit-row:not(.fit-row--head){
  border-top: 1px solid rgba(222,214,199,0.10);
}

.fit-ico{
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 auto;
  border: 1px solid rgba(222,214,199,0.14);
  background: rgba(222,214,199,0.06);
  color: rgba(222,214,199,0.9);
}

.fit-ico--good{
  border-color: rgba(39,136,51,0.35);
  background: rgba(39,136,51,0.10);
  color: rgba(110, 220, 130, 0.95);
}

.fit-ico--bad{
  border-color: rgba(134,25,25,0.35);
  background: rgba(134,25,25,0.10);
  color: rgba(255, 140, 140, 0.95);
}

.fit-cta{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 0.8rem;
}

.fit-note{
  opacity: 0.55;
  max-width: 60ch;
}

/* Responsive */
@media (max-width: 820px){
  #eignung{ padding: 4.5rem var(--wrapper); }

  .fit-row{
    grid-template-columns: 1fr;
  }
  .fit-divider{
    display: none;
  }
  .fit-cell--head{
    justify-content: flex-start;
  }
  .fit-row--head .fit-cell--head:first-child{
    border-bottom: 1px solid rgba(222,214,199,0.10);
  }
}


/* =========================
   RESULTS / CASE STUDY
========================= */
#results{
  padding: var(--wrapper) var(--wrapper);
  background: var(--background-color-2);
}

.results-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.results-head{
  text-align: center;
}

.results-card{
  border-radius: 16px;
  border: 1px solid rgba(222,214,199,0.35);
  background: rgba(20,34,42,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1.05fr 1px 1.45fr;
  gap: 2rem;
  align-items: start;
}

.results-divider{
  width: 1px;
  height: 100%;
  background: rgba(222,214,199,0.18);
}

/* LEFT */
.results-person{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.results-avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(222,214,199,0.35);
}

.results-person-meta{
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.results-name{
  font-size: 0.85rem;
  opacity: 0.85;
}

.results-company{
  font-size: 1rem;
  font-weight: 600;
}

.results-stars{
  color: var(--action-color);
  letter-spacing: 1px;
  font-size: 0.85rem;
  opacity: 0.95;
}

.results-kicker{
  margin-top: 0.5rem;
  opacity: 0.55;
  font-size: 0.95rem;
}

.results-quotes{
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.results-quotes li{
  font-size: 1rem;
  line-height: 160%;
  opacity: 0.92;
}

/* RIGHT */
.results-case-title{
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.results-case-text{
  opacity: 0.75;
  max-width: 52ch;
}

.results-metrics{
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}

.metric{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-label{
  opacity: 0.65;
  font-size: 0.85rem;
}

.metric-value{
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--action-color);
  line-height: 110%;
}

.metric-sub{
  opacity: 0.6;
  font-size: 0.85rem;
  line-height: 150%;
}

/* Highlight Box (62%) */
.metric-highlight{
  border: 1px solid rgba(201,161,74,0.65);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: rgba(201,161,74,0.06);
  box-shadow: 0 0 18px rgba(201,161,74,0.08);
}

/* Responsive */
@media (max-width: 1024px){
  .results-card{
    grid-template-columns: 1fr;
  }
  .results-divider{
    display: none;
  }
  .results-metrics{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  #results{
    padding: 4rem var(--wrapper);
  }
  .results-card{
    padding: 1.6rem;
  }
  .results-metrics{
    grid-template-columns: 1fr;
  }
}

/* =========================
   CTA GRADIENT SECTION
========================= */
.cta-gradient{
  padding: var(--wrapper) var(--wrapper);

  background: linear-gradient(
    to right,
    var(--background-color) 0%,
    var(--background-color-2) 100%
  );
}

.cta-gradient-inner{
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.cta-gradient-sub{
  opacity: 0.55;
}

.cta-gradient-title{
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 135%;
  font-weight: 600;
}

.cta-gradient .primary-btn{
  margin-top: 1.5rem;
}

/* =========================
   PROCESS / ABLAUF
========================= */
.process{
  background: var(--background-color);
  padding: var(--wrapper) var(--wrapper);
}

.process-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.process-head{
  max-width: 680px;
}

.process-sub{
  opacity: 0.55;
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.process-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

/* Steps */
.process-steps{
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.process-step{
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 0.9rem;

  padding: 0.85rem 0.75rem 0.85rem 0.9rem;
  background: transparent;
  border: none;
  border-radius: 12px;

  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.process-step:hover{
  background: rgba(222,214,199,0.04);
}

.process-step:focus-visible{
  outline: 2px solid rgba(233,171,114,0.45);
  outline-offset: 3px;
}

.process-no{
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.95;
}

.process-label{
  color: var(--text-color);
  font-weight: 500;
  line-height: 140%;
  opacity: 0.9;
}

/* Active left line */
.process-step::before{
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: rgba(233,171,114,0.9);
  border-radius: 2px;
  opacity: 0;
  transition: height 0.2s ease, opacity 0.2s ease;
}

.process-step.is-active::before{
  height: 18px;
  opacity: 1;
}

.process-step.is-active .process-label{
  opacity: 1;
}

/* Preview */
.process-preview{
  border-radius: 18px;
  border: 1px solid rgba(222,214,199,0.18);
  background: rgba(20,34,42,0.35);
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.process-preview img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9; /* sorgt für stabile Höhe beim Laden */
  object-fit: cover;
}

#processPreviewImg{
  transition: opacity 0.18s ease;
}
#processPreviewImg.is-swap{
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px){
  .process-grid{
    grid-template-columns: 1fr;
  }
  .process-preview{
    max-width: 720px;
  }
  .process-step::before{
    left: -10px;
  }
}


/* =========================
   ABOUT / SYSTEM CREATOR
========================= */
.about-system{
  padding: var(--wrapper) var(--wrapper);
  background: var(--background-color-2);
}

.about-inner{
  max-width: 1300px;
  margin: 0 auto;
}

.about-head{
  text-align: center;
  margin-bottom: 4rem;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

/* LEFT CARD */
.about-card{
  border-radius: 16px;
  border: 1px solid rgba(233,171,114,0.5);
  padding: 2rem;
  background: rgba(20,34,42,0.4);
  backdrop-filter: blur(10px);
  max-width: 320px;
}

.about-card h3{
  margin-bottom: 0.3rem;
}

.about-role{
  font-size: 0.85rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 1rem;
}

.about-card p{
  opacity: 0.75;
  line-height: 150%;
  font-size: 0.9rem;
}

/* PORTRAIT */
.about-portrait{
  display: flex;
  justify-content: center;
}

.about-portrait img{
  width: 260px;
  max-width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RIGHT QUOTES */
.about-quotes{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.quote-box{
  border-radius: 14px;
  border: 1px solid rgba(233,171,114,0.5);
  padding: 1.2rem 1.4rem;
  background: rgba(20,34,42,0.4);
  backdrop-filter: blur(10px);
  line-height: 150%;
  max-width: 360px;
}

/* Erste Quote – obere rechte Ecke kantig */
.about-quotes .quote-box:nth-child(1){
  border-bottom-left-radius: 4px;
}

/* Zweite Quote – unten rechts kantig */
.about-quotes .quote-box:nth-child(2){
  border-top-left-radius: 4px;
}

/* Dritte Quote – oben links leicht kantiger */
.about-quotes .quote-box:nth-child(3){
  border-top-left-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px){
  .about-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-card,
  .quote-box{
    margin: 0 auto;
  }

  .about-portrait{
    margin: 2rem 0;
  }
}

/* =========================
   CTA – Slots (Split)
========================= */
.cta-slots{
  background: var(--background-color);
  padding: var(--wrapper) var(--wrapper);
}

.cta-slots-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cta-left{
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 42rem;
}

.cta-title{
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 130%;
  font-weight: 650;
}

.cta-copy{
  opacity: 0.7;
  max-width: 38rem;
}

.cta-left .primary-btn{
  margin-top: 0.6rem;
  width: fit-content;
}

/* =========================
   Right Card (Slots)
========================= */
.cta-right{
  border-radius: 16px;
  border: 1px solid rgba(222,214,199,0.22);
  background: rgba(20,34,42,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  padding: 1.35rem 1.35rem 1.15rem 1.35rem;
  position: relative;
  overflow: hidden;
}

.slots-head{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.slots-kicker{
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.slots-quarter{
  font-size: 0.85rem;
  opacity: 0.85;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(222,214,199,0.18);
  background: rgba(27,50,63,0.55);
}

.slots-progress{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(222,214,199,0.12);
  border-bottom: 1px solid rgba(222,214,199,0.12);
}

.slots-progress-top{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.slots-count{
  font-size: 0.95rem;
  opacity: 0.9;
}

.slots-accent{
  color: var(--accent-color);
  font-weight: 700;
}

.slots-percent{
  font-size: 0.85rem;
  opacity: 0.65;
}

/* progress bar */
.bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(222,214,199,0.10);
  overflow: hidden;
  border: 1px solid rgba(222,214,199,0.12);
}

.bar-fill{
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-color), var(--action-color));
  box-shadow: 0 0 18px rgba(233,171,114,0.25);
}

/* meta rows */
.slots-meta{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
}

.meta-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.meta-label{
  font-size: 0.85rem;
  opacity: 0.6;
}

.meta-value{
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: right;
}

.slots-note{
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  line-height: 160%;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px){
  .cta-slots-inner{
    grid-template-columns: 1fr;
  }
  .cta-right{
    max-width: 560px;
  }
    /* HERO */
  #hero {
    min-height: calc(100svh - 100px);
  }

  .hero-inner {
    min-height: calc(100svh - 100px);
  }

  .hero-pill {
    right: auto;
    left: 0;
    bottom: 10%;
  }

  .bp-box-phase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {

  /* Allgemeine Section-Abstände */
  #hero,
  #system-problem,
  #system,
  #blueprint,
  #eignung,
  #results,
  .cta-gradient,
  .process,
  .about-system,
  .cta-slots {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  /* HERO */
  #hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    align-items: flex-start;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .hero-content h1 {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .hero-subline {
    max-width: 100%;
    text-align: left;
  }

  .hero-subline br {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-cta {
    width: fit-content;
  }

  .hero-pill {
    position: static;
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
    margin-top: 0.25rem;
  }

  /* SYSTEM */
  .system-inner {
    gap: 2.4rem;
  }

  .system-steps {
    gap: 2rem;
  }

  .system-step {
    align-items: flex-start;
  }

  .system-text p {
    max-width: 100%;
  }

  /* BLUEPRINT */
  .bp-inner {
    gap: 2.4rem;
  }

  .bp-stage {
    margin: 0;
    gap: 1rem;
  }

  .bp-box {
    max-width: 100%;
  }

  /* EIGNUNG */
  .fit-note br {
    display: none;
  }

  /* RESULTS */
  .results-card {
    padding: 1.7rem;
    gap: 1.4rem;
  }

  .results-case-text {
    max-width: 100%;
  }

  /* PROCESS */
  .process-grid {
    gap: 1.8rem;
  }

  .process-head {
    max-width: 100%;
    text-align: center;
  }

  .process-steps {
    gap: 0.45rem;
  }

  .process-preview {
    width: 100%;
    max-width: 100%;
  }

  /* ABOUT */
  .about-head {
    margin-bottom: 2.5rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-card,
  .quote-box {
    max-width: 100%;
  }

  /* CTA SLOTS */
  .cta-slots-inner {
    gap: 2rem;
  }

  .cta-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .cta-copy {
    max-width: 100%;
  }

  .cta-right {
    max-width: 100%;
  }
}


@media (max-width: 640px) {

  /* Etwas kompaktere Wrapper auf Mobile */
  :root {
    --wrapper: 6%;
  }

  /* Allgemein */
  main section {
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 118%;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 122%;
  }

  h3 {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  /* HERO */
  #hero {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-subline br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    margin-top: 0.4rem;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  #hero {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 5.5rem;
    align-items: flex-start;
  }

  .hero-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    align-items: flex-start;
  }

.hero-content h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.9rem);
    line-height: 108%;
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    letter-spacing: -0.02em;
}

.hero-subline {
    max-width: 26rem;
    font-size: 0.98rem;
    line-height: 160%;
    text-align: left;
    opacity: 0.82;
}

  .hero-subline br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    margin-top: 0.3rem;
  }

  .hero-cta {
      width: 100%;
      justify-content: center;
      padding: 0.9rem 1.2rem;
  }

  .hero-pill {
    position: static;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-top: 0.1rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
  }

  .hero-pill-text {
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .hero-pill-avatar {
    width: 24px;
    height: 24px;
  }

  /* WEBSITE OHNE SYSTEM */
/* WEBSITE OHNE SYSTEM */
  .sp-inner {
    gap: 2.2rem;
  }

  .sp-grid {
    gap: 1.9rem;
  }

  .sp-card {
    gap: 0.55rem;
    padding: 0;
    max-width: 380px;
    margin: 0 auto;
  }

  .sp-card h3 {
    max-width: 30ch;
    margin-inline: auto;
    text-align: center;
  }

  .sp-card p {
    max-width: 28ch;
    margin-inline: auto;
    text-align: center;
    line-height: 155%;
  }

  /* SYSTEM */
  #system-problem {
      padding-top: 5.5rem;
  }

  .system-content {
    justify-content: flex-start;
  }

  .system-steps {
    gap: 1.5rem;
  }

  .system-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.8rem;
  }

  .system-number {
    min-width: 34px;
    font-size: 0.95rem;
  }

  /* BLUEPRINT */
  #blueprint {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .bp-box {
    padding: 1rem;
    border-radius: 12px;
  }

  .bp-box-title {
    margin-bottom: 0.8rem;
  }

  .bp-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .bp-mini {
    font-size: 0.74rem;
    padding: 0.55rem 0.6rem;
  }

  .bp-list li {
    align-items: flex-start;
    line-height: 145%;
  }

  /* EIGNUNG */
  .fit-table {
    border-radius: 12px;
  }

  .fit-row--head {
    display: none;
  }

  .fit-row {
    gap: 0;
    border-top: 1px solid rgba(222,214,199,0.10);
  }

  .fit-row:first-child {
    border-top: none;
  }

  .fit-cell {
    min-height: auto;
    padding: 0.95rem 1rem;
    align-items: flex-start;
  }

  .fit-cell span:last-child {
    line-height: 150%;
  }

  .fit-note {
    max-width: 100%;
  }

  /* RESULTS */
  #results {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .results-person {
    align-items: center;
  }

  .results-kicker {
    display: none;
  }

  .results-quotes {
    display: none;
  }

  .results-quotes li {
    font-size: 0.98rem;
    line-height: 155%;
  }

  .results-metrics {
    margin-top: 1.2rem;
    gap: 0.9rem;
  }

  .metric {
    padding: 0;
  }

  .metric-highlight {
    padding: 0.8rem 0.9rem;
  }

  /* CTA GRADIENT */
  .cta-gradient-inner {
    gap: 0.8rem;
  }

  .cta-gradient-title br {
    display: none;
  }

  /* PROCESS */
  .process {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .process-head {
    text-align: center;
  }

  .process-sub {
    font-size: 0.92rem;
  }

  .process-step {
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0.65rem;
  }

  .process-step::before {
    display: none;
  }

  .process-label {
    font-size: 0.98rem;
    line-height: 145%;
  }

  /* ABOUT */
  .about-system {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about-head {
    margin-bottom: 2rem;
  }

  .about-card {
    padding: 1.3rem;
  }

  .about-portrait img {
    width: 100%;
    max-width: 260px;
  }

  .about-quotes {
    gap: 1rem;
  }

  .quote-box {
    padding: 1rem 1.1rem;
  }

  /* CTA SLOTS */
  .cta-slots {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .cta-title {
    line-height: 125%;
  }

  .cta-copy {
    font-size: 0.98rem;
  }

  .cta-left .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-right {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .slots-head,
  .slots-progress-top,
  .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .slots-progress-top,
  .meta-row {
    gap: 0.35rem;
  }

  .meta-value {
    text-align: left;
  }
}