
    /* Lokal gehostete Schriften — keine Drittanbieter-Requests, DSGVO-konform */
    @font-face {
      font-family: 'Comfortaa';
      font-style: normal;
      font-weight: 300 700;
      font-display: swap;
      src: url('/fonts/comfortaa.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Nunito';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('/fonts/nunito-bold.woff2') format('woff2');
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --blue-light: #71ABEB;
      --blue-dark: #002C5E;
      --white: #FFFFFF;
      --light-bg: #F0F6FF;
      --mid-bg: #E4F0FD;
      --glass-bg: rgba(255, 255, 255, 0.15);
      --glass-border: rgba(255, 255, 255, 0.35);
      --font: 'Comfortaa', cursive;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font);
      color: var(--blue-dark);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── REVEAL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ════════════════════════════════════
       NAV
    ════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s, color 0.35s;
      color: var(--white);
    }
    nav.scrolled {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 1px 24px rgba(0, 44, 94, 0.1);
      color: var(--blue-dark);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      color: inherit;
    }
    .nav-logo img {
      height: 38px;
      width: auto;
      display: block;
    }
    .nav-logo-text {
      font-family: var(--font);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.01em;
      white-space: nowrap;
      line-height: 1;
    }
    .nav-logo-text span {
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li {
      display: flex;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: inherit;
      font-weight: 400;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: opacity 0.2s;
      line-height: 1;
    }
    .nav-links a:hover { opacity: 0.7; }

    /* Language switcher */
    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 0;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 999px;
      padding: 2px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      line-height: 1;
    }
    .lang-switch button {
      background: transparent;
      border: none;
      color: inherit;
      cursor: pointer;
      padding: 4px 9px;
      border-radius: 999px;
      font: inherit;
      letter-spacing: inherit;
      transition: background 0.2s, color 0.2s;
    }
    .lang-switch button.active {
      background: rgba(255, 255, 255, 0.9);
      color: var(--blue-dark);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    .lang-switch button:not(.active):hover { opacity: 0.7; }
    .lang-switch--nav {
      margin-left: 1.5rem;
      color: inherit;
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(0, 0, 0, 0.15);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    nav.scrolled .lang-switch--nav {
      border-color: rgba(0, 44, 94, 0.2);
      background: rgba(0, 44, 94, 0.06);
      box-shadow: none;
    }
    .lang-switch--footer {
      margin: 0;
      color: rgba(255, 255, 255, 0.6);
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.06);
    }
    .lang-switch--footer button.active {
      background: rgba(255, 255, 255, 0.85);
      color: var(--blue-dark);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ════════════════════════════════════
       HERO
    ════════════════════════════════════ */
    .hero {
      height: 100vh;
      min-height: 600px;
      background-image: url("/img/hero-daylight.webp");
      background-position: center 30%;
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-bottom: 11vh;
    }
    html.is-night .hero {
      background-image: url("/img/hero-twilight-wolfgang.webp");
      background-position: center 30%;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 44, 94, 0.15) 0%,
        rgba(0, 44, 94, 0.62) 100%
      );
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      text-align: left;
    }
    .hero-title {
      font-size: clamp(2.6rem, 6vw, 5.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 2.6rem;
      letter-spacing: -0.01em;
      text-shadow: 0 2px 18px rgba(0, 20, 50, 0.35);
    }
    .hero-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-bottom: 1.2rem;
    }
    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 2.2rem;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: color 0.3s, opacity 0.3s;
      animation: scroll-fade-in 1.2s ease-out 0.8s both;
    }
    .scroll-indicator:hover {
      color: rgba(255, 255, 255, 1);
    }
    .scroll-indicator-chevron {
      width: 22px;
      height: 22px;
      animation: scroll-bounce 2.2s ease-in-out infinite;
    }
    .scroll-indicator-chevron svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    @keyframes scroll-bounce {
      0%, 100% { transform: translateY(0); opacity: 0.55; }
      50% { transform: translateY(8px); opacity: 1; }
    }
    @keyframes scroll-fade-in {
      from { opacity: 0; transform: translate(-50%, 12px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .scroll-indicator,
      .scroll-indicator-chevron { animation: none; }
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 0.5rem;
      justify-content: flex-start;
    }
    .hero-cta,
    .hero-cta-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1;
      color: var(--white);
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 1.1rem 2rem;
      width: 160px;
      border-radius: 50px;
      text-decoration: none;
      letter-spacing: 0.03em;
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      backdrop-filter: blur(24px) saturate(180%);
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hero-cta {
      background: rgba(113, 171, 235, 0.1);
      border: none;
      box-shadow:
        0 10px 32px rgba(0, 44, 94, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 20, 50, 0.1);
    }
    .hero-cta:hover {
      background: rgba(113, 171, 235, 0.2);
      transform: translateY(-2px);
      box-shadow:
        0 14px 40px rgba(0, 44, 94, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(0, 20, 50, 0.1);
    }
    .hero-cta-ghost {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.3);
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
      box-shadow:
        0 4px 16px rgba(0, 20, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    .hero-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
      box-shadow:
        0 8px 24px rgba(0, 20, 50, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }

    /* ════════════════════════════════════
       TAGLINE
    ════════════════════════════════════ */
    .tagline {
      background: var(--white);
      padding: 6rem 3rem;
      text-align: center;
    }
    .tagline-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .tagline-text {
      font-size: clamp(1.6rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.25;
    }

    /* ════════════════════════════════════
       ÜBER UNS
    ════════════════════════════════════ */
    .about {
      background: var(--white);
      padding: 6rem 3rem;
    }
    .about-lead {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.4;
      margin-bottom: 1.2rem;
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    h1, h2, .section-title, .hero-title, .about-lead, .stat-number, .kontakt-heading {
      font-family: 'Nunito', sans-serif;
    }
    .section-title {
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.2;
      margin-bottom: 2rem;
    }
    .about-bio {
      font-size: 1.05rem;
      font-weight: 300;
      color: #2a4a72;
      line-height: 1.85;
    }

    /* About two-col layout */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 3rem;
      align-items: stretch;
    }

    /* Stats tiles */
    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: space-between;
    }
    .stat-tile {
      background: var(--white);
      border: 1px solid rgba(113, 171, 235, 0.25);
      border-radius: 16px;
      padding: 1.4rem 1rem;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 44, 94, 0.06);
    }
    .stat-number {
      display: block;
      font-size: 2rem;
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-desc {
      display: block;
      font-size: 0.82rem;
      font-weight: 300;
      color: #2a4a72;
      line-height: 1.3;
    }

    /* ════════════════════════════════════
       CREDO
    ════════════════════════════════════ */
    .credo {
      position: relative;
      padding: 8rem 3rem;
      background: var(--blue-dark);
      text-align: center;
    }
    .credo-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0 auto;
    }
    .credo-text {
      font-size: clamp(1.5rem, 3.2vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
    }

    /* ════════════════════════════════════
       LEISTUNGEN
    ════════════════════════════════════ */
    .leistungen {
      background: var(--light-bg);
      padding: 6rem 3rem;
    }
    .leistungen-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .leistungen-header {
      margin-bottom: 3.5rem;
    }
    .leistungen-header .section-title { color: var(--blue-dark); margin-bottom: 0; }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .leistung-card {
      position: relative;
      background: var(--white);
      border: 1px solid rgba(113, 171, 235, 0.3);
      border-radius: 20px;
      padding: 2.2rem 2.2rem 2.4rem;
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
      box-shadow: 0 4px 20px rgba(0, 44, 94, 0.06);
      transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s cubic-bezier(.2,.7,.3,1);
      overflow: hidden;
    }
    .leistung-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(0, 44, 94, 0.16);
    }
    .leistung-icon {
      position: relative;
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #ffffff 0%, #E8F1FB 60%, #D5E5F7 100%);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      box-shadow:
        0 8px 24px rgba(0, 44, 94, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(0, 44, 94, 0.06);
      transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s cubic-bezier(.2,.7,.3,1);
      overflow: hidden;
      clip-path: inset(0 round 22px);
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
    .leistung-icon::before {
      content: "";
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(113, 171, 235, 0.45) 0%, rgba(113, 171, 235, 0) 70%);
      top: -10px;
      right: -10px;
      filter: blur(6px);
      transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
      pointer-events: none;
    }
    .leistung-card:hover .leistung-icon {
      transform: translateY(-2px);
      box-shadow:
        0 14px 32px rgba(0, 44, 94, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(0, 44, 94, 0.06);
    }
    .leistung-card:hover .leistung-icon::before {
      transform: translate(-6px, 6px) scale(1.15);
    }
    .leistung-icon img {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 3px rgba(0, 44, 94, 0.15));
    }
    .leistung-text h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.7rem;
      line-height: 1.2;
    }
    .leistung-text p {
      font-size: 0.9rem;
      font-weight: 300;
      color: #2a4a72;
      line-height: 1.6;
    }

    /* ════════════════════════════════════
       TEAM
    ════════════════════════════════════ */
    .team {
      background: var(--white);
      padding: 6rem 3rem;
    }
    .team-inner { max-width: 1100px; margin: 0 auto; }
    .team-intro {
      display: block;
      margin-bottom: 2.5rem;
    }
    .team-desc {
      font-size: 1.05rem;
      font-weight: 300;
      color: #2a4a72;
      line-height: 1.85;
      margin-top: 1.2rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .team-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 44, 94, 0.08);
      transition: transform 0.25s, box-shadow 0.25s;
      text-align: center;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(0, 44, 94, 0.14);
    }
    .team-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .team-photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: var(--blue-light);
      width: 100%;
      height: 100%;
    }
    .team-photo-placeholder svg { opacity: 0.5; }
    .team-photo-placeholder span {
      font-size: 0.75rem;
      font-weight: 400;
      opacity: 0.6;
      letter-spacing: 0.06em;
    }
    .team-info {
      padding: 1.4rem 1.2rem 1.6rem;
    }
    .team-info h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 0.3rem;
    }
    .team-info .team-role {
      font-size: 0.82rem;
      font-weight: 300;
      color: var(--blue-light);
      letter-spacing: 0.04em;
    }


    /* ════════════════════════════════════
       KONTAKT
    ════════════════════════════════════ */
    /* ════════════════════════════════════
       FAQ
    ════════════════════════════════════ */
    .faq {
      background: var(--light-bg);
      padding: 6rem 3rem;
    }
    .faq-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .faq-header {
      margin-bottom: 3.5rem;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid rgba(113, 171, 235, 0.3);
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 44, 94, 0.06);
      transition: box-shadow 0.3s, border-color 0.3s;
      overflow: hidden;
    }
    .faq-item[open] {
      border-color: var(--blue-light);
      box-shadow: 0 10px 32px rgba(0, 44, 94, 0.10);
    }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.4rem 1.8rem;
      font-weight: 700;
      color: var(--blue-dark);
      font-size: 1.02rem;
      line-height: 1.45;
      transition: color 0.2s;
    }
    .faq-item summary:hover { color: var(--blue-light); }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::marker { content: ''; }
    .faq-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--mid-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.35s cubic-bezier(.2,.7,.3,1), background 0.3s, color 0.3s;
      color: var(--blue-dark);
    }
    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.4;
      stroke-linecap: round;
    }
    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
      background: var(--blue-dark);
      color: var(--white);
    }
    .faq-answer {
      padding: 0 1.8rem 1.5rem;
      color: var(--blue-dark);
      opacity: 0.78;
      line-height: 1.7;
      font-weight: 300;
      font-size: 0.98rem;
    }

    .kontakt {
      background: var(--white);
      padding: 6rem 3rem;
      position: relative;
      overflow: hidden;
    }
    .kontakt-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }

    /* Section tag with decorative line */
    .section-tag {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.2rem;
    }
    .section-tag-line {
      display: block;
      width: 28px;
      height: 2px;
      background: var(--blue-light);
      flex-shrink: 0;
    }
    .section-tag-text {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-light);
    }
    .section-tag.centered { justify-content: center; }

    /* Kontakt left column */
    .kontakt-heading {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--blue-dark);
      line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .kontakt-desc {
      font-size: 0.92rem;
      font-weight: 300;
      color: #2a4a72;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    /* Contact icon items */
    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .contact-icon-pill {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid rgba(113, 171, 235, 0.3);
      background: rgba(113, 171, 235, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-light);
    }
    .contact-item-body {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .contact-item-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(0, 44, 94, 0.45);
    }
    .contact-item-value,
    .contact-item-value a {
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--blue-dark);
      text-decoration: none;
      line-height: 1.4;
    }
    .contact-item-value a:hover { color: var(--blue-light); }

    /* Contact form */
    .kontakt-form {
      background: var(--white);
      border: 1px solid rgba(113, 171, 235, 0.35);
      border-radius: 24px;
      padding: 2.2rem 2.2rem 2rem;
      box-shadow: 0 12px 40px rgba(0, 44, 94, 0.12);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 1rem;
    }
    .form-group:last-child { margin-bottom: 0; }
    .form-group label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: rgba(0, 44, 94, 0.55);
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--light-bg);
      border: 1px solid rgba(0, 44, 94, 0.12);
      border-radius: 10px;
      padding: 0.8rem 1rem;
      font-family: var(--font);
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--blue-dark);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(0, 44, 94, 0.3); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--blue-light);
      background: var(--white);
    }
    .form-group select option { background: var(--white); color: var(--blue-dark); }
    .form-group textarea { resize: vertical; min-height: 150px; }
    .btn-submit {
      width: 100%;
      margin-top: 1.2rem;
      background: var(--blue-light);
      color: var(--blue-dark);
      font-family: var(--font);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      padding: 0.95rem 2rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-submit:hover {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 44, 94, 0.3);
    }
    .btn-submit:disabled {
      opacity: 0.6;
      cursor: wait;
      transform: none;
      box-shadow: none;
    }
    .form-status {
      margin-top: 0.9rem;
      font-size: 0.85rem;
      line-height: 1.55;
      font-weight: 400;
      text-align: center;
      min-height: 1.2em;
      color: rgba(0, 44, 94, 0.7);
    }
    .form-status.sending { color: var(--blue-dark); }
    .form-status.success {
      color: #0a6b3a;
      background: rgba(10, 107, 58, 0.08);
      border-radius: 10px;
      padding: 0.7rem 1rem;
    }
    .form-status.error {
      color: #a32020;
      background: rgba(163, 32, 32, 0.08);
      border-radius: 10px;
      padding: 0.7rem 1rem;
    }
    .form-consent {
      margin-top: 0.9rem;
      font-size: 0.76rem;
      line-height: 1.55;
      font-weight: 300;
      color: rgba(0, 44, 94, 0.55);
      text-align: center;
    }
    .form-consent a {
      color: var(--blue-dark);
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 400;
    }
    .form-consent a:hover { color: var(--blue-light); }

    /* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
    footer {
      background: #001a3a;
      padding: 2.5rem 3rem;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1.2rem;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      color: var(--white);
      justify-self: start;
    }
    .footer-logo img { height: 32px; width: auto; }
    .footer-logo-text {
      font-family: var(--font);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .footer-logo-text span { font-weight: 300; }
    .footer-links {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      justify-self: center;
    }
    .footer-links a {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
      line-height: 1;
      min-width: 5.5rem;
      text-align: center;
    }
    .footer-links a:hover { color: var(--blue-light); }
    .footer-copy {
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      line-height: 1;
      white-space: nowrap;
      justify-self: end;
    }
    .footer-address {
      grid-column: 1 / -1;
      font-style: normal;
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
      text-align: center;
      margin-top: 0.4rem;
    }
    .footer-address a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-address a:hover { color: var(--blue-light); }
    .footer-address .sep {
      color: rgba(255,255,255,0.25);
      margin: 0 0.4rem;
    }
    .footer-address .nb {
      white-space: nowrap;
    }

    /* ════════════════════════════════════
        MODALS
    ════════════════════════════════════ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 44, 94, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--white);
      border-radius: 24px;
      width: 100%;
      max-width: 720px;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 64px rgba(0, 44, 94, 0.2);
      overflow: hidden;
    }
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.6rem 2rem 1.4rem;
      border-bottom: 1px solid var(--mid-bg);
      flex-shrink: 0;
    }
    .modal-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue-dark);
      letter-spacing: 0.01em;
    }
    .modal-close {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: none;
      background: var(--light-bg);
      color: var(--blue-dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      line-height: 1;
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .modal-close:hover { background: var(--blue-dark); color: var(--white); }
    .modal-body {
      overflow-y: auto;
      padding: 2rem 2rem 2.5rem;
      color: #2a4a72;
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.8;
    }
    .modal-body h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin: 1.6rem 0 0.5rem;
    }
    .modal-body h3:first-child { margin-top: 0; }
    .modal-body p { margin-bottom: 0.8rem; }
    .modal-body a { color: var(--blue-light); text-decoration: none; }
    .modal-body a:hover { text-decoration: underline; }
    .modal-body-en { display: none; }
    html[lang="en"] .modal-body-de { display: none; }
    html[lang="en"] .modal-body-en { display: block; }
    .modal-note {
      margin-top: 1.4rem;
      padding-top: 1rem;
      border-top: 1px solid var(--mid-bg);
      font-size: 0.82rem;
      color: #5a7195;
      font-style: italic;
    }

    /* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); padding: 1.5rem 2rem; gap: 1.2rem; box-shadow: 0 8px 24px rgba(0,44,94,0.1); }
      .nav-links.open { display: flex; }
      .nav-links a { color: var(--blue-dark) !important; font-size: 1rem; }
      .nav-links .lang-switch--nav { color: var(--blue-dark); margin-left: 0; }
      .hamburger { display: flex; }
      .hero-inner { padding: 0 1.5rem; }
      .tagline, .about, .credo, .leistungen, .team, .faq, .kontakt { padding: 4.5rem 1.5rem; }
      .faq-item summary { padding: 1.2rem 1.4rem; font-size: 0.98rem; }
      .faq-answer { padding: 0 1.4rem 1.3rem; }
      .leistung-card { flex-direction: column; align-items: center; text-align: center; justify-content: center; aspect-ratio: 1 / 1; padding: 1.5rem; }
      .leistung-icon { width: 72px; height: 72px; padding: 11px; border-radius: 20px; }
      .leistung-icon::before { width: 44px; height: 44px; }
      .team-grid { grid-template-columns: repeat(3, 1fr); }
      .team-card .team-info { padding: 1rem 0.8rem 1.2rem; }
      .team-info h3 { font-size: 0.88rem; }
      .team-info .team-role { font-size: 0.75rem; }
      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-stats { flex-direction: column; }
      .stat-tile { padding: 1.2rem 0.8rem; }
      .stat-number { font-size: 1.6rem; }
      .stat-desc { font-size: 0.75rem; }
      footer { padding: 2rem 1.5rem; }
      .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem;
      }
      .footer-logo { justify-self: start; }
      .footer-links { justify-self: center; flex-wrap: wrap; justify-content: center; gap: 1rem 1.4rem; }
      .footer-links a { min-width: 4.5rem; }
      .footer-copy { justify-self: center; white-space: normal; }
      .footer-address { grid-column: auto; margin-top: 0; }
    }

    @media (max-width: 600px) {
      .hero-title { font-size: 2.2rem; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
      .team-card .team-info { padding: 1.2rem 1rem 1.4rem; }
      .team-info h3 { font-size: 1rem; }
      .team-info .team-role { font-size: 0.82rem; }
      .about-stats { gap: 0.6rem; }
      .stat-tile { padding: 1rem 0.6rem; border-radius: 12px; }
      .stat-number { font-size: 1.4rem; margin-bottom: 0.3rem; }
      .stat-desc { font-size: 0.7rem; }
      footer { padding: 2rem 1rem; }
      .footer-copy { font-size: 0.68rem; }
      .footer-address { font-size: 0.68rem; }
      .footer-address .sep { margin: 0 0.25rem; }
    }