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

    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 300;
      font-display: swap;
      src: url('../fonts/inter-latin-300-normal.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 500;
      font-display: swap;
      src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 600;
      font-display: swap;
      src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Bebas Neue';
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('../fonts/bebas-neue-latin-400-normal.woff2') format('woff2');
    }

    :root {
      --bg:        #1a2332;
      --bg-card:   #1f2d40;
      --bg-deep:   #141c28;
      --accent:    #3aa8c1;
      --accent2:   #1e7a8f;
      --white:     #f0f6fa;
      --muted:     #7a99b0;
      --border:    #263447;
    }


    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.1rem 3rem;
      background: rgba(20, 28, 40, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.7rem;
      text-decoration: none;
    }
    .nav-logo img {
      width: 90px;
      object-fit: contain;
      
      filter: drop-shadow(0 0 6px rgba(58,220,210,0.4));
    }
    .nav-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem;
      letter-spacing: 0.1em;
      color: var(--white);
      text-shadow: 0 0 12px rgba(58,168,193,0.25);
    }
    .nav-logo-text span { color: var(--accent); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--muted); text-decoration: none; font-size: 0.85rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--accent); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center; text-align: center;
      padding: 8rem 2rem 5rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(58,168,193,0.13) 0%, transparent 70%),
        var(--bg-deep);
      position: relative; overflow: hidden;
    }

    /* Animated water drops */
    .drops {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .drop {
      position: absolute; width: 2px; background: linear-gradient(to bottom, transparent, var(--accent));
      animation: fall linear infinite; opacity: 0;
      border-radius: 0 0 2px 2px;
    }
    @keyframes fall {
      0%   { transform: translateY(-60px); opacity: 0; }
      10%  { opacity: 0.4; }
      90%  { opacity: 0.2; }
      100% { transform: translateY(100vh); opacity: 0; }
    }

    .hero-eyebrow {
      font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.8rem, 10vw, 8rem);
      line-height: 0.95;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .hero h1 span { color: var(--accent); }
    .hero-sub {
      font-size: 1.05rem; color: var(--muted); max-width: 460px;
      margin-bottom: 2.8rem; font-weight: 400;
    }
    .btn-primary {
      display: inline-block;
      padding: 0.85rem 2.4rem;
      background: var(--accent); color: #0d1820;
      font-family: 'Inter', sans-serif; font-weight: 600;
      font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none; border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #4ec0d8; transform: translateY(-1px); }

    /* wash-line divider */
    .wash-line {
      width: 100%; height: 3px; position: relative; overflow: hidden;
      background: var(--border);
    }
    .wash-line::after {
      content: '';
      position: absolute; top: 0; left: -40%;
      width: 40%; height: 100%;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
      animation: sweep 3s ease-in-out infinite;
    }
    @keyframes sweep {
      0%   { left: -40%; }
      100% { left: 140%; }
    }

    /* ── SECTIONS ── */
    section { padding: 5rem 2rem; }
    .container { max-width: 1080px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      letter-spacing: 0.05em; color: var(--white);
      margin-bottom: 1.2rem;
    }
    .section-text { color: var(--muted); max-width: 540px; font-size: 0.97rem; }

    .hero-logo {
      width: 320px; max-width: 80vw;
      height: auto;
      object-fit: contain;
      margin-bottom: 0.5rem;
      filter: drop-shadow(0 0 28px rgba(58,220,210,0.45));
    }
    .hero-slogan {
      font-size: 0.9rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--muted); margin-top: -0.8rem; margin-bottom: 2.8rem;
      font-style: italic;
    }
    .leistungen-bg { background: var(--bg-deep); }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.4rem; margin-top: 3rem;
    }
    .card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 6px; padding: 2rem 1.7rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .card:hover { border-color: var(--accent); transform: translateY(-3px); }
    .card-icon { font-size: 2rem; margin-bottom: 1rem; }
    .card h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
      letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.5rem;
    }
    .card p { color: var(--muted); font-size: 0.88rem; }
    .card-badge {
      display: inline-block; margin-top: 1rem;
      padding: 0.2rem 0.7rem; background: rgba(58,168,193,0.12);
      border: 1px solid rgba(58,168,193,0.3);
      color: #5cc2da; font-size: 0.72rem; letter-spacing: 0.1em;
      border-radius: 2px; text-transform: uppercase;
    }

    /* ── PREISE ── */
    .preise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem; margin-top: 3rem;
    }
    .preis-card {
      border: 1px solid var(--border); border-radius: 6px;
      padding: 2rem 1.5rem; text-align: center;
      background: var(--bg-card); transition: border-color 0.2s;
      position: relative;
    }
    .preis-card.highlight {
      border-color: var(--accent);
      background: linear-gradient(160deg, #1f3447 0%, var(--bg-card) 100%);
    }
    .preis-card .preis-name {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
      letter-spacing: 0.06em; margin-bottom: 0.8rem;
    }
    .preis-card .preis-wert {
      font-size: 2.6rem; font-weight: 600; color: var(--accent);
      line-height: 1;
    }
    .preis-card .preis-wert sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.3rem; }
    .preis-card .preis-details { color: var(--muted); font-size: 0.82rem; margin-top: 0.6rem; }
    .preis-tag {
      position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
      padding: 0.2rem 0.9rem;
      background: var(--accent); color: #0d1820;
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; border-radius: 2px;
      white-space: nowrap;
    }

    /* ── KONTAKT ── */
    .kontakt-bg { background: var(--bg-deep); }
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; margin-top: 3rem; align-items: start;
    }
    .kontakt-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-item { display: flex; gap: 1rem; align-items: flex-start; }
    .info-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(58,168,193,0.12); border: 1px solid rgba(58,168,193,0.3);
      border-radius: 4px; display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .info-label {
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.2rem;
    }
    .info-value { color: var(--white); font-size: 0.97rem; }
    .info-value a { color: var(--white); text-decoration: none; }
    .info-value a:hover { color: var(--accent); }

    /* ── ÖFFNUNGSZEITEN ── */
    .oez-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
    .oez-table tr { border-bottom: 1px solid var(--border); }
    .oez-table tr:last-child { border-bottom: none; }
    .oez-table td { padding: 0.7rem 0; font-size: 0.92rem; }
    .oez-table td:last-child { color: var(--accent); text-align: right; }
    .oez-closed { color: var(--muted) !important; }

    /* ── MAP ── */
    .map-wrapper {
      border-radius: 6px; overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 3rem;
    }
    .map-wrapper iframe { display: block; width: 100%; height: 420px; }

    /* ── SOCIAL ── */
    .social-strip {
      background: var(--bg-deep); border-top: 1px solid var(--border);
      padding: 4rem 2rem; text-align: center;
    }
    .social-strip-label {
      font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.5rem;
    }
    .social-strip h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      letter-spacing: 0.05em; color: var(--white);
      margin-bottom: 2.2rem;
    }
    .social-links { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
    .social-link {
      display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
      padding: 1.6rem 2.2rem;
      border: 1px solid var(--border); border-radius: 8px;
      color: var(--muted); text-decoration: none;
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      background: var(--bg-card); min-width: 130px;
      transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .social-link:hover {
      border-color: var(--accent); color: var(--accent);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(58,168,193,0.15);
    }
    .social-link svg { width: 32px; height: 32px; fill: currentColor; }
    .social-link span { font-weight: 500; }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-deep); border-top: 1px solid var(--border);
      padding: 2rem; text-align: center;
      color: var(--muted); font-size: 0.8rem;
    }
    footer a { color: var(--muted); text-decoration: none; margin: 0 0.5rem; }
    footer a:hover { color: var(--accent); }

    /* ── MODALS ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(10, 15, 22, 0.88);
      backdrop-filter: blur(6px);
      align-items: center; justify-content: center;
      padding: 1.5rem;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 8px; max-width: 760px; width: 100%;
      max-height: 85vh; overflow-y: auto;
      padding: 2.5rem 2.8rem;
      position: relative;
    }
    .modal::-webkit-scrollbar { width: 5px; }
    .modal::-webkit-scrollbar-track { background: var(--bg-deep); }
    .modal::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }
    .modal-close {
      position: sticky; top: 0; float: right;
      background: none; border: 1px solid var(--border);
      color: var(--muted); font-size: 1.2rem; cursor: pointer;
      width: 34px; height: 34px; border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s, color 0.2s;
      margin-bottom: 1rem;
    }
    .modal-close:hover { border-color: var(--accent); color: var(--accent); }
    .modal-title {
      font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
      letter-spacing: 0.06em; color: var(--white); margin-bottom: 1.5rem;
      border-bottom: 1px solid var(--border); padding-bottom: 0.8rem;
    }
    .modal h2 {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
      letter-spacing: 0.05em; color: var(--accent);
      margin: 1.8rem 0 0.5rem;
    }
    .modal h3 { font-size: 0.95rem; color: var(--white); margin: 1.2rem 0 0.4rem; font-weight: 600; }
    .modal p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.6rem; }
    .modal ul { color: var(--muted); font-size: 0.9rem; padding-left: 1.4rem; line-height: 1.7; margin-bottom: 0.6rem; }
    .modal strong { color: var(--white); }
    .modal a { color: var(--accent); }
    .modal hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
      min-width: 44px; min-height: 44px;
      align-items: center; justify-content: center;
    }
    .hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--white); border-radius: 2px;
      transition: all 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); }
    .mobile-menu {
      display: none; position: fixed; top: 88px; left: 0; right: 0; z-index: 99;
      background: rgba(20,28,40,0.98); backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem;
      max-height: calc(100vh - 88px); overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--muted); text-decoration: none; font-size: 1rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      transition: color 0.2s; padding: 0.85rem 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--accent); }

    /* ── BEWERTUNGEN ── */
    .bewertungen-bg { background: var(--bg-deep); }
    .stars { color: #f5c518; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.4rem; }
    .bewertungen-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.4rem; margin-top: 3rem;
    }
    .bewertung-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 6px; padding: 1.6rem; transition: border-color 0.2s;
    }
    .bewertung-card:hover { border-color: var(--accent); }
    .bewertung-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
    .bewertung-autor { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .google-rating-box {
      display: flex; align-items: center; gap: 1.5rem;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 6px; padding: 1.4rem 2rem; margin-top: 2.5rem; flex-wrap: wrap;
    }
    .google-rating-score { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--white); line-height: 1; }
    .google-rating-info { flex: 1; min-width: 160px; }
    .google-rating-info .stars { font-size: 1.4rem; }
    .google-rating-info p { color: var(--muted); font-size: 0.85rem; margin-top: 0.3rem; }
    .btn-outline {
      display: inline-block; padding: 0.7rem 1.6rem;
      border: 1px solid var(--accent); color: var(--accent);
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; text-decoration: none; border-radius: 2px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover { background: var(--accent); color: #0d1820; }

    /* ── FAQ ── */
    .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.8rem; }
    .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: border-color 0.2s; }
    .faq-item.open { border-color: var(--accent); }
    .faq-question {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.2rem 1.6rem; cursor: pointer;
      color: var(--white); font-size: 0.97rem; font-weight: 500; user-select: none;
    }
    .faq-icon { font-size: 1.3rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
      color: var(--muted); font-size: 0.9rem; line-height: 1.7; padding: 0 1.6rem;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding: 0 1.6rem 1.2rem; }

    /* ── DSGVO MAP ── */
    .map-consent {
      background: var(--bg-deep); border: 1px solid var(--border);
      border-radius: 6px; padding: 2rem; text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: 1rem;
      min-height: 220px; justify-content: center;
    }
    .map-consent p { color: var(--muted); font-size: 0.88rem; max-width: 400px; line-height: 1.6; }
    .map-consent p a { color: var(--accent); text-decoration: underline; }
    .map-consent .map-icon { font-size: 2.5rem; }
    #map-iframe-container { display: none; }

    /* ── BACK TO TOP ── */
    #back-to-top {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
      width: 44px; height: 44px; border-radius: 4px;
      background: var(--accent); color: #0d1820;
      border: none; cursor: pointer; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(58,168,193,0.3);
    }
    #back-to-top.visible { opacity: 1; pointer-events: all; }
    #back-to-top:hover { transform: translateY(-2px); }

    @media (max-width: 700px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      section { padding: 3.5rem 1.5rem; }
    }
