* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --primary: #0f172a;
  --accent: #0ea5e9;
  --accent-soft: #e0f2fe;
  --success: #25d366;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
  padding: 6px;
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow);
}

.brand-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.05;
}

.brand-subtitle {
  font-size: 0.95rem;
  color: #64748b;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
  position: relative;
}

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

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 82px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 32%),
    radial-gradient(circle at left top, rgba(37, 211, 102, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid,
.split-grid,
.map-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0c4a6e;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1,
.section h2 {
  margin: 0 0 16px;
  line-height: 1.08;
  color: var(--text);
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  max-width: 760px;
}

.hero p,
.section p,
.card p,
.process-step p,
.legal-box p,
.faq-card p,
.hero-card p,
.review-card p,
.mini-stat span,
.trust-item span {
  color: var(--muted);
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 760px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-mini-review {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid #cbd5e1;
}

.button-whatsapp {
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-card,
.process-box,
.contact-box,
.legal-box,
.card,
.faq-card,
.seo-box,
.trust-item,
.review-card,
.mini-stat,
.map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card,
.process-box,
.contact-box,
.legal-box,
.seo-box,
.map-card {
  padding: 28px;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  font-size: 0.88rem;
}

.offer-list,
.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.hero-card h2,
.process-box h3,
.seo-box h2,
.review-card strong,
.mini-stat strong {
  margin-top: 0;
  color: var(--text);
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 28px;
}

.card-grid,
.faq-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.faq-card,
.review-card {
  padding: 24px;
}

.feature-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover,
.review-card:hover,
.faq-card:hover,
.trust-item:hover {
  transform: translateY(-3px);
}

.card h3,
.faq-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step + .process-step {
  margin-top: 18px;
}

.benefit-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--text);
}

.benefit-list li + li {
  margin-top: 10px;
}

.trust-strip {
  padding-top: 0;
}

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

.trust-item,
.mini-stat {
  padding: 20px;
}

.trust-item strong,
.mini-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #25d366);
}

.stars {
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #f59e0b;
  font-size: 1.1rem;
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-item span {
  display: block;
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-item strong,
.contact-item strong a,
.offer-list a,
.contact-list a {
  font-size: 1.08rem;
  color: var(--text);
}

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

.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.footer-inner {
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #64748b;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right:380px;
  bottom: 20px;
  z-index: 80;
  background: var(--success);
  color: #ffffff;
  font-weight: 800;
  padding: 16px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .header-inner,
  .hero-grid,
  .split-grid,
  .map-grid,
  .trust-grid,
  .card-grid,
  .faq-grid,
  .review-grid,
  .footer-inner,
  .mini-stat-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header-inner {
    padding: 14px 0;
  }

  .nav {
    gap: 14px;
    justify-content: flex-start;
  }

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .site-header {
    position: static;
  }

  .footer-inner {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 54px;
  }

  .button,
  .whatsapp-float {
    width: 100%;
    text-align: center;
  }

  .nav {
    font-size: 0.92rem;
  }

  .container {
    width: min(1140px, calc(100% - 24px));
  }

  .hero-card,
  .process-box,
  .contact-box,
  .legal-box,
  .seo-box {
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}


/* --- v4 updates: remove reviews, stronger logo presence --- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background-logo {
  position: absolute;
  inset: 0;
  background-image: url("Logo.png");
  background-repeat: no-repeat;
  background-position: right -40px center;
  background-size: min(42vw, 520px);
  opacity:0.28;
  pointer-events: none;
  filter: saturate(1.05);
}

.hero-logo-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  z-index: 1;
}

.logo-card {
  position: relative;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.65);
}

.logo-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59,130,246,0.28) 0%, rgba(59,130,246,0.10) 35%, rgba(255,255,255,0) 70%);
  filter: blur(10px);
}

.hero-logo-main {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.header-logo-badge {
  position: fixed;
  top: 18px;
  right:380px;
  z-index: 60;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-logo-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

.header-logo-badge img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-background-logo {
    background-position: center top 10px;
    background-size: min(72vw, 340px);
    opacity:0.28;
  }

  .hero-logo-showcase {
    margin-top: 1.5rem;
  }

  .header-logo-badge {
    width: 62px;
    height: 62px;
    top: 14px;
    right:380px;
    border-radius: 18px;
  }

  .header-logo-badge img {
    width: 46px;
    height: 46px;
  }
}


/* --- v5 logo placement behind tagline --- */

.tagline-wrapper{
  position:relative;
  display:inline-block;
}

.tagline-logo-bg{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:420px;
  height:420px;
  background-image:url("Logo.png");
  background-repeat:no-repeat;
  background-size:contain;
  opacity:0.28;
  pointer-events:none;
}

.tagline{
  position:relative;
  z-index:2;
  font-weight:600;
}




.benefits-logo img{
  width:420px;
  height:auto;
}

@media (max-width:900px){
  .benefits-logo{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    text-align:center;
    margin:20px 0;
  }
  .benefits-logo img{
    width:220px;
  }
}

/* centered transparent logo between benefit groups */
.benefits-logo-center{
  display:flex;
  justify-content:center;
  margin:40px 0;
  opacity:0.28;
}
.benefits-logo-center img{
  width:420px;
  height:auto;
}



/* Auffälliger Markenname im Header */
.brand-title-animated{
  display:inline-block;
  background: linear-gradient(90deg, #12305f 0%, #1f4f96 50%, #12305f 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% auto;
  animation: brandShine 3.2s linear infinite;
  letter-spacing:0.4px;
  text-shadow: 0 0 0 rgba(0,0,0,0);
}

@keyframes brandShine{
  0%{ background-position: 0% center; transform: translateY(0); }
  50%{ background-position: 100% center; transform: translateY(-1px); }
  100%{ background-position: 200% center; transform: translateY(0); }
}

.site-brand strong{
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.05;
}

.site-brand small{
  display:block;
  margin-top: 0.15rem;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}

/* Mobile: etwas ruhiger */
@media (max-width: 768px){
  .site-brand strong{
    font-size: 1.55rem;
  }
  .brand-title-animated{
    animation-duration: 4s;
  }
}


/* Großes transparentes Logo im Hero-Bereich */
.hero-logo-background{
  position:absolute;
  right:380px;
  top:180px;
  width:420px;
  opacity:0.28;
  pointer-events:none;
}

.hero-logo-background img{
  width:100%;
  height:auto;
}

/* Kreativer Header Titel */
.site-brand strong{
  font-size:2.2rem;
  font-weight:900;
  letter-spacing:0.5px;
  background: linear-gradient(90deg,#0d2f5c,#1d62c9,#0d2f5c);
  -webkit-background-clip:text;
  color:transparent;
  background-size:200% auto;
  animation:shine 4s linear infinite;
}

@keyframes shine{
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}



.center-logo-watermark{
 position:absolute;
 left:50%;
 top:55%;
 transform:translate(-50%,-50%);
 width:520px;
 opacity:0.28;
 pointer-events:none;
}

.center-logo-watermark img{
 width:100%;
 height:auto;
}



/* Transparentes Logo genau hinter dem Anfrage-Kasten */
.offer-list{
 position:relative;
}



.offer-list *{
 position:relative;
 z-index:1;
}




/* Hintergrundlogo im unteren rechten Bereich */
.hero::after{
 content:"";
 position:absolute;
 right:380px;
 bottom:60px;
 width:420px;
 height:420px;
 background:url('Logo.png') center/contain no-repeat;
 opacity:0.28;
 pointer-events:none;
}



/* Standort-Bereich optisch sauber an Inhalt anpassen */
.location-section,
.section-location,
#standort {
  position: relative;
}

.location-grid,
.location-wrapper,
.location-content {
  position: relative;
  z-index: 1;
}

.location-grid{
  align-items: start;
  gap: 28px;
}

.location-text,
.location-card,
.map-card{
  position: relative;
  z-index: 2;
}

.location-text,
.location-card{
  background: rgba(216, 235, 249, 0.72);
  border: 1px solid rgba(120, 170, 210, 0.22);
  border-radius: 28px;
  padding: 28px 30px;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 30px rgba(15, 45, 90, 0.06);
}

.map-card{
  background: rgba(216, 235, 249, 0.72);
  border: 1px solid rgba(120, 170, 210, 0.22);
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(15, 45, 90, 0.06);
}

.map-card iframe{
  display:block;
  width:100%;
  min-height:330px;
  border:0;
  border-radius:20px;
}

/* Falls ein riesiger blauer Blob per Pseudo-Element erzeugt wurde, ausblenden */
.location-section::before,
.location-grid::before,
.location-wrapper::before,
.section-location::before,
#standort::before{
  content:none !important;
  display:none !important;
}


/* Standortbereich Container */
.location-box{
    background:#cfe3f3;
    border-radius:40px;
    padding:50px;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:start;
}

.location-box iframe{
    width:100%;
    border-radius:20px;
}

@media (max-width:900px){
.location-box{
    grid-template-columns:1fr;
}
}


/* Standortbereich neu anordnen: Text oben zentriert, Map darunter */
.location-box{
    background:#cfe3f3;
    border-radius:40px;
    padding:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:35px;
}

.location-box 

.location-box .map-card{
    width:420px;
    max-width:100%;
}

.location-box iframe{
    width:100%;
    height:340px;
    border-radius:20px;
    border:0;
}


/* Standortbereich exakt wie gewünscht */
.location-box,
.location-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#cfe3f3;
    border-radius:40px;
    padding:70px 60px;
}



.map-card{
    width:420px;
    max-width:100%;
}

.map-card iframe{
    width:100%;
    height:360px;
    border:0;
    border-radius:20px;
}



/* Standortbereich – nur Text zentral im blauen Bereich */
.location-section,
.location-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#cfe3f3;
    border-radius:40px;
    padding:80px 60px;
}




/* Text wirklich zentral im blauen Bereich */


.location-section{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Textblock 7cm nach rechts verschieben */
.location-text{
    max-width:700px;
    margin-left:7cm;
}


/* Standort-Textblock exakt 7 cm nach rechts */
.map-text-shift{
    margin-left: 7cm !important;
}
