:root{
  --navy:#071842;
  --teal:#087987;
  --teal-dark:#006b75;
  --purple:#673c86;
  --blue:#0876bd;
  --ink:#172234;
  --muted:#5b6878;
  --cream:#fff8ee;
  --cream-2:#fff0d9;
  --line:#d9e0e5;
}
*{box-sizing:border-box}
html{scroll-behavior:auto}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}
a{color:inherit}
button{font-family:inherit}
.home-shell{min-height:100vh;background:#fff}

/* HERO – fixed geometry on desktop */

/* WORLDWIDE HELP logos – approved header placement */
.hero-side-logo{
  position:absolute;
  z-index:2;
  top:48px;
  width:clamp(138px,9.4vw,178px);
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:50%;
  display:block;
  pointer-events:none;
  user-select:none;
}
.hero-side-logo-left{left:max(28px,calc((100vw - 1740px)/2 + 28px))}
.hero-side-logo-right{right:max(28px,calc((100vw - 1740px)/2 + 28px))}

.hero{
  position:relative;
  overflow:hidden;
  background:url("/assets/home-bg.svg") center bottom/cover no-repeat;
  padding:26px 24px 24px;
}
.hero-inner{
  width:min(1440px,100%);
  margin:0 auto;
  text-align:center;
  direction:ltr !important;
}
.brand{
  margin:0;
  color:var(--navy);
  font-size:clamp(3.2rem,6.4vw,6.2rem);
  letter-spacing:.035em;
  line-height:.96;
  font-weight:900;
}
.slogan{
  height:48px;
  margin:10px 0 0;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--teal);
  font-size:clamp(1.25rem,2.05vw,2rem);
  font-weight:850;
  white-space:nowrap;
  overflow:hidden;
}
.lang-heading{
  height:38px;
  margin:0 0 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  font-size:1rem;
  font-weight:900;
  letter-spacing:.02em;
  direction:ltr !important;
}
.globe{font-size:1.25rem}

/* 22 buttons: immutable positions */
.language-grid{
  width:min(1240px,100%);
  height:150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  grid-template-rows:repeat(3,42px);
  gap:12px 14px;
  align-content:start;
  direction:ltr !important;
}
.lang-btn{
  width:100%;
  min-width:0;
  height:42px;
  padding:0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid #ccd5dc;
  border-radius:10px;
  background:rgba(255,255,255,.96);
  color:#111927;
  font-size:.94rem;
  font-weight:750;
  line-height:1;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(30,48,68,.08);
  direction:ltr !important;
  overflow:hidden;
}
.lang-btn.active{
  border-color:var(--teal);
  outline:2px solid rgba(8,121,135,.16);
  outline-offset:0;
}
.flag-img{
  width:18px !important;
  height:12px !important;
  min-width:18px;
  max-width:18px;
  min-height:12px;
  max-height:12px;
  object-fit:cover;
  display:block;
  flex:0 0 18px;
  border-radius:1px;
  box-shadow:0 0 0 1px rgba(0,0,0,.12);
}
.lang-name{
  display:block;
  min-width:0;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  line-height:1.1;
}

/* cards */
.cards-wrap{
  width:min(1450px,calc(100% - 38px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.help-card{
  height:500px;
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid #d8dde2;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(23,39,59,.10);
  text-align:center;
}
.card-photo{
  width:100%;
  height:205px;
  object-fit:cover;
  display:block;
}
.icon-bubble{
  position:absolute;
  top:163px;
  left:50%;
  transform:translateX(-50%);
  width:92px;
  height:92px;
  border-radius:50%;
  border:3px solid #fff;
  display:grid;
  place-items:center;
  color:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.icon-bubble svg{width:52px;height:52px}
.dep .icon-bubble{background:var(--teal)}
.viol .icon-bubble{background:var(--purple)}
.bully .icon-bubble{background:var(--blue)}
.card-body{
  height:295px;
  padding:56px 26px 24px;
  display:grid;
  grid-template-rows:112px 66px 50px;
  justify-items:center;
  align-items:center;
}
.help-card h2{
  width:100%;
  height:112px;
  margin:0;
  padding:0 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  line-height:1.1;
  font-size:clamp(1.25rem,1.75vw,1.85rem);
  font-weight:900;
  text-transform:uppercase;
}
.dep h2{color:var(--teal-dark)}
.viol h2{color:var(--purple)}
.bully h2{color:#075da2}
.card-copy{
  width:100%;
  height:66px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  line-height:1.45;
  font-size:1rem;
}
.help-btn{
  width:245px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:0 18px;
  border:0;
  border-radius:7px;
  color:#fff;
  font-weight:900;
  letter-spacing:.03em;
  cursor:pointer;
  text-decoration:none;
}
.dep .help-btn{background:var(--teal)}
.viol .help-btn{background:var(--purple)}
.bully .help-btn{background:var(--blue)}
.arrow{font-size:1.4rem}

/* Dynamic texts can be RTL without ever changing layout direction */
.dynamic-rtl{
  direction:rtl !important;
  unicode-bidi:plaintext;
}
.dynamic-ltr{
  direction:ltr !important;
  unicode-bidi:plaintext;
}

/* urgent */
.urgent{
  width:min(1450px,calc(100% - 38px));
  min-height:62px;
  margin:18px auto 16px;
  padding:10px 20px;
  border:1px solid #badde1;
  border-radius:9px;
  background:#eef8f9;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  overflow:hidden;
  font-size:.96rem;
  line-height:1.35;
}
.urgent-icon{
  width:32px;height:32px;display:grid;place-items:center;color:var(--teal);font-size:1.35rem;flex:0 0 auto
}
.urgent strong{color:var(--teal-dark)}
.status{
  width:min(900px,calc(100% - 38px));
  margin:14px auto 0;
  padding:11px 15px;
  border-radius:10px;
  background:#fff4dd;
  border:1px solid #edcf95;
  text-align:center;
  display:none;
}
.status.show{display:block}

/* Footer approved style */
.footer-ornament{
  width:min(1450px,calc(100% - 38px));
  height:32px;
  margin:8px auto 0;
  display:flex;
  align-items:center;
  gap:10px;
  color:#a86d61;
}
.footer-ornament::before,.footer-ornament::after{
  content:"";
  height:1px;
  flex:1;
  background:#d2a8a0;
}
.footer-ornament span{font-size:1.55rem}

.site-footer{
  margin-top:0;
  background:linear-gradient(180deg,#fff4e4 0%,#ffead2 100%);
  border-top:1px solid #efd7be;
}
.footer-inner{
  width:min(1450px,calc(100% - 38px));
  min-height:118px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 1fr 1.1fr;
  align-items:center;
}
.footer-col{min-width:0;padding:16px 26px}
.footer-col + .footer-col{border-left:1px solid #dfc5a9}
.footer-brand-col{
  display:flex;align-items:center;gap:18px;text-align:left;
}
.footer-logo{
  width:54px;height:54px;border:2px solid var(--teal);border-radius:50%;
  display:grid;place-items:center;color:var(--teal);font-size:1.25rem;font-weight:900;flex:0 0 auto
}
.footer-brand{color:var(--teal-dark);font-weight:900;font-size:1.15rem;letter-spacing:.02em}
.project-line{margin-top:7px;font-size:.93rem;white-space:nowrap}
.project-link{color:var(--teal-dark);font-weight:700;text-underline-offset:3px}
.footer-center{text-align:center}
.footer-slogan{
  height:32px;
  display:flex;align-items:center;justify-content:center;
  color:var(--teal-dark);font-size:1.06rem;font-weight:800;overflow:hidden
}
.footer-mini-ornament{display:flex;align-items:center;justify-content:center;gap:8px;color:var(--teal)}
.footer-mini-ornament span{display:block;width:105px;height:1px;background:#9cc8cc}
.footer-right{text-align:center}
.legal-links{display:flex;justify-content:center;gap:14px;align-items:center;color:#246c74;font-size:.93rem}
.legal-links a{text-underline-offset:3px}
.visitor-box{
  width:230px;height:42px;margin:12px auto 0;
  border:1px solid #82b7bc;border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  color:#126b74;font-size:.9rem;font-weight:700;overflow:hidden
}
.footer-bottom{
  height:38px;
  background:#087783;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  font-size:.9rem;
  font-weight:700;
  overflow:hidden;
}

/* medium */
@media (max-width:1199px) and (min-width:721px){
  .hero-side-logo{top:42px;width:86px}
  .hero-side-logo-left{left:14px}
  .hero-side-logo-right{right:14px}

  .language-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
    grid-template-rows:repeat(4,42px);
    height:204px;
  }
  .hero-inner{min-height:auto}
  .cards-wrap{gap:16px}
  .help-card h2{font-size:1.35rem}
  .footer-inner{grid-template-columns:1fr 1fr 1fr}
  .footer-col{padding:14px}
  .project-line{white-space:normal}
}

/* mobile */
@media (max-width:720px){
  .hero-side-logo{top:12px;width:54px}
  .hero-side-logo-left{left:8px}
  .hero-side-logo-right{right:8px}
  .brand{padding-left:48px;padding-right:48px}

  .hero{padding:28px 14px 26px}
  .brand{font-size:clamp(2.7rem,13vw,4.2rem);line-height:.95}
  .slogan{
    height:64px;
    white-space:normal;
    font-size:clamp(1.15rem,5.4vw,1.45rem);
    line-height:1.2;
  }
  .lang-heading{height:48px;font-size:.95rem}
  .language-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:none;
    grid-auto-rows:54px;
    gap:10px;
    height:auto;
    width:100%;
  }
  .lang-btn{height:54px;font-size:1rem}
  .flag-img{width:22px !important;height:15px !important;min-width:22px;max-width:22px;min-height:15px;max-height:15px;flex-basis:22px}

  .cards-wrap{width:min(100% - 22px,720px);grid-template-columns:1fr;gap:18px}
  .help-card{height:480px}
  .card-photo{height:190px}
  .icon-bubble{top:151px;width:82px;height:82px}
  .icon-bubble svg{width:46px;height:46px}
  .card-body{height:290px;padding:48px 18px 20px;grid-template-rows:112px 68px 50px}
  .help-card h2{font-size:clamp(1.35rem,7vw,1.75rem)}
  .card-copy{font-size:.98rem}

  .urgent{
    width:min(100% - 22px,720px);
    height:auto;
    min-height:76px;
    align-items:flex-start;
    text-align:left;
  }
  .footer-ornament{width:min(100% - 22px,720px)}
  .footer-inner{
    width:min(100% - 22px,720px);
    grid-template-columns:1fr;
    padding:8px 0;
  }
  .footer-col{padding:16px 10px;text-align:center}
  .footer-col + .footer-col{border-left:0;border-top:1px solid #dfc5a9}
  .footer-brand-col{justify-content:center;text-align:left}
  .project-line{white-space:normal}
  .footer-bottom{height:auto;min-height:44px;text-align:center;padding:10px 15px}
}

/* 24 languages: exactly 3 rows x 8 columns on large desktop */
@media (min-width:1200px){
  .language-grid{
    grid-template-columns:repeat(8,minmax(0,1fr)) !important;
    grid-template-rows:repeat(3,42px) !important;
    grid-auto-flow:row !important;
    height:150px !important;
  }
}

/* ===== Footer redesign approved on 08.08.2026 ===== */
.site-footer{
  margin-top:0;
  background:linear-gradient(180deg,#fff4e4 0%,#ffead2 100%);
  border-top:1px solid #efd7be;
}
.footer-top{
  width:min(1450px,calc(100% - 38px));
  margin:0 auto;
  padding:18px 24px 10px;
  display:grid;
  grid-template-columns:minmax(140px,220px) 1fr minmax(140px,220px);
  align-items:center;
  gap:16px;
}
.footer-top-logo-wrap{
  display:flex;
  align-items:center;
}
.footer-top-logo-left{justify-content:flex-start}
.footer-top-logo-right{justify-content:flex-end}
.footer-top-logo{
  width:clamp(112px,10vw,176px);
  height:auto;
  display:block;
}
.footer-top-center{
  text-align:center;
  min-width:0;
}
.footer-brand{
  color:var(--teal-dark);
  font-weight:900;
  font-size:clamp(1.8rem,3.2vw,3rem);
  letter-spacing:.02em;
  line-height:1.05;
}
.project-line{
  margin-top:10px;
  font-size:clamp(1rem,1.55vw,1.2rem);
  white-space:normal;
}
.project-link{
  color:var(--teal-dark);
  font-weight:700;
  text-underline-offset:4px;
}
.footer-motto-wrap{
  width:min(1450px,calc(100% - 38px));
  margin:0 auto;
  padding:6px 24px 12px;
  text-align:center;
}
.footer-slogan{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--teal-dark);
  font-size:clamp(1.55rem,3vw,2.35rem);
  font-weight:850;
  line-height:1.2;
  white-space:normal;
  overflow:visible;
}
.footer-mini-ornament{
  margin-top:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:var(--teal);
}
.footer-mini-ornament span{
  display:block;
  width:min(26vw,340px);
  max-width:340px;
  min-width:110px;
  height:1px;
  background:#84bcc1;
}
.footer-meta{
  width:min(1450px,calc(100% - 38px));
  margin:0 auto;
  padding:2px 24px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.legal-links{
  display:flex;
  justify-content:center;
  gap:14px;
  align-items:center;
  color:#246c74;
  font-size:.98rem;
  flex-wrap:wrap;
  text-align:center;
}
.legal-links a{text-underline-offset:3px}
.visitor-box{
  min-width:240px;
  width:auto;
  min-height:44px;
  padding:8px 18px;
  border:1px solid #82b7bc;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  color:#126b74;
  font-size:.94rem;
  font-weight:700;
  overflow:hidden;
  text-align:center;
}
.footer-bottom{
  min-height:58px;
  background:#087783;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 18px;
  font-size:clamp(.96rem,1.2vw,1.05rem);
  font-weight:750;
  text-align:center;
  overflow:visible;
}

@media (max-width:1199px) and (min-width:721px){
  .footer-top{
    grid-template-columns:150px 1fr 150px;
    padding:18px 16px 10px;
  }
  .footer-top-logo{width:112px}
  .footer-motto-wrap,.footer-meta{padding-left:16px;padding-right:16px}
}

@media (max-width:720px){
  .footer-top,
  .footer-motto-wrap,
  .footer-meta{
    width:min(100% - 22px,720px);
  }
  .footer-top{
    grid-template-columns:1fr;
    gap:10px;
    padding:16px 10px 8px;
  }
  .footer-top-logo-left,
  .footer-top-logo-right,
  .footer-top-center{justify-content:center;text-align:center}
  .footer-top-logo{width:96px}
  .footer-brand{font-size:clamp(1.45rem,7.8vw,2rem)}
  .project-line{font-size:1rem}
  .footer-motto-wrap{padding:4px 10px 12px}
  .footer-slogan{min-height:auto;font-size:clamp(1.3rem,6.6vw,1.7rem)}
  .footer-mini-ornament span{min-width:60px;width:28vw}
  .footer-meta{padding:0 10px 16px}
  .visitor-box{min-width:0;width:100%}
  .footer-bottom{min-height:50px;padding:12px 14px}
}


/* =====================================================
   FINAL EMERGENCY PANEL v30
   Fixed desktop geometry across ALL languages/countries
   ===================================================== */
.emergency-panel{
  width:min(1580px,calc(100% - 24px));
  height:190px;
  margin:18px auto 18px;
  display:grid;
  grid-template-columns:minmax(520px,38%) minmax(340px,31%) minmax(390px,31%);
  border:1.5px solid #e13a2d;
  border-radius:18px;
  overflow:hidden;
  background:#fff9f4;
  box-shadow:0 9px 24px rgba(129,36,23,.11);
}
.emergency-lead{
  width:100%;height:100%;min-width:0;
  display:grid;grid-template-columns:96px minmax(0,1fr);align-items:center;gap:22px;
  padding:24px 30px;color:#fff;background:linear-gradient(135deg,#d92e24 0%,#b31414 100%);
}
.emergency-siren{
  width:82px;height:82px;border-radius:50%;display:grid;place-items:center;
  background:#fff8f0;border:2px solid rgba(255,255,255,.75);color:#d12d22;
  box-shadow:0 4px 12px rgba(72,10,6,.16);flex:none;
}
.emergency-siren-svg{width:56px;height:56px;display:block}
.emergency-lead-copy{min-width:0;display:flex;flex-direction:column;justify-content:center}
.emergency-lead h2{
  margin:0;color:#fff;font-size:clamp(2rem,2.35vw,2.65rem);line-height:1.05;font-weight:950;letter-spacing:-.015em;
  min-height:58px;max-height:94px;display:flex;align-items:center;white-space:normal;overflow:visible;text-wrap:balance;
}
.emergency-lead h2.is-long{font-size:clamp(1.72rem,2vw,2.25rem)}
.emergency-lead p{
  margin:7px 0 0;color:#fff;font-size:clamp(.96rem,1.02vw,1.08rem);line-height:1.35;font-weight:680;
  max-width:470px;white-space:normal;overflow:visible;
}
.emergency-lead p.is-long{font-size:.94rem;line-height:1.3}
.emergency-picker{
  width:100%;height:100%;min-width:0;padding:21px 22px 16px;
  display:flex;flex-direction:column;justify-content:center;border-right:1px solid #efd4c7;background:#fffaf6;
}
.emergency-country-label{margin:0 0 8px;font-size:.92rem;font-weight:850;color:#4a2a20}
.emergency-select-shell{
  position:relative;width:100%;height:52px;display:flex;align-items:center;
  border:1px solid #e9aa99;border-radius:10px;background:#fff;overflow:hidden;
}
.emergency-selected-flag{width:29px;height:19px;margin-left:14px;flex:0 0 29px;object-fit:cover;border-radius:2px;box-shadow:0 0 0 1px rgba(0,0,0,.12);pointer-events:none}
.emergency-country-select{width:100%;height:100%;min-width:0;padding:0 38px 0 10px;border:0;outline:0;background:transparent;color:#241b18;font-size:1rem;font-weight:750;cursor:pointer}
.emergency-services{
  width:100%;height:100%;min-width:0;padding:16px 20px;display:flex;flex-direction:column;justify-content:center;gap:10px;background:#fff9f4;
}
.emergency-services.single-service{justify-content:center}
.emergency-service-row{
  min-height:72px;display:grid;grid-template-columns:46px minmax(0,1fr);align-items:center;gap:12px;
  padding:10px 16px;border:1px solid #efb4a6;border-radius:12px;background:#fff;box-shadow:0 2px 7px rgba(109,39,26,.05);overflow:hidden;
}
.emergency-service-icon{
  width:40px;height:40px;border-radius:50%;display:grid;place-items:center;background:#fff0ea;color:#d9291d;font-size:1.2rem;font-weight:900;
}
.emergency-service-copy{min-width:0;height:100%;display:grid;grid-template-rows:auto 1fr;align-items:center}
.emergency-service-label{min-width:0;color:#2b211e;font-size:clamp(.97rem,1.05vw,1.15rem);line-height:1.12;font-weight:850;white-space:normal;overflow:visible}
.emergency-service-number{
  display:block;width:100%;color:#d9291d;font-size:clamp(2rem,2.3vw,2.55rem);line-height:1;font-weight:950;text-align:right;letter-spacing:.01em;white-space:nowrap;
}

@media (max-width:1320px) and (min-width:981px){
  .emergency-panel{height:198px;grid-template-columns:minmax(430px,40%) minmax(290px,29%) minmax(340px,31%)}
  .emergency-lead{grid-template-columns:76px minmax(0,1fr);gap:16px;padding:20px}
  .emergency-siren{width:68px;height:68px}.emergency-siren-svg{width:46px;height:46px}
  .emergency-lead h2{font-size:clamp(1.7rem,2.5vw,2.15rem)}.emergency-lead h2.is-long{font-size:1.65rem}
  .emergency-lead p{font-size:.91rem}.emergency-picker{padding:18px 14px 14px}.emergency-services{padding:14px}
  .emergency-service-row{grid-template-columns:38px minmax(0,1fr);padding:9px 11px}.emergency-service-icon{width:34px;height:34px}
  .emergency-service-number{font-size:2rem}
}

@media (max-width:980px) and (min-width:721px){
  .emergency-panel{height:auto;grid-template-columns:1fr 1fr;width:min(100% - 28px,920px)}
  .emergency-lead{grid-column:1/3;min-height:150px;grid-template-columns:76px minmax(0,1fr);padding:22px 26px}
  .emergency-siren{width:68px;height:68px}.emergency-siren-svg{width:46px;height:46px}
  .emergency-picker{min-height:150px;border-right:1px solid #efd4c7}.emergency-services{min-height:150px}
  .emergency-service-row{min-height:62px}.emergency-service-number{font-size:1.9rem}
}

@media (max-width:720px){
  .emergency-panel{width:min(100% - 22px,720px);height:auto;grid-template-columns:1fr;border-radius:16px;margin:14px auto 16px}
  .emergency-lead{height:auto;min-height:170px;grid-template-columns:64px minmax(0,1fr);gap:14px;padding:18px 16px}
  .emergency-siren{width:58px;height:58px}.emergency-siren-svg{width:39px;height:39px}
  .emergency-lead h2{min-height:0;max-height:none;font-size:clamp(1.5rem,7.5vw,2rem)}.emergency-lead h2.is-long{font-size:clamp(1.35rem,6.8vw,1.75rem)}
  .emergency-lead p,.emergency-lead p.is-long{max-width:none;font-size:.94rem;line-height:1.35}
  .emergency-picker{height:auto;min-height:132px;padding:16px;border-right:0;border-bottom:1px solid #efd4c7}
  .emergency-select-shell{height:54px}
  .emergency-services{height:auto;min-height:120px;padding:14px 16px 16px}
  .emergency-service-row{min-height:76px;grid-template-columns:42px minmax(0,1fr);padding:9px 12px}.emergency-service-icon{width:38px;height:38px}
  .emergency-service-label{font-size:1rem}.emergency-service-number{font-size:2rem}
}


/* =====================================================
   FINALER HEADER + NAVIGATION + NOTFALLBEREICH v50
   ===================================================== */

/* Header links */
.hero-logo-link{display:block;text-decoration:none}
.brand-link{display:inline-block;text-decoration:none;color:inherit;border-radius:12px}
.brand-link:focus-visible,.hero-logo-link:focus-visible{outline:3px solid rgba(8,121,135,.34);outline-offset:5px}
.footer-logo-link{display:inline-flex;align-items:center;justify-content:center;line-height:0;text-decoration:none}
.footer-logo-link:focus-visible{outline:3px solid rgba(8,121,135,.35);outline-offset:5px;border-radius:50%}

/* Navigation – identical on all WORLDWIDE HELP pages */
.site-nav{
  width:min(1240px,100%);
  margin:15px auto 0;
  padding:11px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  flex-wrap:wrap;
  border:1px solid rgba(8,121,135,.18);
  border-radius:14px;
  background:rgba(255,255,255,.88);
  box-shadow:0 4px 15px rgba(18,44,64,.07);
  direction:ltr!important;
}
.site-nav-link{
  min-height:38px;
  padding:8px 17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:#17314e;
  font-size:.95rem;
  font-weight:800;
  line-height:1.15;
  text-decoration:none;
  text-align:center;
  transition:background .15s ease,color .15s ease,transform .15s ease;
}
.site-nav-link:hover{background:#edf8f9;color:var(--teal-dark);transform:translateY(-1px)}
.site-nav-link.active{background:var(--teal);color:#fff;box-shadow:0 3px 10px rgba(8,121,135,.16)}
.site-nav-link:focus-visible{outline:3px solid rgba(8,121,135,.25);outline-offset:2px}

/* Give the header a little more room for the navigation. */
.hero{padding-bottom:30px}

/* Final emergency panel */
.emergency-panel{
  width:min(1600px,calc(100% - 24px));
  height:212px;
  margin:28px auto 20px;
  grid-template-columns:560px minmax(330px,1fr) 470px;
  border-radius:18px;
}
.emergency-lead{
  width:560px;
  min-width:560px;
  max-width:560px;
  height:212px;
  grid-template-columns:92px minmax(0,1fr);
  gap:22px;
  padding:24px 30px;
}
.emergency-lead h2{
  min-height:56px;
  max-height:92px;
  font-size:clamp(1.95rem,2.25vw,2.55rem);
  line-height:1.04;
}
.emergency-lead h2.is-long{font-size:clamp(1.62rem,1.85vw,2.05rem)}
.emergency-lead p{max-width:455px;font-size:1rem;line-height:1.32}
.emergency-lead p.is-long{font-size:.92rem;line-height:1.29}

/* Modern emergency icon: shield/phone, no retro concentric circles. */
.emergency-siren{
  position:relative;
  width:78px;
  height:78px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:#c6241c;
  background:linear-gradient(145deg,#fff 0%,#fff3ee 100%);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(75,12,8,.18),inset 0 0 0 1px rgba(198,36,28,.08);
}
.emergency-siren::after{display:none!important}
.emergency-siren-svg{width:54px;height:54px;display:block;filter:none}

/* Country choice always visually centered. */
.emergency-picker{
  height:212px;
  padding:22px 24px;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.emergency-country-label{width:100%;text-align:center;margin-bottom:10px;font-size:1rem}
.emergency-select-shell{width:min(100%,370px);height:56px;margin:0 auto}
.emergency-country-select{font-size:1.03rem;font-weight:800;text-align:center;text-align-last:center}
.emergency-selected-flag{margin-left:14px}

/* Service cards: modern icons, label above, number below and right aligned. */
.emergency-services{height:212px;padding:16px 20px;gap:10px}
.emergency-service-row{
  min-height:80px;
  grid-template-columns:50px minmax(0,1fr);
  gap:14px;
  padding:10px 16px;
  border-radius:13px;
}
.emergency-service-icon{
  width:44px;
  height:44px;
  align-self:center;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#fff3ef;
  color:#d1281d;
  box-shadow:inset 0 0 0 1px rgba(209,40,29,.08);
}
.emergency-service-icon svg{width:32px;height:32px;display:block}
.emergency-service-copy{
  min-width:0;
  height:100%;
  display:grid;
  grid-template-rows:auto auto;
  align-content:center;
  gap:5px;
}
.emergency-service-label{
  display:block;
  width:100%;
  color:#2b211e;
  font-size:clamp(1rem,1.02vw,1.12rem);
  line-height:1.15;
  font-weight:850;
  white-space:normal;
  overflow-wrap:anywhere;
}
.emergency-service-number{
  display:block;
  width:100%;
  color:#d9291d;
  font-size:clamp(2.15rem,2.45vw,2.8rem);
  line-height:.95;
  font-weight:950;
  text-align:right;
  letter-spacing:.005em;
  white-space:nowrap;
}
.emergency-services.single-service .emergency-service-row{min-height:112px}
.emergency-services.single-service .emergency-service-number{font-size:clamp(2.45rem,3vw,3.3rem)}

@media (max-width:1320px) and (min-width:981px){
  .emergency-panel{height:212px;grid-template-columns:430px minmax(280px,1fr) minmax(350px,420px)}
  .emergency-lead{width:430px;min-width:430px;max-width:430px;height:212px;grid-template-columns:72px minmax(0,1fr);gap:15px;padding:20px}
  .emergency-siren{width:64px;height:64px;border-radius:17px}.emergency-siren-svg{width:44px;height:44px}
  .emergency-lead h2{font-size:clamp(1.55rem,2.1vw,1.95rem)}.emergency-lead h2.is-long{font-size:1.45rem}
  .emergency-lead p,.emergency-lead p.is-long{font-size:.87rem;line-height:1.26}
  .emergency-picker,.emergency-services{height:212px}
  .emergency-picker{padding:18px 14px}.emergency-services{padding:14px}
  .emergency-service-row{grid-template-columns:44px minmax(0,1fr);gap:10px;padding:9px 11px}
  .emergency-service-icon{width:40px;height:40px}.emergency-service-icon svg{width:28px;height:28px}
  .emergency-service-number{font-size:2.15rem}
}

@media (max-width:980px) and (min-width:721px){
  .site-nav{width:min(920px,100%);gap:6px;padding:9px}
  .site-nav-link{padding:8px 12px;font-size:.89rem}
  .emergency-panel{height:auto;grid-template-columns:1fr 1fr;width:min(100% - 28px,920px);margin-top:24px}
  .emergency-lead{grid-column:1/3;width:100%;min-width:0;max-width:none;height:160px;min-height:160px;grid-template-columns:76px minmax(0,1fr);padding:22px 26px}
  .emergency-siren{width:66px;height:66px}.emergency-siren-svg{width:46px;height:46px}
  .emergency-picker{height:160px;min-height:160px;border-right:1px solid #efd4c7}
  .emergency-services{height:160px;min-height:160px}
  .emergency-service-row{min-height:66px}.emergency-service-number{font-size:2rem}
}

@media (max-width:720px){
  .hero{padding-bottom:22px}
  .site-nav{
    width:100%;
    margin-top:16px;
    padding:9px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
    background:rgba(255,255,255,.94);
  }
  .site-nav-link{min-height:42px;padding:7px 9px;font-size:.86rem}
  .site-nav-link:first-child{grid-column:1/3}
  .emergency-panel{width:min(100% - 22px,720px);height:auto;grid-template-columns:1fr;border-radius:16px;margin:24px auto 16px}
  .emergency-lead{width:100%;min-width:0;max-width:none;height:auto;min-height:176px;grid-template-columns:64px minmax(0,1fr);gap:14px;padding:18px 16px}
  .emergency-siren{width:58px;height:58px;border-radius:15px}.emergency-siren-svg{width:40px;height:40px}
  .emergency-lead h2{min-height:0;max-height:none;font-size:clamp(1.5rem,7.3vw,1.95rem)}.emergency-lead h2.is-long{font-size:clamp(1.32rem,6.4vw,1.68rem)}
  .emergency-lead p,.emergency-lead p.is-long{max-width:none;font-size:.92rem;line-height:1.34}
  .emergency-picker{width:100%;height:auto;min-height:124px;padding:16px;border-right:0;border-bottom:1px solid #efd4c7}
  .emergency-select-shell{width:100%;height:56px}
  .emergency-services{width:100%;height:auto;min-height:132px;padding:14px 16px 16px}
  .emergency-service-row{min-height:88px;grid-template-columns:46px minmax(0,1fr);padding:10px 14px}
  .emergency-service-icon{width:42px;height:42px}.emergency-service-icon svg{width:30px;height:30px}
  .emergency-service-label{font-size:1rem}
  .emergency-service-number{font-size:2.35rem}
  .emergency-services.single-service .emergency-service-row{min-height:96px}
  .emergency-services.single-service .emergency-service-number{font-size:2.65rem}
}

/* ===== KORREKTUR 09.08.2026 – freigegebene 5 Punkte ===== */

/* Großes Notrufsymbol: runder, hochwertiger Notruf-Button nach Referenz,
   bewusst ohne feste Notrufnummer, damit er international einsetzbar bleibt. */
.emergency-siren{
  position:relative;
  width:82px;
  height:82px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 34% 24%,rgba(255,255,255,.68) 0 7%,rgba(255,255,255,.18) 8% 20%,transparent 21%),
    linear-gradient(145deg,#ff4a44 0%,#e81917 44%,#b9090b 100%);
  border:5px solid #e7e7e7;
  box-shadow:
    0 0 0 2px #727272,
    0 0 0 4px #f7f7f7,
    0 8px 18px rgba(85,0,0,.32),
    inset 0 2px 2px rgba(255,255,255,.64),
    inset 0 -8px 12px rgba(111,0,0,.22);
  color:#fff;
}
.emergency-siren::before{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.7);
  box-shadow:inset 0 0 0 1px rgba(90,0,0,.16);
  pointer-events:none;
}
.emergency-siren::after{
  content:""!important;
  display:block!important;
  position:absolute;
  left:16%;
  right:16%;
  top:10%;
  height:24%;
  border-radius:50%;
  background:linear-gradient(to bottom,rgba(255,255,255,.42),rgba(255,255,255,0));
  pointer-events:none;
}
.emergency-cross{
  position:relative;
  z-index:2;
  width:45px;
  height:45px;
  display:block;
  filter:drop-shadow(0 2px 1px rgba(90,0,0,.18));
}
.emergency-cross::before,
.emergency-cross::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:2px;
  background:#fff;
}
.emergency-cross::before{width:17px;height:45px}
.emergency-cross::after{width:45px;height:17px}

/* Polizei/Rettungsdienst: Icon, Bezeichnung und Nummer sitzen jetzt
   optisch auf einer gemeinsamen mittleren Achse. */
.emergency-service-row{
  align-items:center;
}
.emergency-service-copy{
  height:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  grid-template-rows:1fr;
  align-items:center;
  align-content:center;
  column-gap:16px;
}
.emergency-service-label{
  align-self:center;
  margin:0;
}
.emergency-service-number{
  align-self:center;
  margin:0;
  line-height:1;
}

/* Wichtiger Hinweis auf "Über uns". */
.about-emergency-warning{
  color:#d51f18;
  font-weight:900;
}

@media (max-width:1320px) and (min-width:981px){
  .emergency-siren{width:68px;height:68px;border-width:4px}
  .emergency-cross{width:36px;height:36px}
  .emergency-cross::before{width:14px;height:36px}
  .emergency-cross::after{width:36px;height:14px}
  .emergency-service-copy{column-gap:10px}
}
@media (max-width:980px) and (min-width:721px){
  .emergency-siren{width:70px;height:70px;border-width:4px}
  .emergency-cross{width:38px;height:38px}
  .emergency-cross::before{width:14px;height:38px}
  .emergency-cross::after{width:38px;height:14px}
}
@media (max-width:720px){
  .emergency-siren{width:60px;height:60px;border-width:4px}
  .emergency-cross{width:32px;height:32px}
  .emergency-cross::before{width:12px;height:32px}
  .emergency-cross::after{width:32px;height:12px}
  .emergency-service-copy{column-gap:10px}
}
