/* proWEGio theme (clean, modern, subtle animations)
   - Accessible: focus styles, reduced motion, color contrast
   - Subtle, GPU-friendly animations via IntersectionObserver + transforms
   - Mobile-first responsive layout
*/

/* =========================================================
   1) Design Tokens / Variables
   ========================================================= */
@font-face{
  font-family:"Manrope";
  src:url("../fonts/manrope-400.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:optional;
}
@font-face{
  font-family:"Manrope";
  src:url("../fonts/manrope-500.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:optional;
}
@font-face{
  font-family:"Manrope";
  src:url("../fonts/manrope-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:optional;
}
@font-face{
  font-family:"Manrope";
  src:url("../fonts/manrope-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:optional;
}
@font-face{
  font-family:"Manrope";
  src:url("../fonts/manrope-800.woff2") format("woff2");
  font-weight:800;
  font-style:normal;
  font-display:optional;
}

:root{
  /* Core colors */
  --primary:#223258;
  --accent:#b6708e;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#f7f8fb;

  /* CTA colors */
  --cta-primary:#0369a1;
  --cta-primary-hover:#075985;

  /* Surfaces */
  --surface:#ffffff;
  --surface-glass-85: rgba(255,255,255,.85);
  --surface-glass-92: rgba(255,255,255,.92);

  /* Borders */
  --border-soft:#e6e9f2;
  --border-strong:#cbd5e1;
  --ring:#d7dcef;

  /* Radii */
  --radius-sm: 8px;
  --radius:12px;
  --radius-lg:18px;
  --radius-pill: 999px;
  --radius-panel:16px;

  /* Shadows */
  --shadow-lg:0 24px 60px rgba(15,23,42,.12);
  --shadow:0 10px 32px rgba(15,23,42,.10);
  --shadow-sm:0 2px 12px rgba(15,23,42,.08);
  --shadow-panel: 0 12px 30px rgba(0,0,0,0.12);
  --shadow-soft:
    0 10px 30px rgba(2, 6, 23, 0.06),
    0 6px 16px rgba(2, 6, 23, 0.04);

  /* Motion */
  --t-fast: .15s ease;
  --t-med: .18s ease;
  --t-slow: .6s cubic-bezier(.4,0,.2,1);

  /* Blur */
  --blur-md: blur(10px);

  /* ===== Header Layout ===== */
  --header-pill-pad-y: 12px;
  --header-pill-pad-x: 14px;

  /* ===== CTA/Controls Height ===== */
  --header-cta-height: 44px;
  --header-cta-radius: 14px;
  --header-cta-pad-x: 16px;

  /* ===== SOS Switch Point ===== */
  --header-sos-switch: 700px;

  /* ===== Flag Buttons (normal) ===== */
  --flag-min-width: 44px;
  --flag-pad-x: 10px;
  --flag-radius: 12px;

  /* ===== Flag Stack Mode ===== */
  --flag-stack-height: 20px;
  --flag-stack-pad-x: 4px;
  --flag-stack-radius: 8px;

  /* ===== Dropdown Panel ===== */
  --mobile-panel-width: 320px;
  --mobile-panel-max-vw: 92vw;
  --mobile-panel-offset-y: 10px;
  --mobile-panel-right: 0px;

  /* ===== Breakpoints (dokumentativ) =====
     Desktop-Nav <-> Burger bei 740px
  */

  /* ===== Language Flag Buttons ===== */
  --lang-flag-height: var(--header-cta-height);
  --lang-flag-min-width: var(--flag-min-width);
  --lang-flag-pad-x: var(--flag-pad-x);
  --lang-flag-radius: var(--flag-radius);

  --lang-flag-bg: transparent;
}

/* =========================================================
   2) Reset / Base
   ========================================================= */
*{box-sizing:border-box}
html,body{margin:0}
html{scroll-behavior:smooth}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg,#fff 0%, var(--bg) 65%);
  color: var(--ink);
  letter-spacing:-.01em;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
}

img{max-width:100%;height:auto;display:block}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1200px;margin-inline:auto;padding-inline:16px}

/* Accessibility */
:focus-visible{
  outline:3px solid color-mix(in oklab, var(--cta-primary), white 20%);
  outline-offset:3px;
  border-radius:10px
}

/* News drawer */
.news-tab{
  --news-drawer-width: min(420px, 100vw);
  --news-tab-thickness: 30px;
  --news-tab-pull: 0px;
  --news-tab-left: 0px;
  --news-tab-gap-offset: 0px;
  position:fixed;
  left:var(--news-tab-left);
  top:33%;
  transform:translateY(-50%) rotate(180deg) translateX(calc(-1 * var(--news-tab-pull)));
  writing-mode:vertical-rl;
  z-index:1001;
  border:0;
  border-radius:14px 0 0 14px;
  width:var(--news-tab-thickness);
  padding:8px 4px;
  background:rgba(16,185,129,.9);
  color:#fff;
  font-weight:700;
  font-size:.875rem;
  letter-spacing:.08em;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:left .28s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.news-tab::before{
  content:"";
  position:absolute;
  right:calc(-1 * var(--news-tab-pull) - var(--news-tab-gap-offset));
  top:0;
  width:var(--news-tab-pull);
  height:100%;
  background:inherit;
  border-radius:0;
  transition:width .2s ease, right .2s ease;
}
.news-tab.is-open{
  --news-tab-left: var(--news-drawer-width);
  --news-tab-gap-offset: 0px;
  z-index:1001;
}
.news-tab:hover{
  --news-tab-pull: 6px;
  background:#0ea77a;
  box-shadow:0 6px 18px rgba(16,185,129,.35);
}
.news-tab.is-open:hover::before{
  transition:none;
  z-index:-1;
}
.news-tab:focus-visible{
  outline:3px solid rgba(14,165,233,.35);
  outline-offset:2px;
}

.news-drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:999;
}
.news-drawer-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}
.news-drawer{
  --news-drawer-width: min(420px, 100vw);
  position:fixed;
  top:5%;
  left:0;
  height:90%;
  width:var(--news-drawer-width);
  background:#fff;
  border-radius:0 18px 18px 0;
  box-shadow:var(--shadow-panel);
  transform:translateX(-100%);
  transition:transform .28s ease;
  z-index:1002;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.news-drawer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(90px 90px at 18% 18%, rgba(16,185,129,.14), transparent 60%),
    radial-gradient(140px 140px at 82% 12%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(160px 160px at 70% 80%, rgba(16,185,129,.10), transparent 65%),
    linear-gradient(180deg, rgba(16,185,129,.05), rgba(15,23,42,0));
  pointer-events:none;
  z-index:0;
}
.news-drawer > *{position:relative; z-index:1;}
.news-drawer.is-open{transform:translateX(0)}
.news-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--border-soft);
}
.news-drawer__eyebrow{
  font-size:12px;
  font-weight:700;
  color:#059669;
}
.news-drawer__title{
  font-size:18px;
  font-weight:800;
  color:var(--ink);
}
.news-drawer__close{
  border:0;
  background:transparent;
  padding:6px;
  border-radius:999px;
  color:#64748b;
  cursor:pointer;
}
.news-drawer__close:hover{background:#f1f5f9}
.news-drawer__icon{width:20px;height:20px}
.news-drawer__body{
  padding:16px 18px;
  overflow-y:auto;
  flex:1;
}
.news-drawer__foot{
  border-top:1px solid var(--border-soft);
  padding:12px 18px;
  font-size:12px;
  color:var(--muted);
}
.news-card{
  border:1px solid var(--border-soft);
  border-radius:14px;
  padding:12px;
  background:#fff;
}
.news-card--pinned{
  border-color:rgba(16,185,129,.45);
  box-shadow:0 10px 24px rgba(16,185,129,.12);
}
.news-card + .news-card{margin-top:12px}
.news-card__meta{
  font-size:12px;
  font-weight:600;
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.news-card__pin{
  font-size:11px;
  font-weight:700;
  color:#065f46;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.25);
  padding:2px 8px;
  border-radius:999px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.news-card__title{
  margin:6px 0 4px;
  font-size:14px;
  font-weight:700;
  color:var(--ink);
}
.news-card__text{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

@media (prefers-reduced-motion:reduce){
  *{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition:none !important;
    scroll-behavior:auto !important
  }
}

/* =========================================================
   3) Header / Navigation (legacy neutral)
   ========================================================= */
.topbar{
  position:sticky;top:0;z-index:50;
  background: var(--surface-glass-85);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom:1px solid #e7ebf6;
}

.nav{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 0;
}

.brand{display:flex;align-items:center;gap:12px}
.brand img{
  height:42px;width:auto;border-radius:12px;
  box-shadow:var(--shadow-sm);background:#fff;padding:4px
}
.brand span{font-weight:800;color:var(--primary)}

.menu{display:flex;align-items:center;gap:8px}
.menu ul{display:flex;gap:8px;list-style:none;margin:0;padding:0}
.menu a{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 12px;border-radius:10px;color:#111827;font-weight:600;
}
.menu a:hover{background:#eef2fb;text-decoration:none}

.burger{
  display:none;width:42px;height:40px;
  border:1px solid var(--border-soft);
  border-radius:10px;background:#fff;
}

@media (max-width:980px){
  .menu ul{display:none}
  .burger{display:inline-grid;place-items:center}
  .menu.open ul{
    position:absolute;right:16px;top:64px;display:flex;flex-direction:column;
    background:#fff;border:1px solid var(--border-soft);border-radius:14px;
    box-shadow:var(--shadow);width:min(260px,90vw);padding:8px;
  }
}

/* =========================================================
   4) Hero
   ========================================================= */
.hero{
  background: linear-gradient(180deg,#ffffff, #f3f6fb 70%);
  border-bottom:1px solid #e7ebf6;
}

.hero .grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;
  padding: clamp(36px, 6vw, 72px) 0;
}

.eyebrow{
  display:inline-flex;gap:8px;align-items:center;
  font-size:.92rem;color:#334155;background:#fff;
  border:1px solid var(--border-soft);
  border-radius:var(--radius-pill);padding:6px 10px;
}

.hero h1{
  font-size: clamp(28px, 4.8vw, 54px);
  line-height:1.08;margin:.5rem 0;color:var(--primary);letter-spacing:-.02em
}

.lead{
  font-size: clamp(17px,1.3vw,20px);
  color:#42536b;max-width:60ch;margin:0 0 1.2rem
}

.cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  color:#fff;font-weight:800;border:none;border-radius:var(--radius-pill);
  padding:12px 18px;
  box-shadow:0 10px 28px rgba(34,50,88,.22);
  cursor:pointer;transition:transform var(--t-med), filter var(--t-med);
}
.btn:hover{filter:brightness(1.04);transform:translateY(-2px)}
.btn.ghost{
  background:#fff;color:var(--primary);
  border:1px solid var(--border-soft);
  box-shadow:none
}

.hero-visual{display:flex;justify-content:center}
.hero-logo{width:160px;border-radius:16px;background:#fff;box-shadow:var(--shadow)}

/* Home-Hero: Logo mit leichtem Alpha-Rahmen */
.hero-lead{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-copy{
  text-align:center;
  max-width: 760px;
  width: 100%;
  flex: 1 1 60%;
}

.hero-logo-card{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  flex-shrink: 0;
  flex: 0 0 auto;
}

.hero-brand-badge{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:12px 16px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.9),rgba(248,250,252,.78));
  border:1px solid rgba(203,213,225,.92);
  box-shadow:0 16px 44px rgba(15,23,42,.08);
  backdrop-filter:blur(12px);
}

.hero-brand-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-content:center;
  color:#0ea5e9;
  background:rgba(255,255,255,.92);
  box-shadow:inset 0 0 0 1px rgba(14,165,233,.22);
}

.hero-brand-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1;
}

.hero-brand-wordmark{
  font-weight:800;
  font-size:clamp(28px,3.3vw,42px);
  letter-spacing:-.02em;
  color:#0f172a;
}

.hero-brand-weg{
  color:#0ea5e9;
}

.hero-brand-subline{
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#475569;
}

.hero-logo-img{
  width: clamp(240px, 30vw, 420px);
  height: auto;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 768px){
  .hero-lead{
    flex-direction:column;
    align-items:center;
    gap:24px;
    justify-content:center;
    flex-wrap: nowrap;
  }
  .hero-copy{
    text-align:center;
  }
}

@media (max-width: 640px){
  .hero-brand-badge{
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
  }
  .hero-brand-icon{
    width:44px;
    height:44px;
    border-radius:12px;
  }
  .hero-brand-subline{
    font-size:10px;
    margin-top:4px;
  }
}

/* Konsistenter Hero-Container für Subpages */
.subpage-hero{
  position:relative;
  isolation:isolate;
}

.subpage-hero-bg{
  position:absolute;
  inset-inline:0;
  top:0;
  z-index:0;
  height:clamp(18rem, 40vh, 23rem);
  overflow:hidden;
}

.subpage-hero-bg picture{
  display:block;
  height:100%;
}

.subpage-hero-bg img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 60%;
}

.hero-container{
  position:relative;
  z-index:1;
  padding-top: 5rem;       /* entspricht pt-20 */
  padding-bottom: 1.5rem;  /* entspricht pb-6 */
}

.services-page .services-hero-grid{
  display:block;
}

.services-page .services-copy-panel{
  position:relative;
  z-index:3;
  max-width:100%;
  margin-top:10.5rem;
  background:rgba(255,255,255,.52);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.services-page .services-copy-panel{
  min-height:0;
}

.contact-page .contact-copy-panel{
  position:relative;
  z-index:3;
  max-width:min(62rem, 100%);
  margin-top:10.5rem;
  min-height:0;
  padding:1.5rem 1.25rem;
  border-radius:1.5rem;
  background:rgba(255,255,255,.56);
  color:#0f172a;
  box-shadow:0 26px 80px rgba(2,6,23,.18);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.contact-page .contact-copy-panel::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:1.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.70) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(120% 80% at 50% -15%, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 60%);
  -webkit-mask:radial-gradient(140% 140% at 50% 45%, #000 62%, transparent 86%);
          mask:radial-gradient(140% 140% at 50% 45%, #000 62%, transparent 86%);
  pointer-events:none;
}

.contact-page .contact-copy-panel > *{
  position:relative;
}

.contact-page .contact-kicker{
  display:inline-flex;
  align-items:center;
  color:#64748b;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.contact-page .contact-chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.5rem;
}

.contact-page .contact-chip{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.68rem .95rem;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(255,255,255,.88);
  color:#0f172a;
  font-size:.92rem;
  font-weight:700;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}

.contact-page .contact-chip::before{
  content:"";
  width:.48rem;
  height:.48rem;
  border-radius:999px;
  background:#10b981;
  box-shadow:0 0 0 4px rgba(16,185,129,.14);
  flex-shrink:0;
}

.contact-page .contact-hero-note{
  margin-top:1.2rem;
  padding-top:1rem;
  border-top:1px solid rgba(148,163,184,.24);
  color:#334155;
  font-size:.96rem;
  line-height:1.7;
}

body.site-shell .contact-page .contact-route-section{
  background:linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

body.site-shell .contact-page .contact-form-section{
  background:#ffffff;
}

body.site-shell .contact-page .route-card,
body.site-shell .contact-page .wizard,
body.site-shell .contact-page .guided-dialog{
  border-color:rgba(148,163,184,.22);
  border-radius:1.35rem;
  box-shadow:0 18px 42px rgba(15,23,42,.06);
}

body.site-shell .contact-page .section-head--wizard{
  border-radius:1.35rem;
  background:linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow:0 14px 34px rgba(15,23,42,.05);
}

body.site-shell .contact-page .section-head--wizard .progress{
  height:.55rem;
  border:1px solid rgba(186,213,238,.62);
  background:linear-gradient(180deg, #eef6fd 0%, #e5edf7 100%);
  box-shadow:inset 0 1px 2px rgba(15,23,42,.06);
}

body.site-shell .contact-page .section-head--wizard .progress .bar{
  background:linear-gradient(90deg, #7fc9f0 0%, #2aa6ea 100%);
  box-shadow:0 0 18px rgba(42,166,234,.18);
}

.services-page .services-hero-note{
  max-width:none;
  padding-right:12rem;
}

.services-page .services-hero-app{
  position:absolute;
  right:5.5%;
  bottom:-5.5rem;
  z-index:4;
  width:min(20%, 12rem);
  pointer-events:none;
}

.services-page .services-hero-app .services-device-card{
  position:relative;
  right:auto;
  bottom:auto;
  width:100%;
  margin:0;
  transform:rotate(6deg);
}

.services-page .services-showcase{
  display:none;
}

@media (min-width: 640px){
  .subpage-hero-bg{
    height:clamp(20rem, 42vh, 25rem);
  }

  .hero-container{
    padding-top: 7rem;     /* entspricht sm:pt-28 */
  }

  .services-page .services-hero-app{
    right:4%;
    width:min(20%, 12rem);
  }

  .services-page .services-hero-note{
    padding-right:12rem;
  }
}

@media (max-width: 959px){
  .services-page .services-hero-note{
    padding-right:8.5rem;
  }

  .services-page .services-hero-app{
    right:1.5rem;
    bottom:-4.5rem;
    width:min(22%, 9.25rem);
  }
}

@media (max-width: 959px) and (min-width: 841px){
  .services-page .services-hero-note{
    padding-right:10rem;
  }

  .services-page .services-hero-app{
    right:1.25rem;
    bottom:-7rem;
    width:min(21%, 8.75rem);
  }
}

@media (max-width: 840px) and (min-width: 701px){
  .services-page .services-hero-note{
    padding-right:10.5rem;
  }

  .services-page .services-hero-app{
    right:1rem;
    bottom:-6.25rem;
    width:min(21%, 8.5rem);
  }
}

@media (max-width: 700px){
  .contact-page .subpage-hero-bg img{
    object-position:76% 60%;
  }

  .services-page .hero-container{
    padding-bottom:1.5rem;
  }

  .services-page .services-hero-note{
    padding-right:0;
  }

  .services-page .services-hero-app{
    right:50%;
    bottom:-4.5rem;
    width:min(36%, 10.75rem);
    transform:translateX(40%);
  }

  .services-page .services-hero-app .services-device-card{
    transform:rotate(4deg);
  }
}

/* Support-Hero braucht auf sehr schmalen Viewports mehr Luft nach unten */
.support-hero .hero-container{
  padding-bottom: 2.75rem; /* sichtbar mehr Abstand */
}

@media (min-width: 640px){
  .support-hero .hero-container{
    padding-bottom: 1.5rem; /* zurück zum Standard */
  }
}

.service-area-section{
  position:relative;
  background:linear-gradient(180deg, #fcfdfe 0%, #f4f7fa 54%, #eef3f7 100%);
}

.service-area-grid{
  display:grid;
  gap:28px;
  align-items:center;
}

.service-area-copy-block{
  max-width:34rem;
}

.service-area-eyebrow{
  margin:0;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#0284c7;
}

.service-area-text{
  margin:16px 0 0;
  color:#475569;
  font-size:17px;
  line-height:1.6;
}

.service-area-pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.service-area-pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border-soft);
  background:#fff;
  color:#0f172a;
  font-size:14px;
  font-weight:600;
  box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.service-area-pill--city{
  min-width:130px;
  justify-content:center;
}

.service-area-map-card{
  position:relative;
  overflow:hidden;
  padding:16px;
  width:min(100%, 480px);
  border-radius:28px;
  border:1px solid var(--border-soft);
  background:
    radial-gradient(62% 56% at 50% 46%, rgba(241,245,249,.85), transparent 72%),
    linear-gradient(180deg, #fcfdfe 0%, #f2f6f9 100%);
  box-shadow:0 14px 34px rgba(15,23,42,.045);
  margin:0 auto;
}

.service-area-map{
  width:100%;
  height:auto;
  max-width:350px;
  margin:0 auto;
  filter:drop-shadow(0 12px 28px rgba(120,148,167,.08));
}

@media (min-width: 980px){
  .service-area-grid{
    grid-template-columns:minmax(0, .78fr) minmax(0, 1fr);
    gap:36px;
  }

  .service-area-map-card{
    padding:20px;
    justify-self:end;
  }
}

@media (max-width: 640px){
  .service-area-text{
    font-size:16px;
  }

  .service-area-map-card{
    padding:12px;
    border-radius:22px;
  }
}

/* Anfrage-Seite: kompakter, touch-freundlicher Ablauf auf Smartphones */
body.site-shell.request-page{
  letter-spacing:0;
}

body.site-shell.request-page .tracking-tight{
  letter-spacing:0;
}

body.site-shell.request-page .quick-request-section > .mx-auto{
  max-width:1120px;
}

body.site-shell.request-page .contact-copy-panel{
  width:100%;
  max-width:none;
}

@media (max-width: 740px){
  body.site-shell.request-page .subpage-hero-bg{
    height:clamp(14.5rem, 56vw, 18rem);
  }

  body.site-shell.request-page .hero-container{
    padding-top:3rem;
    padding-bottom:1rem;
  }

  body.site-shell.request-page .contact-copy-panel{
    margin-top:clamp(6rem, 28vw, 8.25rem);
    padding:1rem;
    border-radius:18px;
    box-shadow:0 16px 42px rgba(2,6,23,.14);
  }

  body.site-shell.request-page .contact-copy-panel h1{
    margin-top:.35rem;
    font-size:clamp(1.65rem, 8vw, 2rem);
    line-height:1.12;
  }

  body.site-shell.request-page .contact-copy-panel p{
    margin-top:.65rem;
    font-size:.96rem;
    line-height:1.5;
  }

  body.site-shell.request-page .contact-copy-panel .mt-8{
    margin-top:1rem;
  }

  body.site-shell.request-page .home-quick-actions,
  body.site-shell.request-page .site-back-to-top{
    display:none !important;
  }

  body.site-shell.request-page .site-main--quick-actions{
    padding-bottom:28px;
  }

  body.site-shell.request-page #cookie{
    bottom:.65rem;
    width:calc(100% - 1.5rem);
  }

  body.site-shell.request-page #cookie > div{
    padding:.82rem;
    border-radius:14px;
  }

  body.site-shell.request-page #cookie p{
    font-size:.82rem;
    line-height:1.35;
  }

  body.site-shell.request-page #cookie .mt-3{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:.48rem;
    margin-top:.62rem;
  }

  body.site-shell.request-page #cookie button{
    min-height:42px;
    border-radius:10px;
    padding:.5rem .55rem;
    font-size:.86rem;
    line-height:1.12;
  }

  body.site-shell.request-page .cta-form-entry{
    width:100%;
    min-height:46px;
    border-radius:12px;
    padding:.68rem 1rem;
    font-size:.96rem;
  }

  body.site-shell.request-page .quick-request-section > .mx-auto{
    padding:1.05rem .75rem 1.45rem;
  }

  body.site-shell.request-page .quick-request-hero{
    height:clamp(8.25rem, 34vw, 10.75rem);
    margin-bottom:.85rem;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(15,23,42,.08);
  }

  body.site-shell.request-page .section-head--quick-request{
    gap:.65rem;
    margin-bottom:.8rem;
  }

  body.site-shell.request-page .quick-request-eyebrow{
    padding:.28rem .62rem;
    font-size:.68rem;
    letter-spacing:.06em;
  }

  body.site-shell.request-page .wizard-head__title{
    font-size:1.35rem;
    line-height:1.18;
  }

  body.site-shell.request-page .quick-request-shell{
    gap:1rem;
    margin-top:.75rem;
  }

  body.site-shell.request-page .quick-request-card{
    padding:.9rem .75rem .8rem;
    border-radius:18px;
    box-shadow:0 14px 34px rgba(15,23,42,.08);
  }

  body.site-shell.request-page .quick-request-card::before{
    height:6px;
  }

  body.site-shell.request-page .quick-request-step__top{
    justify-content:flex-start;
  }

  body.site-shell.request-page .quick-request-step__pill{
    padding:.28rem .6rem;
    font-size:.68rem;
    letter-spacing:.05em;
  }

  body.site-shell.request-page .quick-request-step__body,
  body.site-shell.request-page .quick-request-step[data-step="0"] .quick-request-step__body,
  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-step__body,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-step__body,
  body.site-shell.request-page .quick-request-step[data-step="3"] .quick-request-step__body,
  body.site-shell.request-page .quick-request-step[data-step="4"] .quick-request-step__body{
    gap:.9rem;
    min-height:0;
    padding-top:.65rem;
  }

  body.site-shell.request-page .quick-request-step__intro--center{
    align-items:stretch;
    width:100%;
    margin:.2rem 0 0;
    gap:.42rem;
    text-align:left;
  }

  body.site-shell.request-page .quick-request-step__title{
    font-size:clamp(1.42rem, 7.2vw, 1.78rem);
    line-height:1.12;
  }

  body.site-shell.request-page .quick-request-step__copy{
    font-size:.94rem;
    line-height:1.45;
    text-wrap:auto;
  }

  body.site-shell.request-page .quick-request-grid,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-grid{
    width:100%;
    gap:.78rem;
    grid-template-columns:1fr;
  }

  body.site-shell.request-page .quick-request-step[data-step="0"] .quick-request-field,
  body.site-shell.request-page .quick-request-contact,
  body.site-shell.request-page .quick-request-privacy{
    width:100%;
  }

  body.site-shell.request-page .quick-request-field,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-field,
  body.site-shell.request-page .quick-request-field--inline{
    grid-template-columns:1fr;
    gap:.42rem;
  }

  body.site-shell.request-page .quick-request-field label,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-field label{
    margin:0;
    font-size:.9rem;
    line-height:1.32;
  }

  body.site-shell.request-page .quick-request-field input,
  body.site-shell.request-page .quick-request-field select,
  body.site-shell.request-page .quick-request-field textarea,
  body.site-shell.request-page .quick-request-step[data-step="0"] .quick-request-field input,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-field input{
    min-height:48px;
    padding:.68rem .82rem;
    border-radius:14px;
    font-size:16px;
  }

  body.site-shell.request-page .quick-request-field input,
  body.site-shell.request-page .quick-request-field select,
  body.site-shell.request-page .quick-request-step[data-step="0"] .quick-request-field input,
  body.site-shell.request-page .quick-request-step[data-step="2"] .quick-request-field input{
    height:48px;
    line-height:1.2;
  }

  body.site-shell.request-page .quick-request-field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' fill='none' stroke='%231e293b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.9'/%3E%3C/svg%3E");
    background-position:right .95rem center;
    background-repeat:no-repeat;
    background-size:18px 18px;
    padding-right:2.7rem;
  }

  body.site-shell.request-page .quick-request-field textarea{
    min-height:104px;
  }

  body.site-shell.request-page .quick-request-fieldset{
    gap:.82rem;
  }

  body.site-shell.request-page .quick-request-art-grid--visual{
    grid-template-columns:1fr;
    gap:.62rem;
    width:100%;
    max-width:none;
  }

  body.site-shell.request-page .quick-request-art-grid--two,
  body.site-shell.request-page .quick-request-art-grid--visual.is-double-selection,
  body.site-shell.request-page .quick-request-art-grid--visual.is-single-selection{
    grid-template-columns:1fr;
    width:100%;
    max-width:none;
    margin:0;
  }

  body.site-shell.request-page .quick-request-art--visual{
    width:100%;
    min-height:0;
    aspect-ratio:auto;
    grid-template-columns:92px minmax(0,1fr);
    grid-template-rows:minmax(92px, auto);
    border-radius:16px;
  }

  body.site-shell.request-page .quick-request-art--visual .quick-request-art__body{
    justify-content:center;
    padding:.72rem .85rem;
    text-align:left;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art--visual .quick-request-art__body{
    justify-content:center;
    gap:.55rem;
    padding:.52rem .72rem .6rem;
    text-align:center;
    align-items:center;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art__title{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:2.1rem;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art__detail{
    min-height:1.55rem;
    text-align:center;
  }

  body.site-shell.request-page .quick-request-art__media{
    align-self:stretch;
    height:92px;
    min-height:92px;
    max-height:92px;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art--visual{
    align-items:stretch;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art__media{
    height:auto;
    min-height:100%;
    max-height:none;
    display:flex;
  }

  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art__media picture,
  body.site-shell.request-page .quick-request-step[data-step="1"] .quick-request-art__media img{
    width:100%;
    height:100%;
  }

  body.site-shell.request-page .quick-request-art__media picture{
    display:block;
    width:100%;
    height:100%;
  }

  body.site-shell.request-page .quick-request-art__media img{
    height:100%;
  }

  body.site-shell.request-page .quick-request-art--visual .quick-request-art__title,
  body.site-shell.request-page .quick-request-art__title{
    font-size:1rem;
    line-height:1.18;
  }

  body.site-shell.request-page .quick-request-radio-row{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    justify-content:stretch;
    gap:.55rem;
  }

  body.site-shell.request-page .quick-request-radio{
    min-height:42px;
    padding:.5rem .58rem;
    border:1px solid rgba(148,163,184,.32);
    border-radius:12px;
    background:#fff;
    font-size:.94rem;
  }

  body.site-shell.request-page .quick-request-icon-field{
    grid-template-columns:52px minmax(0,1fr);
    border-radius:16px;
  }

  body.site-shell.request-page .quick-request-icon-field__icon svg{
    width:23px;
    height:23px;
  }

  body.site-shell.request-page .quick-request-icon-field input{
    min-height:52px;
    padding:.68rem .82rem;
    font-size:16px;
  }

  body.site-shell.request-page .quick-request-icon-field textarea{
    min-height:96px;
    padding:.76rem .82rem;
    font-size:16px;
  }

  body.site-shell.request-page .quick-request-privacy{
    font-size:.84rem;
    line-height:1.48;
    text-align:left;
  }

  body.site-shell.request-page .quick-request-actions{
    gap:.68rem;
    margin-top:1rem;
  }

  body.site-shell.request-page .quick-request-actions__nav{
    gap:.65rem;
  }

  body.site-shell.request-page .quick-request-progress{
    flex-basis:100%;
    min-width:0;
    height:9px;
  }

  body.site-shell.request-page .quick-request-actions__group{
    display:grid;
    width:100%;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:.55rem;
    margin-left:0;
  }

  body.site-shell.request-page .quick-request-actions__group .cta{
    width:100%;
    min-height:46px;
    padding:.64rem .72rem;
    border-radius:12px;
    font-size:.94rem;
    line-height:1.15;
  }

  body.site-shell.request-page .quick-request-actions__group .cta[hidden]{
    display:none !important;
  }

  body.site-shell.request-page #quick-request-submit:not([hidden]){
    grid-column:1 / -1;
  }

  @media (max-width: 640px){
    body.site-shell.request-page .quick-request-actions__group:has(#quick-request-submit:not([hidden])){
      grid-template-columns:1fr;
    }
  }

  body.site-shell.request-page .quick-request-step-hint{
    font-size:.82rem;
    line-height:1.4;
  }

  body.site-shell.request-page .quick-request-error{
    margin-top:.65rem;
    font-size:.9rem;
    line-height:1.4;
  }

  body.site-shell.request-page .quick-request-submit-area{
    margin-top:.9rem;
  }

  body.site-shell.request-page .result,
  body.site-shell.request-page .submitted-tickets{
    padding:.82rem;
    border-radius:12px;
    font-size:.9rem;
  }

  body.site-shell.request-page .captcha-modal{
    align-items:flex-end;
    padding:.75rem;
  }

  body.site-shell.request-page .captcha-modal__panel{
    width:100%;
    border-radius:16px;
    padding:1rem;
  }
}

@media (max-width: 520px){
  body.site-shell.request-page .quick-request-hero{
    display:block;
    height:clamp(4.75rem, 24vw, 6.25rem);
    margin:.1rem .25rem .75rem;
    border-radius:14px;
    box-shadow:0 8px 18px rgba(15,23,42,.07);
  }

  body.site-shell.request-page .quick-request-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(15,23,42,.08) 100%);
    pointer-events:none;
  }

  body.site-shell.request-page .quick-request-hero img{
    object-position:center 48%;
  }

  body.site-shell.request-page .quick-request-section > .mx-auto{
    padding-top:.8rem;
  }
}

@media (max-width: 380px){
  body.site-shell.request-page .site-header{
    column-gap:8px;
  }

  body.site-shell.request-page .site-header-meta{
    gap:8px;
  }

  body.site-shell.request-page .site-brand-logo{
    width:96px;
    max-width:100%;
  }

  body.site-shell.request-page .site-lang-mobile-toggle{
    gap:4px;
    height:32px;
    padding:0 8px;
    font-size:11px;
  }

  body.site-shell.request-page .site-emergency-btn{
    min-width:82px;
    padding:0 8px;
    gap:5px;
    font-size:10.5px;
  }

  body.site-shell.request-page .site-emergency-btn span:first-child{
    width:15px;
    height:15px;
    font-size:10px;
  }

  body.site-shell.request-page .site-mobile-toggle{
    width:40px;
  }
}

/* =========================================================
   5) Sections / Cards
   ========================================================= */
.section{padding:36px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:12px;margin-bottom:18px}
.section h2{font-size: clamp(22px, 2.4vw, 30px);color:var(--primary);margin:0}

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

.card{
  background:#fff;border:1px solid #eef1f7;border-radius:16px;padding:18px;
  box-shadow:var(--shadow-sm)
}

.card h3{margin:.2rem 0;color:#111827}
.card p{margin:.3rem 0;color:#4b5563}

@media (max-width:980px){
  .hero .grid{grid-template-columns:1fr}
  .grid-3,.grid-2{grid-template-columns:1fr}
}

/* =========================================================
   6) Cities (pills)
   ========================================================= */
.pills{display:flex;flex-wrap:wrap;gap:10px}
.pills a{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;background:#f3f6fb;border:1px solid var(--border-soft);
  border-radius:var(--radius-pill);color:#111827;font-weight:600
}
.pills a:hover{background:#eef2fa;text-decoration:none}

/* =========================================================
   7) FAQ
   ========================================================= */
details{
  background:#fff;border:1px solid var(--border-soft);
  border-radius:12px;padding:14px
}
details+details{margin-top:10px}
summary{cursor:pointer;font-weight:700;color:#111827}
details p{margin:8px 0 0;color:#4b5563}

/* =========================================================
   8) Footer (legacy neutral)
   ========================================================= */
footer{
  background: transparent;
  color: inherit;
  padding: 0;
  margin-top: 0;
}
footer a{color: inherit;}

.footgrid{display:grid;grid-template-columns:1.3fr .7fr;gap:18px}
@media (max-width:900px){.footgrid{grid-template-columns:1fr}}

/* =========================================================
   9) Motion / Reveal
   ========================================================= */
.reveal-up{opacity:0;transform:translateY(24px);will-change:transform,opacity}
.reveal-fade{opacity:0}
.revealed{
  opacity:1;transform:none;
  transition:opacity var(--t-slow), transform var(--t-slow)
}

.hover-lift{transition:transform var(--t-fast), box-shadow .2s ease}
.hover-lift:hover{transform:translateY(-3px);box-shadow:var(--shadow)}

/* =========================================================
   10) Utility-Klassen
   ========================================================= */
.backdrop-blur-md{backdrop-filter: var(--blur-md);}

.shadow-soft{ box-shadow: var(--shadow-soft); }

.header-offset{
  height: 88px;
}

body.home .glass-header{
  background-color: rgba(255, 255, 255, 0.6);
}
/* Home: CTA-Farben im Hero leicht an Hintergrund anpassen */
body.home .hero{

  --hero-cta-primary: #0369a1;
  --hero-cta-primary-hover: #075985;

  --hero-cta-secondary-bg: #ffffff;
  --hero-cta-secondary-border: var(--border-strong);
}

/* nur im Hero überschreiben */
body.home .hero .cta-primary{
  background-color: var(--hero-cta-primary);
}
body.home .hero .cta-primary:hover{
  background-color: var(--hero-cta-primary-hover);
}

body.home .hero .cta-secondary{
  background-color: var(--hero-cta-secondary-bg);
  border-color: var(--hero-cta-secondary-border);
}

/* Home-Hero: Fallback auch für ältere .btn-Buttons */
body.home .hero .btn{
  background: var(--hero-cta-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(34,50,88,.22);
}

body.home .hero .btn:hover{
  filter: none;
  background: var(--hero-cta-primary-hover);
}

body.home .hero .btn.ghost{
  background: var(--hero-cta-secondary-bg);
  color: var(--ink);
  border: 1px solid var(--hero-cta-secondary-border);
  box-shadow: none;
}

/* Home-Hero Override auch für #top, falls keine .hero Klasse vorhanden ist */
body.home #top{
  --hero-cta-primary: #0369a1;
  --hero-cta-primary-hover: #075985;
  --hero-cta-secondary-bg: #ffffff;
  --hero-cta-secondary-border: var(--border-strong);
}

body.home #top .cta-primary{
  background-color: var(--hero-cta-primary);
}
body.home #top .cta-primary:hover{
  background-color: var(--hero-cta-primary-hover);
}

body.home #top .cta-secondary{
  background-color: var(--hero-cta-secondary-bg);
  border-color: var(--hero-cta-secondary-border);
}
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in{opacity: 1;transform: none;}

.btn-no-wrap{
  white-space: nowrap;
  flex-shrink: 0;
}

/* Puls-Effekt für das Notfalltelefon im Header */
@media (prefers-reduced-motion: no-preference) {
  .cta-pulse-red{
    animation: ctap-red 5s ease-in-out infinite;
  }

  @keyframes ctap-red{
    0%, 50% { box-shadow: 0 0 0 0 rgba(121, 27, 27, 0.25); }
    20% { box-shadow: 0 0 0 25px rgba(235, 41, 41, 0); }
  }

  /* startseiten slider */
  .slider{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }
  .slide{scroll-snap-align: start;}
}

/* =========================================================
   11) Globale Call-To-Action Buttons
   ========================================================= */
.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-primary{
  background-color: var(--cta-primary);
  color: #fff;
}
.cta-primary:hover{background-color: var(--cta-primary-hover);}

.cta-secondary{
  background-color: #ffffff;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.cta-secondary:hover{
  background-color: #e5edf9;
  border-color: #94a3b8;
  color: #0f172a;
}

.cta-request{
  background:linear-gradient(180deg,#ecfdf3 0%,#d1fae5 100%);
  color:#166534;
  border:1px solid rgba(34,197,94,.46);
  box-shadow:0 10px 22px rgba(34,197,94,.18);
}
.cta-request:hover{
  background:linear-gradient(180deg,#dcfce7 0%,#bbf7d0 100%);
  border-color:rgba(22,163,74,.56);
  color:#14532d;
}

.cta-sm{
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.cta-danger{
  background:#ef4444;
  color:#fff;
  border-color:transparent;
}

.cta-danger:hover{
  background:#dc2626;
  color:#fff;
}

.cta-hidden{
  display:none;
}

.cta-strong{font-weight: 700;}

/* =========================================================
   12) Header-spezifische Controls
   ========================================================= */
.header-shell{
  position: relative;
  padding: var(--header-pill-pad-y) var(--header-pill-pad-x);
}

.header-shell.light-header-shell{
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(248,250,252,.38));
  border: 1px solid rgba(203,213,225,.44);
  box-shadow: 0 16px 38px rgba(15,23,42,.07);
  color: #0f172a;
}

.header-shell.light-header-shell .brand-mark{
  background: rgba(14,165,233,.10) !important;
}

.header-shell.light-header-shell .brand-wordmark{
  color: #0f172a !important;
}

.header-shell.light-header-shell .desktop-nav a:not(.cta){
  color: #1e293b;
}

.header-shell.light-header-shell .desktop-nav a:not(.cta):hover{
  color: #0284c7;
}

.header-shell.light-header-shell .desktop-nav a:not(.cta)[aria-current="page"]{
  color: #0284c7;
}

.header-shell.light-header-shell .desktop-nav a:not(.cta)[aria-current="page"]:not(:hover){
  text-decoration: none;
}

.header-shell.light-header-shell .lang-flag-inline{
  background: rgba(255,255,255,.18);
  border-color: rgba(203,213,225,.62);
}

.header-shell.light-header-shell .mobile-trigger{
  color: #475569;
}

.header-shell.light-header-shell .mobile-trigger:hover{
  background: rgba(15,23,42,.05) !important;
}

/* Notfall-CTA im Header: Höhe fix */
.header-shell .emergency-btn{
  height: var(--header-cta-height);
  min-height: var(--header-cta-height);
  border-radius: var(--header-cta-radius);

  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: var(--header-cta-pad-x) !important;
  padding-right: var(--header-cta-pad-x) !important;

  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Login-CTA im Header (falls genutzt) */
.header-shell .login-btn,
.header-shell .cta-login{
  height: var(--header-cta-height);
  min-height: var(--header-cta-height);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: inline-flex;
  align-items: center;
}

/* Desktop-Flags */
.lang-flags-desktop{
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Flags im Header (normal) */
.lang-flag-inline{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: var(--lang-flag-height);
  min-height: var(--lang-flag-height);
  min-width: var(--lang-flag-min-width);

  padding: 0 var(--lang-flag-pad-x);
  border-radius: var(--lang-flag-radius);
  border: 1px solid var(--border-strong);

  background: var(--lang-flag-bg);

  line-height: 1;
  text-decoration: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

/* Active-Look */
.lang-flag-inline.is-active{
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--cta-primary), white 70%);
  cursor: default;
}

/* Engpass: Flags untereinander + exakt so hoch wie Notfall */
@media (max-width: 930px) and (min-width: 741px){
  .lang-flags-desktop{
    flex-direction: column;
    justify-content: space-between;
    height: var(--header-cta-height);
    gap: 0;
  }

  .header-shell{
    --lang-flag-height: var(--flag-stack-height);
    --lang-flag-min-width: 34px;
    --lang-flag-pad-x: var(--flag-stack-pad-x);
    --lang-flag-radius: var(--flag-stack-radius);
  }

  .lang-flag-inline.is-active{
    box-shadow: 0 0 0 1px color-mix(in oklab, var(--cta-primary), white 70%);
  }
}

/* Sehr kleine Screens */
@media (max-width: 520px){
  .lang-flags-desktop{ gap: 6px; }
  /* Via Variable oben gelöst
  .lang-flag-inline{
    height: 40px;
    min-width: 40px;
    padding: 0 8px;
  }*/
  .header-shell{
    --lang-flag-height: 40px;
    --lang-flag-min-width: 40px;
    --lang-flag-pad-x: 8px;
  }
}

/* Micro-Animation für den Flag-Umschaltmoment */
.header-shell.flags-transition .lang-flags-desktop{
  transition: opacity .16s ease;
  opacity: .85;
}

.header-shell.flags-transition .lang-flag-inline{
  transition: transform .18s ease, opacity .18s ease;
  transform: scale(0.96);
}

/* Optional: aktiver Rahmen etwas ruhiger während des Übergangs */
.header-shell.flags-transition .lang-flag-inline.is-active{
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--cta-primary), white 80%);
}


/* ===== SOS Mode (via JS) ===== */

/* beide Labels sollen NICHT umbrechen */
.emergency-label-short,
.emergency-label-long{
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;

  transition:
    max-width .18s ease,
    opacity .18s ease,
    transform .18s ease;
}

/* Default: LONG sichtbar, SHORT versteckt */
.emergency-label-long{
  max-width: 220px;     /* ausreichend groß für "Notfalltelefon" */
  opacity: 1;
  transform: translateY(0);
}

.emergency-label-short{
  max-width: 0;
  opacity: 0;
  transform: translateY(-2px);
}

/* SOS Mode */
.header-shell.sos-mode .emergency-label-long{
  max-width: 0;
  opacity: 0;
  transform: translateY(2px);
}

.header-shell.sos-mode .emergency-label-short{
  max-width: 60px;      /* reicht für "SOS" + etwas Puffer */
  opacity: 1;
  transform: translateY(0);
}

.emergency-label-wrap{
  display: inline-flex;
  align-items: center;
}

/* Wenn SOS aktiv ist: Flags stapeln wie im Engpass */
.header-shell.sos-mode .lang-flags-desktop{
  flex-direction: column;
  justify-content: space-between;
  height: var(--header-cta-height);
  gap: 0;
}

/* gleiche "Stack"-Variablen wie im Engpass */
.header-shell.sos-mode{
  --lang-flag-height: var(--flag-stack-height);
  --lang-flag-min-width: 34px;
  --lang-flag-pad-x: var(--flag-stack-pad-x);
  --lang-flag-radius: var(--flag-stack-radius);

  /* glassy */
  --lang-flag-bg: transparent;
}

.header-shell.sos-mode .lang-flag-inline.is-active{
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--cta-primary), white 75%);
}


/* =========================================================
   13) Mobile Sprachwahl (Dropdown)
   ========================================================= */
.lang-flags-mobile{
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lang-flags-mobile__label{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.lang-flags-mobile__buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lang-flag-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.lang-flag-btn:hover{
  background: #f1f5ff;
  text-decoration: none;
}

.lang-flag-emoji{
  font-size: 1.35rem;
  line-height: 1;
}

.lang-flag-btn.is-active{
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--cta-primary), white 70%);
}

/* =========================================================
   14) Header Cutover: Desktop-Nav <-> Burger
   ========================================================= */
@media (max-width: 740px){
  .desktop-nav{display:none !important;}
  .mobile-trigger{display:inline-flex !important;}
}

@media (min-width: 741px){
  .desktop-nav{display:flex !important;}
  .mobile-trigger{display:none !important;}
}

/* =========================================================
   15) Mobile Dropdown Panel + Animation
   ========================================================= */
.mobile-nav-panel{
  position: absolute;
  right: var(--mobile-panel-right);
  top: calc(100% + var(--mobile-panel-offset-y));
  width: min(var(--mobile-panel-max-vw), var(--mobile-panel-width));
  z-index: 9999;

  border-radius: var(--radius-panel);
  background: var(--surface-glass-92);
  backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-panel);
  padding: 18px 20px;
}

@media (max-width: 420px){
  .mobile-nav-panel{
    right: 0px;
    width: min(94vw, 300px);
    padding: 14px 16px;
  }
}

.mobile-nav-anim{
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity var(--t-med), transform var(--t-med);
}

.mobile-nav-anim.is-open{
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce){
  .mobile-nav-anim,
  .mobile-nav-anim.is-open{
    transition: none;
  }
}

.mobile-nav-link{
  display: block;
  padding: 8px 0;              /* entspricht py-2 */
  font-size: 1rem;
  font-weight: 500;            /* wenn dir das zu fett ist: 500 */
  color: var(--primary);
  text-decoration: none;
}

.mobile-nav-link:hover{
  color: var(--cta-primary);
  background: transparent;     /* wichtig: kein Panel-Hover */
  text-decoration: none;
}

/* Active Page im Mobile-Menü */
.mobile-nav-link[aria-current="page"]{
  color: var(--cta-primary);
  font-weight: 600;
}

/* optional: kleiner visueller Marker */
.mobile-nav-link[aria-current="page"]{
  position: relative;
}

/* =========================================================
   16) Mobile CTA Stack
   ========================================================= */
.mobile-cta-stack{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.mobile-cta-stack .cta{
  width: 8.6rem;
  justify-content: center;
  padding-inline: 0.85rem;
}

.about-hero-art{
  border-radius: 2.5rem;
  overflow: hidden;
  background: #fff;

  transform: translateY(-14px);
}

@media (min-width: 640px){
  .about-hero-art{
    transform: translateY(-24px);
  }
}

/* =========================================================
   Legal Pages – einheitliche Card
   ========================================================= */
.legal-shell{
  position: relative;
  width: 100%;
  border-radius: 24px; /* entspricht rounded-3xl */
  background: var(--surface-glass-92);
  backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.25rem; /* ~ px-5 py-6 */
}

@media (min-width: 768px){
  .legal-shell{
    padding: 2rem 2rem;    /* ~ md:px-8 md:py-8 */
  }
}

/* =========================================================
   Home Site Shell (index-only)
   ========================================================= */
body.site-shell{
  --site-ink:#152535;
  --site-muted:#4a5f72;
  --site-blue:#0369a1;
  --site-blue-dark:#075985;
  --site-blue-soft:#e9f4fb;
  --site-border:#d7e5f0;

  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--site-ink);
  letter-spacing:0;
  background:
    radial-gradient(1200px 620px at 8% -12%, rgba(125,168,199,.45), transparent 70%),
    radial-gradient(860px 520px at 96% 6%, rgba(162,196,220,.36), transparent 72%),
    linear-gradient(180deg,#cfdfed 0%,#e7f1f8 56%,#edf5fa 100%);
}

body.site-shell h1,
body.site-shell h2,
body.site-shell h3,
body.site-shell .site-brand-wordmark,
body.site-shell .site-footer-logo{
  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-weight:600;
  letter-spacing:-.015em;
}

body.site-shell .site-main{
  padding:0 16px 44px;
}

body.site-shell .site-main--quick-actions{
  padding-bottom:94px;
}

body.site-shell .site-canvas{
  max-width:1120px;
  margin:0 auto;
  border:1px solid rgba(183,206,221,.76);
  border-radius:16px;
  overflow:visible;
  background:#f7fbff;
  box-shadow:0 22px 44px rgba(34,56,76,.14);
}

body.site-shell .site-header{
  position:relative;
  top:auto;
  z-index:40;
  display:grid;
  grid-template-columns:minmax(246px,max-content) minmax(0,1fr);
  grid-template-areas:
    "brand meta"
    "brand nav";
  column-gap:24px;
  row-gap:4px;
  padding:10px 22px 8px;
  align-items:center;
  background:#fff;
  border-bottom:1px solid var(--site-border);
  border-radius:15px 15px 0 0;
  box-shadow:0 8px 18px rgba(26,55,78,.06);
}

body.site-shell .site-brand{
  grid-area:brand;
  display:inline-flex;
  flex-direction:column;
  justify-self:start;
  align-self:center;
  gap:0;
  text-decoration:none;
}

body.site-shell .site-brand-logo{
  display:block;
  width:clamp(320px, 34vw, 430px);
  height:auto;
  max-height:104px;
  object-fit:contain;
  object-position:left center;
}

body.site-shell .site-brand-wordmark{
  color:#0f2234;
  font-size:clamp(2.2rem, 2.2vw, 2.6rem);
  line-height:.88;
  letter-spacing:-.01em;
}

body.site-shell .site-brand-pro{
  color:#0b1c2d;
  font-weight:400;
}

body.site-shell .site-brand-subline{
  color:#607488;
  letter-spacing:.11em;
  text-transform:uppercase;
  font-size:12px;
  line-height:1;
  font-weight:700;
}

body.site-shell .site-header-meta{
  grid-area:meta;
  display:flex;
  align-items:center;
  align-self:end;
  justify-self:end;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:24px;
}

body.site-shell .site-header-actions{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:0;
}

body.site-shell .site-lang-switch{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:0;
  font-size:12px;
  color:var(--site-muted);
}

body.site-shell .site-lang-mobile-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  height:32px;
  padding:0 10px;
  border-radius:9px;
  border:1px solid rgba(76,149,214,.42);
  background:linear-gradient(180deg,#f8fcff 0%,#edf6ff 100%);
  color:#18354c;
  font-size:11.5px;
  font-weight:700;
}

body.site-shell .site-lang-globe{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body.site-shell .site-lang-mobile-menu{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  z-index:55;
  display:none;
  width:max-content;
  min-width:84px;
  max-width:108px;
  padding:8px 10px;
  border:1px solid var(--site-border);
  border-radius:14px;
  background:rgba(255,255,255,.62);
  box-shadow:0 18px 34px rgba(26,55,78,.16);
  backdrop-filter:blur(10px);
}

body.site-shell .site-lang-mobile-menu.is-open{
  display:grid;
  gap:8px;
}

body.site-shell .site-lang-mobile-menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  justify-self:center;
  min-height:32px;
  padding:0 12px;
  border-radius:10px;
  text-decoration:none;
  color:#182c3f;
  font-size:11.5px;
  font-weight:700;
}

body.site-shell .site-lang-mobile-menu a.is-active{
  background:rgba(94,169,220,.12);
  color:#174566;
}

body.site-shell .site-meta-label{
  font-weight:600;
}

body.site-shell .site-lang-link{
  display:none;
  align-items:center;
  justify-content:center;
  min-width:32px;
  height:32px;
  padding:0 8px;
  border-radius:7px;
  border:1px solid var(--site-border);
  background:#fff;
  text-decoration:none;
  color:#31465a;
  font-size:11.5px;
  font-weight:700;
}

body.site-shell .site-lang-link.is-active{
  border-color:var(--site-blue);
  background:#f0f8ff;
  color:#174566;
}

body.site-shell .site-phone-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  white-space:nowrap;
  height:32px;
  padding:0 12px;
  border-radius:9px;
  border:1px solid rgba(76,149,214,.42);
  background:linear-gradient(180deg,#f8fcff 0%,#edf6ff 100%);
  font-size:13px;
  color:#18354c;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 16px rgba(76,149,214,.12);
}

body.site-shell .site-phone-icon{
  width:13px;
  height:13px;
  fill:#3f78ab;
  flex:none;
}

body.site-shell .site-phone-link:hover{
  background:linear-gradient(180deg,#f2f9ff 0%,#e7f2ff 100%);
}

body.site-shell .site-emergency-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  height:32px;
  min-width:96px;
  padding:0 11px;
  border-radius:9px;
  border:1px solid rgba(183,74,74,.45);
  background:linear-gradient(180deg,#fff4f4 0%,#ffe7e7 100%);
  color:#8f2323;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.01em;
  text-decoration:none;
  box-shadow:0 8px 16px rgba(183,74,74,.14);
}

body.site-shell .site-emergency-btn:hover{
  background:linear-gradient(180deg,#ffecec 0%,#ffdbdb 100%);
  border-color:rgba(160,51,51,.55);
  color:#7b1b1b;
}

body.site-shell .site-emergency-btn span:first-child{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  border-radius:999px;
  background:#b83838;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:800;
}

body.site-shell .site-mobile-toggle{
  display:none;
  border:1px solid var(--site-border);
  background:#fff;
  border-radius:10px;
  height:32px;
  width:42px;
  padding:0;
  font-size:13px;
  font-weight:700;
  color:#173148;
}

body.site-shell .site-burger-lines{
  display:inline-flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  width:18px;
}

body.site-shell .site-burger-lines span{
  display:block;
  width:100%;
  height:2px;
  border-radius:999px;
  background:#173148;
}

body.site-shell .site-nav{
  grid-area:nav;
  display:flex;
  align-items:center;
  justify-self:end;
  justify-content:flex-end;
  gap:18px;
  padding-top:0;
}

body.site-shell .site-nav a{
  color:#182c3f;
  text-decoration:none;
  font-size:13.5px;
  font-weight:700;
}

body.site-shell .site-nav a[aria-current="page"]:not(.cta){
  position:relative;
  color:#174566;
}

body.site-shell .site-nav a[aria-current="page"]:not(.cta)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:2px;
  border-radius:999px;
  background:rgba(94,169,220,.9);
}

body.site-shell .site-nav .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  height:32px;
  padding:0 11px;
}

body.site-shell .site-nav .cta .site-cta-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:14px;
  height:14px;
  flex:0 0 14px;
}

body.site-shell .site-nav .cta .site-cta-icon svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body.site-shell .site-nav .cta-primary{
  background:linear-gradient(180deg,#eef7ff 0%,#dcefff 100%);
  border:1px solid rgba(60,128,189,.52);
  color:#123f62;
  font-weight:800;
  box-shadow:0 10px 18px rgba(76,149,214,.16);
}

body.site-shell .site-nav .cta-request{
  background:linear-gradient(180deg,#ecfdf3 0%,#d1fae5 100%);
  border:1px solid rgba(34,197,94,.46);
  color:#166534;
  font-weight:800;
  box-shadow:0 10px 18px rgba(34,197,94,.18);
}

body.site-shell .site-nav a:hover{
  color:#235579;
}

body.site-shell .site-nav .cta-primary:hover{
  background:linear-gradient(180deg,#e4f2ff 0%,#cfe7fb 100%);
  border-color:rgba(47,111,169,.6);
  color:#0f3654;
}

body.site-shell .site-nav .cta-request:hover{
  background:linear-gradient(180deg,#dcfce7 0%,#bbf7d0 100%);
  border-color:rgba(22,163,74,.56);
  color:#14532d;
}

body.site-shell .cta{
  border-radius:10px;
  padding:10px 16px;
  font-weight:700;
}

body.site-shell .cta-primary{
  background:var(--site-blue);
  border:1px solid var(--site-blue);
  color:#fff;
  box-shadow:0 8px 16px rgba(62,132,179,.2);
}

body.site-shell .cta-primary:hover{
  background:var(--site-blue-dark);
  border-color:var(--site-blue-dark);
}

#acceptCookies{
  background:#0369a1 !important;
  border-color:#0369a1 !important;
  color:#fff !important;
}

#acceptCookies:hover{
  background:#075985 !important;
  border-color:#075985 !important;
}

body.site-shell .cta-secondary{
  background:#fff;
  border:1px solid #9ab1c4;
  color:#203246;
}

body.site-shell .cta-secondary:hover{
  background:#f0f6fb;
  border-color:#7f99ad;
}

body.site-shell .site-hero{
  position:relative;
  min-height:358px;
  overflow:hidden;
  background:#e9f2f9;
}

body.site-shell .site-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    rgba(233,242,249,.98) 0%,
    rgba(233,242,249,.96) 26%,
    rgba(233,242,249,.88) 38%,
    rgba(233,242,249,.56) 50%,
    rgba(233,242,249,0) 66%
  );
}

body.site-shell .site-hero-copy{
  position:relative;
  z-index:2;
  width:min(54%, 660px);
  padding:36px 36px 34px;
}

body.site-shell .site-hero-copy h1{
  margin:0;
  max-width:18ch;
  font-weight:600;
  letter-spacing:-.015em;
  font-size:clamp(1.86rem, 3.05vw, 2.72rem);
  line-height:1.08;
  color:#102638;
}

body.site-shell .hero-title-break{
  display:inline;
}

body.site-shell .site-hero-copy p{
  margin:12px 0 0;
  max-width:39ch;
  color:#39516a;
  font-size:.97rem;
  line-height:1.45;
}

body.site-shell .site-hero-actions{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

body.site-shell .site-hero-image-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
}

body.site-shell .site-hero-image-wrap picture,
body.site-shell .site-hero-image-wrap img{
  width:100%;
  height:100%;
}

body.site-shell .site-hero-image-wrap img{
  object-fit:cover;
  object-position:74% 52%;
  transform:scale(.90);
  transform-origin:68% center;
  animation:none;
}

body.site-shell .site-card,
body.site-shell .site-services,
body.site-shell .site-bottom{
  margin:22px 20px 0;
}

body.site-shell .site-card{
  border:1px solid var(--site-border);
  border-radius:16px;
  background:#fff;
  box-shadow:0 12px 26px rgba(20,48,72,.09);
}

body.site-shell .site-region{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.92fr);
  gap:24px;
  padding:26px 30px;
  align-items:center;
}

body.site-shell .site-why{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.92fr);
  gap:24px;
  padding:26px 30px;
  align-items:center;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(191,219,254,.24), rgba(191,219,254,0) 44%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

body.site-shell .site-admin-types{
  padding:26px 30px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(191,219,254,.22), rgba(191,219,254,0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

body.site-shell .site-admin-types-head{
  display:flex;
  flex-direction:column;
  gap:10px;
}

body.site-shell .site-admin-types-kicker{
  margin:0;
  color:#0284c7;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

body.site-shell .site-why-kicker{
  margin:0;
  color:#0284c7;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
}

body.site-shell .site-admin-types h2{
  margin:0;
  font-size:2.05rem;
  line-height:1.06;
  color:#10283a;
}

body.site-shell .site-admin-types-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}

body.site-shell .site-admin-type-card{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  min-height:320px;
  padding:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(203,213,225,.88);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.98));
  box-shadow:0 12px 28px rgba(20,48,72,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.site-shell .site-admin-type-body{
  display:flex;
  flex:1 1 auto;
  flex-direction:column;
  align-items:flex-start;
  padding:24px 20px 24px;
}

body.site-shell .site-admin-type-card:hover{
  transform:translateY(-2px);
  border-color:rgba(94,169,220,.46);
  box-shadow:0 16px 34px rgba(20,48,72,.10);
  text-decoration:none;
}

body.site-shell .site-admin-type-card h3{
  margin:0;
  width:100%;
  font-size:1.72rem;
  line-height:1.08;
  color:#12293b;
  text-wrap:pretty;
  min-height:3.75rem;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

body.site-shell .site-admin-type-title--narrow{
  width:auto;
  max-width:none;
  margin-left:auto;
  margin-right:auto;
  flex-direction:column;
  gap:0;
}

body.site-shell .site-admin-type-title--narrow span{
  display:block;
}

body.site-shell .site-admin-type-tag{
  display:inline-flex;
  align-items:center;
  margin-top:22px;
  padding:7px 11px;
  border-radius:999px;
  background:#dbeefe;
  color:#075985;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
  min-height:2.2rem;
  white-space:nowrap;
}

body.site-shell .site-admin-type-card p{
  margin:18px 0 0;
  color:#475569;
  font-size:1rem;
  line-height:1.55;
  min-height:7.75rem;
  text-wrap:pretty;
}

body.site-shell .site-admin-type-media{
  display:block;
  width:100%;
}

body.site-shell .site-admin-type-media picture{
  display:block;
  width:100%;
}

body.site-shell .site-admin-type-media img{
  display:block;
  width:100%;
  height:327px;
  object-fit:cover;
  object-position:center;
  border-bottom:1px solid rgba(191,219,254,.72);
}

body.site-shell .site-admin-type-media__img--weg{
  object-position:center 42%;
}

body.site-shell .site-region h2,
body.site-shell .site-why h2,
body.site-shell .site-certificate h2{
  margin:0;
  font-size:2.05rem;
  line-height:1.06;
  color:#10283a;
}

body.site-shell .site-region p,
body.site-shell .site-why p,
body.site-shell .site-certificate p{
  margin:12px 0 0;
  color:#3f556b;
  line-height:1.58;
}

body.site-shell .site-why-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

body.site-shell .site-why-media{
  border-radius:16px;
  border:1px solid rgba(163,192,212,.78);
  overflow:hidden;
  box-shadow:
    0 10px 20px rgba(24,58,84,.08),
    inset 0 0 0 1px rgba(255,255,255,.74);
}

body.site-shell .site-why-media img{
  display:block;
  width:100%;
  height:100%;
  min-height:250px;
  object-fit:cover;
}

body.site-shell .site-region-line{
  margin-top:18px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  color:#385168;
  font-size:1.1rem;
  font-weight:700;
}

body.site-shell .site-region-line svg{
  width:16px;
  height:16px;
  color:#5f9fcb;
  flex:none;
}

body.site-shell .site-region-line span{
  white-space:nowrap;
}

body.site-shell .site-region-separator{
  color:#7b92a6;
  font-weight:600;
}

body.site-shell .site-region-cities{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

body.site-shell .site-region-city{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:0;
  background:#e7f3ff;
  color:#3a6583;
  font-size:.95rem;
  font-weight:700;
  box-shadow:none;
  transition:background .25s ease, color .25s ease, opacity .25s ease;
}

body.site-shell .site-region-city::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:#b7c8d8;
  box-shadow:0 0 0 6px rgba(183,200,216,.18);
  transition:background .25s ease, box-shadow .25s ease;
}

body.site-shell .site-region-city.is-active{
  background:#d3e9ff;
  color:#183f5d;
}

body.site-shell .site-region-city.is-active::before{
  background:#10b981;
  box-shadow:0 0 0 6px rgba(16,185,129,.15);
}

body.site-shell .site-region-city--surrounding::before{
  display:none;
}

body.site-shell .site-region-city-amp{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1em;
  height:1em;
  color:#10b981;
  font-weight:800;
  line-height:1;
  z-index:0;
}

body.site-shell .site-region-city-amp::before{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:999px;
  background:rgba(16,185,129,.15);
  z-index:-1;
}

body.site-shell .site-map-card{
  position:relative;
  border-radius:16px;
  border:1px solid rgba(163,192,212,.78);
  background:linear-gradient(180deg,#edf6fc 0%,#f5fafe 100%);
  overflow:hidden;
  box-shadow:
    0 10px 20px rgba(24,58,84,.08),
    inset 0 0 0 1px rgba(255,255,255,.74);
}

body.site-shell .site-map-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(94,169,220,.14) 0%, rgba(94,169,220,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,0) 36%);
}

body.site-shell .site-map-showcase{
  position:relative;
  height:250px;
}

body.site-shell .site-map-arrow{
  position:absolute;
  top:50%;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.58);
  box-shadow:
    inset 0 0 0 1px rgba(148,163,184,.22),
    0 8px 18px rgba(24,58,84,.10);
  color:rgba(21,61,92,.7);
  transform:translateY(-50%);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:background .25s ease, color .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor:pointer;
}

body.site-shell .site-map-arrow:hover,
body.site-shell .site-map-arrow:focus-visible{
  background:rgba(255,255,255,.76);
  color:#56a7dc;
  box-shadow:
    inset 0 0 0 1px rgba(86,167,220,.28),
    0 10px 22px rgba(24,58,84,.14);
  outline:none;
}

body.site-shell .site-map-arrow--prev{
  left:12px;
}

body.site-shell .site-map-arrow--next{
  right:12px;
}

body.site-shell .site-map-arrow svg{
  width:12px;
  height:12px;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}

body.site-shell .site-map-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .7s ease;
}

body.site-shell .site-map-slide.is-active{
  opacity:1;
}

body.site-shell .site-map-slide picture{
  display:block;
  width:100%;
  height:100%;
}

body.site-shell .site-map-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.86) contrast(.94) brightness(1.03);
  transform:scale(1.015);
}

body.site-shell .site-map-progress{
  position:absolute;
  left:50%;
  bottom:12px;
  z-index:2;
  display:flex;
  gap:8px;
  transform:translateX(-50%);
}

body.site-shell .site-map-progress-bar{
  width:34px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  box-shadow:inset 0 0 0 1px rgba(148,163,184,.24);
  transition:background .25s ease, transform .25s ease;
}

body.site-shell .site-map-progress-bar.is-active{
  background:#56a7dc;
  transform:scaleX(1.08);
}

body.site-shell .site-certificate{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.82fr);
  gap:24px;
  padding:26px 30px;
  align-items:center;
  background:var(--site-blue-soft);
}

body.site-shell .site-membership{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(240px,.78fr);
  gap:24px;
  padding:26px 30px;
  align-items:center;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(191,219,254,.32), rgba(191,219,254,0) 44%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  overflow:hidden;
}

body.site-shell .site-membership::after{
  content:"Draft";
  position:absolute;
  top:20px;
  right:-44px;
  z-index:2;
  padding:8px 56px;
  background:rgba(179,38,30,.92);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  box-shadow:0 12px 24px rgba(127,29,29,.22);
  transform:rotate(34deg);
  pointer-events:none;
}

body.site-shell .site-membership h2{
  margin:0;
  font-size:2.05rem;
  line-height:1.06;
  color:#10283a;
}

body.site-shell .site-membership p{
  margin:12px 0 0;
  color:#3f556b;
  line-height:1.58;
}

body.site-shell .site-membership-points{
  display:grid;
  gap:10px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
}

body.site-shell .site-membership-points li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#294258;
  font-weight:600;
}

body.site-shell .site-membership-points li::before{
  content:"";
  width:10px;
  height:10px;
  margin-top:9px;
  border-radius:999px;
  background:#10b981;
  box-shadow:0 0 0 6px rgba(16,185,129,.12);
  flex:none;
}

body.site-shell .site-membership-visual{
  display:grid;
  gap:14px;
  justify-items:center;
}

body.site-shell .site-membership-logo{
  width:min(100%, 290px);
  min-height:152px;
  padding:24px 22px;
  border-radius:18px;
  border:1px solid rgba(163,192,212,.72);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,247,253,.92)),
    linear-gradient(135deg, rgba(14,165,233,.08), rgba(34,50,88,.05));
  box-shadow:
    0 14px 30px rgba(20,48,72,.10),
    inset 0 0 0 1px rgba(255,255,255,.75);
  text-align:center;
}

body.site-shell .site-membership-logo img{
  display:block;
  width:100%;
  max-width:230px;
  margin:0 auto;
  height:auto;
}

body.site-shell .site-membership-note{
  max-width:22rem;
  color:#5a7389;
  font-size:.9rem;
  line-height:1.55;
  text-align:center;
}

body.site-shell .site-cert-actions{
  margin-top:19px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

body.site-shell .site-doc-stack{
  display:grid;
  place-items:center;
  position:relative;
  min-height:210px;
}

body.site-shell .site-doc-sheet{
  width:165px;
  height:220px;
  padding:14px 14px 10px;
  border-radius:10px;
  border:1px solid #c7d7e3;
  background:#fff;
  box-shadow:0 12px 24px rgba(23,48,71,.14);
  transform:rotate(-2deg);
}

body.site-shell .site-doc-sheet.offset{
  position:absolute;
  top:20px;
  left:54%;
  transform:rotate(4deg);
}

body.site-shell .site-doc-ribbon{
  width:50px;
  height:12px;
  border-radius:999px;
  margin-left:auto;
  background:linear-gradient(90deg,#8ac2e8,#4d97cc);
}

body.site-shell .site-doc-line{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background:#e8eff4;
}

body.site-shell .site-doc-line.long{
  margin-top:26px;
  width:90%;
}

body.site-shell .site-services{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

body.site-shell .site-service-card{
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--site-border);
  background:#fff;
  box-shadow:0 10px 22px rgba(23,47,69,.12);
}

body.site-shell .site-service-card img{
  width:100%;
  height:182px;
  object-fit:cover;
}

body.site-shell .site-service-content{
  padding:18px 18px 20px;
}

body.site-shell .site-service-content h3{
  margin:0;
  font-size:1.8rem;
  line-height:1;
  color:#12293b;
}

body.site-shell .site-service-content p{
  margin:11px 0 0;
  color:#3e556b;
  font-size:15px;
  line-height:1.5;
}

body.site-shell .site-bottom{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:18px;
  padding-bottom:16px;
}

body.site-shell .site-faq-card{
  border:1px solid var(--site-border);
  border-radius:14px;
  box-shadow:0 10px 22px rgba(23,47,69,.1);
}

body.site-shell .site-faq-card{
  background:#e6f2fb;
  padding:22px 22px 20px;
}

body.site-shell .site-faq-card h2{
  margin:0 0 10px;
  font-size:2.3rem;
  line-height:1;
  color:#122b3e;
}

body.site-shell .site-faq-card details{
  margin-top:10px;
  border:1px solid var(--site-border);
  border-radius:10px;
  padding:10px 12px;
  background:linear-gradient(180deg,#eef7ff 0%,#dcefff 100%);
  box-shadow:none;
}

body.site-shell .site-faq-card summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  padding-right:18px;
  font-size:15px;
  font-weight:700;
  color:#173046;
}

body.site-shell .site-faq-card summary::-webkit-details-marker{
  display:none;
}

body.site-shell .site-faq-card summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  color:#4a6881;
  font-weight:700;
}

body.site-shell .site-faq-card details[open] summary::after{
  content:"-";
}

body.site-shell .site-faq-card p{
  margin:10px 0 0;
  color:#40586f;
  font-size:14px;
  line-height:1.5;
}

body.site-shell .site-footer{
  margin-top:8px;
  padding:25px 24px 16px;
  display:grid;
  grid-template-columns:1.15fr .95fr .75fr .75fr;
  gap:18px;
  background:linear-gradient(120deg,#5ca8dc 0%,#6cb8e8 46%,#5aa4d7 100%);
  color:#07273d;
  border-top:1px solid rgba(88,149,194,.72);
  border-radius:0 0 15px 15px;
}

body.site-shell .site-footer a{
  color:#0b2f49;
  text-decoration:none;
  font-weight:600;
}

body.site-shell .site-footer a:hover{
  text-decoration:underline;
}

body.site-shell .site-footer-brand p{
  margin:6px 0 0;
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
  color:#215173;
}

body.site-shell .site-footer-brand .site-footer-description{
  max-width:28ch;
  margin-top:16px;
  font-size:14px;
  line-height:1.45;
  font-weight:500;
  letter-spacing:0;
  text-transform:none;
  color:#0b2f49;
}

body.site-shell .site-footer-logo{
  font-size:clamp(2.2rem, 2.2vw, 2.6rem);
  line-height:.88;
}

body.site-shell .site-footer h3{
  margin:0;
  font-size:17px;
  font-weight:600;
  color:#0b2f49;
  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

body.site-shell .site-footer-contact{
  font-style:normal;
}

body.site-shell .site-footer-contact h3 a{
  display:inline;
  margin-top:0;
  font-size:inherit;
  font-weight:inherit;
}

body.site-shell .site-footer-contact span,
body.site-shell .site-footer-contact a{
  display:block;
  margin-top:7px;
  font-size:14px;
  font-weight:500;
}

body.site-shell .site-footer-links{
  display:flex;
  flex-direction:column;
  gap:6px;
}

body.site-shell .site-footer-links h3{
  margin-bottom:4px;
}

body.site-shell .site-footer-links a{
  font-size:14px;
  font-weight:500;
}

body.site-shell .site-footer-copy{
  grid-column:1 / -1;
  border-top:1px solid rgba(11,47,73,.2);
  padding-top:12px;
  text-align:center;
  font-size:13px;
  color:#114567;
}

body.site-shell .site-emergency-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  background:rgba(8,20,32,.56);
  z-index:1200;
}

body.site-shell .site-emergency-modal.open{
  display:flex;
}

body.site-shell .site-emergency-card{
  width:min(520px, 100%);
  border-radius:16px;
  border:1px solid var(--site-border);
  background:#fff;
  box-shadow:0 24px 44px rgba(10,25,38,.28);
  padding:18px 18px 16px;
}

body.site-shell .site-emergency-card h3{
  margin:0;
  color:#13293c;
  font-size:1.28rem;
  line-height:1.2;
}

body.site-shell .site-emergency-card p{
  margin:10px 0 0;
  color:#38536a;
  font-size:14px;
  line-height:1.45;
}

body.site-shell .site-emergency-actions{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

body.site-shell .site-emergency-actions button{
  border-radius:10px;
  padding:9px 14px;
  font-size:13px;
  font-weight:700;
}

body.site-shell .site-emergency-cancel{
  border:1px solid #b3c6d8;
  background:#fff;
  color:#244057;
}

body.site-shell .site-emergency-call{
  border:1px solid #b83838;
  background:#b83838;
  color:#fff;
}

body.site-shell .home-quick-actions{
  position:fixed;
  left:50%;
  right:auto;
  bottom:16px;
  transform:translateX(-50%) translateY(14px);
  z-index:108;
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:10px;
  padding:8px 10px;
  width:max-content;
  max-width:calc(100vw - 116px);
  border-radius:16px;
  border:1px solid rgba(190,207,221,.78);
  background:rgba(255,255,255,.42);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:
    0 18px 36px rgba(19,49,74,.16),
    inset 0 1px 0 rgba(255,255,255,.24);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}

body.site-shell .home-quick-actions.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

body.site-shell .home-quick-actions__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 11px;
  border-radius:11px;
  text-decoration:none;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.01em;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

body.site-shell .home-quick-actions__item:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 22px rgba(15,23,42,.12);
}

body.site-shell .home-quick-actions__icon{
  display:grid;
  place-items:center;
  width:17px;
  height:17px;
  flex:0 0 17px;
}

body.site-shell .home-quick-actions__icon--alert{
  border-radius:999px;
  background:#b83838;
  color:#fff;
  font-size:10px;
  line-height:1;
  font-weight:800;
}

body.site-shell .home-quick-actions__icon svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

body.site-shell .home-quick-actions__item--urgent{
  border:1px solid rgba(183,74,74,.45);
  background:linear-gradient(180deg,#fff4f4 0%,#ffe7e7 100%);
  color:#8f2323;
}

body.site-shell .home-quick-actions__item--request{
  border:1px solid rgba(34,197,94,.46);
  background:linear-gradient(180deg,#ecfdf3 0%,#d1fae5 100%);
  color:#166534;
}

body.site-shell .home-quick-actions__item--login{
  border:1px solid rgba(60,128,189,.52);
  background:linear-gradient(180deg,#eef7ff 0%,#dcefff 100%);
  color:#123f62;
}

body.site-shell .home-quick-actions__item--urgent:hover{
  background:linear-gradient(180deg,#ffecec 0%,#ffdbdb 100%);
}

body.site-shell .home-quick-actions__item--request:hover{
  background:linear-gradient(180deg,#dcfce7 0%,#bbf7d0 100%);
}

body.site-shell .home-quick-actions__item--login:hover{
  background:linear-gradient(180deg,#e4f2ff 0%,#cfe7fb 100%);
}

body.site-shell .site-back-to-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(94,169,220,.52);
  background:rgba(255,255,255,.46);
  color:#24577f;
  backdrop-filter:blur(12px);
  box-shadow:
    0 10px 22px rgba(19,49,74,.16),
    inset 0 1px 0 rgba(255,255,255,.32);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:110;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.site-shell .site-back-to-top.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

body.site-shell .site-back-to-top:hover{
  background:rgba(255,255,255,.58);
  border-color:rgba(61,138,193,.62);
  box-shadow:
    0 12px 24px rgba(19,49,74,.18),
    inset 0 1px 0 rgba(255,255,255,.4);
}

body.site-shell .site-back-to-top:focus-visible{
  outline:2px solid #5ea9dc;
  outline-offset:2px;
}

body.site-shell .site-back-to-top svg{
  width:26px;
  height:26px;
  fill:currentColor;
}

body.site-shell .reveal{
  opacity:1;
  transform:none;
  animation:none;
}

@media (max-width: 980px){
  body.site-shell .site-main{
    padding:0 10px 28px;
  }

  body.site-shell .site-main--quick-actions{
    padding-bottom:94px;
  }

  body.site-shell .home-quick-actions{
    gap:8px;
    padding:7px 9px;
    border-radius:15px;
    max-width:calc(100vw - 104px);
  }

  body.site-shell .home-quick-actions__item{
    min-height:34px;
    gap:7px;
    padding:0 10px;
    font-size:12px;
  }

  body.site-shell .home-quick-actions__icon{
    width:16px;
    height:16px;
    flex:0 0 16px;
  }

  body.site-shell .home-quick-actions__icon svg{
    width:16px;
    height:16px;
  }

  body.site-shell .home-quick-actions__icon--alert{
    font-size:9px;
  }

  body.site-shell .site-canvas{
    border-radius:12px;
  }

  body.site-shell .site-header{
    grid-template-columns:minmax(200px,max-content) minmax(0,1fr);
    column-gap:14px;
    row-gap:4px;
    padding:10px 14px 8px;
  }

  body.site-shell .site-brand-wordmark{
    font-size:1.95rem;
  }

  body.site-shell .site-brand-subline{
    font-size:10.5px;
    letter-spacing:.09em;
  }

  body.site-shell .site-brand-logo{
    width:clamp(260px, 32vw, 340px);
    height:auto;
    max-height:92px;
  }

  body.site-shell .site-nav{
    gap:12px;
  }

  body.site-shell .site-nav .cta{
    height:32px;
    padding:0 10px;
  }

  body.site-shell .site-hero{
    display:grid;
    grid-template-columns:1fr;
    min-height:0;
    background:linear-gradient(180deg,#edf5fb 0%, #e9f2f9 100%);
    overflow:visible;
  }

  body.site-shell .site-hero::before{
    display:none;
  }

  body.site-shell .site-hero-copy{
    order:2;
    width:auto;
    padding:20px 14px 14px;
  }

  body.site-shell .site-hero-image-wrap{
    order:1;
    position:relative;
    inset:auto;
    min-height:184px;
  }

  body.site-shell .site-hero-image-wrap img{
    object-position:74% 66%;
    transform:scale(.90);
    transform-origin:center;
  }

  body.site-shell .site-hero-copy h1{
    max-width:unset;
    font-size:clamp(1.82rem, 8.6vw, 2.24rem);
  }

  body.site-shell .hero-title-break{
    display:none;
  }

  body.site-shell .site-hero-copy p{
    max-width:46ch;
  }

  body.site-shell .site-card,
  body.site-shell .site-services,
  body.site-shell .site-bottom{
    margin:16px 12px 0;
  }

  body.site-shell .site-region,
  body.site-shell .site-admin-types,
  body.site-shell .site-why,
  body.site-shell .site-certificate,
  body.site-shell .site-membership{
    grid-template-columns:1fr;
    padding:20px;
  }

  body.site-shell .site-admin-types-grid{
    grid-template-columns:1fr;
  }

  body.site-shell .site-admin-type-card{
    min-height:unset;
  }

  body.site-shell .site-admin-type-body{
    padding:18px;
  }

  body.site-shell .site-admin-type-icon{
    width:84px;
    height:84px;
    margin-bottom:22px;
  }

  body.site-shell .site-admin-type-card h3{
    font-size:1.55rem;
    min-height:auto;
  }

  body.site-shell .site-admin-type-tag,
  body.site-shell .site-admin-type-card p{
    min-height:auto;
  }

  body.site-shell .site-admin-type-media img{
    height:294px;
  }

  body.site-shell .site-region .site-map-card{
    order:-1;
  }

  body.site-shell .site-map-showcase{
    height:220px;
  }

  body.site-shell .site-map-arrow{
    width:28px;
    height:28px;
  }

  body.site-shell .site-doc-stack{
    min-height:180px;
    margin-top:4px;
  }

  body.site-shell .site-services{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  body.site-shell .site-bottom{
    grid-template-columns:1fr;
  }

  body.site-shell .site-footer{
    grid-template-columns:1fr 1fr;
    padding:20px 16px 14px;
  }

  body.site-shell .site-footer-logo{
    font-size:1.95rem;
  }
}

@media (max-width: 740px){
  body.site-shell .site-header{
    grid-template-columns:minmax(0,1fr) auto;
    grid-template-areas:
      "brand ."
      "brand meta";
    row-gap:2px;
    column-gap:10px;
    padding:18px 12px 16px;
    align-items:center;
    grid-template-rows:32px 32px;
  }

  body.site-shell .site-header-meta{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    justify-self:end;
    align-self:center;
    gap:24px;
  }

  body.site-shell .site-lang-switch{
    justify-self:start;
  }

  body.site-shell .site-header-actions{
    margin-left:0;
    gap:0;
    justify-self:end;
  }

  body.site-shell .site-emergency-btn{
    height:32px;
    min-width:96px;
    justify-content:center;
    padding:0 10px;
    font-size:11.5px;
  }

  body.site-shell .site-mobile-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  body.site-shell .site-nav{
    display:none;
    grid-column:1 / -1;
  }

  body.site-shell .site-nav.is-open{
    position:absolute;
    top:calc(100% - 10px);
    right:0;
    z-index:50;
    display:grid;
    width:max-content;
    max-width:calc(100vw - 32px);
    gap:8px;
    padding:10px 12px;
    background:rgba(255,255,255,.62);
    border:1px solid var(--site-border);
    border-radius:14px;
    box-shadow:0 18px 34px rgba(26,55,78,.16);
    backdrop-filter:blur(10px);
  }

  body.site-shell .site-nav.is-open > a{
    display:inline-flex;
    width:auto;
    justify-self:center;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:0 12px;
    white-space:nowrap;
    text-align:center;
  }

  body.site-shell .site-nav.is-open > a.cta{
    width:8.6rem;
    box-sizing:border-box;
    padding-inline:0.85rem;
  }

  body.site-shell .site-nav.is-open > a[aria-current="page"]:not(.cta){
    background:rgba(94,169,220,.12);
    color:#174566;
    border-radius:10px;
  }

  body.site-shell .site-nav.is-open > a[aria-current="page"]:not(.cta)::after{
    display:none;
  }

  body.site-shell .site-services{
    grid-template-columns:1fr;
  }

  body.site-shell .site-service-content h3{
    font-size:1.7rem;
  }

  body.site-shell .site-footer{
    grid-template-columns:1fr;
  }

  body.site-shell .site-footer-copy{
    text-align:left;
  }

  body.site-shell .site-emergency-actions{
    justify-content:stretch;
  }

  body.site-shell .site-emergency-actions button{
    flex:1 1 100%;
  }

  body.site-shell .site-back-to-top{
    right:12px;
    bottom:12px;
    width:54px;
    height:54px;
  }

  body.site-shell .home-quick-actions{
    left:50%;
    right:auto;
    bottom:12px;
    transform:translateX(-50%) translateY(14px);
    justify-content:center;
    gap:6px;
    padding:6px 8px;
    border-radius:14px;
    width:max-content;
    max-width:calc(100vw - 88px);
  }

  body.site-shell .home-quick-actions.is-visible{
    transform:translateX(-50%) translateY(0);
  }

  body.site-shell .home-quick-actions__item{
    flex:0 1 auto;
    min-width:auto;
    justify-content:center;
    min-height:32px;
    gap:6px;
    padding:0 9px;
    font-size:11.25px;
    border-radius:10px;
  }

  body.site-shell .home-quick-actions__icon{
    width:15px;
    height:15px;
    flex:0 0 15px;
  }

  body.site-shell .home-quick-actions__icon svg{
    width:15px;
    height:15px;
  }

  body.site-shell .home-quick-actions__icon--alert{
    font-size:8.5px;
  }

  body.site-shell .home-quick-actions__label{
    white-space:nowrap;
  }
}

@media (max-width: 520px){
  body.site-shell .home-quick-actions{
    gap:5px;
    padding:5px 7px;
    max-width:calc(100vw - 84px);
  }

  body.site-shell .home-quick-actions__item{
    min-height:30px;
    gap:5px;
    padding:0 8px;
    font-size:10.75px;
  }

  body.site-shell .home-quick-actions__icon{
    width:14px;
    height:14px;
    flex:0 0 14px;
  }

  body.site-shell .home-quick-actions__icon svg{
    width:14px;
    height:14px;
  }
}

@media (prefers-reduced-motion: reduce){
  body.site-shell .site-hero-image-wrap img{
    animation:none;
  }

  body.site-shell .reveal{
    transition:none;
    animation:none;
    opacity:1;
    transform:none;
  }

  body.site-shell .site-back-to-top{
    transition:none;
  }

  body.site-shell .home-quick-actions{
    transition:none;
  }
}
