    :root{
      /* Base */
      --bg:#ffffff;
      --text:#0E1222;
      --muted:#556070;
      --line:rgba(15,20,35,.12);
      --soft:#F6F7FB;
      --soft2:#EEF2F8;
    
      /* Brand (Logo) */
      --orange:#F47A1F;
      --orangeHover:#D86512;
      --navy:#0E3E78;
      --navySoft:#1E5FA8;
    
      --max:1180px;
    }
    
    /* Reset */
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.55;
    }
    a{color:var(--navy); text-decoration:none}
    a:hover{color:var(--orange)}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 20px}
    
    /* Topbar */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(10px);
      border-bottom:1px solid var(--line);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:16px;
    }
    .brand{
      display:flex;
      gap:10px;
      align-items:center;
      font-weight:800;
      letter-spacing:-.2px;
    }
    .mark{
      width:36px;
      height:36px;
      border-radius:10px;
      background:linear-gradient(135deg,var(--orange),#FFD08A);
    }
    .navlinks{
      display:flex;
      gap:20px;
      font-size:14px;
      font-weight:600;
      color:var(--muted);
    }
    .navlinks a:hover{color:var(--navy)}
    
    /* Buttons */
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 18px;
      border-radius:10px;
      background:var(--orange);
      color:#fff;
      font-weight:800;
      border:0;
      cursor:pointer;
    }
    .btn:hover{
      background: rgba(244,122,31,.10);       /* leichtes Orange-Fill */
      color: var(--navy);                      /* Text dunkelblau */
      border-color: rgba(244,122,31,.35);      /* Orange Outline */
    }
    .btn.outline{
      background:#fff;
      color:var(--navy);
      border:1px solid var(--line);
    }
    .btn.outline:hover{
      background:rgba(244,122,31,.06);
      border-color:rgba(244,122,31,.35);
    }
    
    /* Sections */
    section{padding:72px 0}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.7px;
      color:var(--muted);
    }
    .dot{
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--orange);
    }
    
    /* Headings */
    h1{
      margin:12px 0;
      font-size:48px;
      line-height:1.05;
      letter-spacing:-.9px;
      color:var(--navy);
    }
    .h2, h2{
      margin:0 0 10px;
      font-size:32px;
      letter-spacing:-.6px;
      line-height:1.12;
      color:var(--navy);
    }
    h3{
      margin:0 0 8px;
      font-size:18px;
      letter-spacing:-.3px;
      color:var(--navy);
    }
    .lead{
      font-size:17px;
      color:var(--muted);
      max-width:64ch;
    }
    .p{
      font-size:16px;
      color:var(--muted);
      max-width:64ch;
    }
    
    /* =========================================================
   HERO – 100vh Background + Glass Overlay (rounded)
========================================================= */
    
    /* HERO: 100vh Background */
/* Hero: full background */
    .hero{
      position:relative;
      min-height:100vh;
      display:flex;
      align-items:center;
      padding:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.35) 45%, rgba(255,255,255,.18) 100%),
        url('/assets/img/hero-solar.jpg');
      background-size:cover;
      background-position:center;
    }
    
    /* ✅ Neuer Center-Wrapper: garantiert mittig */
    .heroCenter{
      width:100%;
      display:flex;
      justify-content:center;
      padding:0 20px; /* gleiche Außenluft wie wrap */
    }
    
    /* optional: leichte Tiefe */
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,.06), rgba(0,0,0,.14));
      pointer-events:none;
    }

    /* ✅ HeroGlass: niemals "random" offsets */
    .heroGlass{
      margin:0 !important;        /* killt margin-left clamp */
      left:auto !important;
      right:auto !important;
      transform:none !important;  /* killt translate/rotate */
      
      width:min(1280px, 92vw);
      min-height:560px;
      padding:78px 84px;
      border-radius:34px;
    
      background:rgba(255,255,255,.55);
      backdrop-filter:blur(6px) saturate(120%);
      -webkit-backdrop-filter:blur(6px) saturate(120%);
      border:1px solid rgba(255,255,255,.70);
      box-shadow:
        0 70px 160px rgba(10,20,40,.26),
        inset 0 1px 0 rgba(255,255,255,.78);
    }
    
    /* Typo skaliert mit */
    .heroGlass h1{
      font-size:clamp(54px, 4.6vw, 72px);
      line-height:1.02;
      margin:14px 0 18px;
    }
    
    .heroGlass .lead{
      font-size:clamp(18px, 1.35vw, 22px);
      max-width:70ch;
    }
    
    /* Buttons etwas größer */
    .heroActions .btn{
      padding:16px 28px;
      font-size:16px;
    }
    
    /* Mobile */
    @media (max-width: 900px){
      .hero{
        align-items:flex-end;
        padding:0 0 60px;
      }
      .heroGlass{
        width:94vw;
        min-height:auto;
        padding:44px 30px;
        border-radius:26px;
      }
      .heroGlass h1{
        font-size:40px;
      }
    }
    
    /* Split Layout */
    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:36px;
      align-items:center;
    }
    .media{
      min-height:420px;
      border-radius:22px;
      background-size:cover;
      background-position:center;
      border:1px solid var(--line);
    }
    
    /* Bullets */
    .bullets{
      margin:18px 0 0;
      padding:0;
      list-style:none;
    }
    .bullets li{
      display:flex;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(15,20,35,.08);
    }
    .bullets li:last-child{border-bottom:0}
    .bullets small{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-weight:600;
    }
    
    /* Band */
    .bandInner{
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.95)),
        url('/assets/img/band-panels.jpg');
      background-size:cover;
      background-position:center;
    }
    .bandContent{
      padding:64px 0;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
    }
    .metric{
      border-top:1px solid rgba(15,20,35,.12);
      padding-top:12px;
    }
    .metric b{
      font-size:22px;
      color:var(--navy);
    }
    .metric span{
      font-size:13px;
      color:var(--muted);
      font-weight:600;
    }
    
    /* Steps */
    .steps{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
      margin-top:26px;
    }
    .step b{
      display:block;
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.7px;
      color:var(--muted);
    }
    
    /* Testimonials */
    .testimonials{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .quote{
      border-top:1px solid rgba(15,20,35,.12);
      padding-top:18px;
    }
    .quote p{margin:0 0 10px;font-size:16px}
    .quote span{font-size:13px;color:var(--muted);font-weight:600}
    
    /* CTA Block */
    .ctaBlock{
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--line);
      background:
        linear-gradient(90deg,rgba(244,122,31,.92),rgba(216,101,18,.88)),
        url('/assets/img/cta-bg.jpg');
      background-size:cover;
      background-position:center;
      color:#fff;
    }
    .ctaInner{
      padding:46px;
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:26px;
    }
    .ctaInner h2{color:#fff}
    
    /* Form */
    .form{
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.25);
      border-radius:18px;
      padding:18px;
      backdrop-filter:blur(8px);
    }
    label{
      display:block;
      font-size:12px;
      font-weight:800;
      letter-spacing:.4px;
      text-transform:uppercase;
      margin:10px 0 6px;
    }
    input,select,textarea{
      width:100%;
      padding:12px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,.3);
      background:rgba(255,255,255,.15);
      color:#fff;
    }
    textarea{min-height:92px}
    input::placeholder,textarea::placeholder{color:rgba(255,255,255,.85)}
    .row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
    .btn2{
      width:100%;
      margin-top:14px;
      padding:12px;
      border-radius:10px;
      background:#fff;
      color:var(--navy);
      font-weight:900;
      border:0;
      cursor:pointer;
    }
    .btn2:hover{filter:brightness(.96)}
    
    /* FAQ */
    .faq{
      border-top:1px solid rgba(15,20,35,.12);
      margin-top:22px;
    }
    details{
      padding:16px 0;
      border-bottom:1px solid rgba(15,20,35,.12);
    }
    summary{
      cursor:pointer;
      list-style:none;
      font-weight:800;
      font-size:16px;
      display:flex;
      justify-content:space-between;
    }
    details p{margin:10px 0 0;color:var(--muted)}
    
    /* Footer */
    footer{
      padding:40px 0 70px;
      border-top:1px solid var(--line);
      font-size:13px;
      color:var(--muted);
    }
    
    /* Responsive */
    @media(max-width:980px){
      h1{font-size:40px}
      .split,.bandContent,.ctaInner{grid-template-columns:1fr}
      .steps,.testimonials{grid-template-columns:1fr}
      .heroInner{padding:28px}
    }
    @media(max-width:760px){
      .navlinks{display:none}
      .row2{grid-template-columns:1fr}
    }
    
    
    /* =========================================================
       Steps as Glass Cards
    ========================================================= */
    
    .steps{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
      margin-top:26px;
    }
    
    .stepCard{
      position:relative;
      border-radius:22px;
      padding:26px 26px 24px;
      border:1px solid rgba(15,20,35,.10);
    
      /* milk glass (subtil, hell) */
      background:rgba(255,255,255,.62);
      backdrop-filter: blur(10px) saturate(130%);
      -webkit-backdrop-filter: blur(10px) saturate(130%);
    
      box-shadow: 0 22px 60px rgba(10,20,40,.10);
    }
    
    .stepTop{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    
    .stepNum{
      width:44px;
      height:44px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
    
      /* brand orange */
      background:rgba(244,122,31,.12);
      border:1px solid rgba(244,122,31,.25);
      color:var(--orange);
      font-weight:900;
      font-size:16px;
    }
    
    .stepMeta{
      font-size:12px;
      font-weight:900;
      letter-spacing:.7px;
      text-transform:uppercase;
      color:var(--muted);
      margin:0;
    }
    
    .stepTitle{
      margin:4px 0 0;
      font-size:18px;
      letter-spacing:-.3px;
      color:var(--navy);
    }
    
    .stepBody{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.55;
    }
    
    /* kleiner "Glass shine" */
    .stepCard::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:22px;
      pointer-events:none;
      background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 55%);
      opacity:.55;
    }
    
    /* Hover (optional) */
    .stepCard:hover{
      box-shadow: 0 28px 80px rgba(10,20,40,.13);
      transform: translateY(-2px);
      transition: .18s ease;
    }
    
    /* Responsive */
    @media(max-width:980px){
      .steps{grid-template-columns:1fr}
    }
    
    
    /* =========================================================
   Testimonials – Glass Review Cards + Stars
    ========================================================= */
    
    .testimonials{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:22px;
      margin-top:26px;
    }
    
    /* einzelne Review Card */
    .reviewCard{
      position:relative;
      border-radius:22px;
      padding:22px 22px 18px;
      border:1px solid rgba(15,20,35,.10);
    
      background:rgba(255,255,255,.62);
      backdrop-filter: blur(10px) saturate(130%);
      -webkit-backdrop-filter: blur(10px) saturate(130%);
    
      box-shadow: 0 22px 60px rgba(10,20,40,.10);
      overflow:hidden;
    }
    
    /* subtle shine */
    .reviewCard::after{
      content:"";
      position:absolute;
      inset:-2px;
      border-radius:22px;
      pointer-events:none;
      background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.65), rgba(255,255,255,0) 55%);
      opacity:.55;
    }
    
    .reviewTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    
    .stars{
      display:flex;
      gap:4px;
      line-height:1;
    }
    .star{
      font-size:16px;
      color:var(--orange);
      text-shadow:0 6px 14px rgba(244,122,31,.18);
    }
    
    /* optional badge */
    .badgeGoogle{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,20,35,.10);
      background:rgba(255,255,255,.55);
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    
    /* Quote icon */
    .quoteIcon{
      width:42px;
      height:42px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
    
      background:rgba(244,122,31,.12);
      border:1px solid rgba(244,122,31,.22);
      color:var(--orange);
      font-weight:900;
      font-size:18px;
    }
    
    /* text */
    .reviewText{
      margin:0;
      font-size:16px;
      color:#1B2338;
      font-weight:650;
      line-height:1.5;
      position:relative;
      z-index:1;
    }
    
    .reviewFooter{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(15,20,35,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
    }
    
    .reviewer{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .reviewer b{
      font-size:13px;
      color:var(--navy);
      letter-spacing:-.1px;
    }
    .reviewer span{
      font-size:12px;
      color:var(--muted);
      font-weight:650;
    }
    
    /* hover */
    .reviewCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 28px 80px rgba(10,20,40,.13);
      transition: .18s ease;
    }
    
    /* responsive */
    @media(max-width:980px){
      .testimonials{grid-template-columns:1fr}
    }
    
    /* CTA Bild links */
    .ctaImage{
      margin-top:32px;
      max-width:520px;
    }
    
    .ctaImage img{
      width:100%;
      height:auto;
      display:block;
    
      border-radius:18px;
    
      /* leichtes Glas-Feeling / Premium */
      box-shadow:
        0 18px 50px rgba(10,20,40,.25),
        inset 0 1px 0 rgba(255,255,255,.25);
    }
    
    @media(max-width:900px){
      .ctaImage{
        max-width:100%;
        margin-top:24px;
      }
    }
    
    /* Legal pages */
    .legal{
      padding:90px 0;
    }
    .legalBox{
      width:min(980px, 92vw);
      margin:0 auto;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(15,20,35,.10);
      border-radius:24px;
      padding:42px 40px;
      backdrop-filter: blur(10px) saturate(130%);
      -webkit-backdrop-filter: blur(10px) saturate(130%);
      box-shadow: 0 26px 80px rgba(10,20,40,.10);
    }
    .legal h1{
      margin:0 0 10px;
      font-size:38px;
      color:var(--navy);
    }
    .legal h2{
      margin:26px 0 10px;
      font-size:18px;
      color:var(--navy);
    }
    .legal p, .legal li{
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
    }
    .legal ul{
      margin:12px 0 0 18px;
    }
    .legal .small{
      color:var(--muted);
      font-size:12px;
    }
    
    /* =========================================================
   Über uns Section
    ========================================================= */
    
    #ueber-uns{
      padding:90px 0;
    }
    
    .aboutGrid{
      display:grid;
      grid-template-columns:1fr 1.1fr;
      gap:64px;
      align-items:center;
    }
    
    /* Bild */
    .aboutImage img{
      width:100%;
      height:auto;
      display:block;
      border-radius:24px;
    
      box-shadow:
        0 30px 80px rgba(10,20,40,.18);
    }
    
    /* Text */
    .aboutText .p{
      margin-top:14px;
      max-width:62ch;
    }
    
    .aboutList{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      font-weight:600;
      color:#1B2338;
    }
    
    .aboutList li{
      margin-bottom:10px;
    }
    
    .aboutActions{
      margin-top:28px;
    }
    
    /* Responsive */
    @media(max-width:980px){
      .aboutGrid{
        grid-template-columns:1fr;
        gap:40px;
      }
    }
    
    
    .logo{
      height:80px;          /* Desktop-Größe */
      width:auto;
      display:block;
    }
    
    @media(max-width:900px){
      .logo{
        height:32px;        /* Mobile etwas kleiner */
      }
    }