﻿:root {
      --navy: #0B2F5C;
      --navy-deep: #071F3D;
      --blue: #2F6FA8;
      --sky: #9BC4E0;
      --ice: #EAF3FA;
      --soft: #F4F8FC;
      --white: #fff;
      --ink: #12263A;
      --muted: #5B6E82;
      --line: rgba(11, 47, 92, 0.12);
      --wa: #25d366;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow: 0 16px 40px rgba(7, 31, 61, 0.1);
      --font: 'Source Sans 3', system-ui, sans-serif;
      --display: 'Barlow Condensed', 'Source Sans 3', system-ui, sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --nav: 80px;
      --nav-scrolled: 56px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--ink);
      background: var(--soft);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    h1, h2, h3 {
      font-family: var(--display);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--navy);
    }
    .wrap {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding-left: clamp(24px, 4.5vw, 48px);
      padding-right: clamp(24px, 4.5vw, 48px);
      box-sizing: border-box;
    }
    .skip { position: absolute; left: -999px; }
    .skip:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: 10px 14px; border-radius: 8px; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: .94rem;
      border: 1.5px solid transparent; cursor: pointer;
      transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
    }
    .btn i, .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
    .btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(11,47,92,.22); }
    .btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: var(--navy); border-color: rgba(11,47,92,.2); }
    .btn-outline:hover { border-color: var(--navy); background: rgba(11,47,92,.04); }
    .btn-light { background: #fff; color: var(--navy); }
    .btn-light:hover { background: var(--ice); }
    .btn-wa { background: var(--wa); color: #fff; }
    .btn-wa:hover { filter: brightness(0.95); transform: translateY(-1px); }
    .wa-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      fill: currentColor;
    }
    .btn .wa-icon { width: 18px; height: 18px; }
    .mobile-contact-bar .wa-icon { width: 18px; height: 18px; fill: #fff; }

    .eyebrow {
      display: inline-block;
      font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 12px;
    }
    .section { padding: 80px 0; }
    .section-head { max-width: 560px; margin-bottom: 40px; }
    .section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 10px; }
    .section-head p { color: var(--muted); font-size: 1.05rem; }

    /* Topbar */
    .topbar {
      background: var(--navy-deep);
      color: rgba(255,255,255,.85);
      font-size: .84rem;
      padding: 8px 0;
    }
    .topbar-inner {
      display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    }
    .topbar a { display: inline-flex; align-items: center; gap: 8px; }
    .topbar a:hover { color: #fff; }
    .topbar i, .topbar svg { width: 14px; height: 14px; color: var(--sky); }

    /* Nav */
    .nav {
      position: sticky; top: 0; z-index: 100;
      height: var(--nav);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
      transition: height .28s var(--ease), box-shadow .28s var(--ease);
    }
    .nav.is-scrolled {
      height: var(--nav-scrolled);
      box-shadow: 0 10px 28px rgba(7, 31, 61, .08);
    }
    .nav-inner {
      height: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      grid-column: 2;
      flex-shrink: 0;
    }
    .logo img {
      height: 56px;
      width: auto;
      transition: height .28s var(--ease);
    }
    .nav.is-scrolled .logo img {
      height: 40px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      font-weight: 600;
      color: var(--muted);
      font-size: .88rem;
      justify-self: start;
      min-width: 0;
    }
    .nav-links a:hover,
    .nav-links button:hover { color: var(--navy); }
    .nav-item { position: relative; }
    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 0;
      background: transparent;
      color: inherit;
      font-weight: inherit;
      cursor: pointer;
      white-space: nowrap;
    }
    .dropdown-toggle i,
    .dropdown-toggle svg {
      width: 14px;
      height: 14px;
      transition: transform .2s var(--ease);
    }
    .nav-item.is-open .dropdown-toggle,
    .nav-item:focus-within .dropdown-toggle { color: var(--navy); }
    .nav-item.is-open .dropdown-toggle i,
    .nav-item.is-open .dropdown-toggle svg { transform: rotate(180deg); }
    .dropdown-menu {
      position: absolute;
      left: -16px;
      top: calc(100% + 14px);
      z-index: 120;
      display: none;
      width: min(300px, 80vw);
      padding: 10px;
      border: 1px solid rgba(155,196,224,.22);
      border-radius: 14px;
      background: var(--navy-deep);
      box-shadow: 0 18px 40px rgba(7,31,61,.24);
    }
    .dropdown-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -16px;
      height: 16px;
    }
    .dropdown-menu a {
      display: block;
      padding: 9px 10px;
      border-radius: 8px;
      color: rgba(255,255,255,.82);
      font-size: .84rem;
      line-height: 1.25;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
      color: #fff;
      background: rgba(155,196,224,.14);
      outline: none;
    }
    .dropdown-menu--wide {
      width: 390px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .nav-item.is-open .dropdown-menu,
    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu { display: block; }
    .nav-item.is-open .dropdown-menu--wide,
    .nav-item:hover .dropdown-menu--wide,
    .nav-item:focus-within .dropdown-menu--wide { display: grid; }
    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      justify-self: end;
      flex-shrink: 0;
      min-width: 0;
    }
    .nav-actions .btn {
      flex-shrink: 0;
      white-space: nowrap;
      text-align: center;
      line-height: 1.2;
      padding: 9px 16px;
      font-size: .84rem;
      box-shadow: none;
    }
    .nav-actions .btn-primary { box-shadow: 0 6px 14px rgba(11,47,92,.18); }
    .nav-actions .btn .wa-icon { width: 16px; height: 16px; }
    .cta-short { display: none; }
    .nav-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: background .2s var(--ease), transform .2s var(--ease);
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      background: var(--blue);
      outline: none;
    }
    .nav-toggle[aria-expanded="true"] {
      background: var(--navy-deep);
    }
    .nav-toggle i, .nav-toggle svg { width: 18px; height: 18px; stroke-width: 2.25; }
    .drawer {
      display: none; border-bottom: 1px solid var(--line); background: #fff; padding: 12px 20px 20px;
    }
    .drawer.is-open { display: block; }
    .drawer > a:not(.btn),
    .drawer-group a {
      display: block; padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--line); color: var(--navy);
    }
    .drawer .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 12px;
      border-bottom: 0;
      box-sizing: border-box;
    }
    .drawer .btn-primary { color: #fff; }
    .drawer .btn-wa { color: #fff; }
    .drawer-group { border-bottom: 1px solid var(--line); }
    .drawer-group summary {
      list-style: none;
      cursor: pointer;
      padding: 12px 0;
      color: var(--navy);
      font-weight: 700;
    }
    .drawer-group summary::-webkit-details-marker { display: none; }
    .drawer-group summary::after { content: "+"; float: right; color: var(--blue); }
    .drawer-group[open] summary::after { content: "−"; }
    .drawer-group div { padding: 0 0 8px 12px; }
    .drawer-group a { padding: 9px 0; font-size: .92rem; font-weight: 600; }
    .drawer-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; }

    /* Hero */
    .hero {
      position: relative;
      min-height: min(74vh, 680px);
      display: flex;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(100deg, rgba(7,31,61,.88) 0%, rgba(7,31,61,.74) 38%, rgba(7,31,61,.34) 62%, rgba(7,31,61,.16) 100%),
        var(--hero-image, url("../img/hero-fenster.png")) right center / cover no-repeat;
      overflow: hidden;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(155,196,224,.16), transparent 38%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      padding-top: clamp(48px, 7vw, 84px);
      padding-bottom: clamp(48px, 7vw, 84px);
    }
    .hero-copy {
      max-width: 560px;
    }
    .hero .eyebrow { color: var(--sky); }
    .hero h1 {
      color: #fff;
      font-size: clamp(2.2rem, 4.8vw, 3.5rem);
      max-width: 14ch;
      margin-bottom: 16px;
    }
    .hero-swoosh-wrap {
      position: relative;
      display: inline-block;
      white-space: nowrap;
    }
    .hero-swoosh {
      position: absolute;
      left: 2%;
      right: 2%;
      bottom: -.06em;
      height: .1em;
      pointer-events: none;
      background: linear-gradient(90deg, transparent 0%, #9BC4E0 6%, #5aa8d4 50%, #9BC4E0 88%, transparent 100%);
      border-radius: 2px;
      box-shadow: none;
      transform-origin: left center;
      transform: scaleX(0);
      opacity: 0;
      animation: mnSwooshDraw 0.85s var(--ease) forwards;
    }
    .hero-swoosh--1 { animation-delay: .35s; }
    .hero-swoosh--2 { animation-delay: .75s; }
    .hero-swoosh--3 { animation-delay: 1.15s; }
    @keyframes mnSwooshDraw {
      from { transform: scaleX(0); opacity: 0; }
      to { transform: scaleX(1); opacity: 1; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-swoosh { animation: none; transform: none; opacity: 1; }
    }
    .hero-lead {
      font-size: 1.05rem;
      color: rgba(255,255,255,.82);
      max-width: 42ch;
      margin-bottom: 24px;
      line-height: 1.55;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }
    .hero-trust {
      list-style: none;
      display: grid;
      gap: 8px;
      max-width: 430px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 12px;
      background: rgba(7,31,61,.28);
      backdrop-filter: blur(4px);
    }
    .hero-trust li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .9rem;
      color: rgba(255,255,255,.92);
      font-weight: 600;
    }
    .hero-trust i, .hero-trust svg {
      width: 16px;
      height: 16px;
      color: var(--sky);
      flex-shrink: 0;
    }
    .hero--subpage { min-height: min(52vh, 500px); }
    .hero--subpage h1 { max-width: 17ch; }
    .homebase-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
      color: rgba(255,255,255,.82);
      font-weight: 600;
      font-size: .92rem;
    }
    .homebase-note i,
    .homebase-note svg { width: 17px; height: 17px; color: var(--sky); }

    /* Why + Form */
    .why { background: var(--white); }
    .why-grid {
      display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start;
    }
    .why-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
    .why-lead {
      color: var(--navy);
      font-size: 1.08rem;
      margin-bottom: 14px;
      max-width: 52ch;
      line-height: 1.55;
    }
    .why-text {
      color: var(--muted);
      margin-bottom: 14px;
      max-width: 52ch;
      line-height: 1.65;
    }
    .why-text:last-of-type { margin-bottom: 22px; }
    .why-photo {
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 18px;
      aspect-ratio: 16 / 9;
      border: 1px solid var(--line);
    }
    .why-photo img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
      transition: transform .55s var(--ease);
    }
    .why-photo:hover img { transform: scale(1.06); }
    .why-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .why-card {
      background: var(--soft);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
    }
    .why-card .ico {
      width: 42px; height: 42px; border-radius: 12px;
      background: var(--ice); color: var(--navy);
      display: grid; place-items: center; margin-bottom: 12px;
    }
    .why-card .ico i, .why-card .ico svg { width: 20px; height: 20px; }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
    .why-card p { font-size: .9rem; color: var(--muted); }

    .form-card {
      background: var(--navy);
      color: #e8f1f8;
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
      padding: 28px;
      box-shadow: none;
    }
    .contact-panel {
      position: sticky;
      top: calc(var(--nav) + 16px);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .contact-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 6px;
      background: var(--navy-deep);
    }
    .contact-tab {
      border: 0;
      background: transparent;
      color: rgba(232,241,248,.55);
      font-weight: 700;
      font-size: .88rem;
      padding: 11px 14px;
      border-radius: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      transition: background .2s, color .2s;
    }
    .contact-tab:hover { color: rgba(232,241,248,.85); }
    .contact-tab.is-active {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,.18);
    }
    .contact-tab--wa.is-active {
      background: var(--wa);
      color: #fff;
    }
    .contact-tab .tab-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }
    .contact-tab--wa .tab-icon { fill: currentColor; }
    .contact-tab:focus-visible { outline: 2px solid var(--sky); outline-offset: -2px; }
    .contact-wa-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 0 0 22px;
    }
    .contact-wa-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(232,241,248,.88);
      font-weight: 600;
      font-size: .92rem;
    }
    .contact-wa-list i,
    .contact-wa-list svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--sky); margin-top: 2px; }
    .btn-wa--block { width: 100%; justify-content: center; }
    .field--files input[type="file"] {
      width: 100%;
      color: rgba(232,241,248,.85);
      font-size: .86rem;
    }
    .field-hint {
      margin-top: 8px;
      font-size: .78rem;
      color: rgba(232,241,248,.62);
      line-height: 1.4;
    }
    .field label span { font-weight: 500; text-transform: none; letter-spacing: 0; opacity: .7; }
    .photo-preview {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
      margin-top: 10px;
    }
    .photo-preview[hidden] { display: none !important; }
    .photo-preview__item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.25);
    }
    .photo-preview__item img {
      display: block;
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }
    .photo-preview__remove {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 26px;
      height: 26px;
      border: 0;
      border-radius: 999px;
      background: rgba(7, 31, 61, .82);
      color: #fff;
      font-size: 1rem;
      line-height: 1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .photo-preview__remove:hover,
    .photo-preview__remove:focus-visible {
      background: #c24141;
      outline: none;
    }
    @media (max-width: 720px) {
      .photo-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    .form-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
    .form-card .sub { color: rgba(232,241,248,.7); font-size: .9rem; margin-bottom: 20px; }
    .field { margin-bottom: 12px; }
    .field label {
      display: block; font-size: .78rem; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
      color: var(--sky); margin-bottom: 6px;
    }
    .field input, .field select, .field textarea {
      width: 100%; border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08); color: #fff;
      border-radius: 12px; padding: 12px 14px; outline: none;
    }
    .field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.45); }
    .field select option { color: var(--navy); }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--sky); background: rgba(255,255,255,.12);
    }
    .field textarea { min-height: 96px; resize: vertical; }
    .form-card .btn { width: 100%; margin-top: 4px; }
    .form-note {
      margin-top: 14px; font-size: .82rem; color: rgba(232,241,248,.65); text-align: center;
    }
    .form-note a { color: var(--sky); font-weight: 700; }
    .form-success {
      display: none; padding: 16px; border-radius: 12px;
      background: rgba(37, 211, 102, .15); border: 1px solid rgba(37, 211, 102, .35);
      color: #d8ffe8; font-size: .92rem; margin-bottom: 12px;
    }
    .form-success.is-visible { display: block; }
    .form-status {
      padding: 12px 14px;
      border-radius: 10px;
      margin-bottom: 14px;
      font-size: .9rem;
    }
    .form-status.success { background: rgba(37,211,102,.16); border: 1px solid rgba(37,211,102,.36); color: #d8ffe8; }
    .form-status.error { background: rgba(248,113,113,.14); border: 1px solid rgba(248,113,113,.4); color: #ffe4e4; }
    .hp-field {
      position: absolute !important;
      left: -10000px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
    }
    .human-check {
      border: 0;
      padding: 0;
      margin: 14px 0 4px;
    }
    .human-check-legend {
      color: var(--sky);
      font-size: .78rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .human-check-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .human-check-option { cursor: pointer; min-width: 0; }
    .human-check-option input { position: absolute; opacity: 0; pointer-events: none; }
    .human-check-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 10px 5px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 10px;
      color: #EAF3FA;
      font-size: .76rem;
      text-align: center;
      background: rgba(255,255,255,.08);
      transition: border-color .2s, background .2s, color .2s;
    }
    .human-check-icon {
      width: 28px;
      height: 28px;
      /* SVGs sind dunkel (#1f2937) – auf Navy hell/skyblau darstellen */
      filter: brightness(0) invert(1) sepia(1) saturate(2.2) hue-rotate(175deg);
      opacity: .95;
    }
    .human-check-option input:checked + .human-check-card,
    .human-check-option input:focus-visible + .human-check-card {
      border-color: var(--sky);
      background: rgba(155,196,224,.22);
      color: #fff;
      outline: 2px solid transparent;
    }
    .human-check-option input:checked + .human-check-card .human-check-icon {
      filter: brightness(0) invert(1);
      opacity: 1;
    }
    .form-card .fc-consent { color: rgba(255,255,255,.88); }

    /* Reviews */
    .reviews { background: var(--soft); }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    }
    .review {
      background: #fff; border: 1px solid var(--line);
      border-radius: var(--radius); padding: 22px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .stars { color: #E6A800; display: flex; gap: 2px; }
    .stars i, .stars svg { width: 16px; height: 16px; fill: currentColor; }
    .review p { font-size: .92rem; color: var(--muted); flex: 1; }
    .review footer { display: flex; flex-direction: column; gap: 2px; }
    .review strong { font-size: .92rem; color: var(--navy); }
    .review span { font-size: .8rem; color: var(--muted); }

    /* Services */
    .services { background: #fff; }
    .svc-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .svc-optional {
      margin-top: 28px;
      max-width: 420px;
    }
    .svc-optional > .eyebrow {
      margin-bottom: 10px;
    }
    .svc {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      transition: transform .2s var(--ease), box-shadow .2s, border-color .2s;
      display: flex; flex-direction: column;
    }
    .svc:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(47,111,168,.3);
    }
    .svc-media {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--ice);
    }
    .svc-media img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s var(--ease);
    }
    .svc:hover .svc-media img { transform: scale(1.06); }
    .svc-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
    .svc h3 { font-size: 1.08rem; margin-bottom: 8px; }
    .svc p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; flex: 1; }
    .svc .more {
      font-size: .86rem; font-weight: 700; color: var(--blue);
      display: inline-flex; align-items: center; gap: 4px;
    }
    .svc .more i, .svc .more svg { width: 14px; height: 14px; }
    .section--soft { background: var(--soft); }
    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }
    .subpage-panel {
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .subpage-panel h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2rem); }
    .subpage-panel p { color: var(--muted); }
    .subpage-panel p + p { margin-top: 12px; }
    .subpage-panel .more { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; color: var(--blue); font-weight: 700; }
    .subpage-panel .more svg { width: 15px; height: 15px; }
    .subpage-panel--accent { background: var(--ice); }
    .feature-list,
    .process-list { display: grid; gap: 12px; color: var(--muted); }
    .feature-list { list-style: none; }
    .feature-list li { display: flex; align-items: flex-start; gap: 10px; }
    .feature-list i,
    .feature-list svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 3px; color: var(--blue); }
    .process-list { padding-left: 1.3rem; }
    .process-list strong { color: var(--navy); }
    .ort-chips { display: flex; flex-wrap: wrap; gap: 10px; }
    .ort-chip {
      display: inline-flex;
      align-items: center;
      padding: 9px 14px;
      border: 1px solid rgba(47,111,168,.22);
      border-radius: 999px;
      background: #fff;
      color: var(--navy);
      font-size: .9rem;
      font-weight: 700;
      transition: color .2s, background .2s, border-color .2s, transform .2s var(--ease);
    }
    a.ort-chip:hover,
    a.ort-chip:focus-visible {
      color: #fff;
      background: var(--navy);
      border-color: var(--navy);
      transform: translateY(-1px);
      outline: none;
    }
    .ort-chip--current {
      background: rgba(255,255,255,.72);
      border-color: rgba(47,111,168,.35);
    }
    .subpage-panel--accent .ort-chip {
      background: rgba(255,255,255,.72);
    }
    .subpage-panel--accent a.ort-chip:hover,
    .subpage-panel--accent a.ort-chip:focus-visible {
      background: var(--navy);
      color: #fff;
    }

    /* Gallery */
    .gallery { background: var(--soft); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 140px;
      gap: 12px;
    }
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--navy);
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s var(--ease);
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item span {
      position: absolute; left: 12px; bottom: 12px;
      background: rgba(7,31,61,.78); color: #fff;
      font-size: .72rem; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; padding: 6px 10px; border-radius: 999px;
    }
    .gallery-item--lg { grid-column: span 5; grid-row: span 2; }
    .gallery-item--md { grid-column: span 4; grid-row: span 2; }
    .gallery-item--sm { grid-column: span 3; grid-row: span 2; }
    .gallery-item--wide { grid-column: span 6; grid-row: span 2; }

    /* Steps */
    .steps { background: var(--navy-deep); color: #e8f1f8; }
    .steps .section-head h2 { color: #fff; }
    .steps .section-head p { color: rgba(232,241,248,.7); }
    .steps .eyebrow { color: var(--sky); }
    .steps-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    .step {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .step-media {
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }
    .step-media img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s var(--ease);
    }
    .step:hover .step-media img { transform: scale(1.06); }
    .step-body { padding: 22px 22px 26px; }
    .step-num {
      font-family: var(--display);
      font-size: 2rem; font-weight: 800;
      color: rgba(155,196,224,.35); line-height: 1; margin-bottom: 8px;
    }
    .step h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
    .step p { color: rgba(232,241,248,.72); font-size: .95rem; }

    /* FAQ */
    .faq { background: #fff; }
    .faq-list { display: grid; gap: 10px; max-width: 800px; }
    .faq-more { margin-top: 18px; }
    .faq-more .more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--blue);
      font-weight: 700;
    }
    .faq-more .more i,
    .faq-more .more svg { width: 15px; height: 15px; }
    details.faq-item {
      border: 1px solid var(--line); border-radius: 14px;
      background: var(--soft); padding: 0 18px;
    }
    details.faq-item[open] { background: #fff; border-color: rgba(47,111,168,.28); }
    details.faq-item summary {
      list-style: none; cursor: pointer; padding: 16px 0;
      font-weight: 700; display: flex; justify-content: space-between; gap: 12px; align-items: center;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary i, details.faq-item summary svg {
      width: 18px; height: 18px; color: var(--blue); flex-shrink: 0;
      transition: transform .2s var(--ease);
    }
    details.faq-item[open] summary i,
    details.faq-item[open] summary svg { transform: rotate(45deg); }
    .faq-body { padding: 0 0 16px; color: var(--muted); font-size: .95rem; }

    /* Advantages */
    .adv { background: var(--ice); }
    .adv-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
    }
    .adv-list { list-style: none; display: grid; gap: 12px; }
    .adv-list li {
      display: flex; gap: 12px; align-items: flex-start;
      background: #fff; border: 1px solid var(--line);
      border-radius: 14px; padding: 16px 18px; font-weight: 600;
    }
    .adv-list i, .adv-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }

    /* CTA */
    .cta {
      position: relative;
      background:
        linear-gradient(105deg, rgba(7,31,61,.88), rgba(11,47,92,.7)),
        url("../img/service/service-grund.png") center / cover no-repeat;
      color: #e8f1f8;
      padding: 88px 0;
      text-align: center;
    }
    .cta h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
    .cta p { color: rgba(232,241,248,.75); max-width: 52ch; margin: 0 auto 24px; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .btn-on-dark { color: #fff; border-color: rgba(255,255,255,.38); }
    .adv-intro { color: var(--muted); margin-top: 10px; max-width: 40ch; }

    /* Legal pages */
    .subpage-main { padding: 72px 0 88px; background: var(--soft); }
    .legal-page-head { max-width: 760px; margin-bottom: 28px; }
    .legal-page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 10px; }
    .subpage-intro { color: var(--muted); font-size: 1.05rem; }
    .legal-panel {
      max-width: 900px;
      padding: clamp(24px, 5vw, 48px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .legal-section + .legal-section { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
    .legal-section h2 { font-size: 1.35rem; margin-bottom: 10px; }
    .legal-section p + p, .legal-section ul + p { margin-top: 12px; }
    .legal-section p, .legal-section li { color: var(--muted); }
    .legal-section ul { margin: 10px 0 0 1.25rem; }
    .legal-section a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

    /* Footer */
    .footer {
      background: #041528; color: rgba(232,241,248,.7); padding: 48px 0 24px; font-size: .92rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.25fr 1fr 1.35fr 1fr .8fr; gap: 24px; margin-bottom: 32px;
    }
    .footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
    .footer p { margin-bottom: 8px; max-width: 36ch; }
    .footer-logo {
      display: inline-flex;
      margin: 4px 0 14px;
      line-height: 0;
    }
    .footer-logo img {
      height: 72px;
      width: auto;
      filter: brightness(0) invert(1);
    }
    .footer ul { list-style: none; display: grid; gap: 8px; }
    .footer-quick-list { font-size: .84rem; line-height: 1.3; }
    .footer-quick-list--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 12px; }
    .footer a:hover { color: #fff; }
    .footer-domain {
      white-space: nowrap;
      overflow-wrap: normal;
      word-break: keep-all;
    }
    .footer-bottom {
      position: relative;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      min-height: 52px;
      padding-right: 150px;
      font-size: .84rem;
    }
    .footer-bottom > p { margin: 0; }
    .footer-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
      line-height: 1.25;
    }
    .footer-copy > p { margin: 0; }
    .footer-ai-note { font-size: .72rem; opacity: .45; letter-spacing: .01em; }
    .footer-bottom .links {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 18px;
    }

    /* Reveal / Slide-in */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
      will-change: opacity, transform;
    }
    .reveal.is-in {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: .08s; }
    .reveal-delay-2 { transition-delay: .16s; }
    .reveal-delay-3 { transition-delay: .24s; }
    .reveal-delay-4 { transition-delay: .32s; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* WhatsApp FAB – Desktop (Recycling Wagner) */
    .wa-fab {
      position: fixed;
      right: 1.2rem;
      bottom: 1.2rem;
      z-index: 120;
      width: 3.2rem;
      height: 3.2rem;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
    }
    .wa-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
    }
    .wa-fab::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25d366;
      animation: waPulse 2.2s ease-out infinite;
    }
    .wa-fab svg {
      position: relative;
      z-index: 1;
      width: 1.5rem;
      height: 1.5rem;
      fill: #fff;
    }
    @keyframes waPulse {
      0% { transform: scale(1); opacity: .55; }
      70% { transform: scale(1.55); opacity: 0; }
      100% { transform: scale(1.55); opacity: 0; }
    }

    /* Mobile Contact Bar â€“ Weizel / DM / Wagner */
    .mobile-contact-bar { display: none; }

    @media (max-width: 980px) {
      .why-grid, .adv-grid, .footer-grid, .content-grid { grid-template-columns: 1fr; }
      .hero {
        min-height: min(64vh, 560px);
        background-position: 68% center;
      }
      .hero--subpage { min-height: min(48vh, 470px); }
      .form-card { position: static; }
      .reviews-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
      .steps-row { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav-inner {
        display: flex;
        justify-content: space-between;
        gap: 10px;
      }
      .logo {
        grid-column: auto;
        justify-content: flex-start;
      }
      .cta-full { display: none; }
      .cta-short { display: inline; }
      .nav-actions .btn-outline span { display: none; }
      .nav-actions .btn-outline {
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 999px;
      }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
      .gallery-item--lg,
      .gallery-item--md,
      .gallery-item--sm,
      .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
    }
    @media (max-width: 720px) {
      body { padding-bottom: 3.6rem; }
      .wa-fab { display: none; }
      .nav-actions .btn-outline { display: none; }
      .logo img {
        height: 48px;
      }
      .nav.is-scrolled .logo img {
        height: 36px;
      }
      .nav-actions { gap: 8px; }
      .nav-actions .btn-primary {
        padding: 9px 14px;
        font-size: .82rem;
        box-shadow: none;
      }
      .nav-toggle { width: 36px; height: 36px; }
      .why-cards, .reviews-grid, .svc-grid { grid-template-columns: 1fr; }
      .hero {
        min-height: auto;
        background-position: 74% center;
      }
      .hero-inner {
        padding-top: 40px;
        padding-bottom: 48px;
      }
      .hero-trust { padding: 12px 14px; }
      .section { padding: 64px 0; }
      .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 0 3.25rem;
        gap: 12px;
      }
      .footer-bottom .links {
        position: static;
        transform: none;
        left: auto;
      }
      .footer-bottom .dk-credit {
        position: static !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        margin: 4px auto 0;
      }
      .topbar-inner { justify-content: center; text-align: center; }
      .gallery-grid { grid-template-columns: 1fr; }
      .mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 130;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--navy);
        border-top: 2px solid var(--sky);
        box-shadow: 0 -10px 28px rgba(0, 0, 0, .28);
      }
      .mobile-contact-bar a {
        display: grid;
        grid-auto-flow: column;
        align-items: center;
        justify-content: center;
        gap: .52rem;
        min-height: 3.6rem;
        font-weight: 700;
        color: #fff;
        background: var(--navy);
        text-decoration: none;
      }
      .mobile-contact-bar a:last-child {
        background: #25d366;
        color: #fff;
      }
      .mobile-contact-bar a i,
      .mobile-contact-bar a svg {
        width: 18px;
        height: 18px;
      }
    }

    /* Preise */
    .hero--price {
      min-height: min(78vh, 740px);
      background:
        radial-gradient(ellipse at 82% 12%, rgba(155,196,224,.28), transparent 42%),
        linear-gradient(118deg, #071F3D 0%, #0B2F5C 46%, #163a62 100%);
    }
    .hero--price::after { display: none; }
    .hero--price h1 { max-width: 14ch; }
    .hero-price-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
      gap: 40px;
      align-items: center;
      width: 100%;
      padding: 48px 0 56px;
    }
    .price-chart-card {
      margin: 0;
      padding: 22px 22px 18px;
      border: 1px solid rgba(155,196,224,.28);
      border-radius: 22px;
      background: rgba(7, 31, 61, .42);
      backdrop-filter: blur(10px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
    }
    .price-chart-card figcaption {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 8px;
      color: #fff;
    }
    .price-chart-kicker {
      font-size: .78rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 700;
    }
    .price-chart-card figcaption strong {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 700;
    }
    .price-chart-stage { overflow: hidden; }
    .price-chart { width: 100%; height: auto; display: block; }
    .price-chart-guides line {
      stroke: rgba(255,255,255,.14);
      stroke-dasharray: 3 6;
      stroke-width: 1;
    }
    .price-chart-fill {
      fill: url(#priceFill);
      opacity: 0;
      transform-origin: 50% 100%;
      transform: scaleY(.08);
    }
    .price-chart-line {
      fill: none;
      stroke: url(#priceStroke);
      stroke-width: 3.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 1600;
      stroke-dashoffset: 1600;
    }
    .price-chart-dot {
      fill: #fff;
      stroke: var(--sky);
      stroke-width: 3;
      opacity: 0;
      transform-box: fill-box;
      transform-origin: center;
      transform: scale(.4);
    }
    .price-chart-pulse {
      fill: none;
      stroke: rgba(155,196,224,.7);
      stroke-width: 2;
      opacity: 0;
      transform-box: fill-box;
      transform-origin: center;
    }
    .price-chart-axis text {
      fill: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font);
      text-anchor: middle;
    }
    .price-chart-card.is-on .price-chart-fill {
      animation: priceFill .9s .35s var(--ease) forwards;
    }
    .price-chart-card.is-on .price-chart-dot {
      animation: priceDot .45s .95s var(--ease) forwards;
    }
    .price-chart-card.is-on .price-chart-pulse {
      animation: pricePulse 1.8s 1.1s ease-out infinite;
    }
    .price-scale {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1fr;
      gap: 8px;
      margin: 6px 4px 10px;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }
    .price-scale span {
      text-align: center;
      padding: 7px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }
    .price-scale span:nth-child(2) {
      background: rgba(155,196,224,.22);
      color: #fff;
    }
    .price-chart-note {
      margin: 0;
      font-size: .82rem;
      line-height: 1.45;
      color: rgba(232,241,248,.72);
    }
    @keyframes priceFill {
      to { opacity: 1; transform: scaleY(1); }
    }
    @keyframes priceDot {
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes pricePulse {
      0% { opacity: .7; transform: scale(1); }
      100% { opacity: 0; transform: scale(3.2); }
    }
    .price-intro { background: #fff; padding-bottom: 40px; }
    .price-intro-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 36px;
    }
    .price-intro-grid h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
    .price-intro-grid p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0; }
    .price-steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .price-steps article {
      padding: 22px 20px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--soft);
    }
    .price-steps span {
      display: block;
      font-family: var(--display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .price-steps h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .price-steps p { color: var(--muted); margin: 0; }
    .price-factors {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .price-factor {
      padding: 22px 20px 20px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(47,111,168,.14);
    }
    .price-factor .ico {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--ice);
      color: var(--blue);
      margin-bottom: 14px;
    }
    .price-factor .ico i,
    .price-factor .ico svg { width: 20px; height: 20px; }
    .price-factor h3 { font-size: 1.15rem; margin-bottom: 8px; }
    .price-factor p { color: var(--muted); margin: 0; }
    .price-bands {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .price-bands article {
      padding: 24px 22px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: #fff;
    }
    .price-bands article.price-bands__mid {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
      transform: translateY(-8px);
    }
    .price-bands article.price-bands__mid h3 { color: #fff; }
    .price-bands article.price-bands__mid p,
    .price-bands article.price-bands__mid li { color: rgba(255,255,255,.82); }
    .price-band-tag {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--ice);
      color: var(--blue);
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .price-bands__mid .price-band-tag {
      background: rgba(155,196,224,.22);
      color: var(--sky);
    }
    .price-bands h3 { font-size: 1.28rem; margin-bottom: 10px; }
    .price-bands p { color: var(--muted); margin-bottom: 12px; }
    .price-bands ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
    .price-bands li + li { margin-top: 6px; }
    .price-visual {
      display: grid;
      grid-template-columns: 1.2fr .9fr .9fr;
      gap: 14px;
    }
    .price-visual figure {
      margin: 0;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      min-height: 220px;
    }
    .price-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 220px;
      transition: transform .55s var(--ease);
    }
    .price-visual figure:hover img { transform: scale(1.06); }
    .price-visual figcaption {
      position: absolute;
      left: 14px;
      bottom: 14px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(7,31,61,.78);
      color: #fff;
      font-weight: 700;
      font-size: .86rem;
    }
    @media (prefers-reduced-motion: reduce) {
      .price-chart-fill,
      .price-chart-dot,
      .price-chart-pulse { animation: none; opacity: 1; transform: none; }
      .price-chart-line { stroke-dashoffset: 0; }
      .why-photo:hover img,
      .svc:hover .svc-media img,
      .gallery-item:hover img,
      .step:hover .step-media img,
      .price-visual figure:hover img { transform: none; }
    }
    @media (max-width: 980px) {
      .hero-price-grid,
      .price-intro-grid,
      .price-steps,
      .price-factors,
      .price-bands,
      .price-visual { grid-template-columns: 1fr; }
      .price-bands__mid { transform: none; }
      .price-visual figure:first-child { min-height: 260px; }
    }
