* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background: #8DB4C4; 
  color: #0b0f12;
  padding-top: 72px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #f2f7fa; 
}

h1 {
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-weight: 600;
  font-size: clamp(2.0rem, 4vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

.small {
  font-size: 0.85rem;
  opacity: 0.7;
}

.label {
  font-weight: 300;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
}

/* Button:　　*/
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #0b1216;
  background: rgba(205, 227, 238, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
  background: rgba(227, 245, 255, 0.96);
}

.btn-pill__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(11, 18, 22, 0.12);
}


/* ====== NAVIGATION DESKTOP ====== */

/* Overlay sichtbar */
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transform: translateY(0);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Zustand: ganz oben auf der Seite → helles Menü */
.navbar--top {
  background: #ffffff;
  color: #15161A;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Zustand: nach unten gescrollt / beim Hochscrollen → dunkles Menü */
.navbar--scrolled {
  background: #15161A;
  color: #e5edf2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Menü ausgeblendet beim Runterscrollen */
.navbar--hidden {
  transform: translateY(-100%);
}

/* Logo erbt einfach die Textfarbe des Navbars */
.logo {
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  color: inherit;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: inherit; 
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links li a:hover {
  color: #8DB4C4; 
  opacity: 1;
}

.menu-toggle {
  display: none;               
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: inherit;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* ====== LANGUAGE SWITCH ====== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto; 
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch__link {
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-switch__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switch__sep {
  opacity: 0.35;
}

.lang-switch__link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 500;
}

.lang-switch--mobile {
  display: none;
}

/* Standard: nur Hamburger sichtbar */
.icon-hamburger {
  display: inline-block;
}

.icon-close {
  display: none;
  font-size: 1rem;            
  font-weight: 500;
}

/* Wenn Menü geöffnet → Hamburger weg, Close sichtbar */
.menu-toggle.open .icon-hamburger {
  display: none;
}

.menu-toggle.open .icon-close {
  display: inline-block;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 70px;
    right: 0;
    background: inherit; /* gleiche Farbe wie Navbar */
    width: 220px;
    padding: 1rem 1.2rem;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-links.show {
    display: flex;
  }

  /* Hamburger sichtbar */
  .menu-toggle {
    display: flex;
  }

  .lang-switch--desktop {
    display: none;
  }

  .lang-switch--mobile {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .lang-switch--mobile .lang-switch__link {
    font-size: 0.85rem;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: url('/img/hero-full.png') no-repeat right center; !important;
  background-size: cover;
  padding: 0 4rem;
  overflow: hidden;
  z-index: 1;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(10, 15, 20, 0.92) 0%,
      rgba(10, 15, 20, 0.65) 35%,
      rgba(10, 15, 20, 0.2) 65%,
      rgba(10, 15, 20, 0) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #d8e6ed;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.hero__title {
  font-size: 3.6rem;
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 480px;
  color: #c7d6df;
  margin-bottom: 2.4rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0095ff;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,153,255,0.25);
}

.hero__cta:hover {
  background: #39a9ff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
    padding: 2rem;
    background-position: center 20%;
  }

  .hero__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 85vh;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }
}

/* WELCOME SECTION  */

.welcome {
  position: relative;
  z-index: 2;
  margin-top: -45px; /* schiebt den hellen Bereich leicht in den Hero hinein */
  padding: 6.5rem 1.5rem 7.5rem;
  border-radius: 48px;
  background: linear-gradient(
    135deg,
    #96b8c5 0%,
    #ccd7dc 40%,
    #ebf0f3 100%
  );
}

.welcome__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; /* Referenz für die Floating-Bilder */
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.welcome__content {
  max-width: 590px;
  margin: 0 auto;
  text-align: center;
  color: #0f1f26;
}

.welcome__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.welcome__content h2 {
  margin-bottom: 2rem;
  color: #1f2f35;
}

.welcome__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f2f35;
}

/* ===== Floating-Images links / rechts ===== */
.welcome-image {
  position: absolute;
  width: 220px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

/* leichter kühler Overlay-Look */
.welcome-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  135deg,
  #E6EEF3 0%,
  #D5E3EC 45%,
  #C7D8E3 100%
);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

/* Linkes Bild – oberes Drittel*/
.welcome-image--left {
  top: 0.5rem;
  left: 1%;
  
}

/* Rechtes Bild – unteres Drittel */
.welcome-image--right {
  bottom: 0.5rem;
  right: 1%;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .welcome {
    padding: 180px 20px 180px;
  }

  .welcome-image {
    width: clamp(150px, 42vw, 190px);
  }

  .welcome-image--left {
    top: -80px;
    left: 5px;
  }

  .welcome-image--right {
    bottom: -80px;
    right: 5px;
  }
}

@media (max-width: 600px) {
  .welcome {
    padding: 150px 1.25rem 120px;
  }

  .welcome-inner {
    max-width: 520px;
  }

  .welcome__content h2 {
  font-size: 20px;
  line-height: 1,5;
  margin-bottom: 10px;
}

.welcome__text {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2f35;
}

  .welcome-image {
    width: clamp(120px, 32vw, 170px);
    box-shadow: none;
  }

  .welcome-image--left {
    top: -70px;
    left: 5px;
  }

  .welcome-image--right {
    bottom: -60px;
    right: 5px;
  }
}

/* ========== WHY SECTION ========== */
.why {
  background: linear-gradient(
  135deg,
  #1A4F5F 0%,
  #2E6A7C 45%,
  #4A8799 100%
);
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: -45px;
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(100px, 13vw, 160px) 40px;
}

.why-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(80px, 10vw, 120px);
}

.why-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  color: #c8d7de;
}

.why-header h2,
.why-feature__content h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
  color: #c8d7de;
}

.why-header p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: #c8d7de;
  opacity: 0.9;
  line-height: 1.7;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  justify-content: space-between;
  margin-bottom: clamp(80px, 10vw, 120px);
}

.why-feature:last-of-type {
  margin-bottom: 0;
}

.why-feature--reverse {
  flex-direction: row-reverse;   
}

.why-feature__content {
  color: #c8d7de;
  flex: 1 1 52%;
}

.why-feature__number {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.why-feature__content h3 {
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 0.9rem;
}

.why-feature__content p {
  font-size: clamp(0.98rem, 1.15vw, 1.05rem);
  line-height: 1.7;
  opacity: 0.95;
}

.why-feature__visual {
  position: relative;
  width: 100%;
  aspect-ratio:  1/ 1;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(
  circle at 50% 40%,
  #2a3f48 0%,
  #0e1418 70%
  );
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  flex: 1 1 40%;
}

.why-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Dark */
.why-feature__visual--dark{
  background: radial-gradient(circle at 50% 40%, #2a3f48 0%, #0e1418 70%);
}
.why-feature__visual--dark img{
  filter: brightness(.92) contrast(1.06);
}

/* Light */
.why-feature__visual--light{
  background: radial-gradient(circle at 50% 35%, #F6FAFC 0%, #EEF5F7 55%, #E3EEF3 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.6);
}

.why-feature__visual--light::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(23, 74, 90, 0.06); 
  pointer-events:none;
}

.why-feature__visual--light img{
  filter: brightness(.98) contrast(.97) saturate(.95);
}

/* ==========  Responsive ========== */
@media (max-width: 1024px) {
  .why-inner {
    padding: 80px 24px;
  }

  .why-feature {
    gap: 32px;
  }

  .why-feature__visual {
    border-radius: 28px;
  }
}

/* Mobile – alles untereinander */
@media (max-width: 750px) {
  .why-inner {
    padding: 60px 18px;
  }

  .why-header {
    margin-bottom: 50px;
  }

  .why-feature {
    flex-direction: column;       
    align-items: stretch;
    gap: 18px;
    margin-bottom: 60px;
  }

  .why-feature--reverse {
    flex-direction: column;       
  }

  .why-feature__content,
  .why-feature__visual {
    flex: none;
    width: 100%;
  }

  .why-feature__visual {
    aspect-ratio: 4 / 3;          
    border-radius: 24px;
  }

  .why-feature__content h3 {
    font-size: 1.25rem;
  }

  .why-feature__content p {
    font-size: 0.95rem;
  }
}

/* ================= Products Overview ================= */
.products-split {
  position: relative;
  background: linear-gradient(
    135deg,
    #96b8c5 0%,
    #ccd7dc 40%,
    #ebf0f3 100%
  );
  padding: clamp(80px, 10vw, 120px) 0 140px;
  margin-top: -45px;
  border-radius: 48px 48px 48px 48px;
  z-index: 2;
}

.products-split__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.products-split__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(46px, 6vw, 70px);
}

.products-split__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1rem;
  color: #1f2f35;
}

.products-split__header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2f35;
}

.products-split__header p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #1f2f35;
  opacity: 0.9;
}

/* Layout: links groß, rechts zwei kleine */
.products-split__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(18px, 2.6vw, 26px);
  align-items: stretch;
}

.products-split__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(18px, 2.6vw, 26px);
}

/* Card Basics */
.ps-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 340px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.ps-card--big {
  min-height: 520px;
}

.ps-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.20) 35%,
    rgba(0,0,0,0) 65%
  );
  pointer-events:none;
  z-index: 1;
}


.product-card--small {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center; 
  padding: 32px; /* damit Bild nicht an Text klebt */
  transform: none;
}

.ps-card::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background-image: var(--bg);
   background-size: cover; 
   background-position: center; 
   background-repeat: no-repeat; 
   transform: scale(1.02); 
   z-index: 0; }

/* SMALL: Bild vollständig zeigen */
.ps-card--small::before {
  position: contain;
  background-position: center;  
  transform: none;                    
}

/* dunkler Verlauf  */
.ps-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(10, 15, 20, 0.92) 0%,
      rgba(10, 15, 20, 0.62) 30%,
      rgba(10, 15, 20, 0.18) 60%,
      rgba(10, 15, 20, 0.00) 100%
    ),
    radial-gradient(circle at 30% 25%, rgba(141, 180, 196, 0.10), transparent 60%);
  z-index: 1;
}

.ps-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(26px, 3vw, 38px);
  max-width: 520px;
  color: #e3edf2;
}

.ps-card__content h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.ps-card__content p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 1.6rem;
  max-width: 52ch;
}

/* Responsive */
@media (max-width: 980px) {
  .ps-card--big {
    flex-direction: column;
    min-height: 460px;
  }

  .products-split__stack {
    grid-template-rows: auto;
  }
}

@media (max-width: 700px) {
  .products-split {
    border-radius: 34px;
  }

  .products-split__inner {
    grid-template-columns: 1fr;
    padding:  10px;
  }

  .ps-card {
    border-radius: 28px;
  }

  .ps-card--big {
    min-height: 420px;
  }

  .ps-card__content {
    max-width: none;
  }

  .ps-card__content h3 {
    font-size: 1.2rem;
  }

  .ps-card__content p {
    font-size: 0.85rem;
  }

  .ps-card .btn-pill,
  .ps-card .button,
  .ps-card a.btn-pill {         
    padding: 12px 14px;
    font-size: 0.95rem;
    border-radius: 999px;
    max-width: 100%;
    white-space: nowrap;   
    line-height: 1;
  }

  .ps-card .btn-pill__icon,
  .ps-card .button__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}

@media (max-width: 750px) {
  .products-split {
    border-radius: 34px;
    margin-top: 0;           
  }

  .products-split__inner {
    padding: 0 18px;
  }


  .products-split__grid {
    grid-template-columns: 1fr;    
    gap: 18px;
  }

  .products-split__stack {
    grid-template-rows: auto;     
    gap: 18px;
  }

  .ps-card {
    border-radius: 28px;
    min-height: 320px;
  }

  .ps-card--big {
    min-height: 360px;
  }

  .ps-card__content {
    max-width: none;
    padding: 18px;
  }

  .ps-card__content h3 {
    font-size: 1.35rem;
  }

  .ps-card__content p {
    font-size: 0.95rem;
  }
}


/* ================= Workflow Section ================= */
.workflow {
  position: relative;
  background-size: cover;
  background-position: 20% 85%;
  background-repeat: no-repeat;
  padding: 120px 0 100px;
  background:
    url("/img/workflow_full.png") center center / cover no-repeat; !important;
  color: #eaf4fa;
  margin-top: -45px;
  z-index: 0;
}

.workflow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 18, 0.85) 0%,
    rgba(8, 14, 18, 0.65) 35%,
    rgba(8, 14, 18, 0.25) 60%,
    rgba(8, 14, 18, 0.05) 100%
  );
  z-index: 1;
}

.workflow__inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.workflow__intro {
  max-width: 540px;
  margin-top: -60px;
}

.workflow__intro .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  color: #c8d7de;
}

.workflow__intro h2 {
  font-size: clamp(2.2rem, 3.3vw, 2.8rem);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

.workflow__intro p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2.2rem;
}

.workflow__intro .btn-pill {
  margin-top: 5rem;
}

/* Steps-Spalte rechts */
.workflow__steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* einzelne Step-Karte */
.workflow-step {
  background: linear-gradient(180deg, #d8e5ee 0%, #eff5f9 100%);
  color: #0f1f26;
  border-radius: 32px;
  padding: 22px 26px 24px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  max-width: 420px;
}

/* leichte „Stacking“-Versetzung */
.workflow-step--offset-1 {
  margin-left: 24px;
}

.workflow-step--offset-2 {
  margin-left: 48px;
}

.workflow-step__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.6;
  margin-bottom: 0.6rem;
}

.workflow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #0f1f26;
}

.workflow-step p {
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0.9;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*  Responsive  */
@media (max-width: 1024px) {
  .workflow__inner {
    grid-template-columns: 1fr;   
    gap: 32px;
    padding-inline: 32px;
  }

  .workflow__steps {
    max-width: 520px;
  }

  .workflow-step {
    max-width: 100%;
  }

  .workflow-step--offset-1,
  .workflow-step--offset-2 {
    margin-left: 0;
  }

  .workflow__intro {
    margin-top: 0;               
    max-width: 100%;
  }

  .workflow__intro .btn-pill {
    margin-top: 1.5rem;          
  }
}

@media (max-width: 700px) {
  .workflow {
    padding: 80px 0 80px;
    margin-top: 0; 
    background-position: 60% 50%; 
  }

  .workflow__inner {
    grid-template-columns: 1fr;
    padding-inline: 18px;
    gap: 22px;
  }

  .workflow__intro h2 {
    font-size: 1.8rem;  
    margin-top: 0;
  }

  .workflow__intro p {
    font-size: 0.95rem;
  }

  .workflow-step {
    border-radius: 22px;
    padding: 16px 16px 18px;
    max-width: 100%;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
}

/* ====== KONTAKTBEREICH ====== */
.contact {
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
}

#contact-form label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

#contact-form input,
#contact-form textarea {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

#contact-form button {
  padding: 0.75rem;
  background-color: #0078c8;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

#contact-form button:hover {
  background-color: #005f9e;
}

/* ====== FOOTER ====== */
.footer {
  background-color: #1e1e1e;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ====== SPRACHAUSWAHL ====== */
.language-switcher {
  display: flex;
  gap: 1.5rem;
}

.language-option {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-weight: 500;
  transition: color 0.3s ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: #fff;
  outline: none;
}
