@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{margin:0;padding:0;box-sizing:border-box;font-family:'Outfit',sans-serif}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;color:#0d2d4a;background:#fff;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none}

/* BUTTONS */
.btn-primary{display:inline-block;background:#9ec54e;color:#07192a;font-family:'Outfit',sans-serif;font-weight:700;font-size:1rem;padding:.8rem 2rem;border-radius:100px;border:none;cursor:pointer;transition:background .2s,transform .2s}
.btn-primary:hover{background:#7a9a1e;transform:translateY(-2px)}
.btn-white{display:inline-block;background:#fff;color:#7a9a1e;font-family:'Outfit',sans-serif;font-weight:700;font-size:1rem;padding:.8rem 2.2rem;border-radius:100px;transition:background .2s,transform .2s}
.btn-white:hover{background:#f0f7e0;transform:translateY(-2px)}
.btn-ghost{display:inline-flex;align-items:center;gap:.4rem;color:rgba(255,255,255,.65);font-size:.95rem;transition:color .2s}
.btn-ghost:hover{color:#fff}

/* NAV — Teil des Hero-Gradients */
#navbar{
  background:linear-gradient(150deg,#07192a 0%,#0d2d4a 30%,#0f3d6e 65%,#0d4a3a 100%);
  position:sticky;top:0;z-index:100;
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 4px 24px rgba(0,0,0,.25);
}
.nav-inner{max-width:1280px;margin:0 auto;padding:0 2rem;height:76px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo img{height:56px;width:280px;display:block}
.nav-links{display:flex;align-items:center;gap:.3rem}
.nav-links a{color:rgba(255,255,255,.65);font-size:.82rem;font-weight:500;padding:.42rem .9rem;border-radius:100px;border:1px solid transparent;transition:all .2s;white-space:nowrap}
.nav-links a:hover{color:#fff;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.1)}
.nav-links a.active{color:#fff;background:rgba(15,80,140,.4);border-color:rgba(100,160,220,.3)}
.nav-cta{background:#9ec54e!important;color:#07192a!important;font-weight:700!important;border-color:#9ec54e!important;margin-left:.5rem}
.nav-cta:hover{background:#b5d660!important;border-color:#b5d660!important}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px}
.hamburger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px}

/* HERO */
.hero{
  background:linear-gradient(150deg,#07192a 0%,#0d2d4a 30%,#0f3d6e 65%,#0d4a3a 100%);
  padding:4.5rem 2rem 0;position:relative;overflow:hidden;
}
.hero::before{content:'';position:absolute;right:-5%;top:-15%;width:450px;height:450px;background:radial-gradient(circle,rgba(158,197,78,.1) 0%,transparent 65%);border-radius:50%;pointer-events:none}
.hero::after{content:'';position:absolute;left:30%;bottom:-20%;width:500px;height:300px;background:radial-gradient(circle,rgba(15,80,140,.5) 0%,transparent 70%);border-radius:50%;pointer-events:none}
.hero-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 500px;gap:3rem;align-items:start;position:relative;z-index:2}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(158,197,78,.12);border:1px solid rgba(158,197,78,.28);color:#9ec54e;font-size:.75rem;font-weight:600;padding:.32rem .9rem;border-radius:100px;margin-bottom:1.25rem;letter-spacing:.06em;text-transform:uppercase}
.hero h1{font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.02em;margin-bottom:1.25rem}
.hero h1 .accent{color:#9ec54e}
.hero-sub{font-size:1rem;color:rgba(255,255,255,.68);line-height:1.7;margin-bottom:1.75rem}
.hero-bullets{list-style:none;display:flex;flex-direction:column;gap:.7rem;margin-bottom:2rem}
.hero-bullets li{display:flex;align-items:center;gap:.7rem;color:rgba(255,255,255,.87);font-size:.93rem}
.hero-bullets li::before{content:'✓';width:20px;height:20px;min-width:20px;background:#9ec54e;color:#07192a;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.68rem;font-weight:800}
.hero-cta-row{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;margin-bottom:.85rem}
.hero-phone{font-size:.8rem;color:rgba(255,255,255,.4)}
.hero-phone strong{color:#9ec54e}
.rating-row{display:flex;align-items:center;gap:.6rem;margin-top:.85rem}
.stars{color:#fbbf24;font-size:.95rem}
.rating-text{font-size:.78rem;color:rgba(255,255,255,.42)}

/* FORM CARD */
.form-card{background:#fff;border-radius:18px;padding:2.5rem;box-shadow:0 20px 60px rgba(0,0,0,.35)}
.form-title{font-size:1.15rem;font-weight:700;color:#07192a;margin-bottom:.4rem}
.form-sub{font-size:.8rem;color:#64748b;margin-bottom:1.6rem}
.field{margin-bottom:1.1rem}
.field label{display:block;font-size:.7rem;font-weight:700;color:#0d2d4a;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.28rem}
.field input,.field textarea,.field select{width:100%;padding:.75rem 1.1rem;border:1.5px solid #e2e8f0;border-radius:9px;font-family:'Outfit',sans-serif;font-size:.88rem;font-weight:400;color:#0d2d4a;background:#f8fafc;outline:none;transition:border-color .2s,background .2s}
.field input:focus,.field textarea:focus{border-color:#9ec54e;background:#fff}
.field input::placeholder,.field textarea::placeholder{color:#94a3b8;font-family:'Outfit',sans-serif;font-weight:400}
.field textarea{resize:vertical;min-height:90px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.checks{display:flex;flex-direction:column;gap:.55rem;margin-top:.35rem}
.check-row{display:flex;align-items:center;gap:.45rem;font-size:.82rem;color:#334155;cursor:pointer}
.check-row input[type=checkbox]{accent-color:#9ec54e;width:14px;height:14px;cursor:pointer}
.form-submit{width:100%;background:#9ec54e;color:#fff;font-family:'Outfit',sans-serif;font-weight:700;font-size:.95rem;letter-spacing:.01em;padding:1rem;border:none;border-radius:10px;cursor:pointer;margin-top:.9rem;transition:background .2s}
.form-submit:hover{background:#7a9a1e}
.form-note{font-size:.7rem;color:#94a3b8;text-align:center;margin-top:.55rem}
.form-success{background:#f0f7e0;border:1px solid rgba(158,197,78,.4);color:#3d6b0a;border-radius:10px;padding:1rem;text-align:center;font-size:.9rem;font-weight:600;margin-top:.75rem;display:none}
.form-error{background:#fff0f0;border:1px solid rgba(200,0,0,.2);color:#c00;border-radius:10px;padding:1rem;text-align:center;font-size:.9rem;margin-top:.75rem;display:none}

/* TRUST BAR — im Hero-Gradient */
.trust-bar{background:rgba(0,0,0,.18);border-top:1px solid rgba(255,255,255,.08);padding:1.25rem 2rem;margin-top:3.5rem}
.trust-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:.45rem;font-size:.8rem;color:rgba(255,255,255,.58);font-weight:500}
.trust-dot{width:6px;height:6px;background:#9ec54e;border-radius:50%;flex-shrink:0}
.trust-divider{width:1px;height:18px;background:rgba(255,255,255,.1)}

/* SECTIONS */
.section{padding:5rem 2rem}
.section-alt{background:#f7f9f4}
.section-dark{background:#07192a}
.section-inner{max-width:1280px;margin:0 auto}
.section-label{font-size:.75rem;font-weight:700;color:#7a9a1e;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.75rem}
.section-title{font-size:clamp(1.8rem,3vw,2.4rem);font-weight:800;color:#07192a;line-height:1.15;letter-spacing:-.02em;margin-bottom:1rem}
.section-sub{font-size:1rem;color:#6b7280;line-height:1.7;max-width:600px;margin-bottom:2rem}

/* CARDS */
.cards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.card{background:#fff;border:1.5px solid #e2e8f0;border-radius:16px;padding:1.75rem;transition:border-color .3s,box-shadow .3s}
.card:hover{border-color:#9ec54e;box-shadow:0 8px 30px rgba(158,197,78,.12)}
.card-icon{width:46px;height:46px;background:#f0f7e0;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1rem}
.card h3{font-size:1rem;font-weight:700;color:#07192a;margin-bottom:.5rem}
.card p{font-size:.86rem;color:#6b7280;line-height:1.6}

/* FEATURE LIST */
.feature-list{list-style:none;display:flex;flex-direction:column;gap:.8rem;margin-top:1.5rem}
.feature-list li{display:flex;align-items:flex-start;gap:.75rem;font-size:.93rem;color:#0d2d4a;line-height:1.5}
.feature-list li::before{content:'✓';width:20px;height:20px;min-width:20px;background:#9ec54e;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.68rem;font-weight:800;margin-top:2px}

/* FAQ */
.faq-list{margin-top:2rem;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.1)}
.faq-item{border-bottom:1px solid rgba(255,255,255,.08)}
.faq-item:last-child{border-bottom:none}
.faq-q{width:100%;background:rgba(255,255,255,.05);border:none;text-align:left;padding:1.25rem 1.5rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:background .2s}
.faq-q:hover{background:rgba(255,255,255,.09)}
.faq-q span:first-child{font-family:'Outfit',sans-serif;font-size:.95rem;font-weight:600;color:#fff;line-height:1.4}
.faq-arrow{color:#9ec54e;font-size:1.2rem;transition:transform .3s;flex-shrink:0}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;background:rgba(0,0,0,.15)}
.faq-a p{padding:1rem 1.5rem 1.25rem;font-size:.88rem;color:rgba(255,255,255,.7);line-height:1.7}
.faq-item.open .faq-arrow{transform:rotate(180deg)}

/* CTA */
.cta-section{background:linear-gradient(135deg,#7a9a1e 0%,#3d5c0a 100%);padding:4.5rem 2rem;text-align:center}
.cta-section h2{font-size:clamp(1.8rem,3vw,2.4rem);font-weight:800;color:#fff;margin-bottom:.75rem;letter-spacing:-.02em}
.cta-section p{color:rgba(255,255,255,.8);font-size:1rem;margin-bottom:2rem}
.cta-phone{color:rgba(255,255,255,.65);font-size:.9rem;margin-top:1.25rem}
.cta-phone a{color:#fff}
.cta-phone a:hover{color:#9ec54e}

/* FOOTER */
footer{background:#07192a;padding:3rem 2rem 1.5rem}
.footer-inner{max-width:1280px;margin:0 auto}
.footer-top{display:flex;justify-content:space-between;align-items:flex-start;gap:3rem;margin-bottom:2.5rem;flex-wrap:wrap}
.footer-logo{height:50px;width:auto;margin-bottom:.75rem}
.footer-tagline{font-size:.8rem;color:rgba(255,255,255,.32)}
.dsgvo-badge{display:inline-flex;align-items:center;gap:.4rem;background:rgba(158,197,78,.1);border:1px solid rgba(158,197,78,.22);color:#9ec54e;font-size:.74rem;font-weight:600;padding:.3rem .75rem;border-radius:6px;margin-top:1rem}
.footer-links{display:flex;gap:3rem;flex-wrap:wrap}
.footer-col h5{font-size:.72rem;font-weight:700;color:rgba(255,255,255,.3);text-transform:uppercase;letter-spacing:.08em;margin-bottom:1rem}
.footer-col a{display:block;color:rgba(255,255,255,.58);font-size:.85rem;margin-bottom:.5rem;transition:color .2s}
.footer-col a:hover{color:#9ec54e}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:1.25rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;font-size:.78rem;color:rgba(255,255,255,.25)}

/* PROSE */
.prose{max-width:800px}
.prose h2{font-size:1.5rem;font-weight:700;color:#07192a;margin:2rem 0 .75rem}
.prose h3{font-size:1.15rem;font-weight:700;color:#07192a;margin:1.5rem 0 .5rem}
.prose p{font-size:.95rem;color:#374151;line-height:1.8;margin-bottom:1rem}
.prose ul{list-style:disc;padding-left:1.5rem;margin-bottom:1rem}
.prose ul li{font-size:.95rem;color:#374151;line-height:1.7;margin-bottom:.3rem}
.prose a{color:#7a9a1e;text-decoration:underline}

/* PAGE HERO (Unterseiten) */
.page-hero{
  background:linear-gradient(150deg,#07192a 0%,#0d2d4a 30%,#0f3d6e 65%,#0d4a3a 100%);
  padding:5rem 2rem 0;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
}
.page-hero::before{content:'';position:absolute;right:-5%;top:-20%;width:500px;height:500px;background:radial-gradient(circle,rgba(158,197,78,.1) 0%,transparent 65%);border-radius:50%;pointer-events:none}
.page-hero::after{content:'';position:absolute;left:30%;bottom:-20%;width:400px;height:300px;background:radial-gradient(circle,rgba(15,80,140,.4) 0%,transparent 70%);border-radius:50%;pointer-events:none}
.page-hero-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:1fr 340px;
  gap:3rem;align-items:end;
  position:relative;z-index:2;
}
.page-hero-copy{padding-bottom:3.5rem}
.page-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(158,197,78,.12);border:1px solid rgba(158,197,78,.28);color:#9ec54e;font-size:.73rem;font-weight:600;padding:.3rem .9rem;border-radius:100px;margin-bottom:1.25rem;letter-spacing:.05em;text-transform:uppercase}
.page-hero h1{font-size:clamp(1.9rem,4vw,2.9rem);font-weight:800;color:#fff;line-height:1.1;letter-spacing:-.02em;margin-bottom:1rem}
.page-hero h1 .accent{color:#9ec54e}
.page-hero p{font-size:1rem;color:rgba(255,255,255,.68);line-height:1.7;max-width:600px}
.page-hero-person{
  display:flex;align-items:flex-end;justify-content:flex-end;
  position:relative;z-index:2;
  margin-bottom:0;padding-bottom:0;
}
.page-hero-person img{
  height:420px;width:auto;display:block;
  object-fit:contain;
  vertical-align:bottom;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.3));
}
/* Trust bar auf Unterseiten — im Gradient */
.page-trust{
  background:rgba(0,0,0,.18);
  border-top:1px solid rgba(255,255,255,.08);
  padding:1.1rem 2rem;
}
.page-trust .trust-inner{max-width:1280px;margin:0 auto;}
@media(max-width:900px){
  .page-hero-inner{grid-template-columns:1fr}
  .page-hero-copy{padding-bottom:2rem}
  .page-hero-person{display:none}
  .page-hero{padding-bottom:3rem}
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr}
  .form-card{max-width:100%}
  .cards-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none;flex-direction:column;position:absolute;top:76px;left:0;right:0;background:#0d2d4a;border-bottom:1px solid rgba(255,255,255,.08);padding:1rem;gap:.25rem;box-shadow:0 8px 20px rgba(0,0,0,.3)}
  .nav-links.open{display:flex}
  .nav-links a{padding:.75rem 1rem;border-radius:8px}
  .hamburger{display:flex}
  .cards-grid{grid-template-columns:1fr}
  .field-row{grid-template-columns:1fr}
  .trust-inner{justify-content:center}
  .trust-divider{display:none}
  .footer-top{flex-direction:column}
  .footer-links{gap:2rem}
  .hero-inner{gap:2.5rem}
  .hero{padding:3rem 1.5rem 0}
}

/* HERO PERSON */
.hero-person{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  z-index:2;
}
.hero-person img{
  height:520px;
  width:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.3));
}


@media(max-width:1100px){
  .hero-inner--3col{grid-template-columns:1fr 400px;gap:2rem}
  .hero-person{display:none}
}
@media(max-width:768px){
  .hero-inner--3col{grid-template-columns:1fr}
}

/* =====================
   MEHRSTUFIGES FORMULAR
   ===================== */
.msf-wrap{background:#fff;border-radius:18px;padding:2.25rem;box-shadow:0 20px 60px rgba(0,0,0,.25);margin-top:1.5rem;margin-bottom:2.5rem}

/* Progress */
.msf-progress{display:flex;align-items:center;margin-bottom:1.5rem}
.msf-dot{width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.78rem;font-weight:700;flex-shrink:0;transition:all .3s}
.msf-dot.done{background:#9ec54e;color:#fff}
.msf-dot.active{background:#0f3d6e;color:#fff;box-shadow:0 0 0 4px rgba(15,61,110,.15)}
.msf-dot.pending{background:#e2e8f0;color:#94a3b8}
.msf-line{flex:1;height:2px;background:#e2e8f0;transition:background .3s}
.msf-line.done{background:#9ec54e}
.msf-labels{display:flex;margin-top:.4rem;margin-bottom:1.5rem}
.msf-label{font-size:.68rem;color:#94a3b8;font-weight:500;text-align:center;flex:1}
.msf-label.active{color:#0f3d6e;font-weight:700}
.msf-label.done{color:#9ec54e}

/* Panels */
.msf-panel{display:none}
.msf-panel.active{display:block}
.msf-question{font-size:1rem;font-weight:700;color:#07192a;margin-bottom:.2rem;line-height:1.4}
.msf-sub{font-size:.78rem;color:#94a3b8;margin-bottom:.85rem}

/* Text inputs */
.msf-input{width:100%;padding:.8rem 1.1rem;border:2px solid #e2e8f0;border-radius:100px;font-family:'Outfit',sans-serif;font-size:.9rem;color:#07192a;background:#f8fafc;outline:none;transition:border-color .2s;margin-bottom:1.2rem;display:block}
.msf-input:focus{border-color:#9ec54e;background:#fff}
.msf-input::placeholder{color:#94a3b8}

/* Country cards */
.msf-country-section{margin-bottom:1.1rem}
.msf-country-row{display:flex;gap:.55rem;margin-bottom:.55rem}
.msf-cc{display:flex;align-items:center;gap:.5rem;padding:.6rem .8rem;border:2px solid #e2e8f0;border-radius:10px;cursor:pointer;transition:all .2s;background:#f8fafc;flex:1;min-width:0}
.msf-cc:hover{border-color:#9ec54e;background:#f5fbea}
.msf-cc.checked{border-color:#9ec54e;background:#f0f8e0}
.msf-flag{font-size:.95rem;flex-shrink:0}
.msf-cn{font-size:.78rem;color:#334155;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.msf-cc.checked .msf-cn{color:#0f3d6e;font-weight:700}
.msf-cbox{width:14px;height:14px;min-width:14px;border:2px solid #cbd5e1;border-radius:3px;display:flex;align-items:center;justify-content:center;background:#fff;margin-left:auto;flex-shrink:0;transition:all .2s}
.msf-cc.checked .msf-cbox{background:#9ec54e;border-color:#9ec54e}

/* Check cards */
.msf-check-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin-bottom:1.4rem}
.msf-grid4{grid-template-columns:repeat(4,1fr)}
.msf-check{display:flex;align-items:center;gap:.7rem;padding:.75rem .9rem;border:2px solid #e2e8f0;border-radius:11px;cursor:pointer;transition:all .2s;background:#f8fafc}
.msf-check:hover{border-color:#9ec54e;background:#f5fbea}
.msf-check.checked{border-color:#9ec54e;background:#f0f8e0}
.msf-chbox{width:18px;height:18px;min-width:18px;border:2px solid #cbd5e1;border-radius:4px;display:flex;align-items:center;justify-content:center;background:#fff;transition:all .2s}
.msf-check.checked .msf-chbox{background:#9ec54e;border-color:#9ec54e}
.msf-tick{color:#fff;font-size:.65rem;display:none;font-weight:800;line-height:1}
.msf-cc.checked .msf-tick,.msf-check.checked .msf-tick{display:block}
.msf-chlabel{font-size:.84rem;color:#334155;font-weight:500;line-height:1.3}

/* Contact fields */
.msf-field-grid{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-bottom:.9rem}
.msf-field-single{margin-bottom:.9rem}
.msf-field-label{display:block;font-size:.7rem;font-weight:700;color:#0f3d6e;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.28rem}
.msf-field-input{width:100%;padding:.68rem .95rem;border:2px solid #e2e8f0;border-radius:9px;font-family:'Outfit',sans-serif;font-size:.88rem;color:#07192a;background:#f8fafc;outline:none;transition:border-color .2s}
.msf-field-input:focus{border-color:#9ec54e;background:#fff}
.msf-field-input::placeholder{color:#94a3b8}

/* Buttons */
.msf-btn-row{display:flex;gap:1rem;margin-top:1.4rem}
.msf-btn-back{flex:0 0 auto;padding:.8rem 1.4rem;border:2px solid #e2e8f0;border-radius:100px;background:#fff;color:#64748b;font-family:'Outfit',sans-serif;font-weight:600;font-size:.88rem;cursor:pointer;transition:all .2s}
.msf-btn-back:hover{border-color:#9ec54e;color:#0f3d6e}
.msf-btn-next{flex:1;padding:.85rem;border:none;border-radius:100px;background:#9ec54e;color:#fff;font-family:'Outfit',sans-serif;font-weight:700;font-size:.92rem;cursor:pointer;transition:background .2s}
.msf-btn-next:hover{background:#7a9a1e}
.msf-note{font-size:.7rem;color:#94a3b8;text-align:center;margin-top:.7rem}
.msf-success{background:#f0f7e0;border:1px solid rgba(158,197,78,.4);color:#3d6b0a;border-radius:10px;padding:1rem;text-align:center;font-size:.9rem;font-weight:600;margin-top:.75rem;display:none}
.msf-error{background:#fff0f0;border:1px solid rgba(200,0,0,.2);color:#c00;border-radius:10px;padding:1rem;text-align:center;font-size:.9rem;margin-top:.75rem;display:none}

@media(max-width:600px){
  .msf-check-grid{grid-template-columns:1fr}
  .msf-grid4{grid-template-columns:1fr 1fr}
  .msf-field-grid{grid-template-columns:1fr}
  .msf-country-row{flex-wrap:wrap}
}

/* Trust bar außerhalb Hero (Startseite) */
.hero + .trust-bar {
  background: #f7f9f4;
  border-top: none;
  border-bottom: 1px solid #e2e8f0;
  margin-top: 0;
}
.hero + .trust-bar .trust-item {
  color: #253e52;
  font-weight: 600;
}
.hero + .trust-bar .trust-dot {
  background: #9ec54e;
}
.hero + .trust-bar .trust-divider {
  background: #dde2d4;
}

/* Länder-Karten — Text nicht abschneiden */
.msf-cn {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  font-size: .76rem;
  line-height: 1.2;
}
.msf-cc {
  padding: .65rem .7rem;
}
