:root {
  --blue-900: #1f3f6e;
  --blue-800: #2f5a8f;
  --blue-700: #3a6aa6;
  --blue-600: #4b7ec2;
  --ink: #1c2430;
  --muted: #5b6b7e;
  --bg: #eef4fb;
  --bg-soft: #eef4fb;
  --line: #cfe0f2;
  --card: #ffffff;
  --shadow: 0 22px 70px rgba(17, 29, 49, 0.22), 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  --btn: #2f5a8f;
  --btn-hover: #274c7a;
  --radius: 8px;
  --max: 1240px;
  --pad: 18px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--btn);
  text-decoration: none
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.section-wide .container {
  max-width: 1280px
}

.topbar {
  background: linear-gradient(0deg, var(--blue-900), var(--blue-800));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
/* background */
.slide-item.active {
    box-shadow: none !important;
}
.slide-item.active .slide-overlay {
    display: none !important;
    background: none !important;
}
/* background */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 280px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.2px
}

.brand-text span {
  font-size: 12.5px;
  opacity: 0.92
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid transparent
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
  text-decoration: none
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none
}

.btn-primary {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff
}

.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700)
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  color: #fff
}

.lang-flag:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none
}

.lang-flag svg {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25)
}

.flag {
  display: none
}

html[lang="de"] .flag-en {
  display: block
}

html[lang="en"] .flag-de {
  display: block
}

.titleband {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

section {
  background: var(--bg-soft);
}

.topbar {
  background: linear-gradient(0deg, var(--blue-900), var(--blue-800));
}

.titleband-inner {
  padding: 22px 0
}

.breadcrumbs {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 8px
}

.breadcrumbs a {
  color: var(--muted)
}

h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.2px
}

.lead {
  margin: 10px 0 0;
  max-width: 86ch;
  color: var(--muted);
  font-size: 15.5px
}

section {
  padding: 26px 0
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: start;
}

.grid.grid-50 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.grid.grid-1 {
  grid-template-columns: 1fr;
}

.grid.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.grid-60-40 {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #6d93c2;
  box-shadow: 0 56px 180px rgba(17, 29, 49, 0.44), 0 16px 34px rgba(17, 29, 49, 0.22), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600));
  border-radius: var(--radius) var(--radius) 0 0;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px
}

.list li {
  margin: 7px 0
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--btn);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.btn2:hover {
  background: #f7f9fc;
  text-decoration: none
}

.btn2-primary {
  background: var(--btn);
  border-color: var(--btn);
  color: #fff
}

.btn2-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover)
}

.video {
  border: 1px dashed #9fb3c9;
  background: #f7f9fc;
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  color: var(--muted)
}

.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px
}

.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: default;
  position: relative;
  min-height: 138px;
  box-shadow: 0 24px 92px rgba(17, 29, 49, 0.32), 0 10px 22px rgba(17, 29, 49, 0.18), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: all 0.2s ease;
}

.module:hover {
  border-color: #c6d3e2;
  transform: translateY(-9px);
  box-shadow: 0 56px 180px rgba(17, 29, 49, 0.44), 0 16px 34px rgba(17, 29, 49, 0.22), 0 1px 0 rgba(255, 255, 255, 0.85) inset
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: var(--blue-800);
  padding: 3px 8px;
  border-radius: 999px
}

.module h3 {
  margin: 10px 0 6px;
  font-size: 14.5px
}

.module p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.note {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 13.5px
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff
}

.toggle button {
  border: 0;
  background: #fff;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px
}

.toggle button.active {
  background: var(--btn);
  color: #fff
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.plan {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 62px 210px rgba(17, 29, 49, 0.44), 0 18px 40px rgba(17, 29, 49, 0.24), 0 1px 0 rgba(255, 255, 255, 0.85) inset
}

.plan.featured {
  position: relative;
  border-color: #6d93c2;
  box-shadow: 0 86px 260px rgba(17, 29, 49, 0.52), 0 22px 54px rgba(17, 29, 49, 0.26), 0 1px 0 rgba(255, 255, 255, 0.90) inset;
  transform: scale(1.06)
}

.plan.featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn);
  color: white;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px
}

.plan .label {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px
}

.plan h3 {
  margin: 6px 0 6px;
  font-size: 17px
}

.amount {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--blue-900)
}

.amount small {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 6px
}

.plan .desc {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13.5px
}

.plan ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px
}

.plan li {
  margin: 7px 0
}

.plan .cta-row {
  margin-top: auto
}

.proof-section {
  padding-top: 0
}

.faq-list {
  margin-top: 16px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden
}

.faq-question {
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  user-select: none
}

.faq-question:hover {
  background: #f9fbfd
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: var(--btn);
  transition: transform 0.2s ease
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13.5px
}

.faq-item.active .faq-answer {
  max-height: 340px;
  padding: 0 18px 14px
}

form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 800;
  font-size: 12px;
  color: var(--ink)
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  outline: none
}

input:focus,
select:focus,
textarea:focus {
  border-color: #6d93c2;
  box-shadow: 0 0 0 3px rgba(75, 126, 194, 0.18)
}

textarea {
  min-height: 110px;
  resize: vertical
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: var(--muted)
}

.chip input {
  width: 16px;
  height: 16px;
  margin: 0
}

footer {
  background: #1b1f2b;
  color: #cfd6e1;
  padding: 26px 0;
  margin-top: 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: start
}

.footer-title {
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px
}

.footer-line {
  height: 3px;
  width: 44px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  margin: 10px 0 12px
}

.footer-box {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 0;
}

.logo-ph {
  height: auto;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
}

.logo-ph img {
  display: block;
  height: 100px;
  width: auto;
  max-width: 100%;
}

a.link-strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 800;
}

a.link-strong:hover {
  text-decoration-thickness: 3px;
}

.small {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72)
}

.copy {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62)
}

@media (max-width: 980px) {
  .nav {
    display: none
  }

  .grid {
    grid-template-columns: 1fr
  }

  .modules {
    grid-template-columns: repeat(2, 1fr)
  }

  .plans {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .row {
    grid-template-columns: 1fr
  }

  .brand {
    min-width: unset
  }
}

.refband {
  width: 100%;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color: #fff;
  padding: 28px 0 18px;
  overflow: hidden;
}

.refhead h2 {
  margin: 0 0 6px;
  color: #fff;
}

.refhead p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
}

.refmarquee {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
  position: relative;
}

.refmarquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: refscroll 35s linear infinite;
}

.refchip {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .92);
}

.refchip::after {
  content: "•";
  margin-left: 42px;
  color: rgba(255, 255, 255, .35);
}

.refmarquee-track .refchip:last-child::after {
  content: "";
  margin: 0;
}

@keyframes refscroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.refmarquee:hover .refmarquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .refmarquee-track {
    animation: none;
  }
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow-track {
  width: 100%;
  height: 100%;
  position: relative;
}

  .slide-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0s 0.25s;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0;
    z-index: 1;
  }

.slide-item.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0s;
}

.slide-item.prev {
  transform: translate(-105%, -50%) scale(0.85);
  opacity: 0.5;
  z-index: 5;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0s;
}

.slide-item.next {
  transform: translate(5%, -50%) scale(0.85);
  opacity: 0.5;
  z-index: 5;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, z-index 0s;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
    border-radius: 12px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-900);
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slide-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--btn);
  border-color: var(--btn);
  transform: scale(1.3);
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s;
}

.lightbox-content {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  margin: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0,0,0,0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}


 
.toast-container {
  position: fixed;
  top: 30px;  
  left: 50%; 
  transform: translateX(-50%);  
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
  align-items: center; 
  pointer-events: none;  
}

.toast {
  pointer-events: auto; 
  min-width: 350px; 
  max-width: 90vw;  
  background: #fff;
  border-left: 6px solid var(--blue-600);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);  
  border-radius: 8px;  
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
   
  animation: toastSlideDown 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  
  font-size: 15px;  
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
}
 
.toast.success {
  border-left-color: #2da44e;  
  background: #f0fff4;  
}

.toast.error {
  border-left-color: #cf222e;  
  background: #fff5f5;  
}

.toast.info {
  border-left-color: var(--blue-600);
  background: #fff;
}

.toast-message {
  flex-grow: 1;
  padding-right: 15px;
  line-height: 1.5;
}

.toast-close {
  cursor: pointer;
  color: #8c959f;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: var(--ink);
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}
 
@keyframes toastSlideDown {
  from { 
    opacity: 0; 
    transform: translateY(-30px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}
 
@keyframes toastFadeOut {
  from { 
    opacity: 1; 
    transform: translateY(0); 
  }
  to { 
    opacity: 0; 
    transform: translateY(-20px); 
  }
}