/* Self-hosted fonts (DSGVO): Work Sans (headlines) + Inter (body).
   Only latin + latin-ext subsets and the weights actually used in this CSS
   are included. Both families are served by Google Fonts as variable-font
   files, so each subset file below is reused across the pinned weights. */

/* Work Sans — used at weight 700 (headlines) */

@font-face {
  font-family: 'Work Sans';
  src: url('/fileadmin/fonts/work_sans/WorkSans-Regular.eot');
  src: url('/fileadmin/fonts/work_sans/WorkSans-Regular.eot?#iefix') format('embedded-opentype'),
  url('/fileadmin/fonts/work_sans/WorkSans-Regular.woff2') format('woff2'),
  url('/fileadmin/fonts/work_sans/WorkSans-Regular.woff') format('woff'),
  url('/fileadmin/fonts/work_sans/WorkSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('/fileadmin/fonts/work_sans/WorkSans-Light.eot');
  src: url('/fileadmin/fonts/work_sans/WorkSans-Light.eot?#iefix') format('embedded-opentype'),
  url('/fileadmin/fonts/work_sans/WorkSans-Light.woff2') format('woff2'),
  url('/fileadmin/fonts/work_sans/WorkSans-Light.woff') format('woff'),
  url('/fileadmin/fonts/work_sans/WorkSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blue:      #245a93;
    --blue-dark: #1a4270;
    --blue-light:#e8f0f9;
    --red:       #C8001A;
    --white:     #FFFFFF;
    --off-white: #F7F9FC;
    --text:      #1a2a3a;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Work Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 48px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(36,90,147,0.12);
  }
  nav img { height: 38px; width: auto; }
  .nav-cta {
    background: var(--red); color: var(--white);
    font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 10px 26px; border-radius: 2px; text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #a30015; }

  /* HERO */
  .hero {
    position: relative; height: 100svh; min-height: 620px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 90px;
    background: url('../Images/hero-bg.jpg') center 30% / cover no-repeat;
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,42,62,0.90) 0%, rgba(26,42,62,0.40) 55%, rgba(26,42,62,0.05) 100%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 860px; }
  .hero-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); margin-bottom: 18px;
  }
  .hero h1 {
    font-family: 'Work Sans', serif;
    font-size: clamp(54px, 8.5vw, 108px); line-height: 1.0; font-weight: 700;
    color: var(--white);
  }
  .hero-sub {
    margin-top: 22px; font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300; color: rgba(255,255,255,0.82);
    max-width: 520px; line-height: 1.6;
  }
  .hero-actions { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--red); color: var(--white);
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 15px 36px; border-radius: 2px; text-decoration: none;
    transition: background 0.2s, transform 0.15s; display: inline-block;
  }
  .btn-primary:hover { background: #a30015; transform: translateY(-1px); }
  .btn-outline-white {
    background: transparent; color: var(--white);
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 15px 36px; border-radius: 2px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.45);
    transition: border-color 0.2s; display: inline-block;
  }
  .btn-outline-white:hover { border-color: var(--white); }
  .btn-outline-blue {
    background: transparent; color: var(--blue);
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 15px 36px; border-radius: 2px; text-decoration: none;
    border: 1.5px solid var(--blue);
    transition: background 0.2s, color 0.2s; display: inline-block;
  }
  .btn-outline-blue:hover { background: var(--blue); color: var(--white); }

  /* SECTIONS */
  section { padding: 90px 48px; }
  .section-inner { max-width: 1140px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Work Sans', serif;
    font-size: clamp(36px, 4.5vw, 58px); font-weight: 700;
    line-height: 1.05; color: var(--text); margin-bottom: 28px;
  }
  .section-title.white { color: var(--white); }
  .line-divider { width: 48px; height: 2px; background: var(--blue); margin-bottom: 28px; }
  .line-divider.white { background: rgba(255,255,255,0.4); }
  p { line-height: 1.75; color: #374151; font-size: 16px; }

  /* FÜR WEN */
  .fuer-wen { background: var(--white); }
  .fuer-wen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 48px; }
  .fuer-wen-img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; object-position: center; }
  .fuer-wen-text p { font-size: 17px; margin-bottom: 18px; }
  .check-list { list-style: none; margin-top: 28px; }
  .check-list li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; color: var(--text);
    padding: 13px 0; border-bottom: 1px solid #e2e8f0;
  }
  .check-list li:last-child { border-bottom: none; }
  .check-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0; margin-top: 1px;
  }

  /* ERWARTET */
  .erwartet { background: var(--blue); }
  .erwartet .section-label { color: rgba(255,255,255,0.6); }
  .erwartet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
  .erwartet-lead { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 36px; }
  .tagesablauf { border: 1px solid rgba(255,255,255,0.15); overflow: hidden; }
  .tagesablauf-header {
    background: rgba(255,255,255,0.12); padding: 14px 22px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .tagesablauf-row { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .tagesablauf-row:last-child { border-bottom: none; }
  .tagesablauf-time {
    padding: 14px 18px; min-width: 136px;
    font-size: 13px; font-weight: 600; color: white;
    background: rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center;
  }
  .tagesablauf-desc {
    padding: 14px 18px; font-size: 14px; color: rgba(255,255,255,0.75);
    display: flex; align-items: center; line-height: 1.4;
  }
  .erwartet-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .erwartet-photo-grid img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
  .erwartet-photo-grid img:first-child { grid-column: 1 / -1; aspect-ratio: 16/8; object-position: center bottom; }

  /* LERNST */
  .lernst { background: var(--off-white); }
  .lernst-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 48px; }
  .lernst-img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; object-position: center bottom; }
  .lernst-text p { font-size: 17px; margin-bottom: 18px; }
  .pruefung-block { border-left: 3px solid var(--blue); padding-left: 24px; margin-top: 32px; }
  .pruefung-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
  }
  .pruefung-item { font-size: 15px; color: var(--text); padding: 8px 0; border-bottom: 1px solid #e2e8f0; }
  .pruefung-item:last-child { border-bottom: none; }

  /* BEKOMMST */
  .bekommst { background: var(--white); }
  .benefits-list { margin-top: 48px; }
  .benefit-item {
    display: flex; gap: 28px; align-items: flex-start;
    padding: 28px 0; border-bottom: 1px solid #e2e8f0;
  }
  .benefit-item:last-child { border-bottom: none; }
  .benefit-nr {
    font-family: 'Work Sans', serif;
    font-size: 48px; font-weight: 700; line-height: 1;
    color: var(--blue-light); flex-shrink: 0; width: 52px; text-align: center;
    margin-top: -4px;
  }
  .benefit-body { flex: 1; }
  .benefit-title {
    font-family: 'Work Sans', serif;
    font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 6px;
  }
  .benefit-text { font-size: 15px; color: #4B5563; line-height: 1.7; }
  .benefit-link { color: var(--blue); text-decoration: underline; }

  /* TESTIMONIALS */
  .testimonials { background: var(--blue); }
  .testimonials .section-label { color: rgba(255,255,255,0.6); }
  .testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
  .testimonial-card { background: rgba(255,255,255,0.07); padding: 36px 32px; }
  .testimonial-card:hover { background: rgba(255,255,255,0.11); }
  .quote-mark {
    font-family: 'Work Sans', serif;
    font-size: 72px; font-weight: 700; line-height: 0.8;
    color: rgba(255,255,255,0.15); display: block; margin-bottom: 16px;
  }
  .testimonial-text { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; font-style: italic; }
  .testimonial-author {
    margin-top: 18px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45);
  }

  /* FAQ */
  .faq { background: var(--off-white); }
  .faq-list { margin-top: 48px; max-width: 820px; }
  .faq-item { border-bottom: 1px solid #d1d9e0; }
  .faq-item:first-child { border-top: 1px solid #d1d9e0; }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 0; text-align: left; gap: 16px;
  }
  .faq-q-text {
    font-family: 'Work Sans', serif;
    font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.25;
  }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--blue); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 300; flex-shrink: 0;
    transition: background 0.2s, color 0.2s, transform 0.25s;
  }
  .faq-item.open .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
  .faq-answer p { font-size: 15px; color: #4B5563; line-height: 1.75; }

  /* CTA FINAL */
  .cta-final {
    position: relative; text-align: center; padding: 130px 48px;
    background: url('../Images/cta-final-bg.jpg') center 40% / cover no-repeat;
  }
  .cta-final::after { content: ''; position: absolute; inset: 0; background: rgba(26,42,62,0.82); }
  .cta-final-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-final h2 {
    font-family: 'Work Sans', serif;
    font-size: clamp(44px, 7vw, 80px); font-weight: 700; line-height: 1.05;
    color: var(--white); margin-bottom: 18px;
  }
  .cta-final p { color: rgba(255,255,255,0.78); font-size: 18px; margin-bottom: 38px; line-height: 1.6; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }



/* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 12px 20px; }
    section { padding: 64px 20px; }
    .hero { padding: 0 20px 64px; }
    .fuer-wen-grid, .erwartet-grid, .lernst-grid { grid-template-columns: 1fr; gap: 36px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .erwartet-photo-grid { grid-template-columns: 1fr; }
    .erwartet-photo-grid img:first-child { grid-column: 1; }
    footer { flex-direction: column; }
  }


#footer {

  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  text-align: left;
}

.container {
  max-width: 1545px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px !important;
  padding-left: 25px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-ssm-1, .col-ssm-2, .col-ssm-3, .col-ssm-4, .col-ssm-5, .col-ssm-6, .col-ssm-7, .col-ssm-8, .col-ssm-9, .col-ssm-10, .col-ssm-11, .col-ssm-12, .col-ssm, .col-ssm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl, .col-xxl-auto, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-xxxl, .col-xxxl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mask_footer {
  padding-bottom: 30px;
  padding-top: 30px;
  color: white;
  background-color: #255a94 !important;
}

.mask_footer p {
  color: white;
  font-size: 18px;
  line-height: 27px;
}

.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

.mask_footer_col_headline, .mask_footer_col_company strong {
  line-height: 1.5;
  position: relative;
  display: inline-block;
  margin-bottom: 18px !important;
}

.mask_footer_col_headline, .mask_footer_col_company strong {
  font-size: 16px;
}

.mask_footer_col_headline:before, .mask_footer_col_company strong:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60%;
  border-bottom: 2px solid white;
}

.mask_footer_col_navi ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mask_footer a {
  color: white;
  text-decoration: none;
  background-color: transparent;
}

.animated {
  transition: all 250ms ease 0s;
}

.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}
.pt-3, .py-3 {
  padding-top: 1rem !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-center {
  justify-content: center !important;
}
.d-flex {
  display: flex !important;
}

#footer img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.mask_footer_copyright {
  font-size: 14px;
}

.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}

.mask_footer_copyright svg {
  position: relative;
  top: 2px;
}
.p-2 {
  padding: 0.5rem !important;
}

.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}

@media screen and (min-width: 280px) {
  .mask_footer {
    padding-bottom: calc(30px + 20 * ((100vw - 280px) / 1640));
    padding-top: calc(30px + 20 * ((100vw - 280px) / 1640));
  }

  .mask_footer_col_headline, .mask_footer_col_company strong {
    font-size: calc(16px + 2 * ((100vw - 280px) / 1640));
  }
}

@media (min-width: 576px) {
  .container, .container-ssm, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1530px;
  }
}

@media (min-width: 768px) {
  .container, .container-ssm, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1530px;
  }
}

@media (min-width: 1080px) {
  .container, .container-ssm, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1530px;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
  }

  .mask_footer_col.line {
    position: relative;
  }

  .mask_footer_col.line:before {
    content: '';
    position: absolute;
    right: 22px;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .mask_footer_col.line:before {
    content: '';
    position: absolute;
    right: 22px;
    bottom: 0;
    top: 0;
    margin: auto;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .mask_footer_col.line:before {
    right: 70px;
  }
}

@media (min-width: 1200px) {
  .container, .container-ssm, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1530px;
  }
  .mask_footer_col.line:before {
    right: 70px;
  }
}

@media screen and (min-width: 1920px) {
  .mask_footer {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .mask_footer_col_headline, .mask_footer_col_company strong {
    font-size: 18px;
  }

  .container {
    max-width: 1545px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
}
