 :root{
      --navy:#0d2a4f;
      --navy-2:#163d70;
      --blue:#1d5fbf;
      --blue-soft:#edf4ff;
      --line:#dbe6f4;
      --text:#1f2937;
      --muted:#5b6472;
      --white:#ffffff;
      --bg:#f6f9fd;
      --card:#ffffff;
      --green:#25D366;
      --green-dark:#1faa52;
      --shadow:0 18px 45px rgba(13,42,79,.08);
      --shadow-strong:0 28px 70px rgba(13,42,79,.12);
      --radius:20px;
      --radius-lg:28px;
      --max:1240px;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family: Arial, Helvetica, sans-serif;
      color:var(--text);
      background:var(--white);
      line-height:1.6;
    }
    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}
    .container{max-width:var(--max);margin:0 auto;padding:0 20px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:15px 24px;
      border-radius:14px;
      font-weight:700;
      font-size:16px;
      transition:.25s ease;
      cursor:pointer;
      border:none;
      text-align:center;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--blue),var(--navy-2));
      color:#fff;
      box-shadow:var(--shadow);
    }
    .btn-primary:hover{transform:translateY(-2px)}
    .btn-secondary {
  border:2px solid var(--navy-2);
  color:var(--navy-2);
  background:#fff;
  font-weight:800;
}

.desktop-only {
  display: flex;
}


.btn-secondary:hover {
  background: linear-gradient(135deg,var(--blue),var(--navy-2));
  color:#fff;
  border-color: transparent;
}
    .btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 700;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1faa52;
  transform: translateY(-2px);
}
.hero-trust {
  margin-top:12px;
  font-size:14px;
  color:#475569;
  font-weight:600;
}

.brand {
  display: flex;
  align-items: center;   /* 🔥 vertikal mittig */
  gap: 16px;             /* Abstand Logo ↔ Text */
}

.brand-text {
  display: flex;
  align-items: center;   /* sorgt für saubere Höhe */
}

.logo {
  height: 70px;
}

/* BURGER STANDARD */
.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE MENU STANDARD */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-weight: 700;
}
    .topbar{
      background:var(--navy);
      color:#dbeafe;
      font-size:13px;
      padding:8px 0;
    }
    .topbar-wrap{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }

    header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(10px);
      border-bottom:1px solid #eef4fb;
    }

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

}
/* MITTE */
.nav-links {
  display:flex;
  gap:24px;
  font-weight:700;
}

    .brand-title{
      font-size:25px;
      font-weight:900;
      letter-spacing:1px;
      color:var(--navy);
    }
    .brand-sub{
      font-size:13px;
      color:var(--muted);
      font-weight:700;
    }

    
    .nav-links a:hover{color:var(--blue)}

    .hero{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 80% 10%, rgba(29,95,191,.10), transparent 28%),
        radial-gradient(circle at 10% 20%, rgba(13,42,79,.05), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
      padding:70px 0 60px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:34px;
      align-items:center;
    }

    .eyebrow{
      display:inline-block;
      padding:8px 14px;
      border-radius:999px;
      background:var(--blue-soft);
      color:var(--blue);
      font-size:13px;
      font-weight:800;
      margin-bottom:18px;
    }

    .hero h1{
      font-size:58px;
      line-height:1.04;
      color:#10233f;
      margin-bottom:18px;
    }

    .hero p{
      font-size:18px;
      color:#4b5563;
      margin-bottom:24px;
      max-width:700px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:20px;
    }

    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:24px;
    }
    .hero-points span{
      padding:10px 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      font-size:14px;
      font-weight:700;
      color:#334155;
    }

    .trust-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .trust{
      background:#fff;
      border:1px solid #e8eff8;
      border-radius:16px;
      padding:14px;
      text-align:center;
      box-shadow:var(--shadow);
      font-size:14px;
      font-weight:800;
      color:#10233f;
    }

    .hero-panel{
      background:#fff;
      border:1px solid #e6eef9;
      border-radius:var(--radius-lg);
      padding:24px;
      box-shadow:var(--shadow-strong);
    }

    .logo-card{
      border:1px dashed #d5e2f5;
      border-radius:22px;
      padding:26px 20px;
      background:#fbfdff;
      text-align:center;
      margin-bottom:20px;
    }
    .logo-main{
      font-size:64px;
      font-weight:900;
      color:var(--navy-2);
      letter-spacing:2px;
      margin-bottom:6px;
    }
    .logo-service{
      font-size:22px;
      color:#64748b;
      letter-spacing:3px;
      margin-bottom:12px;
    }
    .logo-tag{
      font-size:20px;
      color:var(--navy);
      font-weight:800;
      margin-bottom:10px;
    }
    .logo-names{
      font-size:18px;
      color:#64748b;
      font-weight:700;
    }

    .panel-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:14px;
    }

    .mini-box{
      background:#fff;
      border:1px solid #e7eef8;
      border-radius:18px;
      padding:16px;
    }
    .mini-box h3{
      font-size:18px;
      color:#10233f;
      margin-bottom:8px;
    }
    .mini-box p,.mini-box li{
      font-size:14px;
      color:#4b5563;
    }
    .mini-box ul{
      list-style:none;
      display:grid;
      gap:6px;
    }

    section{padding:100px 0}

    .section-head{
      text-align:center;
      margin-bottom:42px;
    }
    .section-head .tag{
      font-size:13px;
      font-weight:800;
      color:var(--blue);
      text-transform:uppercase;
      letter-spacing:1.5px;
      margin-bottom:10px;
    }
    .section-head h2{
      font-size:42px;
      color:#10233f;
      margin-bottom:12px;
    }
    .section-head p{
      max-width:780px;
      margin:0 auto;
      color:#6b7280;
      font-size:17px;
    }

    .premium-band{
  background: linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}
.btn {
  letter-spacing: 0.3px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
}

.review-box {
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 20px 60px rgba(13,42,79,.08);
  text-align:center;
  max-width:800px;
  margin:0 auto;
}

.review-content h2 {
  font-size:28px;
  margin-bottom:12px;
  color:#10233f;
}

.review-content p {
  color:#4b5563;
  margin-bottom:20px;
  font-size:16px;
}

.review-actions {
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.review-note {
  font-size:13px;
  color:#64748b;
}

    .services-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
.card {
  display: flex;
  flex-direction: column;
}

.card ul {
  flex-grow: 1;
}

.card .btn {
  margin-top: auto;
}
.region-list {
  list-style: none;
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.region-list li {
  font-size: 14px;
  color: var(--text);
}
.card {
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(13,42,79,.15);
  border-color: #cfe0f6;
}
    .card{
      background:#fff;
      border:1px solid #e6eef9;
      border-radius:var(--radius);
      padding:28px;
      box-shadow:var(--shadow);
      height:100%;
    }

    .card h3{
      font-size:23px;
      color:#10233f;
      margin-bottom:14px;
    }

    .card ul{
      list-style:none;
      display:grid;
      gap:10px;
    }

    .card li{
      position:relative;
      padding-left:18px;
      color:#4b5563;
      font-size:15px;
    }
    .card li::before{
      content:"•";
      position:absolute;
      left:0;
      color:var(--blue);
      font-weight:900;
    }

    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:center;
    }

    .visual-box{
      min-height:340px;
      border-radius:26px;
      background:
        linear-gradient(135deg, rgba(29,95,191,.10), rgba(13,42,79,.04)),
        #f7fbff;
      border:1px dashed #cfe0f6;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:30px;
      color:var(--navy-2);
      font-size:28px;
      font-weight:900;
      box-shadow:var(--shadow);
    }

    .check-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .check-list li{
      background:#fff;
      border:1px solid #e6eef9;
      border-radius:14px;
      padding:14px 16px;
      font-size:15px;
      color:#334155;
      font-weight:600;
      box-shadow:var(--shadow);
    }

    .why-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }

    .why{
      background:#fff;
      border:1px solid #e7eef8;
      border-radius:20px;
      padding:24px;
      text-align:center;
      box-shadow:var(--shadow);
    }
    .why .icon{
      font-size:30px;
      margin-bottom:10px;
    }
    .why h3{
      font-size:18px;
      color:#10233f;
      margin-bottom:8px;
    }
    .why p{
      font-size:14px;
      color:#6b7280;
    }

    .contact{
      background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:24px;
      align-items:start;
    }

    .box{
      background:#fff;
      border:1px solid #e7eef8;
      border-radius:26px;
      padding:28px;
      box-shadow:var(--shadow);
    }

    .box h3{
      font-size:28px;
      color:#10233f;
      margin-bottom:14px;
    }

    .contact-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin-bottom:20px;
      color:#4b5563;
      font-size:15px;
    }

    .contact-list strong{color:#111827}

    .button-stack{
      display:grid;
      gap:12px;
    }

    form{display:grid;gap:14px}
    .row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    input, textarea{
      width:100%;
      padding:14px 16px;
      border:1px solid #d7e3f2;
      border-radius:14px;
      font-size:15px;
      outline:none;
      transition:.2s ease;
      font-family:Arial, Helvetica, sans-serif;
      background:#fff;
    }
    input:focus, textarea:focus{
      border-color:var(--blue);
      box-shadow:0 0 0 4px rgba(29,95,191,.08);
    }
    textarea{
      min-height:150px;
      resize:vertical;
    }
    .note{
      font-size:13px;
      color:#6b7280;
    }

    .seo{
      background:#fff;
      border-top:1px solid #edf3fb;
      border-bottom:1px solid #edf3fb;
    }
    .seo-inner{
      max-width:920px;
      margin:0 auto;
      text-align:center;
    }
    .seo-inner p{
      font-size:16px;
      color:#4b5563;
      margin-top:14px;
    }

    footer{
      background:#0b1728;
      color:#cbd5e1;
      padding:34px 0 24px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr 1fr 1fr;
      gap:24px;
    }

    .footer-title{
      font-size:24px;
      font-weight:900;
      color:#fff;
      margin-bottom:6px;
    }

    .footer-sub{
      color:#93c5fd;
      font-size:14px;
      font-weight:700;
      margin-bottom:12px;
    }

    .footer-col h4{
      color:#fff;
      font-size:16px;
      margin-bottom:12px;
    }

    .footer-col ul{
      list-style:none;
      display:grid;
      gap:8px;
      font-size:14px;
    }
.footer-text {
  font-size:14px;
  color:#cbd5e1;
  margin:10px 0 16px;
}

.footer-badges {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer-badges span {
  font-size:12px;
  background:rgba(255,255,255,0.08);
  padding:6px 10px;
  border-radius:8px;
}

.footer-col a {
  color:#cbd5e1;
  transition:0.2s;
}

.footer-col a:hover {
  color:#fff;
}

.footer-cta {
  margin-top:15px;
}

.footer-bottom {
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#94a3b8;
}

    .footer-col a:hover{color:#fff}

    .footer-note{
      margin-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:16px;
      font-size:13px;
      color:#94a3b8;
    }

    .mobile-cta{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:1200;
      background:rgba(255,255,255,.98);
      backdrop-filter:blur(8px);
      border-top:1px solid #e8eff8;
      padding:10px 12px;
      display:none;
      gap:10px;
    }
    .mobile-cta a{
      flex:1;
      padding:12px 10px;
      border-radius:12px;
      text-align:center;
      font-size:14px;
      font-weight:800;
    }
    .mobile-call{
      background:var(--blue);
      color:#fff;
    }
    .mobile-wa{
      background:var(--green);
      color:#fff;
    }
.logo {
height: 100px;
width: auto;
max-width: auto;
object-fit: contain;
}
.header-subline {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.4;
}

.nav {
  align-items:center;
}

.nav-links a {
  position:relative;
  padding-bottom:4px;
}

.nav-links a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--blue);
  transition:0.2s;
}

.nav-links a:hover::after {
  width:100%;
}
 .region-info {
          margin-top: 20px;
          padding-top: 15px;
          border-top: 1px solid var(--line);
          font-size: 14px;
          color: var(--muted);
          line-height: 1.5;
        }

        .region-info h6 {
          font-size: 16px;
          color: var(--navy);
          margin-bottom: 8px;
          font-weight: 700;
        }
.nav-cta .btn {
  padding:12px 18px;
  font-size:15px;
}
.section-divider {
  width: calc(100% - 40px);   /* links + rechts je 20px Abstand */
  max-width: 1200px;          /* optional: begrenzt Breite für Premium Look */
  margin: 60px auto;          /* zentriert den Banner */

  height: 260px;

  background-size: 100%;
  background-position: center 30%;
  background-repeat: no-repeat;	

  border-radius: 12px;        /* 🔥 macht es direkt hochwertiger */
  overflow: hidden;           /* wichtig bei border-radius */

  position: relative;
}

/* DEIN TEAM BILD */
.divider-unterhero {
  background-image: url("images/unterhero.png");
}

/* LEISTUNGEN */
.divider-leistungen {
  background-image: url("images/leistungen.png");
}

/* SCHNELL */
.divider-schnell {
  background-image: url("images/schnell.png");
}

.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.section-divider {
  position: relative;
}	

.section-divider {
  padding: 0; /* 🔥 GANZ WICHTIG */
}
  

/* =========================
   Hero 2 Alternative (SAUBER)
========================= */

  <div class="hero-overlay"></div>

  <div class="hero-container">
   
    <div class="hero-content">
      <h1>Außenanlagenpflege in Berlin & Brandenburg</h1>
     
      <p class="hero-sub">
        Wir sorgen für saubere, gepflegte Außenbereiche – zuverlässig, gründlich und ohne Aufwand für Sie.
      </p>

      <div class="hero-trust">
        <span>✔ Über 50+ Einsätze</span>
        <span>✔ Rückmeldung meist innerhalb von 24h</span>
      </div>

      <a href="#kontakt" class="hero-btn">
        Kostenloses Angebot anfordern
      </a>
    </div>

  </div>


/* =========================
   RESPONSIVE FIX (SAUBER)
========================= */






/* ===== NEW DESIGN SYSTEM ===== */

:root {
  --primary: #2f855a;
  --primary-dark: #276749;
  --text: #1e2a38;
  --text-light: #4a5568;
  --bg-light: #f7fafc;
  --border: #e2e8f0;
}

/* Grundlayout */
body {
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  transition: 0.2s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

h1 {
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
}



/* ===== NEW DESIGN SYSTEM ENDE ===== */









@media (max-width:1100px){
  .hero-grid,.split,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr 1fr}
  .hero h1{font-size:46px}
  .trust-strip{grid-template-columns:1fr}
}

@media (max-width:768px){

  .nav {
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .nav-cta {
    width:100%;
  }

  .nav-cta .btn {
    width:100%;
  }

  .nav-links {
    display:none;
  }

  .burger {
    display:block;
  }

  .topbar{
    font-size:12px;
    padding:6px 0;
  }

  .hero{
    padding:35px 0;
  }

  .hero h1{
    font-size:28px;
    line-height:1.2;
    margin-bottom:12px;
  }

  .hero p{
    font-size:15px;
    margin-bottom:16px;
  }

  .hero-actions{
    flex-direction:column;
    gap:10px;
  }

  .hero-actions .btn{
    width:100%;
    font-size:15px;
    padding:14px;
  }

  .hero-points{
    justify-content:center;
    gap:8px;
  }

  .hero-points span{
    font-size:12px;
    padding:7px 10px;
  }

  .trust{
    font-size:13px;
    padding:10px;
  }

  .mobile-cta{
    display:flex;
    gap:8px;
    padding:10px;
  }

  .mobile-cta a{
    font-size:14px;
    padding:12px;
    border-radius:10px;
  }

  body{
    padding-bottom:78px;
  }

  .section-divider{
    height:140px;
    background-position:center;
  }

.seo-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px; /* 🔥 wichtig */
}
  
.btn {
  max-width: 100%;
}
  
 /* 🔧 GLOBAL RESET */
  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  /* ============================= */
  /* 🔥 HEADER / NAV */
  /* ============================= */

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: block;
  }

  .logo {
    height: 50px;
  }

  .header-subline {
    display: none;
  }

  /* ============================= */
  /* 🔥 HERO */
  /* ============================= */

  .hero {
    padding: 40px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    justify-content: center;
    gap: 8px;
  }

  .hero-points span {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* ============================= */
  /* 🔥 GRID SECTIONS */
  /* ============================= */

  .services-grid,
  .why-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ============================= */
  /* 🔥 TEXT */
  /* ============================= */

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 15px;
  }

  /* ============================= */
  /* 🔥 BUTTONS */
  /* ============================= */

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* ============================= */
  /* 🔥 DIVIDER */
  /* ============================= */

  .section-divider {
    height: 180px;
    width: calc(100% - 20px);
    margin: 40px auto;
    border-radius: 12px;
  }

  /* ============================= */
  /* 🔥 FOOTER */
  /* ============================= */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

.desktop-only {
    display: none;
  }
  
  
  /* =========================
   Hero 2 Alternative (SAUBER)
========================= */
  
    .hero {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-overlay {
    background: rgba(255,255,255,0.92);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }
  
  /* ===== NEW DESIGN SYSTEM ===== */
  
  @media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 0;
  }
}
  /* ===== NEW DESIGN SYSTEM ENDE ===== */
  
}