:root {
  --navy:#052d57;
  --navy-deep:#032344;
  --navy-dark:#021d37;
  --blue:#0b4f88;
  --orange:#ff6500;
  --orange-dark:#ec5900;
  --white:#ffffff;
  --ink:#062b54;
  --muted:#607085;
  --line:#dbe4ec;
  --soft:#f7f9fb;
  --soft-2:#eef3f7;
  --green:#00b67a;
  --shadow:0 15px 38px rgba(6,43,84,.12);
  --radius:10px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.45;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
img{max-width:100%;display:block}
.container{max-width:1380px;margin:0 auto;padding:0 28px}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid #e6ebf0;
  box-shadow:0 2px 10px rgba(2,29,55,.05);
}
.header-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  width:275px;
  min-width:235px;
  display:flex;
  align-items:center;
  padding:7px 10px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 2px 10px rgba(2,29,55,.05);
}
.brand img{
  width:100%;
  height:46px;
  object-fit:contain;
  object-position:left center;
  image-rendering:auto;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}
.main-nav a{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:46px;
  font-size:12px;
  line-height:1.08;
  font-weight:800;
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.01em;
  white-space:nowrap;
  text-align:center;
}
.main-nav a::after{
  content:"";
  display:block;
  width:0;
  height:2px;
  margin-top:5px;
  background:var(--orange);
  transition:.2s;
}
.main-nav a:hover::after{width:100%}
.main-nav .nav-multiline span + span{margin-top:2px}
.main-nav .nav-highlight{
  color:var(--ink);
  font-weight:900;
}
.main-nav .nav-exkurs{
  color:var(--orange);
  font-size:10px;
  letter-spacing:.04em;
}
.main-nav .nav-highlight:hover{
  color:var(--ink);
}
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(2,34,67,.96) 0%,rgba(2,34,67,.90) 34%,rgba(2,34,67,.48) 66%,rgba(2,34,67,.20) 100%),
    radial-gradient(circle at 72% 12%,rgba(255,205,150,.52),transparent 18%),
    linear-gradient(180deg,#7fa6bd 0%,#5e819a 40%,#214c6c 60%,#0a355a 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at 80% 20%,rgba(255,255,255,.18),transparent 18%),
    linear-gradient(145deg,transparent 0 49%,rgba(5,45,87,.35) 50% 56%,transparent 57%) 68% 0/52% 100% no-repeat,
    linear-gradient(215deg,transparent 0 47%,rgba(5,45,87,.45) 48% 58%,transparent 59%) 100% 0/55% 100% no-repeat;
  opacity:.85;
}
.hero::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:42%;
  background:
    linear-gradient(180deg,rgba(71,126,160,.15),rgba(5,48,85,.72)),
    repeating-linear-gradient(176deg,rgba(255,255,255,.07) 0 2px,transparent 2px 13px);
}
.hero-inner{
  position:relative;
  z-index:2;
  min-height:270px;
  display:grid;
  grid-template-columns:1.35fr .65fr;
  align-items:center;
  gap:45px;
  padding-top:24px;
  padding-bottom:24px;
}
.hero-copy{padding:4px 0 8px}
.hero-badge{
  display:inline-block;
  border:1px solid rgba(255,255,255,.6);
  border-radius:999px;
  padding:7px 15px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:12px;
}
.hero h1{
  font-size:34px;
  line-height:1.14;
  letter-spacing:-.5px;
  margin:0 0 16px;
  max-width:670px;
}
.hero h1 span{color:var(--orange)}
.hero p{
  font-size:16px;
  line-height:1.55;
  max-width:650px;
  margin:0 0 20px;
  color:#eef6fb;
}
.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}
.btn-primary,.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 21px;
  border-radius:6px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
}
.btn-primary:hover{background:var(--orange-dark)}
.btn-outline{
  border:1px solid #fff;
  color:#fff;
  background:rgba(255,255,255,.05);
}
.hero-proof{
  justify-self:end;
  width:100%;
  max-width:440px;
  background:rgba(255,255,255,.96);
  color:var(--ink);
  border-radius:24px;
  padding:18px;
  box-shadow:0 24px 58px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.72);
  backdrop-filter:blur(10px);
}
.hero-proof-inner{
  background:linear-gradient(180deg,#ffffff 0%,#f5f9fc 100%);
  border:1px solid #dce6ee;
  border-radius:18px;
  padding:18px;
}
.proof-logo{
  width:100%;
  height:118px;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.proof-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.proof-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:5px 9px;
  border-radius:999px;
  background:#eaf4fb;
  color:#0a5689;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  margin-bottom:8px;
}
.hero-proof h3{
  margin:0 0 7px;
  font-size:22px;
  line-height:1.2;
  color:var(--ink);
}
.hero-proof p{
  margin:0 0 12px;
  color:#5f7184;
  font-size:11px;
  line-height:1.45;
}
.hero-search-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  margin:12px 0;
}
.hero-search-input{
  width:100%;
  min-width:0;
  border:1px solid #cfdbe5;
  background:#fff;
  border-radius:11px;
  padding:12px 13px;
  color:var(--ink);
  font-size:12px;
  outline:none;
}
.hero-search-input:focus{
  border-color:#0b73a8;
  box-shadow:0 0 0 3px rgba(11,115,168,.11);
}
.hero-search-button{
  border:0;
  border-radius:11px;
  padding:0 15px;
  background:var(--orange);
  color:#fff;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}
.hero-search-button:hover{background:var(--orange-dark)}
.quick-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:10px;
}
.quick-link{
  min-height:48px;
  border:1px solid #dce6ee;
  border-radius:11px;
  background:#fff;
  padding:9px 10px;
  color:var(--ink);
  font-size:10px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:7px;
  transition:.2s;
}
.quick-link:hover{
  transform:translateY(-1px);
  box-shadow:0 7px 18px rgba(4,37,69,.08);
  border-color:#c4d3df;
}
.quick-link span:first-child{
  width:25px;
  height:25px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:#edf6fb;
  color:#0b5f95;
  flex:0 0 25px;
}
.hero-proof-foot{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid #dfe7ed;
  font-size:9px;
  color:#627589;
}
.hero-proof-foot strong{color:var(--ink)}

.benefit-strip{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.benefits{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}
.benefit{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:center;
  padding:22px 18px;
  border-right:1px solid var(--line);
}
.benefit:last-child{border-right:0}
.benefit-icon{
  width:46px;
  height:46px;
  color:var(--ink);
}
.benefit h3{
  font-size:14px;
  margin:0 0 3px;
}
.benefit p{
  font-size:12px;
  margin:0;
  color:#294a69;
}

.main-content{
  padding:22px 0 14px;
  background:#fff;
}
.section-title{
  text-align:center;
  font-size:20px;
  margin:0 0 12px;
  color:var(--ink);
}
.topic-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.topic-card{
  min-height:132px;
  border:1px solid var(--line);
  border-radius:6px;
  padding:17px 14px 13px;
  text-align:center;
  background:#fff;
  box-shadow:0 4px 14px rgba(4,37,69,.03);
  transition:.22s;
}
.topic-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:#c7d5e1;
}
.topic-card svg{
  width:42px;
  height:42px;
  margin:0 auto 8px;
  color:var(--ink);
}
.topic-card h3{
  font-size:13px;
  margin:0 0 6px;
}
.topic-card p{
  color:#35516c;
  font-size:11px;
  line-height:1.45;
  margin:0;
}
.card-arrow{
  display:block;
  margin-top:5px;
  font-size:22px;
  line-height:1;
}

.news-section{
  margin-top:20px;
}
.news-hub{
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 28px rgba(4,37,69,.07);
}
.news-hub-head{
  min-height:46px;
  padding:12px 18px;
  background:linear-gradient(180deg,#f7f9fb,#eef3f7);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.news-hub-head h2{
  margin:0;
  font-size:16px;
  color:var(--ink);
}
.news-hub-head a{
  font-size:11px;
  font-weight:800;
  color:var(--blue);
}
.news-hub-grid{
  display:grid;
  grid-template-columns:1.45fr .8fr;
  min-height:300px;
}
.news-feature{
  position:relative;
  padding:28px;
  background:
    linear-gradient(90deg,rgba(3,35,68,.94),rgba(3,35,68,.55)),
    linear-gradient(135deg,#214f73,#8fb5c9);
  color:#fff;
  overflow:hidden;
}
.news-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 22%,rgba(255,255,255,.18),transparent 16%),
    linear-gradient(145deg,transparent 0 50%,rgba(255,255,255,.08) 51% 56%,transparent 57%);
}
.news-feature-content{
  position:relative;
  z-index:2;
  max-width:620px;
}
.news-label{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 10px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:14px;
}
.news-feature small{
  display:block;
  color:#d8e8f3;
  font-size:10px;
  margin-bottom:6px;
}
.news-feature h3{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.18;
  max-width:560px;
}
.news-feature p{
  margin:0 0 18px;
  max-width:580px;
  color:#e5f0f6;
  font-size:13px;
}
.news-feature .btn-primary{
  min-height:38px;
  font-size:10px;
  padding:0 16px;
}
.news-side{
  display:grid;
  grid-template-rows:1fr 1fr;
}
.news-side-card{
  position:relative;
  padding:22px;
  border-left:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
  transition:.2s;
}
.news-side-card:last-child{border-bottom:0}
.news-side-card:hover{background:#f8fbfd}
.news-side-card small{
  color:#718294;
  font-size:9px;
}
.news-side-card h4{
  margin:5px 0 8px;
  font-size:15px;
  line-height:1.25;
  color:var(--ink);
}
.news-side-card p{
  margin:0 0 13px;
  color:#5c7084;
  font-size:11px;
}
.news-side-card a{
  font-size:10px;
  font-weight:900;
  color:var(--blue);
}
.news-dots{
  position:absolute;
  right:22px;
  bottom:20px;
  display:flex;
  gap:6px;
}
.news-dots button{
  width:8px;height:8px;border-radius:50%;
  border:0;background:#c7d4df;padding:0;cursor:pointer;
}
.news-dots button.active{background:var(--orange)}

.lower-dashboard{
  display:grid;
  grid-template-columns:1.7fr .8fr;
  gap:16px;
  margin-top:16px;
  padding-bottom:14px;
}
.info-panel{
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}
.panel-head{
  min-height:34px;
  padding:9px 13px;
  background:#f3f5f7;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.panel-head a{font-size:10px;text-transform:none}
.expert-card{
  border-radius:6px;
  background:linear-gradient(135deg,#0b3f72,#052d57 70%);
  color:#fff;
  padding:18px;
  min-height:140px;
  display:grid;
  grid-template-columns:78px 1fr;
  gap:15px;
  align-items:center;
}
.expert-avatar{
  width:78px;height:78px;border-radius:50%;
  background:linear-gradient(145deg,#fff,#d9e5ec);
  display:grid;place-items:center;
  color:var(--navy);
  font-size:25px;font-weight:900;
  border:4px solid rgba(255,255,255,.35);
}
.expert-card h3{font-size:18px;margin:0 0 6px}
.expert-card strong{font-size:12px}
.expert-card p{font-size:10px;margin:2px 0 9px;color:#e8f2f9}
.expert-card .btn-primary{min-height:32px;padding:0 15px;font-size:10px}
.footer{
  background:linear-gradient(180deg,#063561 0%,#022a50 60%,#02213f 100%);
  color:#fff;
  padding:25px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr repeat(5,.72fr) 1.12fr;
  gap:24px;
  align-items:start;
  padding-bottom:20px;
}
.footer h3{
  font-size:11px;
  line-height:1.2;
  text-transform:uppercase;
  white-space:nowrap;
  margin:0 0 12px;
}
.newsletter-text{
  font-size:10px;
  color:#d8e5ef;
  margin-bottom:10px;
}
.newsletter-form{
  display:grid;
  grid-template-columns:1fr auto;
  margin-bottom:8px;
}
.newsletter-form input{
  border:0;
  padding:12px 11px;
  border-radius:4px 0 0 4px;
  font-size:11px;
}
.newsletter-form button{
  border:0;
  background:var(--orange);
  color:#fff;
  padding:0 17px;
  border-radius:0 4px 4px 0;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}
.consent{
  display:grid;
  grid-template-columns:15px 1fr;
  gap:8px;
  align-items:start;
  color:#d7e2ec;
  font-size:9px;
  line-height:1.45;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{margin:7px 0}
.footer-links a{
  color:#e2edf5;
  font-size:10px;
}
.footer-links a:hover{color:#fff;text-decoration:underline}
.socials{
  display:flex;
  gap:10px;
  margin:3px 0 18px;
}
.social{
  width:34px;height:34px;border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:grid;place-items:center;
  font-weight:900;
  font-size:15px;
}
.contact-list{
  list-style:none;
  padding:0;margin:0;
}
.contact-list li{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:7px;
  align-items:start;
  margin:8px 0;
  font-size:10px;
  color:#eef5fa;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.17);
  padding:16px 0;
}
.footer-bottom-inner{
  display:grid;
  grid-template-columns:1.35fr 1.8fr .9fr auto;
  gap:20px;
  align-items:center;
  font-size:9px;
  color:#cbd9e5;
}
.legal{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}
.security{
  display:flex;
  gap:10px;
  align-items:center;
}
.security-shield{
  width:34px;height:40px;border:1px solid #fff;
  border-radius:16px 16px 20px 20px;
  display:grid;place-items:center;
  font-size:16px;
}
.back-top{
  width:38px;height:38px;border:1px solid #fff;
  border-radius:5px;display:grid;place-items:center;
  font-size:18px;
}
.mobile-bottom-cta{display:none}


.provider-status{
  font-weight:700;
  text-transform:none;
  color:#5e7184;
}
.provider-carousel{
  position:relative;
  min-height:112px;
  display:flex;
  align-items:center;
  padding:16px 46px;
  background:#fff;
}
.provider-track{
  display:flex;
  gap:16px;
  width:100%;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding:4px 1px 8px;
}
.provider-track::-webkit-scrollbar{display:none}
.provider-card{
  flex:0 0 190px;
  min-height:78px;
  border:1px solid var(--line);
  border-radius:9px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  scroll-snap-align:start;
  transition:.2s ease;
  box-shadow:0 4px 12px rgba(4,37,69,.04);
}
.provider-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(4,37,69,.12);
  border-color:#c5d4df;
}
.provider-logo{
  display:block;
  width:100%;
  max-width:165px;
  height:54px;
  object-fit:contain;
}
.provider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:31px;
  height:48px;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  color:var(--ink);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:3;
  box-shadow:0 5px 14px rgba(4,37,69,.10);
  font-size:20px;
}
.provider-arrow:hover{background:#eef3f7}
.provider-arrow.prev{left:8px}
.provider-arrow.next{right:8px}


/* INTERAKTIVER SCHNELLCHECK */
.quickcheck-section{
  padding:34px 0 10px;
}
.quickcheck{
  background:linear-gradient(135deg,#072c53,#0b4f88);
  color:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:0 18px 38px rgba(3,35,68,.16);
}
.quickcheck-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:28px;
  align-items:center;
}
.quickcheck h2{
  font-size:25px;
  margin:0 0 10px;
}
.quickcheck p{
  color:#dcebf5;
  margin:0 0 16px;
  font-size:13px;
}
.quickcheck-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.quickcheck-tag{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  padding:6px 10px;
  font-size:10px;
  font-weight:800;
}
.quickcheck-form{
  background:#fff;
  color:var(--ink);
  border-radius:14px;
  padding:18px;
}
.quickcheck-form h3{
  margin:0 0 12px;
  font-size:16px;
}
.quickcheck-options{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:9px;
}
.quickcheck-option{
  border:1px solid var(--line);
  border-radius:9px;
  padding:10px;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  font-weight:800;
}
.quickcheck-option input{accent-color:var(--orange)}
.quickcheck-result{
  display:none;
  margin-top:12px;
  border-radius:9px;
  padding:12px;
  background:#eef7fb;
  color:#16425f;
  font-size:11px;
  font-weight:700;
}
.quickcheck-result.show{display:block}

/* FÖRDERBEISPIEL */
.example-section{
  padding:24px 0 8px;
}
.example-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:18px;
  align-items:stretch;
}
.example-card,.example-copy{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 24px rgba(4,37,69,.06);
}
.example-card{
  padding:22px;
}
.example-card h3,.example-copy h3{
  margin:0 0 12px;
  font-size:18px;
}
.example-profile{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-bottom:14px;
}
.example-profile div{
  background:#f4f7f9;
  border-radius:8px;
  padding:10px;
}
.example-profile strong{
  display:block;
  font-size:15px;
  color:var(--ink);
}
.example-profile span{
  font-size:9px;
  color:#65788b;
}
.example-bars{
  display:grid;
  gap:9px;
}
.example-bar{
  display:grid;
  grid-template-columns:120px 1fr 58px;
  gap:10px;
  align-items:center;
  font-size:10px;
}
.example-bar-track{
  height:10px;
  border-radius:999px;
  background:#e8eef3;
  overflow:hidden;
}
.example-bar-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--orange),#ff9b52);
}
.example-copy{
  padding:22px;
  background:linear-gradient(180deg,#f9fbfd,#f1f6fa);
}
.example-copy p{
  margin:0 0 12px;
  color:#587085;
  font-size:12px;
}
.example-note{
  border-left:4px solid var(--orange);
  background:#fff;
  padding:11px 12px;
  border-radius:0 8px 8px 0;
  color:#334c63;
  font-size:10px;
}

/* AVD IN 60 SEKUNDEN */
.steps-section{
  padding:28px 0 12px;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.step-card{
  position:relative;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:18px;
  min-height:150px;
  box-shadow:0 7px 20px rgba(4,37,69,.05);
}
.step-number{
  width:34px;height:34px;border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid;place-items:center;
  font-weight:900;
  margin-bottom:12px;
}
.step-card h3{
  margin:0 0 7px;
  font-size:15px;
}
.step-card p{
  margin:0;
  font-size:10px;
  color:#617589;
}
.step-card::after{
  content:"→";
  position:absolute;
  right:-12px;
  top:50%;
  transform:translateY(-50%);
  width:24px;height:24px;border-radius:50%;
  background:#fff;border:1px solid var(--line);
  display:grid;place-items:center;
  color:var(--blue);
  font-weight:900;
  z-index:2;
}
.step-card:last-child::after{display:none}

/* TRANSPARENZ */
.transparency-section{
  padding:26px 0 12px;
}
.transparency{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#f8fbfd;
  padding:22px;
}
.transparency h2{
  margin:0 0 10px;
  font-size:20px;
}
.transparency p{
  margin:0 0 12px;
  color:#5b7186;
  font-size:11px;
}
.transparency-list{
  display:grid;
  gap:8px;
}
.transparency-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:10px;
  color:#3b5369;
}
.transparency-item span:first-child{
  width:24px;height:24px;border-radius:7px;
  background:#e7f2f8;
  display:grid;place-items:center;
  flex:0 0 24px;
}
.status-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px;
}
.status-card h3{margin:0 0 11px;font-size:15px}
.status-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid var(--line);
  font-size:10px;
}
.status-row:last-child{border-bottom:0}
.status{
  font-weight:900;
  border-radius:999px;
  padding:3px 7px;
  font-size:8px;
}
.status.planned{background:#fff4df;color:#9a5b00}
.status.confirmed{background:#eaf7f0;color:#167149}
.status.open{background:#eef3f7;color:#50687e}

/* BELIEBTE RATGEBER */
.guides-section{
  padding:28px 0 26px;
}
.guides-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:14px;
}
.guides-head h2{margin:0;font-size:20px}
.guides-head p{margin:3px 0 0;font-size:10px;color:#617589}
.guides-head a{font-size:10px;font-weight:900;color:var(--blue)}
.guides-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.guide-card{
  border:1px solid var(--line);
  border-radius:11px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 7px 20px rgba(4,37,69,.05);
  transition:.2s;
}
.guide-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(4,37,69,.10);
}
.guide-visual{
  height:92px;
  background:
    radial-gradient(circle at 78% 20%,rgba(255,255,255,.25),transparent 18%),
    linear-gradient(135deg,#0b4f88,#0a2f56);
  display:flex;
  align-items:end;
  padding:12px;
  color:#fff;
}
.guide-visual.orange{background:linear-gradient(135deg,#ff7a1a,#b94000)}
.guide-visual.teal{background:linear-gradient(135deg,#0c8f9d,#07556b)}
.guide-visual span{
  font-size:9px;
  text-transform:uppercase;
  font-weight:900;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  padding:4px 8px;
}
.guide-body{padding:15px}
.guide-body h3{font-size:14px;line-height:1.25;margin:0 0 7px}
.guide-body p{font-size:10px;color:#627589;margin:0 0 11px}
.guide-body a{font-size:10px;font-weight:900;color:var(--blue)}

@media(max-width:1180px){
  .brand{width:235px;min-width:205px}
  .main-nav{gap:11px}
  .main-nav a{font-size:10px}
  .main-nav .nav-exkurs{font-size:9px}
  .topic-grid{grid-template-columns:repeat(3,1fr)}
  .benefits{grid-template-columns:repeat(3,1fr)}
  .benefit:nth-child(3){border-right:0}
  .benefit:nth-child(-n+3){border-bottom:1px solid var(--line)}
  .news-hub-grid{grid-template-columns:1.2fr .8fr}
  .lower-dashboard{grid-template-columns:1.4fr .9fr}
  .provider-card{flex-basis:150px}
  .provider{font-size:15px}
  .footer-grid{grid-template-columns:1.25fr repeat(3,.85fr)}
  .footer-grid > section:nth-child(n+5){margin-top:6px}
}
@media(max-width:900px){
  .quickcheck-grid,.example-grid,.transparency{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:repeat(2,1fr)}
  .step-card:nth-child(2)::after{display:none}
  .guides-grid{grid-template-columns:1fr 1fr}

  .provider-card{flex-basis:170px}
  .provider-carousel{padding-left:40px;padding-right:40px}

  .main-nav,.header-cta,.search-btn{
  width:38px;
  height:38px;
  border:0;
  background:transparent;
  color:var(--ink);
  display:grid;
  place-items:center;
  cursor:pointer;
}
  .header-cta:hover{background:var(--orange-dark)}
.mobile-toggle{display:block}
  .brand{width:260px}
  .hero-inner{grid-template-columns:1fr;padding-top:36px;padding-bottom:36px}
  .hero-proof{justify-self:start}
  .benefits{grid-template-columns:1fr 1fr}
  .benefit{border-bottom:1px solid var(--line)}
  .benefit:nth-child(2n){border-right:0}
  .topic-grid{grid-template-columns:repeat(2,1fr)}
  .news-hub-grid{grid-template-columns:1fr}
  .news-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .news-side-card{border-left:0;border-top:1px solid var(--line);border-bottom:0}
  .news-side-card + .news-side-card{border-left:1px solid var(--line)}
  .lower-dashboard{grid-template-columns:1fr}
  .provider-carousel{padding-left:38px;padding-right:38px}
  .provider-card{flex-basis:145px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer h3{white-space:normal}
  .footer-bottom-inner{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .quickcheck{padding:22px 16px}
  .quickcheck-options{grid-template-columns:1fr}
  .example-profile{grid-template-columns:1fr}
  .example-bar{grid-template-columns:90px 1fr 48px}
  .steps-grid,.guides-grid{grid-template-columns:1fr}
  .step-card::after{display:none}
  .guides-head{align-items:flex-start;flex-direction:column}

  .provider-card{flex-basis:150px;min-height:70px}
  .provider-logo{height:48px}
  .provider-carousel{padding-left:38px;padding-right:38px}

  .container{padding:0 16px}
  .header-inner{min-height:66px}
  .hero-inner{
    padding-top:72px;
    padding-bottom:48px;
    gap:34px;
  }
  .hero-badge{margin-bottom:20px}
  .hero-proof{
    margin-top:32px;
    max-width:none;
  }
  .hero-proof-inner{padding:16px}
  .proof-logo{height:128px;margin-bottom:16px}
  .hero-search-form{grid-template-columns:1fr}
  .hero-search-button{min-height:44px}
  .hero-proof h3{font-size:21px}
  .brand{width:235px;min-width:0;padding:5px 7px}
  .brand img{height:46px}
  .hero h1{font-size:29px}
  .hero p{font-size:14px}
  .hero-actions{flex-direction:column}
  .btn-primary,.btn-outline{width:100%}
  .hero-proof{max-width:none}
  .benefits{grid-template-columns:1fr}
  .benefit{border-right:0}
  .topic-grid{grid-template-columns:1fr}
  .news-hub-grid{grid-template-columns:1fr}
  .news-side{grid-template-columns:1fr;grid-template-rows:auto}
  .news-side-card,.news-side-card + .news-side-card{border-left:0;border-top:1px solid var(--line)}
  .news-feature{padding:22px}
  .news-feature h3{font-size:22px}
  .lower-dashboard{gap:12px}
  .provider-carousel{padding-left:36px;padding-right:36px}
  .provider-card{flex-basis:138px;min-height:58px}
  .provider{font-size:14px}
  .news-slide{grid-template-columns:56px minmax(0,1fr);padding-right:0;padding-bottom:37px}
  .news-thumb{width:56px;height:56px}
  .news-nav{top:auto;bottom:8px;right:12px;transform:none}
  .news-counter{left:12px;right:auto;bottom:13px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom-inner{grid-template-columns:1fr}
  .legal{gap:14px}
  .mobile-bottom-cta{
    position:fixed;
    left:12px;right:12px;bottom:12px;
    z-index:120;
    display:flex;
    justify-content:center;
    background:var(--orange);
    color:#fff;
    padding:14px;
    border-radius:7px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    box-shadow:0 10px 28px rgba(0,0,0,.25);
  }
  body{padding-bottom:65px}
}

/* FINAL HEADER OVERRIDES */
.search-btn{
  width:38px!important;
  height:38px!important;
  min-width:38px!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--ink)!important;
  box-shadow:none!important;
  display:grid!important;
  place-items:center!important;
  cursor:pointer!important;
}
.search-btn:hover{
  background:transparent!important;
  color:var(--orange)!important;
  transform:none!important;
  box-shadow:none!important;
}
.search-btn svg{
  width:22px!important;
  height:22px!important;
  stroke:currentColor!important;
  fill:none!important;
}
.header-cta{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:var(--orange)!important;
  color:#fff!important;
  padding:15px 25px!important;
  border:0!important;
  border-radius:6px!important;
  font-size:13px!important;
  line-height:1!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  box-shadow:0 8px 18px rgba(255,101,0,.22)!important;
  white-space:nowrap!important;
}
.header-cta:hover{
  background:var(--orange-dark)!important;
  color:#fff!important;
  transform:none!important;
}
.mobile-toggle{display:none!important}

@media(max-width:1180px){
  .header-inner{
    gap:14px!important;
  }
  .main-nav{
    gap:9px!important;
  }
  .main-nav a{
    font-size:9.5px!important;
  }
  .header-cta{
    padding:13px 16px!important;
    font-size:11px!important;
  }
}

@media(max-width:1020px){
  .header-inner{
    display:grid!important;
    grid-template-columns:1fr auto auto!important;
    gap:10px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }
  .brand{
    grid-column:1!important;
  }
  .search-btn{
    grid-column:2!important;
    display:grid!important;
  }
  .header-cta{
    grid-column:3!important;
    display:inline-flex!important;
  }
  .main-nav{
    grid-column:1/-1!important;
    display:flex!important;
    position:static!important;
    width:100%!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    flex-direction:row!important;
    align-items:center!important;
    gap:18px!important;
    padding:8px 2px 4px!important;
    margin:0!important;
    background:#fff!important;
    box-shadow:none!important;
    border-top:1px solid var(--line)!important;
    scrollbar-width:none!important;
    scroll-behavior:smooth!important;
  }
  .main-nav::-webkit-scrollbar{display:none!important}
  .main-nav a{
    flex:0 0 auto!important;
    min-height:40px!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0!important;
    border:0!important;
    font-size:10px!important;
    text-align:center!important;
  }
  .main-nav a::after{
    display:none!important;
  }
}

@media(max-width:700px){
  .header-inner{
    grid-template-columns:1fr auto!important;
  }
  .brand{
    width:220px!important;
    min-width:0!important;
  }
  .search-btn{
    grid-column:2!important;
  }
  .header-cta{
    grid-column:1/-1!important;
    width:100%!important;
    min-height:42px!important;
    padding:12px 16px!important;
    margin-top:2px!important;
  }
  .main-nav{
    gap:16px!important;
  }
  .main-nav a{
    font-size:9.5px!important;
  }
}


/* LIVE-SUCHE */
.live-search-wrap{
  position:relative;
}
.live-search-results{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 6px);
  z-index:120;
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:0 18px 40px rgba(3,35,68,.16);
  overflow:hidden;
}
.live-search-results.show{display:block}
.live-search-result{
  display:flex;
  align-items:flex-start;
  gap:10px;
  width:100%;
  border:0;
  border-bottom:1px solid var(--line);
  background:#fff;
  padding:11px 13px;
  text-align:left;
  cursor:pointer;
  color:var(--ink);
}
.live-search-result:last-child{border-bottom:0}
.live-search-result:hover,
.live-search-result.active{background:#f2f7fa}
.live-search-result .result-arrow{
  color:var(--orange);
  font-weight:900;
  margin-top:1px;
}
.live-search-result strong{
  display:block;
  font-size:11px;
}
.live-search-result span{
  display:block;
  font-size:9px;
  color:#6a7d8f;
  margin-top:2px;
}
.header-search-panel{
  position:absolute;
  top:100%;
  right:170px;
  width:min(420px,calc(100vw - 32px));
  padding-top:10px;
  display:none;
  z-index:130;
}
.header-search-panel.open{display:block}
.header-search-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  box-shadow:0 18px 40px rgba(3,35,68,.18);
}
.header-search-input{
  width:100%;
  border:1px solid #cfdbe5;
  border-radius:10px;
  padding:12px 13px;
  outline:none;
  font-size:12px;
}
.header-search-input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(11,79,136,.10);
}

/* FÖRDERRECHNER */
.funding-calculator{
  margin-top:22px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(4,37,69,.08);
}
.funding-calculator-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  padding:20px 22px;
  background:linear-gradient(135deg,#063561,#0b4f88);
  color:#fff;
}
.funding-calculator-head h2{
  margin:0 0 5px;
  font-size:21px;
}
.funding-calculator-head p{
  margin:0;
  font-size:11px;
  color:#dceaf5;
}
.funding-badge{
  flex:0 0 auto;
  padding:7px 10px;
  border-radius:999px;
  background:var(--orange);
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
}
.funding-calculator-body{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:0;
}
.funding-form{
  padding:22px;
}
.funding-fields{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:13px;
}
.funding-field label{
  display:block;
  margin-bottom:5px;
  font-size:10px;
  font-weight:900;
  color:#314d66;
}
.funding-field input,
.funding-field select{
  width:100%;
  border:1px solid #cfdbe5;
  border-radius:9px;
  background:#fff;
  padding:11px 12px;
  font-size:11px;
  color:var(--ink);
  outline:none;
}
.funding-field input:focus,
.funding-field select:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(11,79,136,.09);
}
.funding-result{
  border-left:1px solid var(--line);
  padding:22px;
  background:linear-gradient(180deg,#f7fafc,#edf4f8);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.funding-result-label{
  font-size:9px;
  text-transform:uppercase;
  font-weight:900;
  color:#6b7d8e;
}
.funding-result-value{
  font-size:30px;
  line-height:1;
  color:var(--navy);
  font-weight:900;
  margin:8px 0;
}
.funding-result p{
  font-size:10px;
  color:#5c7185;
  margin:0 0 12px;
}
.funding-result-note{
  border-left:3px solid var(--orange);
  padding-left:10px;
  font-size:9px;
  color:#4f6578;
}

/* ANBIETER-TICKER */
.provider-ticker{
  position:relative;
  overflow:hidden;
  padding:14px 44px;
  min-height:116px;
  background:#fff;
}
.provider-ticker-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scrollbar-width:none;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
}
.provider-ticker-track::-webkit-scrollbar{display:none}
.provider-status-card{
  flex:0 0 210px;
  scroll-snap-align:start;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  padding:14px;
  box-shadow:0 6px 18px rgba(4,37,69,.05);
}
.provider-status-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.provider-status-name{
  font-size:15px;
  font-weight:900;
  color:var(--ink);
}
.provider-state{
  border-radius:999px;
  padding:4px 8px;
  font-size:8px;
  font-weight:900;
  white-space:nowrap;
}
.provider-state.new{background:#e9f7ef;color:#197348}
.provider-state.watch{background:#eef3f7;color:#52697d}
.provider-state.rumor{background:#fff3df;color:#9a5d00}
.provider-state.none{background:#f5e9ea;color:#9c3038}
.provider-status-card p{
  margin:0;
  font-size:10px;
  line-height:1.4;
  color:#5d7185;
}
.provider-status-card a{
  display:inline-block;
  margin-top:10px;
  color:var(--blue);
  font-size:9px;
  font-weight:900;
}
.provider-ticker .provider-arrow.prev{left:8px}
.provider-ticker .provider-arrow.next{right:8px}

/* NEWS-AKTUALITÄT */
.news-updated{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin:0 0 13px;
  padding:6px 10px;
  border-radius:999px;
  background:#eaf6ee;
  color:#1a6f47;
  font-size:9px;
  font-weight:900;
}
.news-updated::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:#1aa96b;
  box-shadow:0 0 0 4px rgba(26,169,107,.12);
}

@media(max-width:1020px){
  .header-search-panel{
    right:10px;
  }
  .funding-calculator-body{
    grid-template-columns:1fr;
  }
  .funding-result{
    border-left:0;
    border-top:1px solid var(--line);
  }
}
@media(max-width:700px){
  .funding-calculator-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .funding-fields{
    grid-template-columns:1fr;
  }
  .header-search-panel{
    right:0;
    left:0;
    width:auto;
  }
  .provider-status-card{
    flex-basis:185px;
  }
}


/* FAQ-MEGAMENÜ */
.faq-mega-wrap{
  position:relative;
  display:flex;
  align-items:center;
}
.faq-mega-trigger{
  cursor:pointer;
}
.faq-mega{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%) translateY(10px);
  width:min(1040px,calc(100vw - 40px));
  background:#fff;
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 24px 60px rgba(3,35,68,.18);
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
  z-index:220;
}
.faq-mega::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%) rotate(45deg);
  width:16px;
  height:16px;
  background:#fff;
  border-left:1px solid var(--line);
  border-top:1px solid var(--line);
}
.faq-mega-wrap:hover .faq-mega,
.faq-mega-wrap:focus-within .faq-mega,
.faq-mega-wrap.open .faq-mega{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.faq-mega-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
}
.faq-mega h4{
  margin:0 0 10px;
  color:var(--navy);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.faq-mega a{
  display:block;
  padding:6px 0;
  color:#556d82;
  font-size:11px;
  font-weight:700;
  line-height:1.35;
  text-transform:none;
  white-space:normal;
  text-align:left;
}
.faq-mega a::after{display:none!important}
.faq-mega a:hover{
  color:var(--blue);
  padding-left:3px;
}
.faq-mega-cta{
  margin-top:20px;
  background:linear-gradient(135deg,#eef7fb,#fff5e8);
  border:1px solid #d8e7f0;
  border-radius:14px;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}
.faq-mega-cta strong{
  display:block;
  color:var(--navy);
  font-size:13px;
  margin-bottom:2px;
}
.faq-mega-cta span{
  color:#60758a;
  font-size:10px;
}
.faq-mega-cta .btn-primary{
  flex:0 0 auto;
  min-height:36px;
  padding:0 15px;
  font-size:10px;
  border-radius:6px;
}
.faq-mega-chevron{
  display:none;
}

@media(max-width:1180px){
  .faq-mega{
    left:auto;
    right:-180px;
    transform:translateY(10px);
    width:min(960px,calc(100vw - 32px));
  }
  .faq-mega-wrap:hover .faq-mega,
  .faq-mega-wrap:focus-within .faq-mega,
  .faq-mega-wrap.open .faq-mega{
    transform:translateY(0);
  }
  .faq-mega::before{
    left:auto;
    right:210px;
    transform:rotate(45deg);
  }
}

@media(max-width:1020px){
  .faq-mega-wrap{
    flex:0 0 auto!important;
    position:relative!important;
  }
  .faq-mega-trigger{
    position:relative;
    padding-right:18px!important;
  }
  .faq-mega-chevron{
    display:inline-block;
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    color:var(--orange);
    font-size:12px;
  }
  .faq-mega{
    position:fixed;
    left:16px!important;
    right:16px!important;
    top:120px;
    width:auto!important;
    max-height:calc(100vh - 150px);
    overflow-y:auto;
    transform:translateY(10px)!important;
    border-radius:16px;
  }
  .faq-mega-wrap.open .faq-mega{
    transform:translateY(0)!important;
  }
  .faq-mega::before{display:none}
  .faq-mega-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }
}

@media(max-width:700px){
  .faq-mega{
    top:150px;
    padding:18px;
  }
  .faq-mega-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .faq-mega-cta{
    align-items:flex-start;
    flex-direction:column;
  }
  .faq-mega-cta .btn-primary{
    width:100%;
  }
}


/* ================================
   AVD-ZENTRUM PREMIUM PORTAL V2
================================ */
.portal-strip{
  background:#061f36;
  color:#dfeaf3;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.portal-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:10px 0;
  font-size:10px;
}
.portal-live{
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
}
.portal-live::before{display:none!important;content:none!important;}
.portal-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  white-space:nowrap;
}
.portal-status-dot{
  width:8px;
  height:8px;
  flex:0 0 8px;
  border-radius:50%;
}
.portal-status--pilot{color:#fff;}
.portal-status--pilot .portal-status-dot{
  background:#f58220;
  box-shadow:0 0 0 5px rgba(245,130,32,.16);
}
.portal-status--intelligence .portal-status-dot{
  background:#21c77a;
  box-shadow:0 0 0 5px rgba(33,199,122,.14);
}
.portal-status-separator{
  color:rgba(255,255,255,.48);
  font-weight:700;
}
.portal-status small{
  margin-left:8px;
  color:#c9d8e6;
  font-size:10px;
  font-weight:600;
  text-transform:none;
}
.portal-strip-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.portal-strip-links a{color:#dfeaf3}
.portal-strip-links a:hover{color:#fff}

/* MARKET STATUS */
.market-status-section{
  padding:26px 0 10px;
  background:#f5f8fb;
}
.market-status-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  margin-bottom:14px;
}
.market-status-head h2{
  margin:0;
  font-size:23px;
}
.market-status-head p{
  margin:4px 0 0;
  color:#60758a;
  font-size:11px;
}
.market-updated{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid #cfe7d9;
  background:#edf9f2;
  color:#1b7149;
  border-radius:999px;
  padding:7px 11px;
  font-size:9px;
  font-weight:900;
  white-space:nowrap;
}
.market-updated::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:#1fad67;
}
.market-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.market-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:17px;
  box-shadow:0 8px 22px rgba(4,37,69,.06);
}
.market-card-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
}
.market-card h3{
  margin:0;
  font-size:14px;
}
.market-icon{
  width:34px;height:34px;border-radius:10px;
  background:#edf5fa;
  display:grid;place-items:center;
  font-size:17px;
}
.market-list{
  display:grid;
  gap:8px;
}
.market-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:8px;
  border-top:1px solid var(--line);
  font-size:10px;
}
.market-row:first-child{border-top:0;padding-top:0}
.market-state{
  border-radius:999px;
  padding:3px 7px;
  font-size:8px;
  font-weight:900;
  white-space:nowrap;
}
.market-state.green{background:#eaf7f0;color:#167149}
.market-state.yellow{background:#fff4df;color:#9a5b00}
.market-state.blue{background:#e9f2fb;color:#215f94}
.market-state.gray{background:#eef2f5;color:#607486}
.market-note{
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid var(--line);
  font-size:8.5px;
  line-height:1.45;
  color:#6c7e8f;
}

/* INTELLIGENCE CENTER */
.intelligence-section{
  padding:22px 0 10px;
  background:#fff;
}
.intelligence{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  background:linear-gradient(135deg,#062d57,#0a4f88);
  color:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 18px 42px rgba(3,35,68,.17);
}
.intelligence h2{
  margin:0 0 8px;
  font-size:24px;
}
.intelligence p{
  margin:0 0 16px;
  color:#dcebf5;
  font-size:12px;
}
.intelligence-metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.intelligence-metric{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  border-radius:10px;
  padding:13px;
}
.intelligence-metric strong{
  display:block;
  font-size:22px;
  line-height:1;
}
.intelligence-metric span{
  font-size:9px;
  color:#d9e9f4;
}
.ai-question-box{
  background:#fff;
  color:var(--ink);
  border-radius:12px;
  padding:16px;
}
.ai-question-box h3{
  margin:0 0 8px;
  font-size:16px;
}
.ai-question-box p{
  color:#60758a;
  font-size:10px;
  margin:0 0 11px;
}
.ai-question-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
}
.ai-question-row input{
  width:100%;
  border:1px solid #cedbe5;
  border-radius:9px;
  padding:11px 12px;
  font-size:11px;
  outline:none;
}
.ai-question-row input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(11,79,136,.10);
}
.ai-answer{
  display:none;
  margin-top:10px;
  border-radius:9px;
  padding:11px;
  background:#eff6fa;
  color:#34536b;
  font-size:10px;
}
.ai-answer.show{display:block}

/* PROVIDER MONITOR */
.provider-monitor-section{
  padding:24px 0 10px;
  background:#f7f9fb;
}
.provider-monitor{
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(4,37,69,.07);
}
.provider-monitor-head{
  padding:18px;
  border-bottom:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  background:linear-gradient(180deg,#fbfcfd,#f2f6f9);
}
.provider-monitor-head h2{
  margin:0;
  font-size:20px;
}
.provider-monitor-head p{
  margin:4px 0 0;
  color:#65788b;
  font-size:10px;
}
.provider-filters{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
}
.provider-filter{
  border:1px solid var(--line);
  background:#fff;
  color:#476178;
  border-radius:999px;
  padding:7px 10px;
  font-size:9px;
  font-weight:900;
  cursor:pointer;
}
.provider-filter.active,
.provider-filter:hover{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.provider-monitor-body{
  display:grid;
  grid-template-columns:1.65fr .65fr;
}
.provider-table-wrap{
  overflow-x:auto;
}
.provider-table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
.provider-table th,
.provider-table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:10px;
}
.provider-table th{
  background:#f6f8fa;
  color:#5a7185;
  font-size:9px;
  text-transform:uppercase;
}
.provider-table tr:last-child td{border-bottom:0}
.provider-name{
  font-weight:900;
  color:var(--ink);
}
.provider-category{
  color:#60758a;
}
.provider-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  border-radius:999px;
  padding:4px 8px;
  font-size:8px;
  font-weight:900;
  white-space:nowrap;
}
.provider-badge::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:currentColor;
}
.provider-badge.announced{background:#eaf7f0;color:#167149}
.provider-badge.watching{background:#eef3f7;color:#52697d}
.provider-badge.rumor{background:#fff4df;color:#9a5d00}
.provider-badge.none{background:#f5e9ea;color:#9c3038}
.provider-link{
  color:var(--blue);
  font-weight:900;
}
.provider-side{
  border-left:1px solid var(--line);
  padding:18px;
  background:#f8fbfd;
}
.provider-side h3{
  margin:0 0 12px;
  font-size:15px;
}
.provider-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:9px;
}
.provider-stat{
  border:1px solid var(--line);
  background:#fff;
  border-radius:9px;
  padding:11px;
}
.provider-stat strong{
  display:block;
  font-size:20px;
  line-height:1;
  color:var(--navy);
}
.provider-stat span{
  font-size:8px;
  color:#6a7d8f;
}
.provider-live{
  margin-top:14px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.provider-live h4{
  margin:0 0 8px;
  font-size:11px;
}
.provider-live-item{
  padding:8px 0;
  border-bottom:1px solid var(--line);
  font-size:9px;
  color:#536b80;
}
.provider-live-item:last-child{border-bottom:0}
.provider-live-item strong{
  display:block;
  color:var(--ink);
  margin-bottom:2px;
}

/* DATA SIGNALS */
.data-signals{
  padding:22px 0 12px;
}
.data-signal-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.data-signal{
  border:1px solid var(--line);
  border-radius:10px;
  padding:15px;
  background:#fff;
  text-align:center;
}
.data-signal strong{
  display:block;
  font-size:25px;
  line-height:1;
  color:var(--navy);
}
.data-signal span{
  color:#63778a;
  font-size:9px;
}
.data-signal small{
  display:block;
  margin-top:5px;
  color:#8a99a7;
  font-size:8px;
}

/* responsive */
@media(max-width:1100px){
  .market-grid{grid-template-columns:repeat(2,1fr)}
  .provider-monitor-body{grid-template-columns:1fr}
  .provider-side{border-left:0;border-top:1px solid var(--line)}
}
@media(max-width:800px){
  .intelligence{grid-template-columns:1fr}
  .data-signal-grid{grid-template-columns:repeat(2,1fr)}
  .market-status-head,.provider-monitor-head{
    align-items:flex-start;
    flex-direction:column;
  }
}
@media(max-width:560px){
  .portal-strip-inner{align-items:flex-start;flex-direction:column}
  .market-grid,.data-signal-grid{grid-template-columns:1fr}
  .intelligence-metrics{grid-template-columns:1fr}
  .ai-question-row{grid-template-columns:1fr}
  .provider-stat-grid{grid-template-columns:1fr 1fr}
}


/* Header alignment refinement */
.container{max-width:1280px;margin:0 auto;}
.header-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:24px!important;}
.brand{flex:0 0 auto!important;margin-right:12px!important;}
.main-nav{flex:1 1 auto!important;display:flex!important;justify-content:center!important;}
.header-actions,.header-right{flex:0 0 auto!important;display:flex!important;align-items:center!important;gap:12px!important;}
.search-btn{margin-left:auto!important;}
.header-cta{margin-left:0!important;}
@media (max-width:1020px){
.header-inner{display:grid!important;grid-template-columns:1fr auto auto!important;align-items:center!important;}
.main-nav{grid-column:1/-1!important;justify-content:flex-start!important;}
}


/* =========================================
   PREMIUM HEADER + HERO ENHANCEMENTS
========================================= */

/* Header veredeln */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(219,228,236,.82);
  box-shadow:0 3px 16px rgba(2,29,55,.05);
  transition:background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.site-header.is-scrolled{
  background:rgba(255,255,255,.97);
  box-shadow:0 12px 34px rgba(2,29,55,.12);
  border-bottom-color:rgba(205,217,227,.95);
}
.header-inner{
  min-height:78px!important;
  transition:min-height .28s ease, padding .28s ease;
}
.site-header.is-scrolled .header-inner{
  min-height:68px!important;
}
.brand{
  width:290px!important;
  min-width:245px!important;
  padding:7px 10px!important;
  border-radius:12px!important;
  background:#fff!important;
  box-shadow:0 4px 14px rgba(2,29,55,.06)!important;
  transition:width .28s ease, transform .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled .brand{
  width:264px!important;
  box-shadow:0 3px 12px rgba(2,29,55,.05)!important;
}
.brand:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(2,29,55,.10)!important;
}
.brand img{
  height:50px!important;
  transition:height .28s ease;
}
.site-header.is-scrolled .brand img{
  height:44px!important;
}
.main-nav a{
  position:relative;
  transition:color .2s ease, transform .2s ease;
}
.main-nav a:hover{
  color:var(--blue);
  transform:translateY(-1px);
}
.main-nav a::after{
  position:absolute;
  left:50%;
  bottom:1px;
  transform:translateX(-50%);
  margin-top:0!important;
}
.main-nav a:hover::after{
  width:76%!important;
}
.search-btn{
  border-radius:10px!important;
  transition:background .2s ease, color .2s ease, transform .2s ease!important;
}
.search-btn:hover{
  background:#eef5f9!important;
  color:var(--orange)!important;
  transform:translateY(-1px)!important;
}
.header-cta{
  border-radius:8px!important;
  box-shadow:0 10px 24px rgba(255,101,0,.24)!important;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease!important;
}
.header-cta:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 15px 30px rgba(255,101,0,.30)!important;
}

/* Hero mit mehr Tiefe */
.hero{
  min-height:430px;
  isolation:isolate;
  background:
    radial-gradient(circle at 78% 18%,rgba(255,188,122,.30),transparent 23%),
    radial-gradient(circle at 88% 64%,rgba(82,182,219,.18),transparent 27%),
    linear-gradient(90deg,rgba(2,34,67,.98) 0%,rgba(2,34,67,.93) 36%,rgba(2,34,67,.64) 66%,rgba(2,34,67,.32) 100%),
    linear-gradient(180deg,#7fa6bd 0%,#5e819a 38%,#214c6c 64%,#0a355a 100%);
}
.hero::before{
  z-index:-2;
  animation:heroDrift 18s ease-in-out infinite alternate;
}
.hero::after{
  z-index:-1;
  height:46%;
  opacity:.9;
}
.hero-inner{
  min-height:430px!important;
  padding-top:48px!important;
  padding-bottom:58px!important;
}
.hero-copy{
  position:relative;
}
.hero-copy::before{
  content:"";
  position:absolute;
  left:-26px;
  top:4px;
  width:4px;
  height:76%;
  border-radius:999px;
  background:linear-gradient(180deg,var(--orange),rgba(255,101,0,0));
  opacity:.85;
}
.hero-badge{
  box-shadow:0 8px 18px rgba(0,0,0,.10);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  background:rgba(255,255,255,.08);
  transition:transform .2s ease, background .2s ease;
}
.hero-badge:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.13);
}
.hero h1{
  font-size:42px!important;
  line-height:1.08!important;
  max-width:760px!important;
  text-shadow:0 10px 30px rgba(0,0,0,.24);
}
.hero p{
  font-size:17px!important;
  max-width:720px!important;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline{
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover{
  transform:translateY(-2px);
}
.hero-actions .btn-primary:hover{
  box-shadow:0 14px 28px rgba(255,101,0,.28);
}
.hero-actions .btn-outline:hover{
  background:rgba(255,255,255,.12);
  box-shadow:0 12px 26px rgba(0,0,0,.16);
}
.hero-proof{
  position:relative;
  overflow:visible;
  transform:perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition:transform .35s ease, box-shadow .35s ease;
}
.hero-proof:hover{
  transform:perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow:0 32px 72px rgba(0,0,0,.28);
}
.hero-proof::before{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.18),rgba(53,208,223,.08),rgba(255,101,0,.08));
  filter:blur(20px);
  z-index:-1;
}
.hero-proof-inner{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.proof-logo{
  box-shadow:0 8px 20px rgba(2,29,55,.06);
}
.live-search-results{
  animation:fadeSlideIn .18s ease;
}

/* Dekorative Partikel */
.hero-particles{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  overflow:hidden;
}
.hero-particle{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.36);
  box-shadow:0 0 18px rgba(255,255,255,.22);
  animation:floatParticle 10s ease-in-out infinite;
}
.hero-particle:nth-child(1){left:58%;top:18%;animation-delay:0s}
.hero-particle:nth-child(2){left:72%;top:28%;width:4px;height:4px;animation-delay:1.6s}
.hero-particle:nth-child(3){left:84%;top:14%;width:8px;height:8px;animation-delay:3.2s}
.hero-particle:nth-child(4){left:66%;top:68%;width:5px;height:5px;animation-delay:4.6s}
.hero-particle:nth-child(5){left:91%;top:56%;width:4px;height:4px;animation-delay:6s}

/* Scroll-Reveal */
.reveal-on-scroll{
  opacity:1!important;
  transform:none!important;
}

@keyframes heroDrift{
  0%{transform:scale(1) translate3d(0,0,0)}
  100%{transform:scale(1.04) translate3d(-10px,6px,0)}
}
@keyframes floatParticle{
  0%,100%{transform:translateY(0) translateX(0);opacity:.35}
  50%{transform:translateY(-18px) translateX(8px);opacity:.8}
}
@keyframes fadeSlideIn{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:1020px){
  .hero{
    min-height:auto;
  }
  .hero-inner{
    min-height:auto!important;
    padding-top:54px!important;
    padding-bottom:70px!important;
  }
  .hero-proof{
    transform:none;
  }
  .hero-copy::before{
    left:-12px;
  }
}
@media(max-width:700px){
  .site-header{
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }
  .brand{
    width:230px!important;
    min-width:0!important;
  }
  .site-header.is-scrolled .brand{
    width:218px!important;
  }
  .brand img{
    height:44px!important;
  }
  .site-header.is-scrolled .brand img{
    height:41px!important;
  }
  .hero h1{
    font-size:31px!important;
  }
  .hero p{
    font-size:14px!important;
  }
  .hero-copy::before{
    display:none;
  }
  .hero-proof::before{
    inset:-8px;
  }
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}


/* FINALER STABILER HEADER-FIX */
.site-header .container{
  max-width:1380px!important;
  padding-left:28px!important;
  padding-right:28px!important;
}
.header-inner{
  width:100%!important;
  display:grid!important;
  grid-template-columns:275px minmax(0,1fr) 38px auto!important;
  align-items:center!important;
  column-gap:18px!important;
  min-height:78px!important;
}
.brand{
  grid-column:1!important;
  width:275px!important;
  min-width:275px!important;
  margin:0!important;
  justify-self:start!important;
}
.main-nav{
  grid-column:2!important;
  width:100%!important;
  margin:0!important;
  justify-content:center!important;
  min-width:0!important;
}
.search-btn{
  grid-column:3!important;
  justify-self:center!important;
  margin:0!important;
}
.header-cta{
  grid-column:4!important;
  justify-self:end!important;
  margin:0!important;
}
.site-header.is-scrolled .brand{
  width:260px!important;
  min-width:260px!important;
}
.site-header.is-scrolled .header-inner{
  min-height:68px!important;
}

@media(max-width:1180px){
  .header-inner{
    grid-template-columns:235px minmax(0,1fr) 38px auto!important;
    column-gap:12px!important;
  }
  .brand{
    width:235px!important;
    min-width:235px!important;
  }
  .site-header.is-scrolled .brand{
    width:225px!important;
    min-width:225px!important;
  }
  .main-nav{
    gap:8px!important;
  }
  .main-nav a{
    font-size:9px!important;
  }
  .header-cta{
    padding:13px 15px!important;
    font-size:10px!important;
  }
}

@media(max-width:1020px){
  .site-header .container{
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .header-inner{
    grid-template-columns:minmax(0,1fr) 38px auto!important;
    grid-template-rows:auto auto!important;
    row-gap:8px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }
  .brand{
    grid-column:1!important;
    grid-row:1!important;
    width:245px!important;
    min-width:0!important;
  }
  .search-btn{
    grid-column:2!important;
    grid-row:1!important;
  }
  .header-cta{
    grid-column:3!important;
    grid-row:1!important;
  }
  .main-nav{
    grid-column:1/-1!important;
    grid-row:2!important;
    justify-content:flex-start!important;
    overflow-x:auto!important;
    gap:18px!important;
    padding:7px 0 2px!important;
    border-top:1px solid var(--line)!important;
    scrollbar-width:none!important;
  }
  .main-nav::-webkit-scrollbar{display:none!important}
  .main-nav a{
    flex:0 0 auto!important;
    font-size:10px!important;
  }
}

@media(max-width:700px){
  .header-inner{
    grid-template-columns:minmax(0,1fr) 38px!important;
  }
  .brand{
    width:220px!important;
  }
  .header-cta{
    grid-column:1/-1!important;
    grid-row:2!important;
    width:100%!important;
  }
  .main-nav{
    grid-row:3!important;
  }
}


/* Header simplified: logo | nav | CTA */
.header-inner{
  grid-template-columns:275px minmax(0,1fr) auto!important;
}
.main-nav{grid-column:2!important;}
.header-cta{grid-column:3!important;}
@media(max-width:1180px){
  .header-inner{grid-template-columns:235px minmax(0,1fr) auto!important;}
}
@media(max-width:1020px){
  .header-inner{
    grid-template-columns:minmax(0,1fr) auto!important;
  }
  .brand{grid-column:1!important;}
  .header-cta{
    grid-column:2!important;
    grid-row:1!important;
  }
  .main-nav{
    grid-column:1/-1!important;
    grid-row:2!important;
  }
}
@media(max-width:700px){
  .header-inner{
    grid-template-columns:1fr!important;
  }
  .brand{grid-column:1!important;}
  .header-cta{
    grid-column:1!important;
    grid-row:2!important;
    width:100%!important;
  }
  .main-nav{
    grid-row:3!important;
  }
}


/* Final header spacing */
.site-header .container{max-width:1380px!important;}
.header-inner{
 display:grid!important;
 grid-template-columns:285px minmax(0,1fr) auto!important;
 align-items:center!important;
 column-gap:24px!important;
}
.brand{grid-column:1!important;justify-self:start!important;}
.main-nav{
 grid-column:2!important;
 justify-content:center!important;
 gap:18px!important;
}
.header-cta{
 grid-column:3!important;
 justify-self:end!important;
 margin-left:auto!important;
}
@media(max-width:1180px){
 .header-inner{grid-template-columns:240px minmax(0,1fr) auto!important;column-gap:14px!important;}
 .main-nav{gap:12px!important;}
}
@media(max-width:1020px){
 .header-inner{
   grid-template-columns:1fr auto!important;
   row-gap:8px!important;
 }
 .brand{grid-column:1;}
 .header-cta{grid-column:2;justify-self:end;}
 .main-nav{grid-column:1/-1;justify-content:flex-start!important;}
}


/* ==================================================
   KOMPLETT NEUER, STABILER HEADER
================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid #e1e8ee;
  box-shadow:0 4px 18px rgba(2,29,55,.07);
}

.site-header .container{
  max-width:1380px!important;
  margin:0 auto!important;
  padding-left:28px!important;
  padding-right:28px!important;
}

.header-shell{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:24px;
  width:100%;
  flex-wrap:nowrap;
}

.header-shell .brand{
  flex:0 0 275px;
  width:275px!important;
  min-width:275px!important;
  margin:0!important;
  padding:7px 10px!important;
  background:#fff!important;
  border-radius:10px!important;
  box-shadow:0 2px 10px rgba(2,29,55,.05)!important;
}

.header-shell .brand img{
  width:100%!important;
  height:46px!important;
  object-fit:contain!important;
  object-position:left center!important;
}

.header-shell .main-nav{
  flex:1 1 auto!important;
  min-width:0!important;
  margin:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:18px!important;
  flex-wrap:nowrap!important;
}

.header-shell .main-nav > a,
.header-shell .faq-mega-trigger{
  flex:0 0 auto!important;
  min-height:46px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:center!important;
  font-size:11px!important;
  line-height:1.08!important;
  font-weight:800!important;
  white-space:nowrap!important;
  text-align:center!important;
}

.header-shell .header-cta{
  flex:0 0 auto!important;
  margin-left:auto!important;
  white-space:nowrap!important;
  background:var(--orange)!important;
  color:#fff!important;
  padding:15px 22px!important;
  border-radius:7px!important;
  font-size:12px!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  box-shadow:0 9px 20px rgba(255,101,0,.24)!important;
}

.header-shell .header-cta:hover{
  background:var(--orange-dark)!important;
  transform:translateY(-1px)!important;
}

.site-header.is-scrolled .header-shell{
  min-height:70px;
}

.site-header.is-scrolled .header-shell .brand{
  flex-basis:255px;
  width:255px!important;
  min-width:255px!important;
}

@media(max-width:1220px){
  .header-shell{
    gap:14px;
  }
  .header-shell .brand{
    flex-basis:235px;
    width:235px!important;
    min-width:235px!important;
  }
  .header-shell .main-nav{
    gap:11px!important;
  }
  .header-shell .main-nav > a,
  .header-shell .faq-mega-trigger{
    font-size:9.5px!important;
  }
  .header-shell .header-cta{
    padding:13px 15px!important;
    font-size:10px!important;
  }
}

@media(max-width:1020px){
  .site-header .container{
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .header-shell{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    grid-template-rows:auto auto!important;
    gap:8px 14px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }
  .header-shell .brand{
    grid-column:1!important;
    grid-row:1!important;
    width:240px!important;
    min-width:0!important;
    flex-basis:auto!important;
  }
  .header-shell .header-cta{
    grid-column:2!important;
    grid-row:1!important;
    margin:0!important;
    justify-self:end!important;
  }
  .header-shell .main-nav{
    grid-column:1/-1!important;
    grid-row:2!important;
    width:100%!important;
    overflow-x:auto!important;
    overflow-y:visible!important;
    justify-content:flex-start!important;
    gap:18px!important;
    padding:8px 0 2px!important;
    border-top:1px solid var(--line)!important;
    scrollbar-width:none!important;
  }
  .header-shell .main-nav::-webkit-scrollbar{
    display:none!important;
  }
}

@media(max-width:700px){
  .header-shell{
    grid-template-columns:1fr!important;
    grid-template-rows:auto auto auto!important;
  }
  .header-shell .brand{
    grid-column:1!important;
    grid-row:1!important;
    width:220px!important;
    justify-self:start!important;
  }
  .header-shell .header-cta{
    grid-column:1!important;
    grid-row:2!important;
    width:100%!important;
    justify-self:stretch!important;
    text-align:center!important;
  }
  .header-shell .main-nav{
    grid-column:1!important;
    grid-row:3!important;
  }
}


/* Professioneller Portal-Übergang zwischen Hero und Marktstatus */
.hero-portal-divider{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:78px;
  z-index:4;
  overflow:hidden;
  pointer-events:none;
}
.hero-portal-divider::before{
  content:"";
  position:absolute;
  left:-5%;
  right:-5%;
  bottom:-54px;
  height:128px;
  background:#f5f8fb;
  border-radius:50% 50% 0 0 / 72% 72% 0 0;
  box-shadow:
    0 -1px 0 rgba(255,255,255,.72),
    0 -14px 34px rgba(3,35,68,.08);
}
.hero-portal-divider::after{display:none;}
.market-status-section{
  position:relative;
  padding-top:30px!important;
  background:#f5f8fb;
}

@media(max-width:700px){
  .hero-portal-divider{
    height:62px;
  }
  .hero-portal-divider::before{
    bottom:-48px;
    height:104px;
  }
  .hero-portal-divider::after{
    bottom:42px;
    width:86px;
  }
  .market-status-section{
    padding-top:24px!important;
  }
}


/* FAQ-MEGAMENÜ – STABILER HOVER + PREMIUM-CTA */
.faq-mega-wrap{
  position:relative!important;
  align-self:stretch!important;
  display:flex!important;
  align-items:center!important;
  padding-bottom:14px!important;
  margin-bottom:-14px!important;
}
.faq-mega-wrap::after{
  content:"";
  position:absolute;
  left:-18px;
  right:-18px;
  top:100%;
  height:22px;
  background:transparent;
}
.faq-mega{
  top:calc(100% + 4px)!important;
  padding:24px!important;
  border-radius:18px!important;
  box-shadow:0 26px 64px rgba(3,35,68,.20)!important;
  transition:opacity .18s ease,visibility .18s ease,transform .18s ease!important;
}
.faq-mega-wrap:hover .faq-mega,
.faq-mega-wrap:focus-within .faq-mega,
.faq-mega-wrap.open .faq-mega,
.faq-mega:hover{
  opacity:1!important;
  visibility:visible!important;
  pointer-events:auto!important;
}
.faq-mega-cta{
  margin-top:22px!important;
  padding:0!important;
  overflow:hidden!important;
  border:1px solid #d5e3ed!important;
  border-radius:14px!important;
  background:#fff!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:stretch!important;
  gap:0!important;
  box-shadow:0 8px 22px rgba(4,37,69,.06)!important;
}
.faq-mega-cta > div{
  padding:16px 18px!important;
  background:linear-gradient(135deg,rgba(232,245,251,.96),rgba(255,249,242,.96))!important;
}
.faq-mega-cta strong{
  font-size:14px!important;
  line-height:1.25!important;
  margin-bottom:4px!important;
}
.faq-mega-cta span{
  display:block!important;
  font-size:10px!important;
  line-height:1.45!important;
  color:#60758a!important;
}
.faq-mega-cta .btn-primary{
  min-width:190px!important;
  min-height:100%!important;
  padding:0 20px!important;
  border-radius:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:var(--orange)!important;
  color:#fff!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:.01em!important;
  text-transform:uppercase!important;
  box-shadow:none!important;
}
.faq-mega-cta .btn-primary:hover{
  background:var(--orange-dark)!important;
  transform:none!important;
}
.faq-mega-cta .btn-primary::after{
  content:"→";
  margin-left:9px;
  font-size:14px;
}
@media(max-width:1020px){
  .faq-mega-wrap{
    padding-bottom:0!important;
    margin-bottom:0!important;
  }
  .faq-mega-wrap::after{display:none!important}
  .faq-mega{top:120px!important}
}
@media(max-width:700px){
  .faq-mega-cta{grid-template-columns:1fr!important}
  .faq-mega-cta .btn-primary{
    min-width:0!important;
    min-height:46px!important;
    width:100%!important;
  }
}



/* =========================================
   AGENTUR-PREMIUM HOVER- & MEGAMENÜ
========================================= */
@media (min-width:1021px){
  .faq-mega{
    width:min(1120px,calc(100vw - 48px))!important;
    padding:30px 30px 26px!important;
    border:1px solid rgba(198,214,226,.95)!important;
    border-radius:22px!important;
    background:rgba(255,255,255,.985)!important;
    box-shadow:
      0 34px 80px rgba(3,35,68,.20),
      0 8px 24px rgba(3,35,68,.08)!important;
  }
  .faq-mega-grid{
    grid-template-columns:repeat(5,minmax(0,1fr))!important;
    gap:14px!important;
  }
  .faq-mega-grid > div{
    position:relative;
    min-width:0;
    padding:4px 12px 8px 0;
  }
  .faq-mega-grid > div:not(:last-child)::after{
    content:"";
    position:absolute;
    top:2px;
    right:0;
    bottom:4px;
    width:1px;
    background:linear-gradient(180deg,transparent,#dce6ee 12%,#dce6ee 88%,transparent);
  }
  .faq-mega h4{
    position:relative;
    margin:0 0 13px!important;
    padding:0 0 11px 13px!important;
    color:var(--navy)!important;
    font-size:12px!important;
    line-height:1.25!important;
    font-weight:900!important;
    letter-spacing:.055em!important;
    text-transform:uppercase!important;
  }
  .faq-mega h4::before{
    content:"";
    position:absolute;
    left:0;
    top:1px;
    bottom:12px;
    width:4px;
    border-radius:999px;
    background:var(--orange);
  }
  .faq-mega h4::after{
    content:"";
    position:absolute;
    left:13px;
    right:0;
    bottom:0;
    height:1px;
    background:#e5edf3;
  }
  .faq-mega a:not(.btn-primary){
    position:relative!important;
    display:flex!important;
    align-items:center!important;
    min-height:39px!important;
    margin:3px 0!important;
    padding:9px 30px 9px 12px!important;
    border:1px solid transparent!important;
    border-radius:9px!important;
    color:#314d66!important;
    background:transparent!important;
    font-size:12.5px!important;
    line-height:1.32!important;
    font-weight:700!important;
    letter-spacing:0!important;
    text-transform:none!important;
    white-space:normal!important;
    text-align:left!important;
    transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease,box-shadow .16s ease!important;
  }
  .faq-mega a:not(.btn-primary)::before{
    content:"";
    width:5px;
    height:5px;
    margin-right:9px;
    flex:0 0 5px;
    border-radius:50%;
    background:#a7b8c6;
    transition:background .16s ease,transform .16s ease;
  }
  .faq-mega a:not(.btn-primary)::after{
    content:"›"!important;
    display:block!important;
    position:absolute!important;
    right:11px!important;
    top:50%!important;
    width:auto!important;
    height:auto!important;
    margin:0!important;
    background:none!important;
    color:#91a4b5!important;
    font-size:18px!important;
    font-weight:400!important;
    line-height:1!important;
    transform:translateY(-50%)!important;
    opacity:0!important;
    transition:opacity .16s ease,transform .16s ease,color .16s ease!important;
  }
  .faq-mega a:not(.btn-primary):hover,
  .faq-mega a:not(.btn-primary):focus-visible{
    color:var(--navy)!important;
    background:linear-gradient(90deg,#f1f7fb,#fff)!important;
    border-color:#d7e5ee!important;
    transform:translateX(3px)!important;
    box-shadow:0 5px 14px rgba(4,37,69,.055)!important;
    outline:none!important;
  }
  .faq-mega a:not(.btn-primary):hover::before,
  .faq-mega a:not(.btn-primary):focus-visible::before{
    background:var(--orange)!important;
    transform:scale(1.25)!important;
  }
  .faq-mega a:not(.btn-primary):hover::after,
  .faq-mega a:not(.btn-primary):focus-visible::after{
    color:var(--orange)!important;
    opacity:1!important;
    transform:translate(2px,-50%)!important;
  }
  .faq-mega-cta{
    margin-top:26px!important;
  }
}

@media (min-width:1021px) and (max-width:1180px){
  .faq-mega{
    width:min(1000px,calc(100vw - 32px))!important;
    padding:26px 24px 22px!important;
  }
  .faq-mega-grid{gap:10px!important}
  .faq-mega a:not(.btn-primary){font-size:12px!important;padding-left:10px!important}
}

@media (max-width:1020px){
  .faq-mega{
    padding:22px!important;
    background:#fff!important;
  }
  .faq-mega-grid{gap:16px!important}
  .faq-mega-grid > div{
    padding:15px!important;
    border:1px solid #dce6ee!important;
    border-radius:13px!important;
    background:#f9fbfd!important;
  }
  .faq-mega h4{
    margin:0 0 9px!important;
    font-size:12px!important;
    line-height:1.3!important;
    font-weight:900!important;
  }
  .faq-mega a:not(.btn-primary){
    display:block!important;
    min-height:38px!important;
    margin:2px 0!important;
    padding:9px 10px!important;
    border-radius:8px!important;
    color:#334f67!important;
    font-size:12px!important;
    line-height:1.35!important;
    font-weight:700!important;
  }
  .faq-mega a:not(.btn-primary):hover,
  .faq-mega a:not(.btn-primary):focus-visible{
    background:#edf5fa!important;
    color:var(--navy)!important;
    outline:none!important;
  }
}


/* PREMIUM FÖRDERRECHNER – AVD-ZENTRUM */
.avd-calc{
  margin:34px 0 20px;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 18px 46px rgba(4,37,69,.10);
}
.avd-calc-head{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  padding:24px 26px;
  background:
    radial-gradient(circle at 90% 20%,rgba(255,255,255,.12),transparent 24%),
    linear-gradient(135deg,#062d57,#0b4f88);
  color:#fff;
}
.avd-calc-head h2{
  margin:0 0 6px;
  font-size:25px;
}
.avd-calc-head p{
  margin:0;
  color:#dcebf5;
  font-size:12px;
}
.avd-calc-badge{
  flex:0 0 auto;
  padding:8px 12px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
}
.avd-calc-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
}
.avd-calc-inputs{
  padding:24px;
  border-right:1px solid var(--line);
}
.avd-calc-results{
  padding:24px;
  background:linear-gradient(180deg,#f8fbfd,#eef4f8);
}
.avd-calc-section-title{
  margin:0 0 14px;
  font-size:16px;
  color:var(--ink);
}
.avd-calc-field{
  margin-bottom:18px;
}
.avd-calc-field label{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:8px;
  font-size:11px;
  font-weight:900;
  color:#38536b;
}
.avd-calc-value{
  color:var(--orange);
  font-size:16px;
}
.avd-calc-range{
  width:100%;
  accent-color:var(--orange);
}
.avd-calc-scale{
  display:flex;
  justify-content:space-between;
  margin-top:5px;
  color:#8393a1;
  font-size:9px;
}
.avd-calc-children{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:9px;
}
.avd-calc-child input{
  position:absolute;
  opacity:0;
}
.avd-calc-child label{
  min-height:66px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  margin:0;
  border:1px solid var(--line);
  border-radius:12px;
  background:#f8fafc;
  cursor:pointer;
  transition:.18s;
}
.avd-calc-child label strong{
  font-size:20px;
  color:var(--navy);
}
.avd-calc-child label span{
  font-size:9px;
  color:#6f8192;
}
.avd-calc-child input:checked + label{
  border-color:var(--orange);
  background:#fff5e8;
  box-shadow:0 0 0 3px rgba(255,101,0,.08);
}
.avd-calc-advanced{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}
.avd-calc-box{
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px;
  background:#fff;
}
.avd-calc-box label{
  display:block;
  margin-bottom:6px;
  font-size:9px;
  font-weight:900;
  color:#52697d;
}
.avd-calc-box input,
.avd-calc-box select{
  width:100%;
  border:1px solid #cfdbe5;
  border-radius:9px;
  padding:10px;
  font-size:11px;
  color:var(--ink);
  background:#fff;
  outline:none;
}
.avd-calc-box input:focus,
.avd-calc-box select:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(11,79,136,.08);
}
.avd-calc-note{
  margin-top:16px;
  padding:12px 13px;
  border-left:4px solid var(--orange);
  background:#f5f9fc;
  border-radius:0 10px 10px 0;
  color:#536a7f;
  font-size:10px;
}
.avd-result-main{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:18px;
  box-shadow:0 8px 24px rgba(4,37,69,.05);
}
.avd-result-kicker{
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  color:#718294;
}
.avd-result-amount{
  margin:6px 0 3px;
  font-size:40px;
  line-height:1;
  color:var(--navy);
  font-weight:900;
}
.avd-result-sub{
  color:var(--green);
  font-size:11px;
  font-weight:900;
}
.avd-result-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:12px;
}
.avd-result-tile{
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:12px;
}
.avd-result-tile span{
  display:block;
  color:#6b7d8f;
  font-size:9px;
  font-weight:800;
}
.avd-result-tile strong{
  display:block;
  margin-top:3px;
  color:var(--navy);
  font-size:17px;
}
.avd-result-meter{
  margin-top:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}
.avd-result-meter-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
  font-size:9px;
  font-weight:900;
  color:#536a7f;
}
.avd-result-meter-track{
  height:10px;
  border-radius:999px;
  background:#e7edf2;
  overflow:hidden;
}
.avd-result-meter-fill{
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(90deg,var(--orange),#ffb45d);
  transition:width .25s ease;
}
.avd-result-projection{
  margin-top:14px;
  padding:16px;
  border-radius:14px;
  background:linear-gradient(135deg,#062d57,#0b4f88);
  color:#fff;
}
.avd-result-projection small{
  display:block;
  color:#d9e8f3;
  font-size:9px;
}
.avd-result-projection strong{
  display:block;
  margin-top:4px;
  font-size:26px;
}
.avd-result-projection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:12px;
}
.avd-result-projection-grid div{
  padding:9px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  background:rgba(255,255,255,.08);
}
.avd-result-projection-grid span{
  display:block;
  color:#cfe2ee;
  font-size:8px;
}
.avd-result-projection-grid strong{
  margin-top:3px;
  font-size:13px;
}
.avd-result-neutral{
  margin-top:14px;
  padding:12px;
  border:1px solid #dce7ee;
  border-radius:12px;
  background:#fff;
  color:#536a7f;
  font-size:10px;
  line-height:1.45;
}
@media(max-width:980px){
  .avd-calc-grid{grid-template-columns:1fr}
  .avd-calc-inputs{border-right:0;border-bottom:1px solid var(--line)}
}
@media(max-width:700px){
  .avd-calc-head{align-items:flex-start;flex-direction:column}
  .avd-calc-children{grid-template-columns:repeat(2,1fr)}
  .avd-calc-advanced{grid-template-columns:1fr}
  .avd-result-grid{grid-template-columns:1fr}
  .avd-result-projection-grid{grid-template-columns:1fr}
}


/* Zweigeteilte Förderanzeige */
.avd-result-main{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
  align-items:stretch!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.avd-result-primary{
  min-width:0;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:18px;
  box-shadow:0 8px 24px rgba(4,37,69,.05);
}
.avd-result-primary.monthly{
  background:linear-gradient(135deg,#fff8ef,#fff);
}
.avd-result-primary .avd-result-kicker{
  display:block;
  min-height:24px;
  line-height:1.35;
}
.avd-result-primary .avd-result-amount{
  display:block;
  max-width:100%;
  margin:8px 0 4px;
  font-size:clamp(30px,3.2vw,42px)!important;
  line-height:1!important;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.avd-result-primary.monthly .avd-result-amount{
  color:var(--orange);
}
.avd-result-primary .avd-result-sub{
  display:block;
  color:#6b7d8f;
  font-size:10px;
  font-weight:800;
}
@media(max-width:560px){
  .avd-result-main{
    grid-template-columns:1fr!important;
  }
  .avd-result-primary .avd-result-kicker{
    min-height:0;
  }
}



/* =========================================
   SCHLICHTE, LINKSBÜNDIGE HOVER-MENÜS
========================================= */
@media (min-width:1021px){
  .faq-mega-wrap{
    justify-content:flex-start!important;
  }
  .faq-mega{
    left:0!important;
    right:auto!important;
    width:max-content!important;
    max-width:calc(100vw - 40px)!important;
    transform:translateY(8px)!important;
    padding:22px 24px 20px!important;
    border:1px solid #d9e3eb!important;
    border-radius:12px!important;
    background:#fff!important;
    box-shadow:0 18px 42px rgba(3,35,68,.14)!important;
  }
  .faq-mega-wrap:hover .faq-mega,
  .faq-mega-wrap:focus-within .faq-mega,
  .faq-mega-wrap.open .faq-mega,
  .faq-mega:hover{
    transform:translateY(0)!important;
  }
  .faq-mega::before{
    left:34px!important;
    right:auto!important;
  }
  .faq-mega-grid{
    grid-template-columns:repeat(5,200px)!important;
    gap:24px!important;
    width:max-content!important;
    max-width:100%!important;
  }
  #grundlagenWrap .faq-mega-grid{
    grid-template-columns:repeat(4,200px)!important;
  }
  #faqMegaWrap .faq-mega{
    left:auto!important;
    right:0!important;
  }
  #faqMegaWrap .faq-mega::before{
    left:auto!important;
    right:34px!important;
  }
  .faq-mega-grid > div{
    padding:0!important;
    border:0!important;
    background:transparent!important;
  }
  .faq-mega-grid > div::after{
    display:none!important;
  }
  .faq-mega h4{
    margin:0 0 10px!important;
    padding:0 0 8px!important;
    border-bottom:1px solid #e3eaf0!important;
    color:var(--navy)!important;
    font-size:12px!important;
    line-height:1.3!important;
    font-weight:800!important;
    letter-spacing:.02em!important;
    text-transform:uppercase!important;
    text-align:left!important;
  }
  .faq-mega h4::before,
  .faq-mega h4::after{
    display:none!important;
    content:none!important;
  }
  .faq-mega a:not(.btn-primary){
    display:block!important;
    min-height:0!important;
    margin:0!important;
    padding:7px 0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    color:#455f75!important;
    font-size:12.5px!important;
    line-height:1.4!important;
    font-weight:600!important;
    text-align:left!important;
    transform:none!important;
    transition:color .15s ease!important;
  }
  .faq-mega a:not(.btn-primary)::before,
  .faq-mega a:not(.btn-primary)::after{
    display:none!important;
    content:none!important;
  }
  .faq-mega a:not(.btn-primary):hover,
  .faq-mega a:not(.btn-primary):focus-visible{
    color:var(--orange)!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    transform:none!important;
    outline:none!important;
  }
  .faq-mega-cta{
    margin-top:18px!important;
    padding:13px 14px!important;
    border:1px solid #e0e7ed!important;
    border-radius:8px!important;
    background:#f7f9fb!important;
    box-shadow:none!important;
  }
}

@media (min-width:1021px) and (max-width:1180px){
  .faq-mega-grid{
    grid-template-columns:repeat(5,172px)!important;
    gap:18px!important;
  }
  #grundlagenWrap .faq-mega-grid{
    grid-template-columns:repeat(4,172px)!important;
  }
}

/* =========================================================
   PILOTPHASE-BADGE – FINALER, KONFLIKTFREIER HEADER-AUFBAU
========================================================= */
.header-shell .brand-cluster{
  display:flex!important;
  flex:0 0 auto!important;
  width:auto!important;
  min-width:0!important;
  max-width:none!important;
  height:auto!important;
  position:static!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:12px!important;
  margin:0!important;
  padding:0!important;
  overflow:visible!important;
  white-space:nowrap!important;
  background:transparent!important;
}
.header-shell .brand-cluster .brand{
  display:flex!important;
  position:static!important;
  flex:0 0 248px!important;
  width:248px!important;
  min-width:248px!important;
  height:auto!important;
  transform:none!important;
  align-items:center!important;
  margin:0!important;
  padding:7px 0!important;
  overflow:visible!important;
  background:transparent!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.header-shell .brand-cluster .brand img{
  display:block!important;
  position:static!important;
  flex:none!important;
  width:248px!important;
  max-width:248px!important;
  height:46px!important;
  margin:0!important;
  object-fit:contain!important;
  object-position:left center!important;
}
.header-shell .brand-cluster + .main-nav{
  margin-left:22px!important;
  padding-left:0!important;
}
.avd-sub-breadcrumb{margin-bottom:0!important;}
.avd-sub-breadcrumb + .beratung-hero,
.avd-sub-breadcrumb + .avd-sub-hero{margin-top:0!important;}

@media(max-width:1220px){
  .header-shell .brand-cluster{gap:9px!important;}
  .header-shell .brand-cluster .brand{flex-basis:210px!important;width:210px!important;min-width:210px!important;}
  .header-shell .brand-cluster .brand img{width:210px!important;max-width:210px!important;}
  .header-shell .brand-cluster + .main-nav{margin-left:12px!important;}
}
@media(max-width:1020px){
  .header-shell .brand-cluster{grid-column:1!important;grid-row:1!important;justify-self:start!important;}
  .header-shell .brand-cluster .brand{flex-basis:215px!important;width:215px!important;min-width:215px!important;}
  .header-shell .brand-cluster .brand img{width:215px!important;max-width:215px!important;}
  .header-shell .brand-cluster + .main-nav{margin-left:0!important;}
}
@media(max-width:700px){
  .header-shell .brand-cluster{width:100%!important;gap:7px!important;}
  .header-shell .brand-cluster .brand{flex-basis:190px!important;width:190px!important;min-width:190px!important;}
  .header-shell .brand-cluster .brand img{width:190px!important;max-width:190px!important;height:42px!important;}
}

/* Portal-Status Pilotphase */
@media(max-width:700px){
  .portal-live{gap:7px 8px;}
  .portal-status-separator{display:none;}
  .portal-status{white-space:normal;}
  .portal-status small{display:block;width:100%;margin:2px 0 0 15px;}
}


/* =========================================================
   FLOATING WEITEREMPFEHLUNGSBUTTON – GLOBAL
========================================================= */
.avd-recommend-fab{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:99998;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:50px;
  padding:0 19px;
  border:0;
  border-radius:999px;
  background:var(--orange,#f58220);
  color:#fff;
  font:inherit;
  font-size:14px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(0,0,0,.23),0 0 0 0 rgba(245,130,32,.38);
  transform:translateZ(0);
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
  animation:avdRecommendPulse 8s ease-in-out infinite;
}
.avd-recommend-fab:hover,
.avd-recommend-fab:focus-visible{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 14px 32px rgba(0,0,0,.27),0 0 0 6px rgba(245,130,32,.14);
  filter:brightness(.97);
  outline:none;
}
.avd-recommend-fab__icon{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  font-size:18px;
  font-weight:800;
}
@keyframes avdRecommendPulse{
  0%,78%,100%{box-shadow:0 10px 26px rgba(0,0,0,.23),0 0 0 0 rgba(245,130,32,0);transform:translateY(0) scale(1)}
  82%{box-shadow:0 10px 26px rgba(0,0,0,.23),0 0 0 0 rgba(245,130,32,.34);transform:translateY(-1px) scale(1.01)}
  88%{box-shadow:0 10px 26px rgba(0,0,0,.23),0 0 0 10px rgba(245,130,32,0);transform:translateY(-2px) scale(1.025)}
  94%{box-shadow:0 10px 26px rgba(0,0,0,.23),0 0 0 0 rgba(245,130,32,0);transform:translateY(0) scale(1)}
}
.avd-recommend-toast{
  position:fixed;
  right:22px;
  bottom:84px;
  z-index:99999;
  padding:10px 14px;
  border-radius:8px;
  background:#092f4f;
  color:#fff;
  font-size:12px;
  font-weight:800;
  box-shadow:0 8px 22px rgba(0,0,0,.2);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
.avd-recommend-toast.is-visible{opacity:1;visibility:visible;transform:translateY(0)}

/* Die früheren drei News-/Sliderpunkte vollständig entfernen. */
.news-dots{display:none!important}

@media(max-width:700px){
  .avd-recommend-fab{
    right:14px;
    bottom:76px;
    min-height:46px;
    padding:0 15px;
    font-size:12px;
    gap:7px;
  }
  .avd-recommend-fab__icon{width:25px;height:25px;font-size:16px}
  .avd-recommend-toast{right:14px;bottom:132px}
}
@media(max-width:430px){
  .avd-recommend-fab__text{max-width:122px;white-space:normal;line-height:1.12;text-align:left}
}
@media(prefers-reduced-motion:reduce){
  .avd-recommend-fab{animation:none}
}
