:root {
      --yellow: #f4c400;
      --yellow-hover: #d4a900;
      --dark: #111111;
      --bg: #f2f2f2;
      --surface: #ffffff;
      --surface2: #f0f0f0;
      --text: #111111;
      --text-muted: #666666;
      --border: #e8e8e8;
      --shadow: 0 4px 20px rgba(0,0,0,0.07);
      --green: #22c55e;
      --notdienst-bg: #fffdf0;
      --notdienst-border: #f4c400;
      --card-dark-bg: #111111;
      --card-dark-sub: #aaaaaa;
      --card-highlight-bg: #1c1c1c;
      --card-highlight-text: #ffffff;
      --card-highlight-sub: #999999;
    }
    [data-theme="dark"] {
      --bg: #0d0d0d;
      --surface: #1a1a1a;
      --surface2: #242424;
      --text: #efefef;
      --text-muted: #999999;
      --border: #2c2c2c;
      --shadow: 0 4px 24px rgba(0,0,0,0.5);
      --notdienst-bg: #1c1900;
      --notdienst-border: #f4c400;
    }
 
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.6; transition:background .25s,color .25s; }
    a { text-decoration:none; color:inherit; transition:.2s; }
    img { display:block; }
    ul { list-style:none; }
    .container { width:1200px; max-width:92%; margin:auto; }
 
    /* ══ NAVBAR ══ */
    .navbar { background:var(--dark); padding:13px 0; border-bottom:3px solid var(--yellow); position:sticky; top:0; z-index:1000; }
    .nav-wrapper { display:flex; justify-content:space-between; align-items:center; gap:12px; }
    .logo { color:#fff; display:flex; align-items:center; gap:10px; flex-shrink:0; }
    .logo-icon { background:var(--yellow); padding:7px; border-radius:0; display:flex; align-items:center; justify-content:center; }
    .logo-icon svg { width:19px; height:19px; color:#000; }
    .logo-text .main { font-size:15px; font-weight:900; color:'#fff'; display:block; }
    .logo-text .sub { font-size:10px; font-weight:600; color:var(--yellow); letter-spacing:.8px; display:block; }
    .nav-right { display:flex; align-items:center; gap:10px; }
    
.dark-toggle {
      position: fixed !important;
      bottom: 24px !important;
      right: 24px !important;
      z-index: 1001 !important; /* Sorgt dafür, dass der Button über allem liegt */
      width: 46px;
      height: 46px;
      border-radius: 50%; /* Macht den Button kreisrund */
      background: #222;
      border: 2px solid #444;
      color: #ccc;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.35);
      transition: background .2s, border-color .2s, transform .2s;
    }
    
    /* Blendet den Text aus, da im Kreis nur das Icon Platz hat */
    .dark-toggle .toggle-label {
      display: none !important;
    }




    .dark-toggle svg { width:15px; height:15px; flex-shrink:0; }
    .dark-toggle:hover { background:#333; border-color:#666; }
    .nav-call { background:var(--yellow); color:#000; padding:9px 18px; border-radius:8px; font-weight:800; font-size:13px; display:flex; align-items:center; gap:7px; white-space:nowrap; }
    .nav-call svg { width:15px; height:15px; }
    .nav-call:hover { background:var(--yellow-hover); }
 
    /* ══ HERO ══ */
    .hero { background:#f2f2f2; padding:55px 0; }
    [data-theme="dark"] .hero { background:#0d0d0d; }
    .hero-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:48px; align-items:center; }
    .hero-content h1 { font-size:44px; font-weight:900; line-height:1.05; text-transform:uppercase; margin-bottom:16px; }
    .hero-content h1 span { color:var(--yellow); display:block; }
    .hero-text { font-size:16px; color:var(--text-muted); margin-bottom:26px; line-height:1.75; }
    .hero-info-card { background:var(--dark); color:#fff; padding:26px; border-radius:0; display:grid; grid-template-columns:1fr 1fr; gap:14px; }
    .info-item { font-size:13px; color:#ccc; display:flex; align-items:center; gap:8px; }
    .info-item svg { width:15px; height:15px; flex-shrink:0; color:var(--yellow); }
    .hero-btns { grid-column:span 2; display:flex; gap:10px; margin-top:6px; flex-wrap:wrap; }
    .btn-yellow { background:var(--yellow); color:#000; padding:12px 20px; border-radius:8px; font-weight:800; font-size:14px; display:flex; align-items:center; gap:7px; }
    .btn-yellow:hover { background:var(--yellow-hover); }
    .btn-yellow svg { width:14px; height:14px; }
    .btn-outline { border:1.5px solid #555; color:#ccc; padding:12px 20px; border-radius:8px; font-weight:700; font-size:14px; }
    .btn-outline:hover { border-color:#fff; color:#fff; }
    .hero-image img { width:100%; border-radius:0; height:400px; object-fit:cover; }
 
    /* ══ FEATURE BAR ══ */
    .feature-bar { background:var(--yellow); padding:16px 0; }
    .feature-grid { display:flex; justify-content:space-around; align-items:center; flex-wrap:wrap; gap:12px; }
    .feat-item { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:700; color:#000; }
    .feat-item svg { width:18px; height:18px; }
 
 
    /* ══ SERVICES ══ */
    .services { padding:100px 0 150px; }
    .section-head { text-align:center; margin-bottom:42px; }
    .section-head h2 { font-size:36px; font-weight:900; text-transform:uppercase; color:var(--text); }
    .section-head h2 span { color:var(--yellow); }
    .section-head p { color:var(--text-muted); font-size:16px; margin-top:10px; }
 
    .service-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
 
    /* Card: dark top header, then white highlight box, then list */
    .card { background:var(--surface); border-radius:0; overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--border); display:flex; flex-direction:column; }
 
    .card-header { background:var(--card-dark-bg); color:#fff; padding:26px 26px 22px; }
    .card-header-icon { background:var(--yellow); width:44px; height:44px; border-radius:0; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
    .card-header-icon svg { width:21px; height:21px; color:#000; }
    .card-header h3 { font-size:21px; font-weight:800; margin-bottom:3px; }
    .card-header p { font-size:13px; color:var(--card-dark-sub); }
 
    /* Highlight box: sits in the WHITE body area, at the top */
    .card-body { padding:22px; flex:1; display:flex; flex-direction:column; }
    .card-highlight {
      background:var(--surface2); border:1px solid var(--border);
      border-radius:0; padding:14px 16px; margin-bottom:18px;
      display:flex; align-items:flex-start; gap:12px;
    }
    [data-theme="dark"] .card-highlight { background:#242424; border-color:#333; }
    .card-highlight-icon { background:var(--yellow); width:34px; height:34px; border-radius:0; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
    .card-highlight-icon svg { width:16px; height:16px; color:#000; }
    .card-highlight-text strong { font-size:13px; font-weight:800; color:var(--text); display:block; margin-bottom:2px; }
    .card-highlight-text span { font-size:12px; color:var(--text-muted); line-height:1.5; }
 
    .card-body ul { flex:1; }
    .card-body li { margin-bottom:9px; font-size:14px; color:var(--text-muted); display:flex; align-items:center; gap:9px; border-bottom:1px solid var(--border); padding-bottom:8px; }
    .card-body li:last-child { border-bottom:none; padding-bottom:0; }
    .check-icon { flex-shrink:0; }
    .check-icon svg { width:14px; height:14px; color:var(--yellow); }
    .card-btn { display:flex; align-items:center; justify-content:center; gap:7px; background:var(--yellow); color:#000; padding:13px; border-radius:8px; margin-top:18px; font-weight:700; font-size:14px; box-shadow:0 4px 12px rgba(244,196,0,0.4); }
    .card-btn:hover { background:var(--yellow-hover); opacity:1; }
    .card-btn svg { width:14px; height:14px; }
 
 
    /* ══ INFO / OPENING HOURS / MAP ══ */
    .info-section { padding-bottom:150px; }
    .info-grid { display:grid; grid-template-columns:1fr 1.25fr; gap:28px; }
    .white-box { background:var(--surface); padding:32px; border-radius:0; box-shadow:var(--shadow); border:1px solid var(--border); }
    .box-title { display:flex; align-items:center; gap:11px; margin-bottom:18px; font-size:20px; font-weight:800; color:var(--text); }
    .box-title-icon { background:var(--yellow); width:36px; height:36px; border-radius:0; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .box-title-icon svg { width:17px; height:17px; color:#000; }
    .opening-row { display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--border); font-size:15px; }
    .opening-row:last-of-type { border-bottom:none; }
    .opening-row .day { color:var(--text); font-weight:500; }
    .time-green { color:var(--green); font-weight:700; }
    .closed { color:#dd0000; font-weight:700; }
    .notdienst-box { background:var(--notdienst-bg); border:1.5px solid var(--notdienst-border); padding:16px; border-radius:0; margin-top:20px; font-size:14px; color:var(--text); display:flex; align-items:flex-start; gap:10px; }
    .notdienst-box svg { width:17px; height:17px; color:var(--yellow); flex-shrink:0; margin-top:2px; }
    .map-frame { width:100%; height:280px; border:none; display:block; }
    .contact-items { display:flex; flex-direction:column; gap:11px; margin-bottom:18px; }
    .contact-item { display:flex; align-items:center; gap:11px; }
    .contact-item-icon { background:var(--yellow); width:34px; height:34px; border-radius:0; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
    .contact-item-icon svg { width:15px; height:15px; color:#000; }
    .contact-item-text strong { display:block; font-size:12px; color:var(--text-muted); font-weight:500; }
    .contact-item-text span { font-size:14px; font-weight:600; color:var(--text); }
    .map-btn { background:var(--dark); color:#fff; display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border-radius:8px; font-weight:700; font-size:14px; }
    .map-btn:hover { opacity:.85; }
    .map-btn svg { width:15px; height:15px; }
 
    /* ══ FAQ ══ */
    .faq { padding:0 0 70px; }
    .faq-list { display:flex; flex-direction:column; gap:10px; }
    .faq-item { background:var(--surface); border-radius:0; border:1px solid var(--border); overflow:hidden; box-shadow:var(--shadow); }
    .faq-q { width:100%; background:none; border:none; padding:17px 22px; display:flex; justify-content:space-between; align-items:center; font-size:15px; font-weight:700; color:var(--text); cursor:pointer; text-align:left; gap:16px; font-family:inherit; }
    .faq-icon { width:20px; height:20px; border-radius:50%; background:var(--yellow); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s; }
    .faq-icon svg { width:11px; height:11px; color:#000; }
    .faq-item.open .faq-icon { transform:rotate(45deg); }
    .faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .3s; font-size:14px; color:var(--text-muted); line-height:1.75; padding:0 22px; }
    .faq-item.open .faq-a { max-height:200px; padding:0 22px 18px; }
 
    /* ══ CTA BAR ══ */
    .cta-bar { background:var(--yellow); padding:38px 0; }
    .cta-content { display:flex; justify-content:space-between; align-items:center; gap:28px; }
    .cta-left h2 { font-size:25px; font-weight:900; text-transform:uppercase; color:#000; margin-bottom:4px; }
    .cta-left p { font-size:14px; color:#333; }
    .cta-phone { background:var(--dark); color:#fff; padding:14px 28px; border-radius:8px; font-size:18px; font-weight:800; display:flex; align-items:center; gap:9px; white-space:nowrap; }
    .cta-phone:hover { opacity:.85; }
    .cta-phone svg { width:17px; height:17px; }
 
    /* ══ FOOTER ══ */
    footer { background:var(--dark); color:#fff; padding:52px 0 20px; }
    .footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1.4fr; gap:55px; margin-bottom:36px; }
    .footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
    .footer-logo-text .main { font-size:15px; font-weight:900; color:#fff; display:block; }
    .footer-logo-text .sub { font-size:10px; color:var(--yellow); letter-spacing:.8px; display:block; }
    .footer-col p { color:#aaa; font-size:14px; margin-bottom:8px; line-height:1.7; }
    .footer-col h4 { margin-bottom:20px; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:1.5px; color:var(--yellow); }
    .footer-col li { color:#aaa; font-size:14px; margin-bottom:8px; }
    .footer-contact-item { display:flex; align-items:center; gap:8px; color:#aaa; font-size:14px; margin-bottom:9px; }
    .footer-contact-item svg { width:14px; height:14px; color:var(--yellow); flex-shrink:0; }
    .footer-bottom { border-top:1px solid #222; padding-top:20px; display:flex; justify-content:space-between; align-items:center; font-size:13px; color:#555; flex-wrap:wrap; gap:10px; }
    .footer-links a { margin-left:14px; color:#555; }
    .footer-links a:hover { color:#fff; }
 
    /* ══ STICKY MOBILE CALL BUTTON ══ */
    .mobile-cta { display:none; position:fixed; bottom:0; left:0; right:0; z-index:998; background:var(--yellow); padding:15px 20px; align-items:center; justify-content:center; gap:10px; font-weight:800; font-size:16px; color:#000; box-shadow:0 -4px 20px rgba(0,0,0,0.2); }
    .mobile-cta svg { width:18px; height:18px; }
 
    /* ══ RESPONSIVE ══ */
    @media (max-width:1024px) {
      .trust-grid { grid-template-columns:repeat(2,1fr); }
      .footer-grid { grid-template-columns:1fr 1fr; gap:35px; }
      .footer-grid .footer-col:first-child { grid-column:span 2; }
    }
    @media (max-width:768px) {
      .logo-text .sub { display:none; }
      .nav-call .nav-call-text { display:none; }
      .hero { padding:36px 0; }
      .hero-grid { grid-template-columns:1fr; gap:26px; }
      .hero-image { order:-1; }
      .hero-image img { height:220px; }
      .hero-content h1 { font-size:30px; }
      .hero-info-card { grid-template-columns:1fr; gap:10px; }
      .hero-btns { grid-column:span 1; }
      .trust-section { padding:36px 0 0; }
      .trust-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
      .services { padding:50px 0; }
      .section-head h2 { font-size:28px; }
      .service-cards { grid-template-columns:1fr; }
      .reviews { padding:0 0 50px; }
      .reviews-grid { grid-template-columns:1fr; }
      .info-section { padding-bottom:50px; }
      .info-grid { grid-template-columns:1fr; }
      .faq { padding:0 0 50px; }
      .cta-content { flex-direction:column; text-align:center; gap:18px; }
      .cta-left h2 { font-size:21px; }
      .footer-grid { grid-template-columns:1fr; gap:28px; }
      .footer-grid .footer-col:first-child { grid-column:span 1; }
      .footer-bottom { flex-direction:column; text-align:center; }
      .footer-links { margin-top:4px; }
      .footer-links a:first-child { margin-left:0; }
      .mobile-cta { display:flex; }
      body { padding-bottom:56px; }
      .dark-toggle {
        bottom: 80px !important;
        right: 16px !important;
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width:480px) {
      .container { max-width:95%; }
      .hero-content h1 { font-size:26px; }
      .nav-call { padding:8px 12px; }
    }