/* =========================
   FILE: /assets/css/style.css
   ========================= */

/* ===== THEME ===== */
:root{
  --bg: #f4f7fb;
  --paper: #ffffff;

  --text: #0f172a;
  --muted: #475569;

  --blue: #1e3a8a;         /* Hauptblau */
  --blue-dark: #0f172a;    /* Dunkelblau */
  --blue-2: #0b3c7c;       /* Alternate */
  --line: rgba(15,23,42,.12);

 --accent: #16a34a;
--accent-hover: #15803d;

  --radius: 18px;
  --radius2: 24px;

  --shadow: 0 18px 40px rgba(2, 6, 23, .14);
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, .10);

  --container: 1120px;
}

/* ===== RESET ===== */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; }

/* ===== LAYOUT ===== */
.container{
  width: min(92vw, var(--container));
  margin: 0 auto;
}


/* =========================
   HEADER – CLEAN PREMIUM FIX
   ========================= */

.header {
  background: #009ce1;             /* Firmenblau */
  height: 64px;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  
}
.header::after{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:30%;
  height:100%;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.35) 45%,
    rgba(255,255,255,0) 70%
  );

  transform: skewX(-20deg);
  animation: headerShine 5s ease-in-out infinite;
  pointer-events:none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ===== BRAND ===== */

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

/* Logo schwebt über dem Balken */
.brand-logo {
  height: 90px;
  width: auto;
  border-radius: 14px;

  background: #ffffff;
  border: 2px solid #fef700;

  margin-top: 28px;      /* lässt Logo nach unten überstehen */
  margin-bottom: -28px;

  box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    0 0 18px rgba(254,237,0,.45);

  position: relative;
  z-index: 200;
  transition: all .3s ease;
}

/* Hover leicht lebendig */
.brand-logo:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 14px 30px rgba(0,0,0,.45),
    0 0 26px rgba(254,237,0,.65);
}

/* Gold-Schrift */
.brand-name {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .5px;

  background: linear-gradient(
    120deg,
    #fef700 0%,
    #fff8a0 25%,
    #fef700 50%,
    #e6c800 75%,
    #fef700 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow:
    0 1px 0 rgba(255,255,255,.2),
    0 3px 8px rgba(0,0,0,.35);
}

/* ===== NAVIGATION ===== */

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-weight: 700;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  transition: all .25s ease;
}

.nav a:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}


/* Banner bar */
.brand-banner{
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 4px solid #facc15;
}
.brand-banner .container{
  padding: 10px 0;
}
.brand-banner img{
  height: 56px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 58vh; /* vorher 74vh */
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;

  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;

  /* 🔥 Größe steuerbar */
  background-size: var(--hero-size, 120%);

  /* 🔥 Position steuerbar */
  background-position: var(--hero-x, 85%) var(--hero-y, 85%);

  /* optional leichte Veredelung */
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.82),
    rgba(15, 23, 42, 0.55)
  );
}
.hero-inner{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  padding: 40px 0; /* weniger Luft */
}

.hero-left{
  align-self:center;
  color: #fff;
}
.hero-left h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}
.hero-left h1 span.thin{
  font-weight: 500;
  opacity: .95;
}
.hero-left p{
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin-bottom: 22px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 10px 24px rgba(2,6,23,.22);
  user-select:none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-ico{ filter: drop-shadow(0 6px 12px rgba(0,0,0,.18)); }

/* PRIMARY jetzt Weiß */
.btn-primary{
  background: rgba(255,255,255,.96);
  color: var(--blue-dark);
  border: 1px solid rgba(255,255,255,.35);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,.26);
}

/* SECONDARY jetzt Grün */
.btn-secondary{
  background: var(--accent);
  color: #fff;
}

.btn-secondary:hover{
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,.26);
}

.btn-wide{ width:100%; }

/* ===== HERO FEATURES STRIP (unter Hero) ===== */

.hero-badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-top: 0;
  background:#ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.badge{
  display:flex;
  align-items:center;
  gap:16px;
  padding:22px 28px;
  background:#ffffff;
  position:relative;
}

/* Trennlinie zwischen Items */
.badge:not(:last-child){
  border-right:1px solid var(--line);
}

/* Icon-Kreis */
.badge-ico{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:900;
  color:#ffffff;
  flex-shrink:0;
}

/* Farben wie Konzept */
.badge:nth-child(1) .badge-ico{
  background:#22c55e; /* grün */
}

.badge:nth-child(2) .badge-ico{
  background:#f59e0b; /* orange */
}

.badge:nth-child(3) .badge-ico{
  background:#f59e0b; /* orange */
}

.badge strong{
  display:block;
  font-size:16px;
  font-weight:800;
  color:var(--blue-dark);
}

.badge span{
  display:block;
  font-size:14px;
  color:var(--muted);
  margin-top:4px;
}


/* ===== SECTIONS ===== */
.section{
  padding: 72px 0;
}
.section-alt{
  background: #f1f5f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  text-align:center;
  margin-bottom: 18px;
}
.section-head h2{
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.4px;
}
.section-head p{
  color: var(--muted);
  margin-top: 8px;
}

/* ===== CARDS (VERFEDELT – OHNE STRUKTURÄNDERUNG) ===== */
.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px; /* etwas mehr Luft */
  margin-top: 36px;
}

.card{
  background: #b6b6b446;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,156,225,.08);

  box-shadow:
    0 6px 18px rgba(0,156,225,.08),
    0 20px 40px rgba(2,6,23,.10);

  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 18px 36px rgba(15,23,42,.12),
    0 28px 60px rgba(15,23,42,.14);
}

/* Bild etwas cleaner */
.card-media{
  height: 210px; /* minimal höher für mehr Präsenz */
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  filter: saturate(1.05) contrast(1.03);
}

/* sanfte Bildüberblendung unten */
.card-media::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:70px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,.85)
  );
}

.card-body{
  padding: 20px 22px 24px;
}

.card-body h3{
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--blue-dark);
}

.card-body p{
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Link stärker wie im Konzept */
.card-link{
  display:inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .3px;
  position: relative;
  transition: all .2s ease;
}

.card-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0%;
  height:2px;
  background: var(--blue);
  transition: width .2s ease;
}

.card-link:hover{
  color: var(--blue-dark);
}

.card-link:hover::after{
  width:100%;
}

/* ===== FEATURE STRIP – kompakt & sauber ===== */

.feature-strip{
  background:#b6b6b446;
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.feature-inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 20px; /* vorher viel zu groß */
}

.feature-item:not(:last-child){
  border-right:1px solid rgba(15,23,42,.06);
}

.feature-icon{
  width:36px;           /* kleiner */
  height:36px;
  border-radius:50%;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:16px;
  flex-shrink:0;
}

.feature-text strong{
  display:block;
  font-size:15px;       /* kleiner */
  font-weight:700;
  color:#0f172a;
}

.feature-text span{
  display:block;
  font-size:13px;
  color:#64748b;
  margin-top:3px;
}

/* ===== MOBILE ===== */

@media (max-width: 900px){
  .feature-inner{
    grid-template-columns:1fr;
  }

  .feature-item{
    border-right:none !important;
    border-bottom:1px solid rgba(15,23,42,.06);
    padding:18px 18px;
  }

  .feature-item:last-child{
    border-bottom:none;
  }
}

/* =================================================
   ABLAUF – FINAL CLEAN VERSION (MIT ICON FIX)
   ================================================= */

#ablauf{
  padding-left:20px;
  padding-right:20px;
  background:#f4f7fb;
}

#ablauf .container{
  max-width:1200px;
  margin:0 auto;
}

#ablauf .steps{
  display:flex;
  align-items:stretch;
  justify-content:center;
  width:100%;
  margin-top:36px;
  background:#f3f5f8;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(15,23,42,.12);
}

/* ================================
   EINZELNER STEP
================================ */

#ablauf .step{
  flex:1;
  position:relative;
  background:#f3f5f8;
  text-align:center;
  padding:34px 18px 30px;
  font-weight:800;
  font-size:15px;
  color:#0f172a;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:14px;

  transition:all .22s ease;
}

/* Hover */
#ablauf .step:hover{
  background:#ffffff;
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(0,0,0,.08);
  z-index:10;
}

/* Active */
#ablauf .step:active{
  transform:translateY(-1px) scale(.98);
}

/* ================================
   ICON FIX (WICHTIGER TEIL)
================================ */

#ablauf .step img{
  width:54px;
  height:54px;
  object-fit:contain;

  display:block;

  background:#ffffff;
  padding:10px;
  border-radius:16px;

  box-shadow:
    0 6px 16px rgba(0,0,0,.08),
    0 0 0 1px rgba(0,157,228,.15);

  transition:transform .2s ease, box-shadow .2s ease;
}

#ablauf .step:hover img{
  transform:scale(1.12);
  box-shadow:
    0 10px 24px rgba(0,157,228,.25),
    0 0 0 2px rgba(0,157,228,.25);
}

/* Text: ein Tick sauberer */
#ablauf .step > div{
  line-height:1.15;
}

/* ================================
   TEXT HOVER
================================ */

#ablauf .step div{
  transition:color .18s ease;
}

#ablauf .step:hover div{
  color:#009ce1;
}

/* ================================
   TRENNLINIE
================================ */

#ablauf .step:not(:last-child){
  border-right:1px solid rgba(15,23,42,.08);
}

/* ================================
   PFEIL
================================ */

#ablauf .step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:52px;
  right:-18px;
  width:0;
  height:0;
  border-top:18px solid transparent;
  border-bottom:18px solid transparent;
  border-left:18px solid #009ce1;

  z-index:20;
  pointer-events:none;

  opacity:0;
  transform:translateX(-6px);
  transition:all .25s ease;
}

#ablauf .step:hover::after{
  opacity:1;
  transform:translateX(0);
}

/* ================================
   MOBILE FIX
================================ */

@media(max-width:980px){

  #ablauf .steps{
    flex-direction:column;
  }

  #ablauf .step{
    border-right:none !important;
    border-bottom:1px solid rgba(15,23,42,.08);
  }

  #ablauf .step:last-child{
    border-bottom:none;
  }

  #ablauf .step::after{
    display:none !important;
  }
}

/* =========================
   KONTAKT PREMIUM CLEAN
   ========================= */

.contact{
  padding:100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,157,228,.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,157,228,.18), transparent 60%),
    linear-gradient(180deg,#0b1c2e,#071426 60%,#05101c);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.contact-card{
  max-width:900px;
  margin:0 auto;
  padding:48px 50px;
  border-radius:28px;

  background:rgba(255,255,255,.06);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.12);

  box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 60px rgba(0,157,228,.15);

  transition:.35s ease;
}

.contact-card:hover{
  box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    0 0 90px rgba(0,157,228,.25);
}

.contact-card h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:24px;
  letter-spacing:-.5px;
}

/* Text */

.contact-card p{
  font-size:16px;
  margin-bottom:6px;
  opacity:.9;
}

/* Buttons */

.contact-links{
  margin-top:30px;
  display:flex;
  gap:18px;
}

.contact-links .btn{
  flex:1;
  padding:18px 20px;
  font-weight:800;
  border-radius:18px;
  font-size:16px;
  transition:.25s ease;
}

/* CALL BUTTON – FIRMBLAU SHINY */

.contact-links .btn-primary{
  background:linear-gradient(
    135deg,
    #009de4 0%,
    #00b7ff 50%,
    #009de4 100%
  );

  color:#fff;

  box-shadow:
    0 18px 40px rgba(0,157,228,.45),
    0 0 0 3px rgba(254,237,0,.25);

  border:none;
}

.contact-links .btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0,157,228,.55),
    0 0 0 4px rgba(254,237,0,.35);
}

/* WhatsApp */

.contact-links .btn-secondary{
  background:#ffffff;
  color:#0f172a;
  border:none;
  box-shadow:0 16px 36px rgba(0,0,0,.35);
}

.contact-links .btn-secondary:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 50px rgba(0,0,0,.45);
}

/* Responsive */

@media(max-width:800px){
  .contact-links{
    flex-direction:column;
  }

  .contact-card{
    padding:36px 28px;
  }
}

/* Override buttons inside dark contact */
.contact .btn-secondary{
  background: rgba(255,255,255,.96);
  color: var(--blue-dark);
}
.contact .btn-primary{
  box-shadow: 0 16px 36px rgba(22,163,74,.22);
}

/* ===== FOOTER ===== */
.footer{
  background: #071028;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 650;
  font-size: 13px;
}
.footer-right{ opacity: .9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-badges{ grid-template-columns: 1fr; }

  .cards{ grid-template-columns: 1fr; }
  .mini-strip{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }

  .about-card{ grid-template-columns: 1fr; }
  .about-media{ min-height: 240px; }

  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .brand-name{ display:none; }
  .brand-logo{ height: 42px; }

  .nav{ gap: 8px; }
  .nav a{ padding: 10px 8px; }

  .brand-banner img{ height: 46px; }

  .contact-links{ grid-template-columns: 1fr; }
}

/* =========================
   PREISE PREMIUM + TOGGLE
   ========================= */

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:1px;
}

.price-card{
  background:#ffffff;
  border-radius:26px;
  padding:20px 22px;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.08);
  position:relative;
  transition:all .25s ease;
}

.price-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 30px 70px rgba(15,23,42,.12),
    0 0 25px rgba(254,237,0,.35);
}

.price-card h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:18px;
}

.price-main{
  display:flex;
  align-items:flex-end;
  gap:6px;
  margin-bottom:22px;
}

.price-from{
  font-size:14px;
  font-weight:700;
  color:#64748b;
}

.price-big{
  font-size:38px;
  font-weight:900;
  line-height:1;
}

.price-per{
  font-size:14px;
  font-weight:700;
  color:#64748b;
  margin-bottom:6px;
}

.price-features{
  display:grid;
  gap:10px;
  font-size:15px;
  color:#475569;
}

.price-features li{
  position:relative;
  padding-left:20px;
}

.price-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#16a34a;
  font-weight:800;
}

.price-card-highlight{
  border:2px solid #feed00;
  box-shadow:
    0 30px 70px rgba(15,23,42,.12),
    0 0 35px rgba(254,237,0,.45);
}

.price-badge{
  position:absolute;
  top:-14px;
  right:24px;
  background:#009ce1;
  color:#fff;
  padding:6px 14px;
  font-size:12px;
  font-weight:800;
  border-radius:999px;
}

/* Toggle */
.price-toggle{
  text-align:center;
  margin-top:18px;
}

.price-toggle-btn{
  background:none;
  border:none;
  font-weight:800;
  color:#1e3a8a;
  cursor:pointer;
  font-size:15px;
}

.price-details{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.price-details.active{
  max-height:500px;
  margin-top:30px;
}

.price-details-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  font-size:14px;
  color:#475569;
}

.price-details-grid h4{
  font-weight:800;
  margin-bottom:10px;
}

/* CTA */
.price-cta{
  margin-top:22px;
  text-align:center;
}

@media(max-width:980px){
  .price-grid,
  .price-details-grid{
    grid-template-columns:1fr;
  }
}
/* =========================
   PREISE – SOFT BLUE PREMIUM BACKGROUND
========================= */

#preise.section{
  padding: 90px 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(0,157,228,.06), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,157,228,.05), transparent 65%),
    #f8fafc;

  position: relative;
}

.price-cta .btn-secondary{
  background:#009ce1;
}

.price-cta .btn-secondary:hover{
  background:#007fc0;
}
/* ===== ABLAUF SECTION VISUAL FIX ===== */

#ablauf{
  background: #f4f7fb;
  padding-top: 64px;
  padding-bottom: 80px;
}

#ablauf .section-head{
  margin-bottom: 36px;
}

#ablauf .steps{
  max-width: 980px;
  margin: 40px auto 0 auto;
}
#ablauf .step:active{
  transform:translateY(-1px) scale(.98);
  box-shadow:0 4px 10px rgba(0,0,0,.12) inset;
}

/* =========================
   EXPERTE – PREMIUM FINAL
========================= */

.experte-section{
  background:
    radial-gradient(circle at 20% 20%, rgba(0,157,228,.06), transparent 60%),
    #f8fafc;
  padding:120px 0;
  position:relative;
}

.experte-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
  max-width:1150px;
  margin:0 auto;
}

/* ===== LEFT SIDE ===== */

.experte-left h2{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:14px;
  color:#0f172a;
}

.rating-line{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}

.stars{
  color:#facc15;
  font-size:18px;
  letter-spacing:3px;
}

.rating-text{
  font-size:14px;
  color:#64748b;
  font-weight:600;
}

.experte-lead{
  font-size:18px;
  line-height:1.7;
  color:#475569;
  margin-bottom:26px;
  max-width:55ch;
}

.experte-points{
  margin-bottom:28px;
  display:grid;
  gap:12px;
  font-weight:600;
  font-size:16px;
  color:#0f172a;
}

.experte-phone{
  margin-bottom:20px;
}

.experte-phone span{
  font-size:14px;
  color:#64748b;
  display:block;
  margin-bottom:4px;
}

.experte-phone a{
  font-size:24px;
  font-weight:900;
  color:#0f172a;
  text-decoration:none;
  letter-spacing:.5px;
}

/* ===== CALL BUTTON ===== */

.btn-call-premium{
  display:inline-block;
  padding:18px 40px;
  border-radius:20px;
  font-weight:900;
  font-size:16px;

  background:linear-gradient(
    135deg,
    #009de4 0%,
    #00b7ff 50%,
    #009de4 100%
  );

  color:#fff;
  text-decoration:none;

  box-shadow:
    0 20px 45px rgba(0,157,228,.45),
    0 0 0 3px rgba(254,237,0,.25);

  transition:.3s ease;
}

.btn-call-premium:hover{
  transform:translateY(-5px);
  box-shadow:
    0 35px 80px rgba(0,157,228,.55),
    0 0 0 4px rgba(254,237,0,.35);
}

/* ===== MAP CARD ===== */

.map-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;

  box-shadow:
    0 30px 70px rgba(0,0,0,.18),
    0 0 60px rgba(0,157,228,.12);

  background:#000;
}

.map-card iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* ===== MAP OVERLAY INFO ===== */

.map-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;

  background:linear-gradient(
    to top,
    rgba(15,23,42,.95),
    rgba(15,23,42,.75),
    transparent
  );

  padding:26px 30px;
  display:flex;
  justify-content:space-between;
  gap:40px;
  color:#fff;
}

.map-info strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}

.map-info span{
  display:block;
  font-size:14px;
  opacity:.85;
}

.map-hours strong{
  display:block;
  font-size:14px;
  margin-bottom:8px;
  font-weight:700;
}

.map-hours span{
  display:block;
  font-size:13px;
  opacity:.85;
}

/* ===== RESPONSIVE ===== */

@media(max-width:980px){

  .experte-card{
    grid-template-columns:1fr;
    gap:50px;
  }

  .map-card iframe{
    height:340px;
  }

  .map-overlay{
    flex-direction:column;
    gap:16px;
  }
}
/* =========================
   FOOTER – CLEAN CI VERSION
========================= */

.site-footer{
  margin-top:80px;
  font-size:14px;
}

/* ===== BLAUER HAUPTSTREIFEN ===== */

.footer-inner{
  background:#009de4;
  color:#ffffff;

  width:100%;
}

.footer-left{
  margin-left:20px;   /* rückt Adresse etwas nach rechts */
}

.footer-links{
  margin-right:20px;  /* rückt Impressum etwas nach links */
}

/* Adresse links */

.footer-left{
  line-height:1.5;
  font-size:13px;
  font-weight:500;
}

/* Links rechts */

.footer-links{
  display:flex;
  gap:32px;
  font-size:13px;
  font-weight:600;
}

.footer-links a{
  color:#ffffff;
  text-decoration:none;
  transition:.2s ease;
}

.footer-links a:hover{
  opacity:.8;
}

/* ===== DUNKLER CREDIT-STREIFEN ===== */

.footer-bottom{
  background:#071426;
  color:rgba(255,255,255,.7);
  font-size:12px;
  padding:10px 0;
  text-align:center;
}

.footer-bottom a{
  color:#00b7ff;
  font-weight:600;
  text-decoration:none;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

/* Responsive */

@media(max-width:900px){

  .footer-inner .container{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

  .footer-links{
    gap:20px;
  }

}

/* =========================
   LEGAL TYPO
========================= */

.legal-content{
  max-width:800px;
  margin:0 auto;
  line-height:1.75;
  font-size:15px;
}

.legal-content h1{
  font-size:32px;
  margin-bottom:30px;
}

.legal-content h2{
  margin-top:40px;
  font-size:18px;
  font-weight:700;
}

.legal-content ul{
  margin:15px 0 15px 20px;
}

.legal-date{
  margin-top:50px;
  font-size:13px;
  opacity:.6;
}

/* ===== MOBILE FIX – NICHT ANFASSEN ===== */

html, body {
  overflow-x: hidden;
}

@media (max-width: 900px){

  .hero-inner,
  .feature-inner,
  .cards,
  .price-grid,
  .experte-card {
    width:100%;
    padding-left:16px;
    padding-right:16px;
  }

  .hero-badges{
    grid-template-columns:1fr;
  }

}
.call-modal{
  position:fixed;
  inset:0;
  background:rgba(0,156,225,.25);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.call-modal-box{
  width:min(90%,420px);
  padding:36px 34px;
  border-radius:26px;

  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);

  border:2px solid #fef700;

  box-shadow:
    0 30px 60px rgba(0,0,0,.35),
    0 0 25px rgba(254,247,0,.55);

  text-align:center;
}

.call-icon{
  width:58px;
  height:58px;
  margin:0 auto 18px auto;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;

  background:#fef700;
  color:#009ce1;

  box-shadow:0 10px 25px rgba(254,247,0,.5);
}

.call-modal-box{
  width:min(90%,420px);
  padding:40px 36px;
  border-radius:28px;

  background:rgba(255,255,255,.18);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  border:1px solid rgba(255,255,255,.35);

  box-shadow:
    0 40px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.4);

  text-align:center;
  position:relative;
}


.call-modal-box p{
  font-size:14px;
  color:#334155;
  margin-bottom:24px;
}

.call-actions{
  display:flex;
  gap:12px;
  justify-content:center;
}

.btn-call-confirm{
  background:#009ce1;
  color:#fff;
  border:none;
}

.btn-call-confirm:hover{
  background:#007fc0;
}

.btn-call-cancel{
  background:transparent;
  border:2px solid #009ce1;
  color:#009ce1;
}
.modal-phone{
  margin:14px 0 20px 0;   /* oben + unten sauberer Abstand */
  font-weight:800;
  font-size:17px;
  letter-spacing:.6px;
  text-align:center;
}

.modal-phone a{
  color:#fef700;
  text-decoration:none;
}


.modal-phone a{
  color:#fef700;
  text-decoration:none;
  transition:.2s ease;
}

.modal-phone a:hover{
  opacity:.8;
}
.service-note{
  display:block;
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  color:#64748b;
  opacity:.9;
}


