:root {
  --container: 1100px;
  --scrollbar-inline: calc(100vw - 100%);
  --space-1: .375rem; --space-2: .75rem; --space-3: 1.25rem; --space-4: 2rem; --space-5: 3rem; --space-6: 5rem;
  --brand: #d90429; /* fire brigade red */
  --brand-dark: #a5021f;
  --ink: #0f172a;  /* text on light */
  --ink-2: #475569; /* muted on light */
  --bg: #eef2f8;   /* light base with tint */
  --card: #f9fbff; /* soft surfaces */
  --card-rgb: 249, 251, 255;
  --glass-rgb: 244, 248, 255;
  --glass-strong-rgb: 233, 239, 252;
  --header-h: 64px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, Arial, sans-serif; color: var(--ink); background: var(--bg); }
@media (max-width: 767px) {
  body { padding-bottom: calc(5.6rem + env(safe-area-inset-bottom, 0)); }
}

.container { width: min(100% - 1.5rem, var(--container)); margin-inline: auto; }
@media (min-width: 768px) {
  .container { width: min(100% - 2rem, var(--container)); }
}

/* Header */
.site-header { position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 1500; background: rgba(var(--glass-rgb), .55); border-bottom: 1px solid rgba(var(--glass-strong-rgb), .65); box-shadow: 0 18px 60px rgba(15,23,42,.12), inset 0 1px 0 rgba(var(--glass-strong-rgb), .7); backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%); isolation: isolate; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.site-header::before { content:""; position:absolute; inset:0; background: radial-gradient(130% 150% at 15% -45%, rgba(var(--glass-rgb), .65), transparent 58%), radial-gradient(80% 140% at 80% 140%, rgba(217,4,41,.16), transparent 65%), linear-gradient(120deg, rgba(var(--glass-rgb), .35), rgba(var(--glass-rgb), .08)); opacity:.95; pointer-events:none; z-index:0; }
.header-inner { display:flex; align-items:center; justify-content:space-between; min-height: var(--header-h); padding: 0; position: relative; z-index: 1; gap: .75rem; }
.logo { color: var(--ink); text-decoration:none; font-weight:800; letter-spacing:.2px; display:inline-flex; align-items:center; gap:.7rem }
.logo-img { height: 48px; width: auto; display:block }
.logo-title { font-weight: 800; font-size: .96rem; letter-spacing: .2px; color: var(--ink) }
@media (min-width: 480px) {
  .logo-title { font-size: 1.05rem; }
}
@media (max-width: 374px) {
  .logo-title { display: none; }
}
@media (max-width: 480px) { .logo-img { height: 40px } }
.nav { position: fixed; top: var(--header-h); left: 0; right: 0; display:flex; flex-direction: column; gap: .25rem; align-items:stretch; padding: .9rem 1rem 1.15rem; background: rgba(var(--glass-strong-rgb), .92); border:1px solid rgba(var(--glass-strong-rgb), .65); border-top: 0; border-radius: 0 0 18px 18px; box-shadow: 0 28px 65px rgba(15,23,42,.22); backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%); transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .18s ease, opacity .18s ease, visibility .18s ease; z-index: 1001; }
.nav a { color:#0f172a; text-decoration:none; opacity:.9; transition: color .18s ease, opacity .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease; display:block; padding: .7rem .5rem; border-radius: 10px; font-weight: 600; }
.nav a:hover { opacity:1; color:#111827; }
/* Subtle underline indicator for nav links (B2B-friendly) */
.nav a { position: relative }
.nav a:not(.btn) { border: 0; box-shadow: none; transition: color .18s ease, background-color .18s ease; }
.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible { color: #0c1120; background: rgba(148,163,184,.12); }
.nav a:not(.btn)::after { content: none; }
.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after { opacity: .7; transform: scaleX(1); }
.nav-phone {
  font-variant-numeric: tabular-nums;
}
.nav .btn { margin-top: .25rem; width: 100%; justify-content: center; }
.nav-cta {
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px rgba(217,4,41,.28);
  border: 1px solid rgba(255,255,255,.18);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(217,4,41,.34);
}
.nav-spotlight {
  background: rgba(var(--glass-rgb), .62);
}
.nav-spotlight .nav-phone {
  color: #0f172a;
  border-radius: 999px;
  font-weight: 850;
}
.nav-spotlight .nav-cta {
  border-radius: 999px;
  padding-inline: 1.05rem;
}

.site-footer { border-top:1px solid #d7e2f0; background:#e6ecf7; }
.site-footer.footer-bold {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(36rem 16rem at 12% 0%, rgba(217,4,41,.1), transparent 68%),
    linear-gradient(180deg, #e7edf7, #dbe5f2);
}
.site-footer.footer-bold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.22) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.site-footer.footer-bold .footer-inner {
  position: relative;
  z-index: 1;
}
.footer-inner { display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between; gap: .9rem; padding: 1.25rem 0; font-size:.95rem; color:#475569 }
.footer-brand { display:flex; align-items:center; gap:.6rem }
.footer-brand-copy { display:grid; gap:.12rem }
.footer-credit { font-size:.84rem; color:#7b8aa3 }
.footer-credit a { color:#5b6c89; text-decoration:none }
.footer-credit a:hover { color:#0f172a }
.logo-small { height: 24px; width:auto; display:block }
.footer-links { display:flex; flex-wrap:wrap; gap: .75rem 1rem; }
.footer-links a { color:#9eaec6; text-decoration:none; margin-left:0 }
.footer-links a:hover { color:#0f172a }
.footer-bold .footer-links a,
.footer-bold .footer-links .link-button {
  color: #475569;
  font-weight: 750;
}
.footer-bold .footer-links a:hover,
.footer-bold .footer-links .link-button:hover {
  color: var(--brand-dark);
}
.footer-admin-link { font-size: inherit; letter-spacing: normal; text-transform: none; opacity: 1; }
@media (min-width: 901px) {
  .footer-inner { flex-direction:row; align-items:center; gap: 1rem; }
}

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.7rem 1.1rem; border-radius:.6rem; text-decoration:none; font-weight:600; }
.btn-primary { background: linear-gradient(135deg, #ef233c, #d90429); color:#fff; box-shadow: 0 6px 18px rgba(217,4,41,.25); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: transparent; color:#0f172a; border:1px solid #cbd5e1 }
.btn-secondary:hover { background: rgba(0,0,0,.04); }
.btn-slide {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .22s cubic-bezier(.22, 1, .36, 1), box-shadow .22s ease, filter .22s ease;
}
.btn-slide::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  z-index: -1;
}
.btn-slide::after {
  content: "";
  position: absolute;
  inset: auto 1rem .38rem 1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  transform: scaleX(.2);
  transform-origin: left;
  opacity: 0;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.btn-slide:hover,
.btn-slide:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(217,4,41,.34);
}
.btn-slide:hover::before,
.btn-slide:focus-visible::before {
  animation: safety-button-sheen .85s cubic-bezier(.22, 1, .36, 1);
}
.btn-slide:hover::after,
.btn-slide:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
.btn-attendance-highlight {
  border-color: rgba(37,99,235,.26);
  background: linear-gradient(180deg, #eef4ff, #dbeafe);
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(37,99,235,.14);
}
.btn-attendance-highlight:hover {
  background: linear-gradient(180deg, #e0ecff, #bfdbfe);
  border-color: rgba(37,99,235,.4);
  color: #1e40af;
}
.btn-cta-ghost { font-weight: 800; border-radius: 12px; padding: .9rem 1.2rem; border-width: 1.5px; }
.btn-cta-ghost:hover { background: rgba(255,255,255,.12); }
.muted { color:#94a3b8; font-size:.9rem }

/* Focus states for accessibility */
.btn:focus, input:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Sections */
.section { position: relative; padding: var(--space-5) 0; }
.section.alt { padding: calc(var(--space-5) + 1.25rem) 0; }
.page-hero { padding: calc(var(--space-5) + 1.75rem) 0; }
@media (min-width: 901px) {
  .section { padding: var(--space-6) 0; }
  .section.alt { padding: calc(var(--space-6) + 2rem) 0; }
  .page-hero { padding: calc(var(--space-6) + 3rem) 0; }
}

/* Fixed background utility */
.bg-fixed {
  background-image: var(--bg);
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  color: #fff; /* ensure readable text on images */
}
.overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,9,18,.55), rgba(6,9,18,.8)); z-index:-1; }

/* Fancy side shadow for the hero */
.hero > .overlay {
  background:
    /* base vertical darkening */
    linear-gradient(180deg, rgba(6,9,18,.56), rgba(6,9,18,.84)),
    /* deep right-side vignette */
    radial-gradient(70% 120% at 115% 50%, rgba(6,9,18,.86), transparent 55%),
    /* angular sweep from right */
    conic-gradient(from 260deg at 110% 50%, rgba(6,9,18,.52), rgba(6,9,18,0) 70%),
    /* subtle brand glow edge */
    radial-gradient(40% 60% at 105% 55%, rgba(217,4,41,.16), transparent 60%),
    /* soft left balance */
    radial-gradient(85% 100% at -15% 50%, rgba(6,9,18,.22), transparent 60%);
}
@media (min-width: 900px) {
  .hero > .overlay {
    background:
      linear-gradient(180deg, rgba(6,9,18,.56), rgba(6,9,18,.86)),
      /* stronger right vignette */
      radial-gradient(60% 120% at 114% 50%, rgba(6,9,18,.9), transparent 58%),
      /* angled side shadow sweep */
      linear-gradient(74deg, rgba(6,9,18,.46) 0%, rgba(6,9,18,0) 48%),
      /* brand accent a touch stronger on desktop */
      radial-gradient(38% 58% at 105% 55%, rgba(217,4,41,.19), transparent 60%),
      radial-gradient(80% 100% at -12% 50%, rgba(6,9,18,.24), transparent 60%);
  }
}

@media (min-width: 1025px) {
  .bg-fixed { background-attachment: fixed; }
}

/* Hero */
.hero { min-height: 100vh; min-height: 100svh; display:grid; place-items:center; text-align:center; }
.hero-inner { display:grid; gap: 1.5rem; max-width: 960px; margin-inline:auto; position: relative }
.hero h1 { font-size: clamp(1.85rem, 3vw + 1rem, 2.6rem); margin:0; line-height: 1.08; }
.hero p { color:#eef2f6; margin: .2rem auto 0; max-width: 48ch; }
.cta { display:flex; gap: .9rem; justify-content:center; margin-top: .5rem; flex-wrap:wrap }
.hero .cta { margin-top: 1.25rem; }

/* Main layout offset for fixed header */
.site-main { padding-top: var(--header-h); }
.site-main .hero:first-child { margin-top: calc(-1 * var(--header-h)); }

.safety-hero {
  overflow: hidden;
  isolation: isolate;
}
.hero.safety-hero {
  min-height: 100svh;
  padding-block: clamp(4.75rem, 12svh, 8rem) clamp(2.6rem, 7svh, 4.8rem);
}
.safety-hero > .container {
  position: relative;
  z-index: 2;
}
.page-hero.safety-hero {
  min-height: min(78svh, 44rem);
  display: grid;
  align-items: center;
  padding-block: clamp(4.75rem, 12svh, 8rem);
}
.page-hero.safety-hero h1,
.hero.safety-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 7vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.08em;
  margin-bottom: .8rem;
}
.page-hero.safety-hero p,
.hero.safety-hero p {
  max-width: 58ch;
  font-size: clamp(1rem, 1vw + .8rem, 1.25rem);
  line-height: 1.55;
}
.safety-hero .overlay {
  background:
    radial-gradient(60% 75% at 90% 38%, rgba(217,4,41,.42), transparent 60%),
    linear-gradient(112deg, rgba(5,8,17,.88) 0%, rgba(5,8,17,.72) 48%, rgba(5,8,17,.9) 100%),
    linear-gradient(180deg, rgba(6,9,18,.54), rgba(6,9,18,.84));
}
.safety-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    radial-gradient(42rem 24rem at 82% 22%, rgba(255,255,255,.13), transparent 70%);
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
}
.safety-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -32% auto;
  width: min(36rem, 90vw);
  height: min(36rem, 90vw);
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,4,41,.28), transparent 62%);
  animation: safety-hero-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

/* Header scroll-state polish */
.site-header.scrolled { background: rgba(var(--glass-rgb), .85); box-shadow: 0 22px 55px rgba(15,23,42,.18), inset 0 1px 0 rgba(var(--glass-strong-rgb), .95); border-bottom-color: rgba(var(--glass-strong-rgb), .9); }
.site-header.scrolled::before { opacity: 1; }

/* Hero glass box */
.hero-box { position: relative; z-index: 1; padding: 1.4rem 1.15rem 1.6rem; border-radius: 18px; background: rgba(var(--glass-rgb), .12); border: 1px solid rgba(var(--glass-strong-rgb), .32); backdrop-filter: blur(12px) saturate(120%); box-shadow: 0 24px 60px rgba(2,6,23,.55), 0 0 0 1px rgba(var(--glass-strong-rgb), .2) inset, 0 0 48px rgba(217,4,41,.12); display:grid; gap: .9rem }
@media (min-width: 640px) {
  .hero-box { padding: 1.9rem 1.9rem 2.1rem; }
}
.hero .tagline { margin-top: .25rem; }
.badge-glass { position:absolute; top: -12px; left: -12px; padding:.35rem .65rem; border-radius:999px; font-weight:800; letter-spacing:.3px; color:#fff; background: rgba(217,4,41,.18); border:1px solid rgba(217,4,41,.5); box-shadow: 0 6px 18px rgba(0,0,0,.25) }

/* Spotlight behind hero content */
.hero-inner { position: relative }
.hero-inner::before { content:""; position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); width: min(92vw, 980px); height: min(60vh, 520px); pointer-events: none; z-index: 0; filter: blur(12px);
  background:
    radial-gradient(closest-side, rgba(var(--glass-rgb), .24), rgba(var(--glass-rgb), 0) 70%),
    radial-gradient(35% 35% at 56% 38%, rgba(217,4,41,.14), transparent 72%);
}
.hero-box h1 { text-shadow: 0 2px 14px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.6) }
.hero-box p { text-shadow: 0 1px 2px rgba(0,0,0,.45) }

/* Hero split: content left, logo right */
.hero-box.hero-split { grid-template-columns: 1fr; align-items: center; }
.hero-box.hero-split .hero-content { display: grid; gap: .7rem; }
.hero-box.hero-split .hero-visual { display: grid; place-items: center; }
.hero-box.hero-split .hero-visual { order: 2; }
.hero-box.hero-split .hero-content { order: 1; }
.brand-mark { width: clamp(120px, 44vw, 220px); height: auto; opacity: .25; filter: drop-shadow(0 6px 18px rgba(0,0,0,.3)); user-select: none; pointer-events: none; }
.home-hero-box {
  width: min(100%, 1180px);
  padding: clamp(1.1rem, 3.2vw, 2.6rem);
  border-radius: clamp(14px, 2vw, 26px);
  background:
    linear-gradient(135deg, rgba(8,13,25,.84), rgba(8,13,25,.52)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.22), transparent 62%);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 34px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.1) inset;
  overflow: hidden;
}
.home-hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(239,35,60,.28), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 20px);
  opacity: .5;
  pointer-events: none;
}
.home-hero-box > * {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  width: fit-content;
  padding-left: .7rem;
  color: #fff;
  border-left: 4px solid #ef233c;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero.safety-hero .hero-usp {
  max-width: 62ch;
  color: #edf2f7;
  font-size: clamp(1.05rem, 1.2vw + .82rem, 1.35rem);
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .2rem;
}
.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 .78rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .84rem;
  font-weight: 850;
}
.home-hero-box .hero-visual {
  position: relative;
  min-height: clamp(9rem, 26vw, 18rem);
}
.home-hero-box .brand-mark {
  width: clamp(11rem, 25vw, 22rem);
  opacity: .18;
  transform: rotate(-7deg);
  filter: drop-shadow(0 26px 48px rgba(0,0,0,.36));
}
@media (max-width: 520px) {
  .home-hero-box .cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-proof-row span {
    flex: 1 1 auto;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .hero-box.hero-split { grid-template-columns: 1.2fr .8fr; }
  .home-hero-box.hero-split { grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); }
  .hero-box.hero-split .hero-visual { order: 2; }
  .hero-box.hero-split .hero-content { order: 1; }
  .brand-mark { width: clamp(140px, 26vw, 280px); }
  .home-hero-box .hero-content {
    padding-block: clamp(.8rem, 3vw, 2rem);
  }
}

@media (min-width: 901px) {
  .hero { text-align: left }
  .hero p { margin-left: 0 }
  .cta { justify-content: flex-start }
}

/* Hero decorative logo */
.hero-logo {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 42vw, 560px);
  height: auto;
  opacity: .08;
  filter: blur(1.5px) drop-shadow(0 8px 24px rgba(0,0,0,.25));
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 600px) {
  .hero-logo { opacity: .06; width: min(64vw, 360px); top: 48%; }
}

/* Kicker & tagline */
.pill { display:inline-block; background: var(--brand); color:#fff; padding:.3rem .6rem; border-radius:999px; font-weight:700; font-size:.85rem; letter-spacing:.3px }
.tagline { font-weight:800; color: var(--brand) }

/* CTA Tiles (Kachel-CTA) */
.cta-tiles { padding: 0; }
.cta-tile { position: relative; overflow: hidden; background:
  radial-gradient(52rem 26rem at 82% 12%, rgba(217,4,41,.35), transparent 64%),
  radial-gradient(42rem 20rem at 8% 0%, rgba(255,255,255,.12), transparent 58%),
  linear-gradient(135deg, #111827 0%, #0a0f1d 54%, #200712 100%);
  color:#fff; border-radius: 0; border-top:1px solid #101826; border-bottom:1px solid #101826; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); padding: clamp(2.1rem, 6svh, 4rem) 0; isolation: isolate; }
.cta-tile::before { content:""; position:absolute; inset:0; pointer-events:none; background:
  linear-gradient(105deg, transparent 0 36%, rgba(255,255,255,.08) 46%, transparent 58% 100%),
  repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px);
  transform: translateX(-12%);
  animation: safety-cta-slide 8s cubic-bezier(.22, 1, .36, 1) infinite;
}
.cta-tile::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 24rem);
  background: linear-gradient(90deg, rgba(217,4,41,.22), transparent);
  pointer-events: none;
}
.cta-tile-head { display:grid; gap:.35rem; text-align:left; }
.cta-tile-head h2 { margin: 0; font-size: clamp(1.75rem, 3.4vw, 3.4rem); line-height: .98; letter-spacing: -.055em; }
.cta-tile-head p { margin:.1rem 0 0; color:#dbe3f3 }

/* New split layout: left text box, right dominant CTA */
.cta-split { display:grid; grid-template-columns: 1fr; align-items:center; gap: 1.25rem; }
.cta-left,
.cta-right { position: relative; z-index: 2; }
.cta-left { display:block }
.cta-right { display:grid; gap:.45rem; justify-items:start; justify-self:start; align-self:center; text-align:left; max-width: none; width: 100%; }
.btn-cta-lg { padding: .95rem 1.3rem; font-size: 1.05rem; font-weight: 800; border-radius: 12px; box-shadow: 0 16px 44px rgba(217,4,41,.35); line-height: 1.05; }
.cta-sub { color:#dbe3f3; font-size: .92rem; line-height: 1.35; max-width: 34ch; }
.btn-cta-lg { width: 100%; text-align: center; justify-content: center; }
@media (min-width: 901px) {
  .cta-split { grid-template-columns: 1.2fr .8fr; }
  .cta-right { justify-items:end; justify-self:end; text-align:right; max-width: 520px; width: auto; }
  .btn-cta-lg { width: auto; }
}
.cta-tiles--bold {
  padding: 0;
}
.cta-tile--bold {
  padding: clamp(3rem, 7svh, 5rem) 0;
  background:
    radial-gradient(60rem 28rem at 85% 10%, rgba(217,4,41,.42), transparent 64%),
    radial-gradient(42rem 22rem at 10% 0%, rgba(255,255,255,.12), transparent 58%),
    linear-gradient(135deg, #111827 0%, #090e1a 46%, #270611 100%);
}
.cta-tile--bold .container {
  width: min(100% - 1.25rem, 1320px);
}
.cta-tile--bold::before {
  opacity: .72;
  animation-duration: 6s;
}
.cta-tile--bold::after {
  width: min(48vw, 30rem);
  background: linear-gradient(90deg, rgba(217,4,41,.32), transparent);
}
.cta-tile--bold .cta-split {
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.cta-tile--bold .cta-tile-head {
  gap: .55rem;
}
.cta-tile--bold .cta-tile-head h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .9;
}
.cta-tile--bold .cta-tile-head p {
  max-width: 44ch;
  color: #f1f5f9;
  font-size: clamp(1rem, .9vw + .9rem, 1.2rem);
}
.cta-tile--bold .cta-right {
  gap: .65rem;
}
.cta-tile--bold .btn-cta-lg {
  padding: 1.05rem 1.45rem;
  font-size: 1.08rem;
  box-shadow: 0 18px 48px rgba(217,4,41,.4);
}
.cta-tile--bold .btn-primary {
  background: linear-gradient(135deg, #ff3b4f, #d90429);
}
.cta-tile--bold .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
}
.cta-tile--bold .cta-sub {
  max-width: 40ch;
  color: #dbe3f3;
}
@media (min-width: 901px) {
  .cta-tile--bold .cta-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  }
  .cta-tile--bold .cta-right {
    max-width: 560px;
  }
}

/* Feature band (Praxis statt Theorie) */
.feature-band { display:grid; justify-items:center; padding: 1rem 0; text-align:center; }
.glass-panel { color:#fff; background:
  linear-gradient(135deg, rgba(15,23,42,.72), rgba(15,23,42,.44)),
  radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.2), transparent 58%);
  border:1px solid rgba(255,255,255,.3); border-radius: clamp(22px, 4vw, 34px); padding: clamp(1.25rem, 3vw, 2rem); backdrop-filter: blur(14px) saturate(130%); -webkit-backdrop-filter: blur(14px) saturate(130%); box-shadow: 0 26px 70px rgba(0,0,0,.4); max-width: 900px }
.feature-band .chips { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.35rem }
.feature-band .chip { display:inline-flex; align-items:center; padding:.35rem .6rem; border-radius: 999px; border:1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); color:#fff; font-weight:700; font-size:.85rem }
.glass-panel { text-align: left; max-width: 100% }
@media (min-width: 901px) {
  .feature-band { justify-items:center; text-align:left; }
  .glass-panel { max-width: 1120px; }
}

/* Feature band split layout */
.glass-panel.glass-split { display:grid; grid-template-columns: 1fr; align-items:center; gap: 1rem }
.gp-right { justify-self: start; display:grid; gap:.4rem; }
@media (min-width: 901px) {
  .glass-panel.glass-split { grid-template-columns: 1.2fr .8fr }
}

/* Checklist in feature band */
.checklist { list-style:none; padding:0; margin:.6rem 0 0; display:grid; gap:.35rem }
.checklist li { display:flex; align-items:flex-start; gap:.5rem; color:#e6edf7; font-weight:600 }
.checklist li::before { content:"✓"; color:#22c55e; font-weight:800; margin-top:.05rem }
.assure { color:#dbe3f3; font-weight:700; font-size:.95rem }
.gp-right .btn-cta-lg,
.gp-right .btn-cta-ghost { width:100%; justify-content:center }
@media (min-width: 521px) {
  .gp-right .btn-cta-lg,
  .gp-right .btn-cta-ghost { width:auto; justify-content:flex-start }
}

.section-kicker {
  width: fit-content;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.practice-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 0;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(52rem 28rem at 100% 0%, rgba(217,4,41,.28), transparent 62%),
    linear-gradient(135deg, #070b12 0%, #101827 48%, #1f2937 100%);
}
.practice-proof .section-kicker {
  color: #fff;
  border-left: 3px solid #ef233c;
  padding-left: .65rem;
}
.practice-proof__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--practice-bg);
  background-size: cover;
  background-position: center;
  opacity: .34;
  filter: saturate(105%) contrast(108%);
  transform: scale(1.04);
}
.practice-proof::before,
.practice-proof::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.practice-proof::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,18,.96), rgba(7,11,18,.7) 48%, rgba(7,11,18,.28)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
}
.practice-proof::after {
  right: clamp(-8rem, -8vw, -3rem);
  top: clamp(2rem, 8vw, 6rem);
  width: clamp(12rem, 30vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  transform: rotate(14deg);
  background: linear-gradient(135deg, rgba(217,4,41,.18), rgba(255,255,255,.04));
}
.practice-proof__inner {
  display: grid;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}
.practice-proof__copy {
  display: grid;
  gap: .9rem;
  max-width: 760px;
}
.practice-proof__copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 11vw, 5.8rem);
  line-height: .88;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.practice-proof__copy p {
  margin: 0;
  max-width: 62ch;
  color: #dbe3f3;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
}
.practice-proof__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
}
.practice-proof__actions .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.practice-proof__panel {
  display: grid;
  gap: .7rem;
}
.practice-step {
  position: relative;
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.18), transparent 60%);
  box-shadow: 0 24px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  overflow: hidden;
}
.practice-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ef233c, rgba(239,35,60,.1));
}
.practice-step span {
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.practice-step strong {
  font-size: clamp(1.25rem, 3.2vw, 1.8rem);
  letter-spacing: -.04em;
}
.practice-step p {
  margin: 0;
  color: #dbe3f3;
  line-height: 1.55;
}
.why-arens-bold {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(56rem 28rem at 100% 0%, rgba(217,4,41,.13), transparent 62%),
    radial-gradient(34rem 20rem at 0% 84%, rgba(15,23,42,.08), transparent 64%),
    linear-gradient(180deg, #f8fafc, #e8eef7);
  border-top: 1px solid #d5e0f0;
  border-bottom: 0;
}
.why-arens-bold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(15,23,42,.045) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.why-arens-bold__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
}
.why-arens-bold__head {
  display: grid;
  gap: .75rem;
  max-width: 820px;
}
.why-arens-bold__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 8vw, 5rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.why-arens-bold__head p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}
.why-arens-bold__body {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.why-arens-reasons {
  display: grid;
  gap: .7rem;
}
.why-reason {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,252,.82)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  box-shadow: 0 18px 44px rgba(15,23,42,.09);
  overflow: hidden;
}
.why-reason::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(217,4,41,.95), rgba(217,4,41,.1));
}
.why-reason > span {
  color: rgba(217,4,41,.35);
  font-size: clamp(1.35rem, 5vw, 2.4rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
}
.why-reason h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  letter-spacing: -.035em;
}
.why-reason p {
  margin: .35rem 0 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.why-proof-panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: .9rem;
  min-height: 360px;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  color: #fff;
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(15,23,42,.96), rgba(15,23,42,.78)),
    radial-gradient(120% 120% at 100% 0%, rgba(239,35,60,.3), transparent 62%);
  box-shadow: 0 30px 80px rgba(15,23,42,.26);
  overflow: hidden;
}
.why-proof-panel::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: clamp(6rem, 20vw, 12rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  transform: rotate(12deg);
  background: rgba(255,255,255,.04);
}
.why-proof-panel__label {
  width: fit-content;
  padding: .35rem .65rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.why-proof-panel strong {
  position: relative;
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.why-proof-panel p {
  position: relative;
  margin: 0;
  color: #dbe3f3;
  line-height: 1.6;
}
.why-proof-panel .btn {
  position: relative;
  justify-content: center;
}
@media (min-width: 760px) {
  .practice-proof__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-arens-bold__body {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  }
}
@media (min-width: 1020px) {
  .practice-proof {
    min-height: min(100svh, 760px);
  }
  .practice-proof__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  }
  .practice-proof__panel {
    grid-template-columns: 1fr;
    transform: translateY(1rem);
  }
  .practice-step:nth-child(2) {
    margin-left: clamp(1.5rem, 4vw, 4rem);
  }
  .practice-step:nth-child(3) {
    margin-left: clamp(3rem, 8vw, 8rem);
  }
  .why-proof-panel {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
  }
}

/* Generic chips (light surfaces) */
.chips { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.35rem }
.chip { display:inline-flex; align-items:center; gap:.35rem; padding:.35rem .6rem; border-radius:999px; background: var(--card); border:1px solid rgba(var(--glass-strong-rgb), .55); color:#0f172a; font-weight:700; font-size:.85rem }
.chip svg { opacity:.8 }

.section-bold {
  position: relative;
  overflow: hidden;
}
.section-bold::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38rem 18rem at 92% 0%, rgba(217,4,41,.08), transparent 68%),
    radial-gradient(30rem 18rem at 0% 100%, rgba(15,23,42,.06), transparent 68%);
  pointer-events: none;
}
.section-bold > .container,
.section-bold.container {
  position: relative;
  z-index: 1;
}
.safety-card {
  border-radius: 24px;
  border-color: rgba(255,255,255,.76);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.88)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  box-shadow: 0 24px 58px rgba(15,23,42,.1);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
}
.safety-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(217,4,41,.95), rgba(239,35,60,.18));
  opacity: .85;
}
.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 70px rgba(15,23,42,.15);
  border-color: rgba(217,4,41,.22);
}

.home-intro-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(54rem 26rem at 100% 0%, rgba(217,4,41,.14), transparent 64%),
    radial-gradient(34rem 20rem at 0% 100%, rgba(15,23,42,.08), transparent 66%),
    linear-gradient(180deg, #f8fafc, #e7eef8);
  border-bottom: 1px solid #d5e0f0;
}
.home-intro-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(15,23,42,.045) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, rgba(217,4,41,.06), transparent 32%, rgba(255,255,255,.26));
  pointer-events: none;
}
.home-intro-impact .two-col {
  align-items: center;
  gap: clamp(1.4rem, 5vw, 4rem);
}
.home-intro-copy {
  position: relative;
  padding-left: clamp(.9rem, 2vw, 1.4rem);
}
.home-intro-copy::before {
  content: "";
  position: absolute;
  inset: .25rem auto .35rem 0;
  width: 5px;
  background: linear-gradient(180deg, #ef233c, rgba(239,35,60,.08));
}
.home-intro-copy h2 {
  max-width: 12ch;
  margin-bottom: clamp(.85rem, 2vw, 1.25rem);
  font-size: clamp(2.45rem, 8vw, 5.7rem);
  line-height: .88;
  letter-spacing: -.08em;
}
.home-intro-copy p {
  max-width: 68ch;
  color: #334155;
  font-size: clamp(1rem, .75vw + .86rem, 1.16rem);
}
.home-quick-access {
  align-self: stretch;
  padding: clamp(1rem, 2.6vw, 1.55rem);
  color: #fff;
  border-radius: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(155deg, rgba(15,23,42,.98), rgba(15,23,42,.8)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.32), transparent 62%);
  box-shadow: 0 30px 80px rgba(15,23,42,.24);
}
.home-quick-access::before {
  width: 5px;
  background: linear-gradient(180deg, #ef233c, rgba(239,35,60,.18));
}
.home-quick-access .service-quicklinks__head::after {
  content: "";
  position: absolute;
  inset: auto -5rem -7rem auto;
  width: clamp(10rem, 26vw, 20rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  transform: rotate(14deg);
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.home-quick-access .service-quicklinks__head {
  position: relative;
  overflow: visible;
}
.home-quick-access > * {
  position: relative;
  z-index: 1;
}
.home-quick-access .service-quicklinks__head h3 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.home-quick-access .service-quicklinks__head p {
  color: #dbe3f3;
}
.home-quick-access .service-quicklink {
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.home-quick-access .service-quicklink::before {
  color: rgba(255,255,255,.45);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.08em;
}
.home-quick-access .service-quicklink:nth-child(1)::before { content: "01"; }
.home-quick-access .service-quicklink:nth-child(2)::before { content: "02"; }
.home-quick-access .service-quicklink:nth-child(3)::before { content: "03"; }
.home-quick-access .service-quicklink strong,
.home-quick-access .service-quicklink span {
  color: inherit;
}
.home-quick-access .service-quicklink span {
  grid-column: 2;
  color: #cbd5e1;
}
.home-quick-access .service-quicklink:hover,
.home-quick-access .service-quicklink:focus-visible {
  transform: translateX(6px);
  border-color: rgba(239,35,60,.55);
  background:
    linear-gradient(90deg, rgba(217,4,41,.34), rgba(255,255,255,.1)),
    rgba(255,255,255,.08);
}
.home-region-impact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0b1220, #111827 54%, #1f2937),
    radial-gradient(42rem 24rem at 100% 0%, rgba(217,4,41,.24), transparent 62%);
  border-top: 0;
  border-bottom: 0;
}
.home-region-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 20px),
    radial-gradient(46rem 22rem at 0% 100%, rgba(217,4,41,.18), transparent 68%);
  pointer-events: none;
}
.home-region-impact .two-col {
  align-items: stretch;
}
.region-proof {
  min-height: clamp(17rem, 28vw, 24rem);
  display: grid;
  align-content: end;
  gap: .75rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  color: #fff !important;
  text-align: left;
  border-radius: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(145deg, rgba(8,13,25,.98), rgba(15,23,42,.84)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.24), transparent 60%);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.region-proof::before {
  width: 5px;
}
.region-proof__index {
  justify-self: start;
  margin-bottom: .15rem;
  color: rgba(255,255,255,.34);
  font-size: clamp(4.75rem, 12vw, 8rem);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.1em;
  text-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.region-proof h2 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: .92;
  letter-spacing: -.07em;
  text-shadow: 0 2px 10px rgba(0,0,0,.32);
}
.region-proof p {
  margin: 0;
  color: #edf2f7 !important;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}
@media (min-width: 901px) {
  .home-intro-impact .two-col {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  }
  .home-region-impact .two-col {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  .region-proof:nth-child(2) {
    transform: translateY(clamp(1rem, 3vw, 2rem));
  }
}

/* Button contrast on dark surfaces */
.bg-fixed .btn-secondary,
.cta-tile .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.bg-fixed .btn-secondary:hover,
.cta-tile .btn-secondary:hover {
  background: rgba(255,255,255,.12);
}
.bg-fixed .btn-cta-ghost:hover { border-color: rgba(217,4,41,.75); box-shadow: 0 10px 28px rgba(0,0,0,.25); }

.extinguisher-motion {
  position: absolute;
  right: clamp(-3.8rem, -5vw, -1.4rem);
  bottom: clamp(-2.2rem, -3vw, -1rem);
  width: clamp(7.5rem, 18vw, 13rem);
  aspect-ratio: 2 / 3;
  color: rgba(239,35,60,.92);
  z-index: 1;
  pointer-events: none;
  transform: rotate(-12deg);
  opacity: .86;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.34));
}
.hero.safety-hero .extinguisher-motion,
.page-hero.safety-hero .extinguisher-motion {
  right: clamp(-2.8rem, 4vw, 5rem);
  bottom: clamp(.5rem, 8svh, 4rem);
}
.cta-tile .extinguisher-motion {
  right: clamp(-3.8rem, 4vw, 3rem);
  bottom: -3.2rem;
  width: clamp(7rem, 14vw, 10.5rem);
  opacity: .72;
}
.extinguisher-motion__icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  animation: safety-extinguisher-float 5.4s ease-in-out infinite;
}
.extinguisher-motion__hose,
.extinguisher-motion__handle,
.extinguisher-motion__neck,
.extinguisher-motion__body,
.extinguisher-motion__base {
  color: #d90429;
}
.extinguisher-motion__spray {
  position: absolute;
  right: 55%;
  top: 10%;
  width: clamp(6rem, 18vw, 13rem);
  height: clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 18% 58%, rgba(255,255,255,.82) 0 3px, transparent 4px),
    radial-gradient(circle at 45% 35%, rgba(255,255,255,.68) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 62%, rgba(255,255,255,.52) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255,255,255,.7), rgba(255,255,255,0));
  clip-path: polygon(100% 42%, 0 0, 0 100%);
  opacity: .42;
  filter: blur(.4px);
  transform-origin: right center;
  animation: safety-spray 3.2s ease-in-out infinite;
}
@media (max-width: 760px) {
  .extinguisher-motion {
    width: clamp(6.5rem, 31vw, 9rem);
    right: -2.6rem;
    bottom: -1.7rem;
    opacity: .5;
  }
  .safety-hero .extinguisher-motion {
    bottom: .4rem;
  }
  .cta-tile .extinguisher-motion {
    opacity: .34;
  }
}

/* Floating CTA */
.fab-cta {
  background: linear-gradient(135deg, #ef233c, #d90429); color:#fff;
  padding:.85rem 1rem; border-radius: 999px; text-decoration:none; font-weight:700;
  box-shadow: 0 10px 30px rgba(217,4,41,.35);
  display:inline-flex; align-items:center; justify-content:center;
}
.fab-cta:hover { filter: brightness(1.06); }
.fab-cta-secondary {
  background: rgba(var(--glass-rgb), .92);
  color: var(--ink);
  border: 1px solid rgba(var(--glass-strong-rgb), .9);
  box-shadow: 0 10px 30px rgba(15,23,42,.14);
}
.fab-cta-secondary:hover {
  filter: none;
  background: #fff;
}
.floating-cta-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: .7rem;
}
.floating-cta-stack.mobile-cta-bold .fab-cta {
  box-shadow: 0 18px 42px rgba(15,23,42,.22), 0 0 0 1px rgba(255,255,255,.32) inset;
}
.floating-cta-stack.mobile-cta-bold .fab-cta-secondary {
  background: rgba(255,255,255,.9);
  color: #0f172a;
  border-color: rgba(217,4,41,.16);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  padding: .7rem .75rem calc(.7rem + env(safe-area-inset-bottom, 0));
  background: rgba(var(--glass-rgb), .94);
  border-top: 1px solid rgba(var(--glass-strong-rgb), .95);
  box-shadow: 0 -12px 35px rgba(15,23,42,.14);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}
.mobile-cta-bar.mobile-cta-bold {
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom, 0));
  background:
    linear-gradient(180deg, rgba(248,250,252,.86), rgba(226,235,247,.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.12), transparent 58%);
}
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}
.mobile-cta-call {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(var(--glass-strong-rgb), .9);
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
}
.mobile-cta-form {
  background: linear-gradient(135deg, #ef233c, #d90429);
  color:#fff;
  box-shadow: 0 10px 24px rgba(217,4,41,.28);
}
@media (min-width: 768px) {
  .floating-cta-stack { display: flex; }
  .mobile-cta-bar { display: none; }
}

/* Footer contact section */
.footer-contact { background:
  radial-gradient(70rem 28rem at 100% 0%, rgba(217,4,41,.28), transparent 64%),
  radial-gradient(52rem 24rem at 0% 58%, rgba(255,255,255,.09), transparent 66%),
  linear-gradient(128deg, #070b16, #101827 58%, #2a0710);
  border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding: calc(var(--space-5) + .5rem) 0; }
.footer-contact { scroll-margin-top: var(--header-h); }
.footer-contact-inner {
  display:grid;
  width: min(100% - 1rem, 1480px);
  max-width: none;
}
.footer-card { background: var(--card); border:1px solid rgba(var(--glass-strong-rgb), .6); border-radius: 16px; padding: 1rem; box-shadow: 0 16px 40px rgba(2,6,23,.08) }
.footer-card.section-action {
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 1.45rem);
}
.footer-card-head { display:flex; align-items:flex-start; justify-content:space-between; gap: 1rem; margin-bottom: 1rem }
.footer-card-head h2 { margin: .2rem 0 .25rem; font-size: clamp(1.6rem, 3.4vw, 3rem); line-height: .98; letter-spacing: -.055em; }
.footer-card-head p { margin: 0; color: var(--ink-2) }
.badge.brand { display:inline-block; font-weight:800; color:#fff; background: var(--brand); border-radius: 999px; padding: .25rem .55rem; font-size:.8rem; letter-spacing:.3px }

.footer-card-grid { display:grid; grid-template-columns: 1fr; gap: 1rem; align-items: start }
.footer-left { display:grid; gap: 1rem }
.footer-form { display:grid; grid-template-columns: 1fr; gap: 1rem; align-items:start }
.footer-form .full { grid-column: 1 / -1 }
.footer-form .form-actions { grid-column: 1 / -1; display:flex; align-items:flex-start; gap:.75rem; flex-direction:column; }
@media (min-width: 721px) {
  .footer-form { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 901px) {
  .footer-card-grid { grid-template-columns: 1.2fr .8fr; }
}

.footer-map { height: 100%; min-height: 460px; display:grid; gap:.5rem; align-content:stretch }
.map-frame { width:100%; height: 100%; min-height: 460px; border: 0; border-radius: 12px; box-shadow: 0 12px 30px rgba(2,6,23,.08); border:1px solid rgba(var(--glass-strong-rgb), .55) }
.map-note { font-size:.9rem }
.map-note a { color: var(--brand); text-decoration: none }
.map-note a:hover { text-decoration: underline }
.embed-placeholder { border:1px dashed #cbd5e1; border-radius: 12px; padding: 1.25rem; background: var(--bg); color: var(--ink-2); display:grid; gap:.9rem; align-content:start; min-height: 460px; box-shadow: inset 0 0 0 1px rgba(var(--glass-rgb), .6) }
.embed-actions { display:flex; flex-wrap:wrap; gap:.75rem }
.embed-content[hidden] { display:none !important; }
.embed-placeholder[hidden] { display:none !important; }
.embed-placeholder .btn { width: fit-content; }

.contact-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(128deg, rgba(6,10,20,.98), rgba(11,17,31,.9) 58%, rgba(217,4,41,.48)),
    radial-gradient(48rem 22rem at 90% 8%, rgba(255,255,255,.13), transparent 64%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  box-shadow: 0 28px 76px rgba(2,6,23,.26);
}
.contact-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 19px),
    linear-gradient(90deg, rgba(217,4,41,.16), transparent 38%);
  opacity: .65;
}
.contact-stage__grid {
  display: grid;
  gap: clamp(.55rem, 1.2vw, 1rem);
  padding: clamp(.55rem, 1.3vw, .9rem);
}
.contact-stage__form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(.9rem, 2.1vw, 1.45rem);
}
.contact-stage__head {
  display: grid;
  gap: .55rem;
  max-width: 54rem;
}
.contact-stage__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 4.7rem);
  line-height: .9;
  letter-spacing: -.08em;
}
.contact-stage__head p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, .7vw + .88rem, 1.16rem);
  line-height: 1.6;
}
.contact-stage__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.contact-stage__facts span {
  display: inline-flex;
  min-height: 2.1rem;
  align-items: center;
  padding: 0 .75rem;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .82rem;
  font-weight: 900;
}
.contact-stage .footer-form label,
.contact-stage .form-check label,
.contact-stage .form-check a {
  color: rgba(255,255,255,.82);
}
.contact-stage .form-row input:not([type="checkbox"]),
.contact-stage .form-row textarea {
  color: #fff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.contact-stage .form-row input:not([type="checkbox"])::placeholder,
.contact-stage .form-row textarea::placeholder {
  color: rgba(255,255,255,.48);
}
.contact-stage .form-row input:not([type="checkbox"]):focus,
.contact-stage .form-row textarea:focus {
  border-color: rgba(239,35,60,.9);
  box-shadow: 0 0 0 4px rgba(239,35,60,.18);
}
.contact-stage .bubble-note {
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  border-radius: 8px;
}
.contact-stage .turnstile-inline {
  padding: .35rem;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}
.contact-stage__map {
  min-height: min(39rem, 82svh);
  padding: .45rem;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06)),
    radial-gradient(120% 100% at 100% 0%, rgba(217,4,41,.28), transparent 60%);
  border: 1px solid rgba(255,255,255,.18);
}
.contact-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .55rem;
  align-items: center;
  padding: .55rem .55rem .65rem;
}
.contact-map-head__main {
  display: grid;
  gap: .18rem;
  min-width: 0;
}
.contact-map-head span,
.contact-map-head__main span {
  color: rgba(255,255,255,.6);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-map-head strong,
.contact-map-head__main strong {
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.1;
}
.contact-map-head a,
.contact-stage .map-note a {
  width: fit-content;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(239,35,60,.9);
}
.contact-map-head a {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  padding: 0 .75rem;
  border: 1px solid rgba(255,255,255,.22);
  border-bottom-color: rgba(239,35,60,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-size: .86rem;
}
.contact-stage .embed-placeholder,
.contact-stage .embed-content {
  min-height: 28rem;
}
.contact-stage .embed-placeholder {
  align-content: center;
  color: rgba(255,255,255,.82);
  background:
    linear-gradient(135deg, rgba(4,8,18,.72), rgba(4,8,18,.46)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  border-color: rgba(255,255,255,.24);
  border-style: solid;
  border-radius: 8px;
  box-shadow: none;
}
.contact-stage .embed-placeholder strong {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.contact-stage .embed-placeholder p {
  margin: 0;
  max-width: 32rem;
}
.contact-stage .embed-placeholder .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}
.contact-stage .map-frame {
  min-height: 28rem;
  border-radius: 8px;
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}
.contact-stage .map-note {
  padding-top: .65rem;
}
@media (min-width: 901px) {
  .contact-stage__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 1fr);
    align-items: stretch;
  }
  .contact-map-head {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: .6rem .6rem .7rem;
  }
  .contact-stage__map,
  .contact-stage .embed-placeholder,
  .contact-stage .embed-content,
  .contact-stage .map-frame {
    min-height: 100%;
  }
}
@media (min-width: 1280px) {
  .contact-stage__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(34rem, 1fr);
  }
}

.contact-stage {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  overflow: visible;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.contact-stage::before {
  display: none;
}
.contact-stage__intro {
  display: grid;
  gap: 1rem;
}
.contact-stage__head {
  max-width: min(100%, 78rem);
}
.contact-stage__head h2 {
  max-width: 13ch;
}
.contact-stage__head p {
  max-width: 58rem;
}
.contact-stage__form {
  padding: 0;
}
.contact-form-wide {
  width: 100%;
  gap: clamp(.75rem, 1.6vw, 1.1rem);
}
.contact-form-wide .form-row {
  min-width: 0;
}
.contact-form-wide .form-row input:not([type="checkbox"]),
.contact-form-wide .form-row textarea {
  min-height: 3.35rem;
}
.contact-form-wide .form-row textarea {
  min-height: clamp(6rem, 9vw, 8rem);
  resize: vertical;
}
.contact-form-wide .form-actions {
  align-self: end;
}
.contact-stage__map {
  min-height: 0;
  padding: clamp(.45rem, 1.2vw, .7rem);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05)),
    radial-gradient(100% 120% at 100% 0%, rgba(217,4,41,.26), transparent 58%);
  box-shadow: 0 26px 72px rgba(0,0,0,.22);
}
.contact-map-head {
  min-height: auto;
  padding: .35rem .35rem .65rem;
}
.contact-stage .embed-placeholder,
.contact-stage .embed-content,
.contact-stage .map-frame {
  min-height: clamp(13.5rem, 30svh, 19rem);
}
@media (min-width: 760px) {
  .contact-stage__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .contact-stage__facts {
    justify-content: flex-end;
    max-width: 26rem;
  }
  .contact-form-wide {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .contact-form-wide .form-row:nth-child(1),
  .contact-form-wide .form-row:nth-child(2),
  .contact-form-wide .form-row:nth-child(3),
  .contact-form-wide .form-row:nth-child(4) {
    grid-column: span 6;
  }
  .contact-form-wide .form-row.full {
    grid-column: 1 / -1;
  }
  .contact-form-wide .form-row.consent-row {
    grid-column: span 8;
  }
  .contact-form-wide .form-actions {
    grid-column: span 4;
    justify-content: flex-end;
  }
  .contact-map-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
@media (min-width: 1180px) {
  .contact-form-wide .form-row:nth-child(1),
  .contact-form-wide .form-row:nth-child(2),
  .contact-form-wide .form-row:nth-child(3),
  .contact-form-wide .form-row:nth-child(4) {
    grid-column: span 3;
  }
  .contact-form-wide .form-row.consent-row {
    grid-column: span 9;
  }
  .contact-form-wide .form-actions {
    grid-column: span 3;
  }
}

/* Content blocks */
.grid-3 { display:grid; gap: 1rem; grid-template-columns: 1fr; }
.grid-2 { display:grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 680px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 760px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1040px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.card { background: var(--card); border:1px solid rgba(var(--glass-strong-rgb), .55); border-radius: .9rem; padding: 1.25rem; box-shadow: 0 8px 24px rgba(15,23,42,.08) }
.card h3 { margin-top:0 }

/* Unified subtle hover for boxes/containers (B2B-friendly) */
.card,
.footer-card,
.review-card,
.photo-card,
.service-panel,
.glass-panel,
.hero-box {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.card:hover,
.footer-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(2,6,23,.12);
  border-color: #e2e8f0;
}
.photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(2,6,23,.16);
}
.service-panel:hover,
.glass-panel:hover,
.hero-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.42), 0 0 0 2px rgba(217,4,41,.22) inset;
  border-color: rgba(255,255,255,.38);
}
@media (prefers-reduced-motion: reduce) {
  .card, .footer-card, .review-card, .photo-card, .service-panel, .glass-panel, .hero-box { transition: none !important; }
}

/* Home features (3 Karten) */
.features { background: linear-gradient(180deg, #eef3fb, #e7edf6); border-top:1px solid #d5e0f0; border-bottom:1px solid #d5e0f0 }
.feature-card { background: var(--card); border:1px solid rgba(var(--glass-strong-rgb), .6); border-radius: 16px; padding: 1.1rem 1.1rem 1.1rem; box-shadow: 0 10px 26px rgba(2,6,23,.06); display:grid; grid-template-rows: auto auto 1fr auto; gap:.6rem; transition: box-shadow .2s ease, transform .2s ease }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(2,6,23,.12); border-color:#e2e8f0 }

/* Brand accent lines on hover (subtle, B2B) */
.card, .feature-card, .footer-card, .photo-card {
  position: relative;
  overflow: hidden;
}
.card::after,
.feature-card::after,
.footer-card::after,
.photo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), rgba(217,4,41,0) 70%);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.card:hover::after,
.feature-card:hover::after,
.footer-card:hover::after,
.photo-card:hover::after { opacity: 1; transform: translateY(0); }
.feature-card h3 { margin:.25rem 0 0; font-size:1.12rem }
.feature-card p { margin:0; color: var(--ink-2) }
.feature-icon { width: 48px; height: 48px; display:grid; place-items:center; border-radius: 12px; background: rgba(217,4,41,.08); color: var(--brand); border:1px solid rgba(217,4,41,.22) }
.feature-list { margin:.2rem 0 0; padding-left: 1.1rem; color: #475569 }
.feature-list li { margin:.2rem 0 }
.feature-cta { margin-top:.6rem }

/* Feature cards with subtle background image */
.feature-card.has-bg { position: relative; overflow: hidden }
.feature-card.has-bg::before { content:""; position:absolute; inset:0; background-image: var(--feature-bg); background-size: cover; background-position: center; opacity:.35; transform: scale(1.06); filter: saturate(110%) contrast(95%); }
.feature-card.has-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.78)); }
.feature-card.has-bg > * { position: relative; z-index: 1 }

.service-showcase {
  background:
    radial-gradient(70rem 28rem at 100% 0%, rgba(217,4,41,.16), transparent 58%),
    radial-gradient(46rem 24rem at 0% 40%, rgba(15,23,42,.09), transparent 62%),
    linear-gradient(180deg, #f3f7fc, #e3eaf4 55%, #eef3f9);
  border-top: 1px solid #d5e0f0;
  border-bottom: 1px solid #d5e0f0;
  overflow-x: clip;
}
.service-showcase__head {
  display: grid;
  gap: .5rem;
  max-width: 62rem;
}

.service-story,
.service-matrix,
.service-outcome-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-story {
  padding-block: 0;
  padding-inline: 0;
  background:
    radial-gradient(72rem 32rem at 100% 0%, rgba(217,4,41,.18), transparent 62%),
    radial-gradient(46rem 24rem at 0% 42%, rgba(15,23,42,.14), transparent 66%),
    linear-gradient(180deg, #f5f8fc, #e3eaf4 54%, #f0f4fa);
  border-top: 1px solid #d5e0f0;
  border-bottom: 1px solid #d5e0f0;
}
.service-story__backdrop {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.32) 0 1px, transparent 1px 20px),
    linear-gradient(90deg, rgba(217,4,41,.08), transparent 34%, rgba(15,23,42,.06));
  pointer-events: none;
  z-index: 0;
}
.service-story__head,
.service-story__rail,
.service-matrix__head,
.service-matrix__rows,
.service-outcome-band__inner {
  position: relative;
  z-index: 1;
}
.service-story__head,
.service-matrix__head {
  display: grid;
  gap: .55rem;
  max-width: 72rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.service-story__head {
  width: min(100% - 1.5rem, 72rem);
  margin-inline: auto;
  margin-bottom: 0;
  margin-block: clamp(1rem, 3vw, 2rem) clamp(1rem, 2.4vw, 1.4rem);
  padding: clamp(1rem, 2.6vw, 1.65rem);
  color: var(--ink);
  border-left: 5px solid rgba(239,35,60,.95);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,250,252,.82)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.1), transparent 58%);
  border-radius: clamp(14px, 2vw, 22px);
  box-shadow: 0 18px 54px rgba(15,23,42,.1);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.service-story__head h2,
.service-matrix__head h2,
.service-outcome-band__copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5.2vw, 5rem);
  line-height: .9;
  letter-spacing: -.08em;
}
.service-story__head p,
.service-matrix__head p,
.service-outcome-band__copy p {
  margin: 0;
  max-width: 58rem;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: clamp(1rem, .8vw + .85rem, 1.18rem);
}
.service-story__head h2,
.service-story__head p {
  color: var(--ink);
}
.service-story__head p {
  color: var(--ink-2);
}
.service-story__rail {
  display: grid;
  gap: 0;
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}
.service-story-panel {
  position: relative;
  min-height: clamp(34rem, 76svh, 46rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(115deg, rgba(7,11,22,.92), rgba(13,19,34,.66) 48%, rgba(217,4,41,.26)),
    var(--story-bg);
  background-size: cover;
  background-position: center;
  box-shadow: none;
  border: 0;
  isolation: isolate;
}
.service-story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(44rem 22rem at 82% 14%, rgba(255,255,255,.2), transparent 68%),
    linear-gradient(180deg, rgba(4,8,18,.05), rgba(4,8,18,.76));
  z-index: 0;
}
.service-story-panel::after {
  content: "";
  position: absolute;
  inset: auto -7rem -9rem auto;
  width: clamp(16rem, 34vw, 38rem);
  height: clamp(16rem, 34vw, 38rem);
  border-radius: 34px;
  background: conic-gradient(from 120deg, transparent, rgba(255,255,255,.12), transparent, rgba(217,4,41,.22), transparent);
  z-index: 0;
  opacity: .62;
  transform: rotate(12deg);
  transition: transform .45s ease;
}
.service-story-panel:hover::after {
  transform: rotate(27deg) scale(1.05);
}
.service-story-visual {
  position: absolute;
  inset: 0;
  background-image: var(--story-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
  z-index: -1;
}
.service-story-panel:hover .service-story-visual {
  transform: scale(1.1);
  filter: saturate(112%);
}
.service-story-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .85rem;
  width: min(100% - 1.5rem, 50rem);
  max-width: none;
  margin: clamp(.75rem, 4vw, 3rem);
  padding: clamp(1.15rem, 3vw, 2.25rem);
  border-radius: clamp(14px, 2vw, 24px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10,15,29,.84), rgba(10,15,29,.64)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.18), transparent 60%);
  border: 1px solid rgba(255,255,255,.26);
  border-left: 5px solid rgba(239,35,60,.92);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  overflow: hidden;
}
.service-story-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 44%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 18px);
  opacity: .45;
  pointer-events: none;
}
.service-story-copy > * {
  position: relative;
  z-index: 1;
}
.service-story-copy__index {
  position: absolute;
  right: clamp(.8rem, 2.4vw, 1.8rem);
  top: clamp(.55rem, 1.8vw, 1.2rem);
  z-index: 0;
  color: rgba(255,255,255,.2);
  font-size: clamp(5.8rem, 16vw, 12rem);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.1em;
  pointer-events: none;
}
.service-story-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 4.4vw, 4rem);
  line-height: .93;
  letter-spacing: -.07em;
}
.service-story-copy p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}
.service-story-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.service-story-facts span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
@media (max-width: 759px) {
  .service-story-panel {
    min-height: auto;
    padding-block: clamp(17rem, 54svh, 24rem) .75rem;
    background-position: center top;
  }
  .service-story-panel::after {
    opacity: .38;
  }
  .service-story-copy {
    width: calc(100% - 1rem);
    margin: .5rem;
  }
}
@media (min-width: 760px) {
  .service-story-panel {
    align-items: center;
  }
  .service-story-panel:nth-child(1) .service-story-copy {
    align-self: end;
    justify-self: start;
    z-index: 2;
    margin-left: clamp(1.25rem, 7vw, 7rem);
    margin-bottom: clamp(1.5rem, 5vw, 4.5rem);
  }
  .service-story-panel:nth-child(2) .service-story-copy {
    align-self: center;
    justify-self: end;
    margin-right: clamp(1.25rem, 7vw, 7rem);
  }
  .service-story-panel:nth-child(3) .service-story-copy {
    align-self: end;
    justify-self: start;
    margin-left: clamp(1.25rem, 7vw, 7rem);
    margin-bottom: clamp(1.5rem, 5vw, 4rem);
  }
  .service-story-panel:nth-child(2)::after {
    inset: -8rem auto auto -8rem;
  }
  .service-story-panel:nth-child(3)::after {
    inset: auto 10vw -10rem auto;
  }
  .service-story-panel:nth-child(1) .service-story-copy__index {
    right: clamp(1rem, 3vw, 2.8rem);
    top: clamp(.6rem, 2vw, 1.4rem);
  }
  .service-story-panel:nth-child(2) .service-story-copy__index {
    left: clamp(.8rem, 2.4vw, 1.7rem);
    right: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .service-story-panel:nth-child(3) .service-story-copy__index {
    right: clamp(1rem, 6vw, 5rem);
    top: auto;
    bottom: clamp(.4rem, 1.4vw, 1rem);
  }
}
@media (min-width: 1120px) {
  .service-story-copy {
    width: min(48vw, 54rem);
  }
  .service-story-panel:nth-child(3) .service-story-copy {
    width: min(58vw, 64rem);
  }
}
.service-matrix {
  background:
    radial-gradient(70rem 28rem at 100% 0%, rgba(217,4,41,.16), transparent 62%),
    linear-gradient(180deg, #f5f8fc, #e7eef8);
  border-top: 1px solid #d5e0f0;
  border-bottom: 1px solid #d5e0f0;
}
.service-matrix__rows {
  display: grid;
  gap: .9rem;
  width: min(100% - 1.25rem, 1280px);
  margin-inline: auto;
}
.service-matrix-row {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border-radius: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.76);
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(248,250,252,.88)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  box-shadow: 0 24px 58px rgba(15,23,42,.1);
}
.service-matrix-row__media {
  min-height: 12rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(4,8,18,.08), rgba(4,8,18,.45)),
    var(--matrix-bg);
  background-size: cover;
  background-position: center;
}
.service-matrix-row__main {
  display: grid;
  gap: .45rem;
}
.service-matrix-row__main .service-story-copy__index {
  color: rgba(217,4,41,.18);
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.service-matrix-row h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.service-matrix-row p,
.service-matrix-row dd {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.service-matrix-row__facts {
  display: grid;
  gap: .65rem;
  margin: 0;
}
.service-matrix-row__facts div {
  padding: .8rem;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(148,163,184,.22);
}
.service-matrix-row dt {
  color: var(--brand-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-matrix-row .btn {
  width: 100%;
  justify-content: center;
}
.service-outcome-band {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7,11,22,.96), rgba(12,18,32,.76), rgba(217,4,41,.38)),
    var(--outcome-bg);
  background-size: cover;
  background-position: center;
  border-block: 1px solid rgba(255,255,255,.12);
}
.service-outcome-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    radial-gradient(46rem 20rem at 85% 12%, rgba(255,255,255,.16), transparent 70%);
  pointer-events: none;
}
.service-outcome-band__inner {
  display: grid;
  gap: 1rem;
}
.service-outcome-band__copy {
  display: grid;
  gap: .65rem;
  max-width: 44rem;
}
.service-outcome-band__copy h2,
.service-outcome-band__copy p {
  color: #fff;
}
.service-outcome-band__copy p {
  color: rgba(255,255,255,.82);
  max-width: 48ch;
}
.service-outcome-steps {
  display: grid;
  gap: .75rem;
}
.service-outcome-steps div {
  display: grid;
  gap: .3rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}
.service-outcome-steps strong {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-outcome-steps span {
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.services-routing-proof {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(120deg, #070b16, #101827 58%, #2a0710),
    radial-gradient(58rem 24rem at 100% 0%, rgba(217,4,41,.32), transparent 64%);
  border-block: 1px solid rgba(255,255,255,.12);
  padding-bottom: clamp(2rem, 5vw, 4.5rem);
}
.services-routing-proof__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 20px),
    radial-gradient(44rem 18rem at 82% 16%, rgba(255,255,255,.12), transparent 68%),
    linear-gradient(90deg, rgba(217,4,41,.18), transparent 44%);
}
.services-routing-proof__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}
.services-routing-proof__inner > * {
  min-width: 0;
}
.services-routing-proof__copy {
  display: grid;
  gap: .9rem;
  max-width: 680px;
}
.services-routing-proof__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 9vw, 5.4rem);
  line-height: .88;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.services-routing-proof__copy p {
  margin: 0;
  max-width: 48ch;
  color: #dbe3f3;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
}
.services-routing-proof__panel {
  display: grid;
  gap: .7rem;
}
.services-routing-step {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.18), transparent 60%);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 24px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.services-routing-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ef233c, rgba(239,35,60,.1));
}
.services-routing-step span {
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.services-routing-step strong {
  font-size: clamp(1.25rem, 3.2vw, 1.8rem);
  letter-spacing: -.04em;
}
.services-routing-step p {
  margin: 0;
  color: #dbe3f3;
  line-height: 1.55;
}
.services-routing-step .cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}
.services-routing-step .btn {
  width: 100%;
  justify-content: center;
}
.services-routing-step .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}
.services-routing-step--cta {
  background:
    linear-gradient(135deg, rgba(217,4,41,.48), rgba(16,24,39,.72)),
    radial-gradient(110% 110% at 0% 100%, rgba(255,255,255,.14), transparent 56%);
}
@media (min-width: 900px) {
  .service-matrix-row {
    grid-template-columns: minmax(13rem, .7fr) minmax(16rem, .9fr) minmax(22rem, 1.2fr) auto;
    align-items: center;
  }
  .service-matrix-row .btn {
    width: auto;
    white-space: nowrap;
  }
  .service-outcome-band__inner {
    grid-template-columns: minmax(0, .82fr) minmax(24rem, 1.05fr);
    align-items: center;
  }
  .service-outcome-band__copy h2 {
    max-width: 11ch;
  }
  .service-outcome-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-routing-step .btn {
    width: auto;
  }
}
@media (min-width: 1020px) {
  .services-routing-proof__inner {
    grid-template-columns: minmax(0, .88fr) minmax(400px, 1fr);
  }
  .services-routing-proof__copy h2 {
    max-width: 10.5ch;
  }
  .services-routing-proof__panel {
    grid-template-columns: 1fr;
    transform: translateY(1rem);
  }
  .services-routing-step:nth-child(2) {
    margin-left: clamp(1.5rem, 4vw, 4rem);
  }
}
.service-showcase__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.05rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.service-showcase__head p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
}
.service-showcase-row {
  display: grid;
  gap: clamp(.9rem, 2vw, 1.6rem);
  align-items: stretch;
  overflow-x: clip;
}
.service-showcase-media,
.service-showcase-copy {
  min-width: 0;
}
.service-showcase-media {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 38px);
  text-decoration: none;
  background: #0f172a;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 30px 76px rgba(15,23,42,.18);
  isolation: isolate;
}
.service-showcase-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,8,18,.08), rgba(4,8,18,.58)),
    radial-gradient(50% 50% at 80% 18%, rgba(255,255,255,.22), transparent 70%);
  z-index: 1;
  transition: opacity .28s ease;
}
.service-showcase-media::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -30%;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: conic-gradient(from 120deg, transparent, rgba(255,255,255,.18), transparent, rgba(217,4,41,.22), transparent);
  opacity: .42;
  z-index: 1;
  transition: transform .45s ease, opacity .3s ease;
}
.service-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}
.service-showcase-media:hover img,
.service-showcase-media:focus-visible img {
  transform: scale(1.07);
  filter: saturate(108%);
}
.service-showcase-media:hover::after,
.service-showcase-media:focus-visible::after {
  transform: rotate(22deg) scale(1.06);
  opacity: .7;
}
.service-showcase-media__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  max-width: calc(100% - 2rem);
  white-space: normal;
}
.service-showcase-copy {
  display: grid;
  align-content: center;
  gap: .9rem;
  padding: 1.25rem 1.15rem;
  border-radius: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,253,.97)),
    radial-gradient(100% 100% at 100% 0%, rgba(217,4,41,.08), transparent 50%);
  border: 1px solid rgba(203,213,225,.92);
  box-shadow: 0 26px 62px rgba(15,23,42,.1);
  position: relative;
  overflow: hidden;
}
.service-showcase-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(217,4,41,.94), rgba(217,4,41,.1));
}
.service-showcase-copy > * { position: relative; z-index: 1; }
.service-showcase-copy__eyebrow {
  color: #b10323;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.service-showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.service-showcase-copy p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.service-showcase-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.service-showcase-points li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  color: #334155;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.service-showcase-points li::before {
  content: "";
  width: .7rem;
  height: .7rem;
  border-radius: 999px;
  margin-top: .45rem;
  background: linear-gradient(135deg, #ef233c, #d90429);
  box-shadow: 0 0 0 6px rgba(217,4,41,.08);
}
.service-showcase-copy .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
}
@media (min-width: 640px) {
  .service-showcase-copy .btn {
    width: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 901px) {
  .service-showcase-row {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 1.4rem;
  }
  .service-showcase-row--reverse {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  }
  .service-showcase-row--reverse .service-showcase-media {
    order: 2;
  }
  .service-showcase-row--reverse .service-showcase-copy {
    order: 1;
  }
  .service-showcase-media {
    min-height: 420px;
  }
  .service-showcase-copy {
    padding: 1.8rem 1.7rem;
  }
}

.two-col { display:grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 901px) {
  .two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.text-center { text-align:center }
.stack { display:grid; gap: 2rem; }
.prose { color: var(--ink); line-height: 1.75 }
.prose p { margin: .9rem 0 }
.prose h2 { margin: .2rem 0 .4rem; color: #0f172a; font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem) }
.prose h3 { margin: .2rem 0 .2rem; color: #111827; font-size: clamp(1.05rem, .6vw + .9rem, 1.25rem) }

/* Leistungen: Service-Abschnitte als Karten */
.service.prose { background: var(--card); border:1px solid rgba(var(--glass-strong-rgb), .55); border-radius: 14px; padding: 1.2rem 1.25rem 1.35rem; box-shadow: 0 10px 26px rgba(2,6,23,.06) }
.service.prose h2 { display:flex; align-items:center; gap:.5rem }
.service.prose h2::after { content:""; flex:1; height: 2px; background: linear-gradient(90deg, var(--brand), transparent); opacity:.35 }
.service.prose .cta { margin-top: .75rem }
.services-overview { background: linear-gradient(180deg, #eef3fb, #e7edf6); border-top:1px solid #d5e0f0; border-bottom:1px solid #d5e0f0; }
.service-section-head { display:grid; gap:.35rem; margin-bottom: 1.25rem; }
.service-section-head p { margin: 0; color: var(--ink-2); max-width: 72ch; }
.service-hero-copy { display:grid; gap: .85rem; max-width: 820px; }
.service-hero-copy .pill { width: fit-content; }
.service-hero-copy .cta { justify-content: flex-start; }
.service-hero-copy p { max-width: 66ch; }
.service-overview-card { height: 100%; }
.service-overview-card .badge.brand { width: fit-content; }
.service-quicklinks {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(217,4,41,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96));
}
.service-quicklinks__head {
  display: grid;
  gap: .35rem;
}
.service-quicklinks__head .badge.brand {
  width: fit-content;
}
.service-quicklinks__head h3 {
  margin: 0;
  font-size: 1.2rem;
}
.service-quicklinks__head p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.5;
}
.service-quicklinks__grid {
  display: grid;
  gap: .75rem;
}
.service-quicklink {
  display: grid;
  gap: .3rem;
  padding: .95rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(var(--glass-strong-rgb), .9);
  box-shadow: 0 12px 28px rgba(15,23,42,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-quicklink strong {
  color: var(--ink);
  font-size: 1rem;
}
.service-quicklink span {
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.45;
}
.service-quicklink:hover,
.service-quicklink:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15,23,42,.11);
  border-color: rgba(217,4,41,.28);
}
.card.service-quicklinks.home-quick-access {
  color: #fff;
  background:
    linear-gradient(155deg, rgba(15,23,42,.98), rgba(15,23,42,.82)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.34), transparent 62%);
  border-color: rgba(255,255,255,.18);
}
.card.service-quicklinks.home-quick-access .service-quicklinks__head h3,
.card.service-quicklinks.home-quick-access .service-quicklinks__head p {
  color: #fff;
}
.card.service-quicklinks.home-quick-access .service-quicklinks__head p {
  color: #dbe3f3;
}
.card.service-quicklinks.home-quick-access .service-quicklink {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}
.card.service-quicklinks.home-quick-access .service-quicklink strong {
  color: #fff;
}
.card.service-quicklinks.home-quick-access .service-quicklink span {
  grid-column: 2;
  color: #cbd5e1;
}
.card.service-quicklinks.home-quick-access .service-quicklink:hover,
.card.service-quicklinks.home-quick-access .service-quicklink:focus-visible {
  transform: translateX(6px);
  border-color: rgba(239,35,60,.55);
  background:
    linear-gradient(90deg, rgba(217,4,41,.34), rgba(255,255,255,.1)),
    rgba(255,255,255,.08);
}
.service-detail-grid { display:grid; gap: 1rem; grid-template-columns: 1fr; align-items:start; }
.service-detail-main,
.service-detail-side { display:grid; gap: .9rem; }
.service-detail-card { height: 100%; }
@media (min-width: 960px) {
  .service-detail-grid { grid-template-columns: 1.25fr .75fr; }
}
.service-detail-intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(62rem 26rem at 100% 0%, rgba(217,4,41,.24), transparent 64%),
    radial-gradient(44rem 22rem at 0% 58%, rgba(255,255,255,.08), transparent 66%),
    linear-gradient(128deg, #070b16, #101827 58%, #250711);
  border-block: 1px solid rgba(255,255,255,.12);
}
.service-detail-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 19px),
    linear-gradient(90deg, rgba(217,4,41,.14), transparent 42%);
  opacity: .78;
}
.service-detail-intro__inner {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.service-detail-intro__copy {
  display: grid;
  align-content: center;
  gap: .85rem;
  max-width: 820px;
}
.service-detail-intro__copy h2,
.service-detail-final h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.service-detail-intro__copy p {
  margin: 0;
  color: #dbe3f3;
  line-height: 1.68;
  max-width: 68ch;
}
.service-detail-intro .chips {
  margin-top: .25rem;
}
.service-detail-intro .chip {
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}
.service-detail-intro__proof,
.service-detail-final__list,
.service-detail-final__cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: .8rem;
  padding: clamp(1rem, 2.4vw, 1.55rem);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.06)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.2), transparent 60%);
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.service-detail-intro__proof::before,
.service-detail-final__list::before,
.service-detail-final__cta::before,
.service-detail-topic::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ef233c, rgba(239,35,60,.1));
}
.service-detail-intro__proof h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.service-detail-intro__proof .feature-list,
.service-detail-final .feature-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 1.1rem;
  color: #dbe3f3;
}
.service-detail-intro__proof .feature-list li,
.service-detail-final .feature-list li {
  margin: .35rem 0;
  line-height: 1.5;
}
.service-detail-topic {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: .75rem;
  height: 100%;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.86)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.1), transparent 58%);
  border: 1px solid rgba(203,213,225,.86);
  box-shadow: 0 20px 48px rgba(15,23,42,.09);
}
.service-detail-topic > * {
  position: relative;
  z-index: 1;
}
.service-detail-topic .feature-icon {
  color: #fff;
  background: linear-gradient(135deg, #ef233c, #a80824);
  border-color: rgba(217,4,41,.34);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(217,4,41,.22);
}
.service-detail-topic h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.service-detail-topic p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.62;
}
.service-detail-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(120deg, #070b16, #101827 60%, #2a0710),
    radial-gradient(56rem 24rem at 100% 0%, rgba(217,4,41,.3), transparent 64%);
  border-block: 1px solid rgba(255,255,255,.12);
}
.service-detail-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 20px),
    radial-gradient(40rem 18rem at 82% 20%, rgba(255,255,255,.12), transparent 68%);
}
.service-detail-final__inner {
  display: grid;
  gap: clamp(.9rem, 2.6vw, 1.6rem);
}
.service-detail-final__list h2,
.service-detail-final__cta h2,
.service-detail-final__cta p,
.service-detail-final__cta .cta {
  position: relative;
  z-index: 1;
}
.service-detail-final__cta {
  background:
    linear-gradient(135deg, rgba(217,4,41,.46), rgba(16,24,39,.76)),
    radial-gradient(110% 110% at 0% 100%, rgba(255,255,255,.14), transparent 56%);
}
.service-detail-final__cta p {
  margin: 0;
  color: #dbe3f3;
  line-height: 1.62;
}
@media (min-width: 900px) {
  .service-detail-intro__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  }
  .service-detail-intro__proof {
    align-self: center;
  }
  .service-detail-final__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
  .service-detail-final__cta {
    transform: translateY(clamp(.75rem, 2vw, 1.4rem));
  }
}

.legal-hero {
  min-height: min(62svh, 34rem);
}
.legal-hero::after {
  opacity: .42;
}
.legal-page {
  overflow: hidden;
  background:
    radial-gradient(54rem 26rem at 100% 0%, rgba(217,4,41,.1), transparent 64%),
    radial-gradient(34rem 20rem at 0% 100%, rgba(15,23,42,.07), transparent 66%),
    linear-gradient(180deg, #f8fafc, #e7eef8);
  border-bottom: 1px solid #d5e0f0;
}
.legal-shell {
  width: min(100% - 1.5rem, 1040px);
}
.legal-shell--compact {
  width: min(100% - 1.5rem, 900px);
}
.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 2.1rem);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.06), transparent 58%);
  box-shadow: 0 24px 58px rgba(15,23,42,.1);
}
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(217,4,41,.92), rgba(239,35,60,.14));
}
.legal-prose {
  max-width: 100%;
  margin-inline: auto;
  color: #334155;
  line-height: 1.78;
  overflow-wrap: anywhere;
  word-break: normal;
}
.legal-prose > * {
  position: relative;
  z-index: 1;
}
.legal-prose h2 {
  margin: 2rem 0 .7rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148,163,184,.22);
  font-size: clamp(1.35rem, 1.5vw + 1rem, 2.05rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: #0f172a;
}
.legal-prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-prose h3 {
  margin: 1.15rem 0 .35rem;
  color: var(--brand-dark);
  font-size: clamp(1.02rem, .7vw + .9rem, 1.22rem);
  line-height: 1.2;
  letter-spacing: -.015em;
}
.legal-prose p,
.legal-prose li {
  color: #334155;
}
.legal-prose p {
  margin: .75rem 0;
}
.legal-prose ul {
  margin: .65rem 0 1rem;
  padding-left: 1.25rem;
}
.legal-prose strong {
  color: #0f172a;
}
.legal-prose a {
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration-color: rgba(217,4,41,.32);
  text-underline-offset: .16em;
}
.legal-prose a:hover {
  color: var(--brand);
}
.legal-meta {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148,163,184,.24);
  color: #64748b;
  font-size: .9rem;
}
.legal-block {
  padding: clamp(.9rem, 2vw, 1.2rem);
  border-radius: 10px;
  border: 1px solid rgba(203,213,225,.76);
  background: rgba(255,255,255,.62);
}
.legal-block + .legal-block {
  margin-top: 1rem;
}
.legal-block h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-contact-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(248,250,252,.72)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.1), transparent 58%);
}
.legal-imprint .contact-list {
  display: grid;
  gap: .55rem;
  margin: .65rem 0 0;
  padding: 0;
  list-style: none;
}
.legal-imprint .contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .45rem;
  align-items: baseline;
  margin: 0;
}
@media (max-width: 640px) {
  .legal-card {
    border-radius: 10px;
  }
  .legal-prose {
    font-size: .96rem;
    line-height: 1.72;
  }
}

/* Über uns */
.about { background: linear-gradient(180deg, #eef3fb, #e7edf6); border-top:1px solid #d5e0f0; border-bottom:1px solid #d5e0f0 }
.about-grid { display:grid; gap: 1.25rem; grid-template-columns: 1fr; align-items: center }
@media (min-width: 961px) {
  .about-grid { grid-template-columns: 1.1fr .9fr; }
}
.about-photo { display:grid; }
.photo-card { position: relative; border-radius: 16px; overflow: hidden; border:1px solid rgba(var(--glass-strong-rgb), .55); box-shadow: 0 14px 36px rgba(2,6,23,.12) }
.photo-card::after { content:""; position:absolute; inset:0; background: radial-gradient(400px 200px at 80% 10%, rgba(255,255,255,.3), transparent 60%); pointer-events:none }
.about-img { display:block; width:100%; height:100%; object-fit: cover }
.about-profile {
  background:
    radial-gradient(54rem 26rem at 100% 0%, rgba(217,4,41,.12), transparent 64%),
    radial-gradient(34rem 20rem at 0% 100%, rgba(15,23,42,.08), transparent 66%),
    linear-gradient(180deg, #f8fafc, #e7eef8);
  border-bottom: 1px solid #d5e0f0;
}
.about-profile__inner {
  display: grid;
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}
.about-profile__copy {
  display: grid;
  gap: .85rem;
  color: var(--ink);
  line-height: 1.75;
}
.about-profile__copy .badge.brand {
  width: fit-content;
}
.about-profile__copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 3rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.about-profile__copy p {
  margin: 0;
  color: #334155;
}
.about-profile__copy .cta {
  justify-content: flex-start;
  margin-top: .35rem;
}
.about-profile__media {
  display: grid;
  gap: 1rem;
}
.about-profile__media .photo-card {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  border-color: rgba(255,255,255,.76);
  box-shadow: 0 24px 58px rgba(15,23,42,.14);
}
.about-profile__facts {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.76);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.9)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  box-shadow: 0 18px 44px rgba(15,23,42,.09);
}
.about-profile__facts div {
  display: grid;
  gap: .15rem;
  padding-left: .8rem;
  border-left: 3px solid rgba(217,4,41,.78);
}
.about-profile__facts span {
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-profile__facts strong {
  color: #0f172a;
  font-size: .98rem;
}
@media (min-width: 901px) {
  .about-profile__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  }
  .about-profile__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: translateY(-2.2rem);
    margin-inline: 1rem;
  }
}

.about-gallery { padding-top: calc(var(--space-6) - 1rem); padding-bottom: calc(var(--space-6) - 1rem) }
.gallery-grid { display:grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1040px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.gallery-item { position: relative; border-radius: 24px; border:1px solid rgba(255,255,255,.75); background-image: var(--src); background-size: cover; background-position: center; min-height: 240px; box-shadow: 0 20px 48px rgba(15,23,42,.12); overflow: hidden; transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease }
.gallery-item::before { content:""; position:absolute; inset:-35% auto auto -30%; width:22rem; height:22rem; border-radius:999px; background: conic-gradient(from 120deg, transparent, rgba(255,255,255,.18), transparent, rgba(217,4,41,.2), transparent); opacity:.42; transition: transform .35s ease, opacity .24s ease; }
.gallery-item::after { content:""; position:absolute; inset:0; background:
  linear-gradient(180deg, rgba(4,8,18,.04), rgba(4,8,18,.3)),
  radial-gradient(300px 160px at 85% 10%, rgba(255,255,255,.28), transparent 60%); opacity:.5; transition: opacity .2s ease }
.gallery-item:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 28px 64px rgba(15,23,42,.18); cursor: zoom-in }
.gallery-item:hover::before { transform: rotate(24deg) scale(1.08); opacity:.7; }
.gallery-item:hover::after { opacity:.5 }
button.gallery-item {
  appearance: none;
  border: 1px solid rgba(255,255,255,.75);
  padding: 0;
  text-align: left;
  font: inherit;
}
.about-gallery-card {
  min-height: clamp(220px, 26vw, 330px);
}
.about-gallery-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: .42rem .72rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 32px rgba(0,0,0,.26);
  font-weight: 850;
  letter-spacing: .01em;
  backdrop-filter: blur(10px) saturate(145%);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(3,7,18,.85); display: none; place-items: center; z-index: 100; padding: 1rem }
.lightbox.open { display: grid }
.lightbox-img { max-width: min(96vw, 1200px); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.15) }
.lightbox-close { position: absolute; top: .75rem; right: .75rem; background: rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.3); border-radius: 8px; padding:.3rem .5rem; cursor:pointer }

/* Leistungen full-width bands */
.service-band { padding: calc(var(--space-5) + .75rem) 0; }
.service-band .overlay { background: linear-gradient(180deg, rgba(6,9,18,.62), rgba(6,9,18,.78)); }
.service-panel { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.28); border-radius: 16px; padding: 1.1rem 1.2rem 1.25rem; box-shadow: 0 18px 44px rgba(0,0,0,.35); backdrop-filter: blur(10px) saturate(115%); -webkit-backdrop-filter: blur(10px) saturate(115%); }
.service-panel.prose { color:#fff }
.service-panel.prose h2, .service-panel.prose h3 { color:#fff }
.service-panel .muted { color:#dbe3f3 }
.service-panel .chips { margin-top:.5rem }
.service-panel .chip { background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.35); color:#fff }

.contact-grid { display:grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 901px) {
  .contact-grid { grid-template-columns: 1.2fr .8fr; }
}
.contact-form { display:grid; gap: 1rem; }
.contact-grid > div {
  min-width: 0;
}
.contact-grid > div:first-child,
.contact-grid > div:last-child {
  position: relative;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.88)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 22px 52px rgba(15,23,42,.09);
}
.contact-form label, .footer-form label { color: var(--ink-2); }
.form-check { display:flex; align-items:flex-start; gap:.6rem }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top:.2rem; accent-color: var(--brand); }
.form-check label { margin:0; font-weight:500; color: var(--ink-2); }
[class*="form-row"].consent-row,
.form-row.consent-row { display:flex; flex-direction:column; flex-wrap:nowrap; align-items:stretch; gap:1rem; }
.form-row.consent-row .bubble-note { flex:1 1 auto; min-width:0; }
.turnstile-inline { flex:0 0 auto; min-width: 0; width: 100%; min-height:70px; display:flex; align-items:center; justify-content:flex-start; }
[data-turnstile] { min-height:70px; }
.footer-form .form-actions, .contact-form .form-actions { display:flex; align-items:flex-start; gap:.75rem; flex-wrap: wrap; flex-direction:column; }
.footer-form .btn.btn-primary, .contact-form .btn.btn-primary { border-radius: 12px; padding: .85rem 1.2rem; box-shadow: 0 8px 22px rgba(217,4,41,.22); width: 100%; justify-content: center; }
@media (min-width: 701px) {
  .form-row.consent-row { flex-direction:row; align-items:center; }
  .form-row.consent-row .bubble-note { min-width:260px; }
  .turnstile-inline { width: auto; min-width: 310px; justify-content:center; }
}
@media (min-width: 521px) {
  .footer-form .form-actions,
  .contact-form .form-actions { flex-direction:row; align-items:center; }
}
@media (min-width: 640px) {
  .footer-form .btn.btn-primary,
  .contact-form .btn.btn-primary { width: auto; }
}

/* Inline form alerts */
.form-alert { font-weight: 600; }
.form-alert.is-success { color: #16a34a; }
.form-alert.is-error { color: #dc2626; }

/* Bubble note (glass) for privacy consent */
.bubble-note { background: rgba(var(--glass-rgb), .58); border: 1px solid rgba(var(--glass-strong-rgb), .45); backdrop-filter: blur(8px) saturate(120%); -webkit-backdrop-filter: blur(8px) saturate(120%); border-radius: 12px; padding: .6rem .75rem; box-shadow: 0 8px 22px rgba(2,6,23,.08); }
.bubble-note a { color: var(--brand); font-weight: 700; text-decoration: none; }
.bubble-note a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Top site alert (glass) */
.site-alert { position: fixed; top: calc(var(--header-h) + .5rem); left: 50%; transform: translateX(-50%); width: min(100% - 2rem, 760px); padding: .75rem 1rem; border-radius: 12px; background: rgba(var(--glass-rgb), .6); border:1px solid rgba(var(--glass-strong-rgb), .45); backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%); box-shadow: 0 14px 36px rgba(2,6,23,.14); display:flex; align-items:center; justify-content: space-between; gap:.75rem; z-index: 2000; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility .18s ease }
.site-alert .msg { color:#0f172a; font-weight: 600; }
.site-alert .close { background: rgba(var(--glass-rgb), .75); border:1px solid rgba(var(--glass-strong-rgb), .55); color:#0f172a; border-radius: 8px; padding:.2rem .5rem; cursor:pointer }
.site-alert.open { opacity: 1; visibility: visible; pointer-events: auto; }
.site-alert.is-error { background: rgba(220,38,38,.16); border-color: rgba(220,38,38,.3); }
.site-alert.is-success { background: rgba(34,197,94,.16); border-color: rgba(34,197,94,.3); }
.success-toast { position: fixed; bottom: 1.25rem; right: 1.25rem; display:flex; align-items:center; gap:.75rem; padding:.9rem 1.1rem; border-radius: 14px; background: linear-gradient(120deg, #16a34a, #22c55e); color:#fff; box-shadow: 0 18px 45px rgba(22,163,74,.35); border:1px solid rgba(var(--glass-strong-rgb), .45); opacity:0; visibility:hidden; transform: translateY(20px); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; z-index: 2100; pointer-events:none; }
.success-toast.open { opacity:1; visibility:visible; transform: translateY(0); pointer-events:auto; }
.success-toast__msg { font-weight:600; }
.success-toast__close { background: rgba(var(--glass-rgb), .25); border:1px solid rgba(var(--glass-strong-rgb), .55); color:#fff; border-radius: 999px; width:28px; height:28px; font-size:1rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.success-toast { left: 50%; right:auto; transform: translate(-50%, 20px); width: calc(100% - 2rem); justify-content: space-between; }
.success-toast.open { transform: translate(-50%, 0); }
@media (min-width: 641px) {
  .success-toast { left: auto; right: 1.25rem; transform: translateY(20px); width: auto; }
  .success-toast.open { transform: translateY(0); }
}
.form-row { display:grid; gap:.4rem }
input, textarea { width:100%; background: var(--card); color:#0f172a; border:1px solid rgba(var(--glass-strong-rgb), .7); border-radius:.6rem; padding:.7rem .9rem; }
::placeholder { color:#94a3b8 }
label { color:#cbd5e1; font-weight:600; font-size:.95rem }
.contact-list { list-style:none; padding:0; margin:0; color: var(--ink); }
.contact-list li { margin:.4rem 0; color: inherit; }
.contact-list li strong { color: var(--ink); }

/* Reviews */
.reviews {
  overflow: hidden;
  --reviews-viewport: calc(100svh - var(--header-h));
  --reviews-gap: clamp(.7rem, 1.6svh, 1.1rem);
  padding-block: clamp(2rem, 5svh, 3.5rem);
  background:
    radial-gradient(70rem 36rem at -8% 8%, rgba(217,4,41,.22), transparent 58%),
    radial-gradient(56rem 30rem at 108% 6%, rgba(15,23,42,.2), transparent 58%),
    linear-gradient(180deg, #f6f8fc 0%, #e5edf7 44%, #edf3fb 100%);
  border-top: 1px solid #d5e0f0;
  border-bottom: 1px solid #d5e0f0;
}
.reviews .container {
  position: relative;
  width: min(100% - 1.25rem, 1280px);
}
.reviews .container::before {
  content: "";
  position: absolute;
  inset: -3rem auto auto 50%;
  width: min(52rem, 96vw);
  height: min(52rem, 96vw);
  border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 1px, transparent 1px 14px),
    radial-gradient(circle, rgba(255,255,255,.62), transparent 64%);
  transform: translateX(-50%);
  pointer-events: none;
}
.reviews .container::after {
  content: "";
  position: absolute;
  inset: 8rem -8rem auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 38% 62% 60% 40%;
  background: linear-gradient(135deg, rgba(217,4,41,.18), rgba(255,255,255,.08));
  filter: blur(.2px);
  opacity: .75;
  pointer-events: none;
}
.reviews-head,
.reviews-stage,
.reviews-strip-head,
.reviews-track,
.reviews-empty,
.reviews-actions {
  position: relative;
  z-index: 1;
}
.reviews-head {
  display: grid;
  gap: clamp(.35rem, 1svh, .55rem);
  max-width: 60rem;
  margin: 0 auto var(--reviews-gap);
  text-align: center;
}
.mobile-cta-bar.mobile-cta-bold .mobile-cta {
  min-height: 3.15rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15,23,42,.12);
}
.reviews-kicker {
  color: #b10323;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.reviews-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  line-height: .94;
  letter-spacing: -.07em;
}
.reviews-head p {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.reviews-stage {
  display: grid;
  gap: .85rem;
  margin-bottom: var(--reviews-gap);
}
@media (min-width: 640px) {
  .reviews-stage {
    gap: 1.1rem;
  }
}
@media (min-width: 980px) {
  .reviews-stage {
    grid-template-columns: minmax(0, 1.65fr) minmax(290px, .5fr);
    align-items: stretch;
  }
}
.reviews-featured-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(19rem, 44svh, 27rem);
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  border-radius: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255,255,255,.72);
  background:
    radial-gradient(80% 80% at 78% 18%, rgba(255,255,255,.18), transparent 48%),
    linear-gradient(132deg, rgba(12,18,32,.98), rgba(24,34,53,.96) 50%, rgba(217,4,41,.9)),
    radial-gradient(120% 120% at 100% 0%, rgba(255,255,255,.16), transparent 56%);
  box-shadow: 0 38px 90px rgba(15,23,42,.26);
  color: #fff;
  isolation: isolate;
  transform-origin: 50% 70%;
}
.reviews-featured-card::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -15%;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  background: conic-gradient(from 120deg, transparent, rgba(255,255,255,.16), transparent, rgba(217,4,41,.18), transparent);
  opacity: .62;
  animation: reviews-orbit 16s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.reviews-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255,255,255,.14) 44%, transparent 54% 100%);
  transform: translateX(-120%);
  animation: reviews-sheen 7s cubic-bezier(.22, 1, .36, 1) infinite;
  pointer-events: none;
  z-index: 0;
}
.reviews-featured-card__glow {
  position: absolute;
  inset: auto -16% -34% auto;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.32), transparent 62%);
  pointer-events: none;
  animation: reviews-pulse 5.5s ease-in-out infinite;
  z-index: 0;
}
.reviews-featured-card__top,
.reviews-featured-card__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  flex-wrap: wrap;
}
.reviews-featured-card__quote-mark {
  position: absolute;
  top: 3.6rem;
  right: clamp(.8rem, 3vw, 2.2rem);
  color: rgba(255,255,255,.12);
  font-size: clamp(9rem, 25vw, 18rem);
  line-height: .7;
  font-weight: 900;
  font-family: Georgia, serif;
  transform: rotate(-8deg);
}
.reviews-featured-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: auto 0 0;
  color: #f8fafc;
  font-size: clamp(1.38rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -.05em;
  font-weight: 800;
}
.reviews-featured-card__meta {
  justify-content: flex-start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.reviews-featured-card__meta span {
  color: #fff;
  font-weight: 800;
}
.reviews-featured-card__meta small {
  color: rgba(255,255,255,.74);
  font-weight: 700;
}
.reviews-proof-panel {
  display: grid;
  gap: .85rem;
}
@media (min-width: 640px) and (max-width: 979px) {
  .reviews-proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.review-proof-card {
  display: grid;
  gap: .65rem;
  min-height: clamp(9.4rem, 20svh, 11.5rem);
  padding: clamp(1.05rem, 2.4vw, 1.45rem);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.82);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.82)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.08), transparent 58%);
  box-shadow: 0 22px 46px rgba(15,23,42,.12);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: transform .24s cubic-bezier(.22, 1, .36, 1), box-shadow .24s ease, border-color .24s ease;
}
.review-proof-card:hover {
  transform: translateY(-5px) rotate(.4deg);
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 30px 60px rgba(15,23,42,.16);
}
.review-proof-card--google {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.86)),
    radial-gradient(120% 120% at 100% 0%, rgba(59,130,246,.14), transparent 58%);
}
.review-proof-card--provenexpert {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,253,249,.86)),
    radial-gradient(120% 120% at 100% 0%, rgba(16,185,129,.16), transparent 58%);
}
.review-proof-card__label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  min-height: 2rem;
  padding: 0 .75rem;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  color: #0f172a;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.review-proof-card__logo {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #0f766e);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
}
.review-proof-card strong {
  color: #0f172a;
  font-size: clamp(2.35rem, 7vw, 4.25rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.review-proof-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}
.review-proof-card a {
  width: fit-content;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}
.review-proof-card a:hover,
.review-proof-card a:focus-visible {
  text-decoration: underline;
}
.review-proof-card__stars {
  display: flex;
  align-items: center;
  gap: .14rem;
  flex-wrap: wrap;
  color: #f59e0b;
}
.review-proof-card__stars svg {
  opacity: .38;
}
.review-proof-card__stars svg.is-active {
  opacity: 1;
}
.review-proof-card__stars span {
  margin-left: .35rem;
  color: #334155;
  font-size: .84rem;
  font-weight: 800;
}
.reviews-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 clamp(.45rem, 1svh, .75rem);
}
.reviews-strip-head p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}
.reviews-strip-head span {
  display: none;
  color: #64748b;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(18rem, 30%);
  gap: .95rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  margin-inline: calc((100vw - min(100vw, 1280px)) / -2);
  padding: .25rem max(.75rem, calc((100vw - 1280px) / 2)) clamp(.7rem, 1.5svh, 1rem);
  scrollbar-color: rgba(15,23,42,.25) transparent;
}
.reviews-track .review-card {
  scroll-snap-align: start;
}
.reviews-empty {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.26);
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
  text-align: center;
}
.reviews-empty p {
  margin: 0;
}
.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: clamp(.35rem, 1.2svh, .8rem);
}
@media (max-width: 759px) {
  .reviews-featured-card {
    min-height: min(23rem, 58svh);
  }
  .reviews-strip-head span {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .reviews-track {
    grid-auto-columns: minmax(86%, 1fr);
    margin-inline: -.625rem;
    padding-inline: .625rem;
  }
}
@media (min-width: 1180px) {
  .reviews-track {
    grid-auto-columns: minmax(21rem, 24%);
  }
}
@media (min-width: 900px) and (min-height: 700px) {
  .reviews {
    min-height: var(--reviews-viewport);
    display: grid;
    align-items: center;
  }
  .reviews-featured-card {
    max-height: min(27rem, 46svh);
  }
  .reviews-featured-card blockquote {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }
  .reviews-track .review-card {
    max-height: clamp(9.5rem, 19svh, 12.5rem);
  }
  .review-card__quote {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
@media (min-width: 1180px) and (min-height: 760px) {
  .reviews-featured-card {
    max-height: min(28rem, 48svh);
  }
  .reviews-track .review-card {
    max-height: clamp(10rem, 18svh, 12rem);
  }
}
.review-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(.55rem, 1.2svh, .9rem);
  align-content: start;
  min-height: 100%;
  padding: clamp(.95rem, 1.7vw, 1.25rem);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.88)),
    radial-gradient(120% 100% at 100% 0%, rgba(217,4,41,.065), transparent 58%);
  box-shadow: 0 18px 38px rgba(15,23,42,.09);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  transform-origin: 50% 80%;
}
.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217,4,41,.9), rgba(239,35,60,.28));
}
.review-card__header {
  display: grid;
  gap: .6rem;
}
.review-card__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.review-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: inherit;
  border: 1px solid rgba(148,163,184,.28);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
}
.review-card__time {
  color: #64748b;
  font-size: .85rem;
  font-weight: 600;
}
.review-card__quote {
  margin: 0;
  color: #1e293b;
  line-height: 1.62;
  font-size: .95rem;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  padding-top: .25rem;
  border-top: 1px solid rgba(148,163,184,.18);
}
.review-card .author { color:#475569; font-size:.9rem; display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; font-weight: 600; }
.author-name { font-weight:700; color:#0f172a; }
.author-link { font-size: .83rem; color: var(--brand); text-transform: uppercase; letter-spacing:.3px; text-decoration:none; }
.author-link:hover { text-decoration: underline; }
.stars { color: #f59e0b; display:flex; gap:.1rem }
.stars svg { opacity:.4; }
.stars svg.is-active { opacity: 1; }
.reviews-featured-card .stars svg.is-active {
  animation: reviews-star-pop .7s cubic-bezier(.22, 1, .36, 1) both;
}
.reviews-featured-card .stars svg:nth-child(2) { animation-delay: .05s; }
.reviews-featured-card .stars svg:nth-child(3) { animation-delay: .1s; }
.reviews-featured-card .stars svg:nth-child(4) { animation-delay: .15s; }
.reviews-featured-card .stars svg:nth-child(5) { animation-delay: .2s; }
.stars--large {
  color: #fbbf24;
  filter: drop-shadow(0 8px 16px rgba(251,191,36,.2));
}
.review-card__footer a { color: var(--brand); font-weight:700; text-decoration:none; }
.review-card__footer a:hover { text-decoration: underline; }

@keyframes reviews-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes reviews-sheen {
  0%, 46% { transform: translateX(-120%); opacity: 0; }
  56% { opacity: .8; }
  72%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes reviews-pulse {
  0%, 100% { transform: scale(.92) translate3d(0, 0, 0); opacity: .72; }
  50% { transform: scale(1.08) translate3d(-1.5rem, -1rem, 0); opacity: 1; }
}
@keyframes reviews-star-pop {
  from { transform: translateY(8px) scale(.55) rotate(-12deg); opacity: 0; }
  to { transform: none; opacity: 1; }
}
@keyframes safety-button-sheen {
  0% { left: -55%; opacity: 0; }
  16% { opacity: 1; }
  100% { left: 118%; opacity: 0; }
}
@keyframes safety-hero-pulse {
  0%, 100% { transform: scale(.9); opacity: .68; }
  50% { transform: scale(1.08) translate3d(-1rem, -1rem, 0); opacity: 1; }
}
@keyframes safety-cta-slide {
  0%, 42% { transform: translateX(-18%); opacity: .58; }
  62% { transform: translateX(18%); opacity: .9; }
  100% { transform: translateX(34%); opacity: .58; }
}
@keyframes safety-extinguisher-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(-.35rem, -.65rem, 0) rotate(3deg); }
}
@keyframes safety-spray {
  0%, 100% { transform: scaleX(.55) translateX(1rem); opacity: .18; }
  42%, 58% { transform: scaleX(1) translateX(0); opacity: .52; }
}

/* --- Responsive Navigation (Burger Menu) --- */
/* Toggle button (mobile default) */
.nav-toggle { display:inline-flex; position: relative; width: 42px; height: 42px; border-radius: 12px; border:1px solid rgba(var(--glass-strong-rgb), .8); background: var(--card); align-items:center; justify-content:center; cursor:pointer; box-shadow: 0 6px 18px rgba(15,23,42,.12); flex-direction: column; gap: 5px; flex-shrink: 0; }
.nav-toggle:hover { background: rgba(var(--glass-rgb), .95) }
.nav-toggle .bar { display:block; width: 22px; height: 2px; background:#0f172a; border-radius: 2px; transition: transform .2s ease, opacity .2s ease, background-color .2s ease }
.nav-toggle:focus { outline: 2px solid var(--brand); outline-offset: 2px; }
.nav-toggle.active .bar { background: var(--brand); }
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-toggle.active .bar:nth-child(2) { opacity: 0 }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }

/* Dim background when menu is open */
body.menu-open::before { content:""; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: rgba(2,6,23,.2); z-index: 800; }

@media (min-width: 768px) {
  .nav-toggle { display:none; }
  .nav { position: static; flex-direction: row; gap: 1.25rem; align-items:center; padding: 0; background: transparent; border:0; border-radius: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; opacity: 1; visibility: visible; pointer-events: auto; overflow: visible; }
  .nav a { display:inline-flex; padding: .35rem .85rem; font-weight: 500; }
  .nav a:hover { background: transparent; text-decoration: none; }
  .nav a:not(.btn) { border-radius: 10px; }
  .nav a:not(.btn):hover,
  .nav a:not(.btn):focus-visible { background: transparent; }
  .nav a:not(.btn)::after { content:""; position:absolute; left:.85rem; right:.85rem; bottom:.25rem; height: 2px; border-radius:999px; background: currentColor; opacity: 0; transform: scaleX(.3); transform-origin: left; transition: transform .18s ease, opacity .18s ease; }
  .nav-phone {
    font-weight: 800;
    background: rgba(var(--glass-rgb), .72);
    border: 1px solid rgba(var(--glass-strong-rgb), .85);
    box-shadow: 0 8px 24px rgba(15,23,42,.08);
  }
  .nav-phone:hover,
  .nav-phone:focus-visible {
    background: rgba(var(--glass-rgb), .92) !important;
  }
  .nav .btn { margin-top: 0; width: auto; justify-content: center; }
  .nav-cta {
    padding: .58rem 1.05rem;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(217,4,41,.3);
  }
  body.menu-open::before { content:none; }
}

/* --- Subtle scroll-reveal animations (respect reduced motion) --- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .38s ease, transform .5s cubic-bezier(.22, 1, .36, 1); }
.reveal.reveal-left { transform: translate3d(-28px, 0, 0); }
.reveal.reveal-right { transform: translate3d(28px, 0, 0); }
.reveal.reveal-scale { transform: scale(.96); }
.reveal.show { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .06s }
.reveal.delay-2 { transition-delay: .12s }
.reveal.delay-3 { transition-delay: .18s }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.show { opacity: 1 !important; transform: none !important; transition: none !important; }
  .nav a:not(.btn)::after { transition: none; }
  .reviews-featured-card::before,
  .reviews-featured-card::after,
  .reviews-featured-card__glow,
  .reviews-featured-card .stars svg.is-active,
  .safety-hero::after,
  .cta-tile::before,
  .btn-slide:hover::before,
  .btn-slide:focus-visible::before,
  .extinguisher-motion__icon,
  .extinguisher-motion__spray {
    animation: none !important;
  }
  .btn-slide,
  .safety-card,
  .review-proof-card,
  .service-showcase-media img,
  .service-showcase-media::after {
    transition: none !important;
  }
  .gallery-item,
  .gallery-item::before,
  .service-story-visual,
  .service-story-panel::after,
  .mobile-cta,
  .fab-cta {
    transition: none !important;
  }
}

/* --- Cookie banner & consent controls --- */
.link-button { background: none; border: 0; padding: 0; color: #0f172a; font: inherit; cursor: pointer; text-decoration: underline; }
.link-button:hover { color: var(--brand); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.badge.muted { background: #e2e8f0; color: #475569; border-radius: 999px; padding: .2rem .55rem; font-size: .75rem; text-transform: none; letter-spacing: normal; }

.cookie-banner { position: fixed; inset: auto 0 0 0; transform: none; width: 100%; background: rgba(255,255,255,.95); border-radius: 14px 14px 0 0; box-shadow: 0 28px 80px rgba(15,23,42,.25); border:1px solid rgba(var(--glass-strong-rgb), .45); z-index: 2200; backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); max-height: 82vh; overflow-y: auto; }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner { padding: .95rem 1rem calc(1.2rem + env(safe-area-inset-bottom, 0)); display:flex; flex-direction:column; flex-wrap:wrap; gap: .85rem; align-items:flex-start; color: #0f172a; }
.cookie-banner__content { flex: 1 1 auto; display:flex; flex-wrap:wrap; gap:.6rem 1rem; align-items:flex-start; }
.cookie-banner__content h2,
.cookie-banner__content p { flex: 1 1 100%; margin: 0; }
.cookie-banner__content h2 { font-size: 1rem; font-weight: 700; }
.cookie-banner__content p { color: #475569; font-size:.92rem; line-height:1.4; }
.cookie-option { flex: 1 1 100%; min-width: 0; width: 100%; display:block; padding:.65rem .75rem; border:1px solid rgba(var(--glass-strong-rgb), .6); border-radius: 14px; background: rgba(var(--glass-rgb), .45); box-shadow: inset 0 1px 0 rgba(var(--glass-rgb), .35); position: relative; }
.cookie-option strong { display:block; font-size:.95rem; }
.cookie-option__summary { display:flex; align-items:flex-start; justify-content:space-between; gap:.8rem; list-style:none; cursor: pointer; padding: 0; }
.cookie-option__summary::-webkit-details-marker { display:none; }
.cookie-option__summary::marker { content: ''; }
.cookie-option__titles { display:grid; gap:.15rem; }
.cookie-option__hint { color:#64748b; font-size: .82rem; }
.cookie-option__chevron { display:inline-flex; align-items:center; justify-content:center; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: rgba(var(--glass-rgb), .55); font-size:.95rem; color:#475569; transition: transform .2s ease, background .2s ease; }
.cookie-option[open] .cookie-option__chevron { transform: rotate(180deg); background: rgba(var(--glass-rgb), .85); }
.cookie-option__body { margin-top: .55rem; display:grid; gap:.45rem; }
.cookie-option__body p { margin: 0; }
.cookie-banner__actions { display:flex; flex-wrap:wrap; gap:.4rem; width: 100%; min-width: 0; align-items:center; }
.btn-secondary.ghost { background: rgba(15,23,42,.04); border-color: #cbd5e1; color: #0f172a; }
.btn-secondary.ghost:hover { background: rgba(15,23,42,.08); }
.cookie-banner__legal { font-size: .82rem; margin: .25rem 0 0; color:#475569; flex: 1 1 100%; padding-bottom: .2rem; }
.cookie-banner__legal a { color: var(--brand); }
.cookie-banner__close { position:absolute; top: .35rem; right: .55rem; background: none; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; color:#94a3b8; }
.cookie-banner__close:hover { color: #0f172a; }
.cookie-banner__actions .btn { width: 100%; justify-content: center; }

.toggle { display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; font-weight: 600; color: #0f172a; }
.toggle input { width: 18px; height: 18px; margin: 0; }
.toggle-label { font-size: .9rem; color: #475569; }
.toggle input:checked + .toggle-label { color: var(--brand); }

.embed-placeholder .btn-secondary { border-color: #cbd5e1; background: transparent; }

@media (min-width: 641px) {
  .cookie-banner { bottom: 1.2rem; left: 50%; right: auto; inset: auto auto 1.2rem 50%; transform: translateX(-50%); width: min(920px, calc(100% - 1.5rem)); border-radius: 18px; max-height: 90vh; }
  .cookie-banner__inner { padding: 1.25rem 1.75rem 1.5rem; gap: 1.5rem; }
  .cookie-banner__content h2 { font-size: 1.1rem; }
  .cookie-banner__content p { font-size:1rem; line-height:1.5; }
  .cookie-option { flex: 1 1 210px; min-width: 200px; width: auto; padding:.75rem .85rem; }
  .cookie-option__summary { align-items:center; }
  .cookie-option__hint { font-size: .85rem; }
  .cookie-option__body { gap:.55rem; }
  .cookie-banner__legal { font-size: .85rem; }
  .cookie-banner__close { top: .5rem; right: .75rem; }
}
@media (min-width: 901px) {
  .cookie-banner__inner { flex-direction: row; }
  .cookie-banner__actions { width: auto; min-width: 220px; flex-wrap: nowrap; }
  .cookie-banner__actions .btn { width: auto; }
}
/* --- Admin --- */
.admin-body {
  min-height: 100vh;
  position: relative;
  margin: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background-color: #eef2f7;
  isolation: isolate;
}
.admin-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #eef2f7;
  background-image:
    radial-gradient(circle at 8% 10%, rgba(217,4,41,.14), transparent 0 28%),
    radial-gradient(circle at 88% 78%, rgba(148,163,184,.16), transparent 0 24%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #e9eef6 100%);
  background-repeat: no-repeat;
  background-size: 1400px 900px, 1200px 820px, 100% 100%;
  background-position: top left, bottom right, top left;
}
.admin-shell { min-height: 100vh; padding: 1rem; position: relative; display: block; }
.admin-is-loading {
  overflow: hidden;
}
.admin-header,
.admin-sidebar,
.admin-panel,
.admin-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 22px 60px rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
}
.admin-shell__content {
  min-width: 0;
}
.admin-header {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.admin-header__left {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}
.admin-brand img { width: 52px; height: auto; }
.admin-brand--sidebar {
  width: 100%;
}
.admin-header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.admin-user {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: 0 .9rem;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-weight: 600;
}
.admin-user--sidebar {
  justify-content: center;
}
.admin-user--link {
  text-decoration: none;
}
.admin-user--link:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.admin-user--link.is-active {
  background: rgba(217,4,41,.12);
  color: #8b1022;
}
.admin-user__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}
.admin-user__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-main {
  min-width: 0;
}
.admin-login,
.admin-dashboard {
  padding: 1rem 0 2rem;
}
.admin-panel {
  border-radius: 28px;
  padding: 1.5rem;
}
.admin-panel--narrow {
  max-width: 520px;
  margin: 6vh auto 0;
}
.admin-eyebrow {
  display: inline-flex;
  margin-bottom: .7rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(217,4,41,.1);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-panel h1,
.admin-card h2 {
  margin: 0 0 .55rem;
  color: #0f172a;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.admin-panel h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
}
.admin-card h2 {
  font-size: 1.2rem;
  font-weight: 650;
}
.admin-panel p,
.admin-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}
.admin-form {
  display: grid;
  gap: .85rem;
  margin-top: 1.25rem;
}
.admin-form label {
  font-weight: 600;
  color: #0f172a;
}
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 0 .95rem;
  font: inherit;
  background: #fff;
  font-weight: 500;
}
.admin-form textarea {
  min-height: 132px;
  padding: .85rem .95rem;
  resize: vertical;
}
.admin-form select {
  appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - .15rem),
    calc(100% - .8rem) calc(50% - .15rem);
  background-size: .35rem .35rem, .35rem .35rem;
  background-repeat: no-repeat;
}
.form-field__error {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  margin: .2rem 0 0;
  padding: .7rem .8rem;
  border-radius: 12px;
  border: 1px solid rgba(220,38,38,.2);
  background: linear-gradient(180deg, rgba(254,242,242,.96), rgba(255,245,245,.96));
  color: #991b1b;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 650;
}
.form-field__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .02rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.form-field {
  display: grid;
  gap: .45rem;
  min-width: 0;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-label--required::after {
  content: " *";
  color: #dc2626;
  font-weight: 800;
}
.registration-consent.form-label--required > span::after {
  content: " *";
  color: #dc2626;
  font-weight: 800;
}
.admin-form input.is-invalid,
.admin-form textarea.is-invalid,
.admin-form select.is-invalid,
.registration-consent.is-invalid {
  border-color: #dc2626;
  background: #fff5f5;
  box-shadow: 0 0 0 4px rgba(220,38,38,.16), 0 10px 24px rgba(220,38,38,.08);
}
.admin-form [data-field].is-invalid label {
  color: #991b1b;
}
.admin-form [data-field].is-invalid {
  padding: .8rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,247,247,.92), rgba(254,242,242,.82));
  box-shadow: inset 0 0 0 1px rgba(220,38,38,.08);
}
.admin-submit {
  justify-content: center;
  min-height: 52px;
  margin-top: .25rem;
}
.admin-alert {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(217,4,41,.09);
  border: 1px solid rgba(217,4,41,.18);
  color: #8b1e2d;
  font-weight: 600;
}
.admin-alert--success {
  background: rgba(22,163,74,.12);
  border-color: rgba(22,163,74,.22);
  color: #166534;
}
.admin-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.admin-card {
  border-radius: 24px;
  padding: 1.35rem;
}
.admin-nav-toggle,
.admin-sidebar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
}
.admin-nav-toggle svg,
.admin-sidebar__close svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-sidebar {
  position: fixed;
  inset: 1rem auto 1rem 1rem;
  z-index: 1200;
  width: min(320px, calc(100vw - 2rem));
  border-radius: 26px;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  transform: translateX(-115%);
  transition: transform .24s ease, opacity .2s ease;
}
.admin-sidebar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.admin-sidebar__nav {
  display: grid;
  gap: .45rem;
  align-content: start;
}
.admin-sidebar__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: .8rem .95rem;
  border-radius: 16px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  background: rgba(255,255,255,.72);
  border: 1px solid transparent;
}
.admin-sidebar__link:hover {
  background: rgba(248,250,252,.96);
  color: #0f172a;
}
.admin-sidebar__link.is-active {
  background: linear-gradient(180deg, rgba(255,241,242,.95), rgba(255,255,255,.98));
  border-color: rgba(217,4,41,.18);
  color: #b91c1c;
  box-shadow: inset 3px 0 0 rgba(217,4,41,.85);
}
.admin-sidebar__footer {
  display: grid;
  gap: .75rem;
}
.admin-link-grid {
  display: grid;
  gap: .85rem;
}
.admin-link-card {
  display: grid;
  gap: .28rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.98));
  border: 1px solid rgba(226,232,240,.96);
  color: #334155;
}
.admin-link-card strong {
  color: #0f172a;
}
.admin-link-card:hover {
  border-color: rgba(217,4,41,.2);
  box-shadow: 0 18px 34px rgba(15,23,42,.08);
}
.dashboard-stat {
  display: block;
  margin-top: .2rem;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 700;
}
.admin-grid--stats .admin-card {
  display: grid;
  gap: .35rem;
}
.company-filter-form {
  margin-top: 0;
  align-items: end;
}
.company-filter-form__actions,
.company-form__footer {
  display: grid;
  gap: .75rem;
  grid-column: 1 / -1;
}
.company-list {
  display: grid;
  gap: 1rem;
}
.company-card {
  display: grid;
  gap: .9rem;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 18px 38px rgba(15,23,42,.07);
}
.company-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.company-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}
.company-card__actions form {
  margin: 0;
}
.company-card__head h2 {
  margin: 0 0 .2rem;
}
.company-card__head p {
  margin: 0;
  color: #475569;
}
.company-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.participant-dialog__manage-link.is-disabled {
  opacity: .55;
  pointer-events: none;
}
.participant-dialog__field input.is-readonly {
  background: #f8fafc;
  color: #334155;
}
.admin-body--app.admin-sidebar-mobile-open {
  overflow: hidden;
}
.admin-body--app.admin-sidebar-mobile-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(15,23,42,.32);
}
.admin-body--app.admin-sidebar-mobile-open .admin-sidebar {
  transform: translateX(0);
}
.admin-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.btn-icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
}
.btn-icon-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .75rem 1rem;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}
.btn-ghost:hover { background: #f8fafc; }
.btn-ghost--danger {
  border-color: #fecaca;
  background: #fff7f7;
  color: #991b1b;
}
.btn-ghost--danger:hover {
  background: #fee2e2;
}

@media (min-width: 768px) {
  .admin-shell { padding: 1.25rem; }
  .admin-header { padding: 1rem 1.25rem; }
  .admin-login,
  .admin-dashboard { padding: 1.5rem 0 2.5rem; }
  .admin-panel { padding: 2rem; }
  .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-card { padding: 1.6rem; }
  .company-filter-form__actions,
  .company-form__footer {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
  }
}
.admin-flash {
  margin: 0 auto 1rem;
  max-width: 1120px;
  padding: .9rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}
.admin-flash--success {
  background: rgba(22,163,74,.12);
  border: 1px solid rgba(22,163,74,.18);
  color: #166534;
}
.admin-flash--error {
  background: rgba(217,4,41,.09);
  border: 1px solid rgba(217,4,41,.18);
  color: #8b1e2d;
}
.admin-loading-overlay {
  position: fixed;
  z-index: 5000;
  inset: 0;
  width: min(100vw, 100%);
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 1.25rem;
  border: 0;
  padding: 1.25rem;
  background: rgba(15,23,42,.4);
  backdrop-filter: blur(8px);
}
.admin-loading-overlay::backdrop {
  background: rgba(15,23,42,.4);
  backdrop-filter: blur(8px);
}
.admin-loading-overlay[open] {
  display: grid;
  place-items: center;
}
.admin-loading-overlay__panel {
  width: min(100%, 460px);
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(148,163,184,.28);
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(15,23,42,.22);
}
.admin-loading-overlay__eyebrow {
  display: inline-flex;
  margin-bottom: .6rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(217,4,41,.1);
  color: var(--brand-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-loading-overlay__panel h2 {
  margin: 0 0 .45rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 650;
}
.admin-loading-overlay__panel p {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.6;
}
.admin-loading-overlay__bar {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
  border: 1px solid rgba(148,163,184,.35);
}
.admin-loading-overlay__bar span {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d90429 0%, #f97316 100%);
  box-shadow: 0 10px 24px rgba(217,4,41,.24);
  transition: width .35s ease;
}
.admin-loading-overlay__panel strong {
  display: block;
  margin-top: .8rem;
  color: #0f172a;
  font-size: .98rem;
  font-weight: 650;
}
.admin-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-toolbar h1 { margin: 0 0 .4rem; }
.admin-toolbar p { margin: 0; color: #64748b; }
.admin-toolbar__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.admin-next-card {
  align-content: start;
}
.admin-next-list {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}
.admin-next-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .15rem .75rem;
  align-items: center;
  padding: .82rem;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(203,213,225,.72);
  color: #0f172a;
  text-decoration: none;
}
.admin-next-item:hover {
  border-color: rgba(217,4,41,.28);
  background: #fff;
}
.admin-next-item__date {
  grid-row: span 2;
  min-width: 3.15rem;
  padding: .55rem .45rem;
  border-radius: 14px;
  background: #fff5f6;
  color: #991b1b;
  border: 1px solid #fecdd3;
  text-align: center;
  font-weight: 850;
}
.admin-next-item__main {
  display: grid;
  gap: .12rem;
  min-width: 0;
}
.admin-next-item__main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-next-item__main small {
  color: #64748b;
}
.admin-next-item__action {
  width: fit-content;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(217,4,41,.1);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
}
.admin-grid--detail { grid-template-columns: 1fr; }
.admin-card--wide { grid-column: 1 / -1; }
.admin-table-wrap { overflow-x: auto; margin-top: .9rem; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th,
.admin-table td {
  padding: .85rem .75rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.admin-table__link {
  color: #0f172a;
  text-decoration: none;
}
.admin-table__link:hover {
  color: var(--brand-dark);
}
.participant-list {
  display: grid;
  gap: .8rem;
  margin-top: .95rem;
}
.participant-item {
  border: 1px solid #dbe3f0;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.participant-item[open] {
  border-color: #cbd5e1;
  box-shadow: 0 16px 34px rgba(15,23,42,.06);
}
.participant-item--present {
  border-left: 6px solid #60a5fa;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.participant-item--present.has-signature {
  border-left-color: #16a34a;
  background: linear-gradient(180deg, #ffffff, #f4fbf6);
}
.participant-item--absent {
  border-left: 6px solid #f87171;
  background: linear-gradient(180deg, #ffffff, #fff7f7);
}
.participant-item--open {
  border-left: 6px solid #fbbf24;
  background: linear-gradient(180deg, #ffffff, #fffdf5);
}
.participant-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .85rem;
  padding: 1rem 1.05rem;
  cursor: pointer;
  list-style: none;
}
.participant-summary::-webkit-details-marker {
  display: none;
}
.participant-summary::marker {
  content: "";
}
.participant-summary__main,
.participant-summary__meta {
  display: grid;
  gap: .35rem;
}
.participant-summary__main strong {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.participant-summary__main span {
  color: #64748b;
  font-size: .93rem;
}
.participant-summary__hint {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0 .75rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: .84rem;
  font-weight: 700;
}
.participant-item--present .participant-summary__hint {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1d4ed8;
}
.participant-item--present.has-signature .participant-summary__hint {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.participant-item--absent .participant-summary__hint {
  background: #fee2e2;
  border-color: #fecaca;
  color: #b91c1c;
}
.participant-item--open .participant-summary__hint {
  background: #fff7d6;
  border-color: #fde68a;
  color: #9a6700;
}
.participant-summary__meta {
  justify-content: start;
}
.participant-summary__status--attendance {
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255,255,255,.55) inset;
}
.participant-summary__status--certificate {
  opacity: .92;
}
.participant-details {
  display: grid;
  gap: 1rem;
  padding: 0 1.05rem 1.05rem;
  border-top: 1px solid #e2e8f0;
}
.participant-details__grid {
  display: grid;
  gap: .85rem;
  padding-top: 1rem;
}
.participant-details__grid > div {
  display: grid;
  gap: .2rem;
}
.participant-details__label {
  color: #64748b;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.participant-details__grid strong {
  font-size: .96rem;
  font-weight: 650;
  color: #0f172a;
}
.participant-details__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.participant-empty {
  padding: 1rem 1.05rem;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  color: #64748b;
  background: rgba(255,255,255,.65);
}
.participant-main,
.participant-company {
  display: grid;
  gap: .18rem;
}
.participant-main strong,
.participant-company strong {
  font-weight: 700;
  color: #0f172a;
}
.participant-main span,
.participant-company span {
  color: #64748b;
  font-size: .92rem;
}
.admin-table td input,
.admin-table td select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 .75rem;
  font: inherit;
  background: #fff;
  font-weight: 500;
}
.admin-status {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .36rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.admin-status--draft,
.admin-status--registration_open { background: #e2e8f0; color: #475569; }
.admin-status--in_progress,
.admin-status--issued { background: #fef3c7; color: #92400e; }
.admin-status--completed,
.admin-status--sent { background: #dcfce7; color: #166534; }
.admin-status--open,
.admin-status--registered { background: #fff7d6; color: #9a6700; }
.admin-status--archived,
.admin-status--revoked,
.admin-status--absent { background: #fee2e2; color: #991b1b; }
.admin-status--present { background: #dbeafe; color: #1d4ed8; }
.admin-note {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 .82rem;
  border-radius: 999px;
  background: rgba(248,250,252,.95);
  border: 1px solid rgba(226,232,240,.95);
  color: #475569;
  font-size: .85rem;
  font-weight: 600;
}
.admin-note--danger {
  background: #fff7f7;
  border-color: #fecaca;
  color: #991b1b;
}
.admin-action-stack { display: flex; flex-wrap: wrap; gap: .5rem; }
.admin-action-stack--compact {
  margin-top: .55rem;
}
.admin-actions-cell {
  min-width: 154px;
}
.admin-icon-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn-icon:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-1px);
}
.btn-icon:disabled,
.btn-ghost:disabled,
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}
.btn-icon--danger {
  color: #991b1b;
  border-color: #fecaca;
  background: #fff7f7;
}
.btn-icon--danger:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}
.btn-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-ghost--small {
  min-height: 38px;
  padding: .55rem .8rem;
  border-radius: 12px;
  font-size: .9rem;
}
.admin-readonly {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0 .85rem;
  margin-top: .85rem;
  background: #fff;
  color: #334155;
  font: inherit;
}
.admin-help {
  color: #64748b;
  font-size: .92rem;
  line-height: 1.5;
}
.admin-inline-form { margin-top: 1rem; }
.admin-form--grid { grid-template-columns: 1fr; }
.admin-form--compact { gap: .7rem; }
.attendance-summary {
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}
.attendance-summary__item {
  display: grid;
  gap: .2rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(248,250,252,.82);
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.attendance-summary__label {
  color: #64748b;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.attendance-summary__item strong {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
}
.attendance-summary__item--total {
  background: linear-gradient(180deg, rgba(248,250,252,.95), rgba(241,245,249,.92));
}
.attendance-summary__item--present {
  background: linear-gradient(180deg, #effaf3, #dcfce7);
  border-color: #86efac;
}
.attendance-summary__item--present strong,
.attendance-summary__item--present .attendance-summary__label {
  color: #166534;
}
.attendance-summary__item--open {
  background: linear-gradient(180deg, #fffbee, #fff7d6);
  border-color: #fde68a;
}
.attendance-summary__item--open strong,
.attendance-summary__item--open .attendance-summary__label {
  color: #9a6700;
}
.attendance-summary__item--absent {
  background: linear-gradient(180deg, #fff5f5, #fee2e2);
  border-color: #fecaca;
}
.attendance-summary__item--absent strong,
.attendance-summary__item--absent .attendance-summary__label {
  color: #b91c1c;
}
.attendance-summary__item--signed {
  background: linear-gradient(180deg, #eefaf1, #dcfce7);
  border-color: #86efac;
}
.attendance-summary__item--signed strong,
.attendance-summary__item--signed .attendance-summary__label {
  color: #166534;
}
.attendance-list {
  display: grid;
  gap: 1rem;
}
.attendance-grid {
  display: grid;
  gap: .85rem;
}
.attendance-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #dbe3f0;
  border-left: 6px solid transparent;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.attendance-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15,23,42,.06);
}
.attendance-card.is-present {
  border-left-color: #60a5fa;
  border-color: rgba(34,197,94,.42);
  background: linear-gradient(180deg, #ffffff, #f3fbf5);
}
.attendance-card.is-open {
  border-left-color: #fbbf24;
  border-color: rgba(251,191,36,.45);
  background: linear-gradient(180deg, #ffffff, #fffdf5);
}
.attendance-card.is-absent {
  border-left-color: #f87171;
  border-color: rgba(248,113,113,.34);
  background: linear-gradient(180deg, #ffffff, #fff5f5);
}
.attendance-card.has-signature {
  border-left-color: #16a34a;
}
.attendance-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: #eef2f7;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: .04em;
}
.attendance-card.is-present .attendance-card__avatar {
  background: #dcfce7;
  color: #166534;
}
.attendance-card.is-open .attendance-card__avatar {
  background: #fef3c7;
  color: #9a6700;
}
.attendance-card.is-absent .attendance-card__avatar {
  background: #fee2e2;
  color: #b91c1c;
}
.attendance-card__content {
  display: grid;
  gap: .3rem;
}
.attendance-card__name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #0f172a;
}
.attendance-card__meta {
  display: grid;
  gap: .15rem;
  color: #64748b;
  font-size: .93rem;
}
.attendance-card__state {
  grid-column: 1 / -1;
}
.attendance-card__state-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.7rem;
  padding: 0 .95rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 700;
}
.attendance-card__state-indicator {
  width: .7rem;
  height: .7rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255,255,255,.55);
}
.attendance-card.is-present .attendance-card__state-pill {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.attendance-card.is-open .attendance-card__state-pill {
  background: #fff7d6;
  border-color: #fde68a;
  color: #9a6700;
}
.attendance-card.is-absent .attendance-card__state-pill {
  background: #fee2e2;
  border-color: #fecaca;
  color: #b91c1c;
}
.attendance-card__signature {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  padding: .8rem;
  border-radius: 18px;
  background: #eefaf1;
  border: 1px solid #86efac;
}
.attendance-card__signature--placeholder {
  background: rgba(248,250,252,.82);
  border-color: #dbe3f0;
}
.attendance-card__signature-preview {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbe3f0;
  overflow: hidden;
}
.attendance-card__signature-preview--placeholder {
  background:
    linear-gradient(135deg, rgba(226,232,240,.8), rgba(248,250,252,.95));
  border-style: dashed;
}
.attendance-card__signature-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.attendance-card__signature-meta {
  display: grid;
  gap: .25rem;
}
.attendance-card__signature-meta strong {
  font-size: .96rem;
  color: #166534;
}
.attendance-card__signature-meta span {
  color: #15803d;
  font-size: .9rem;
}
.attendance-card__signature--placeholder .attendance-card__signature-meta strong {
  color: #475569;
}
.attendance-card__signature--placeholder .attendance-card__signature-meta span {
  color: #64748b;
}
.attendance-card__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.attendance-sign-dialog {
  max-width: 56rem;
}
.attendance-sign-pad {
  padding: .75rem;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #dbe3f0;
}
.attendance-sign-pad__canvas {
  display: block;
  width: 100%;
  min-height: 18rem;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed #94a3b8;
  touch-action: none;
}
.participant-signature-preview {
  display: block;
  max-width: 16rem;
  width: 100%;
  height: auto;
  padding: .5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dbe3f0;
}
.public-panel { margin: 0 auto; }
.public-flow {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(58rem 28rem at 88% 6%, rgba(217,4,41,.14), transparent 62%),
    radial-gradient(42rem 22rem at 0% 100%, rgba(15,23,42,.08), transparent 66%),
    linear-gradient(180deg, #f4f7fb, #e7edf7);
}
.public-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.42) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.public-flow > .container {
  position: relative;
  z-index: 1;
}
.public-flow-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(24px, 4vw, 34px) !important;
  border: 1px solid rgba(255,255,255,.78) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.9)),
    radial-gradient(120% 120% at 100% 0%, rgba(217,4,41,.1), transparent 58%) !important;
  box-shadow: 0 32px 80px rgba(15,23,42,.14) !important;
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}
.public-flow-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(217,4,41,.95), rgba(217,4,41,.08));
}
.public-flow-panel > * {
  position: relative;
  z-index: 1;
}
.public-flow-panel h1 {
  letter-spacing: -.055em;
}
.public-flow-panel .admin-form input,
.public-flow-panel .admin-form textarea,
.public-flow-panel .admin-form select {
  border-color: rgba(148,163,184,.42);
  background: rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.public-panel--registration {
  max-width: 58rem;
}
.seminar-registration-form {
  gap: 1rem;
}
.registration-block {
  display: grid;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: rgba(248,250,252,.68);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.registration-block .form-field {
  padding: .7rem;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(226,232,240,.9);
}
.registration-block .form-field.is-invalid {
  padding: .85rem;
  background: linear-gradient(180deg, rgba(255,247,247,.98), rgba(254,242,242,.92));
  box-shadow:
    inset 0 0 0 1px rgba(220,38,38,.14),
    0 16px 34px rgba(220,38,38,.08);
}
.registration-block.has-invalid-fields {
  border-color: rgba(220,38,38,.32);
  background: linear-gradient(180deg, rgba(255,251,251,.98), rgba(254,242,242,.8));
  box-shadow: 0 20px 40px rgba(220,38,38,.08);
}
.registration-block.is-hidden {
  display: none;
}
.registration-block__head {
  display: grid;
  gap: .2rem;
}
.registration-block__head h2 {
  margin: 0;
  font-size: 1.05rem;
}
.registration-block__head p {
  margin: 0;
  color: #64748b;
  font-size: .95rem;
}
.registration-participants {
  display: grid;
  gap: .85rem;
}
.registration-actions {
  display: grid;
  gap: .85rem;
}
.registration-actions__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.registration-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #dbe3f0;
  border-radius: 18px;
  background: rgba(248,250,252,.82);
  color: #334155;
  font-size: .95rem;
  line-height: 1.6;
}
.registration-consent.is-invalid {
  border-color: rgba(220,38,38,.32);
  background: rgba(254,242,242,.92);
}
.registration-consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .2rem;
  accent-color: #d90429;
}
.registration-consent .form-field__error {
  grid-column: 1 / -1;
  margin-top: .1rem;
}
.registration-consent a {
  color: #b10323;
  font-weight: 700;
}
.certificate-meta {
  display: grid;
  gap: .85rem;
  margin: 1rem 0 1.2rem;
}
.certificate-meta div {
  display: grid;
  gap: .2rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.certificate-meta strong {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.seminar-hero {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(217,4,41,.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.88));
}
.seminar-list {
  display: grid;
  gap: .8rem;
  margin-top: .95rem;
}
.seminar-list-section + .seminar-list-section {
  margin-top: 1.4rem;
}
.seminar-list-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.seminar-list-section__head h2 {
  margin: .2rem 0 0;
}
.seminar-list-section__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  padding: 0 .7rem;
  border-radius: 999px;
  background: rgba(248,250,252,.92);
  border: 1px solid rgba(203,213,225,.9);
  color: #0f172a;
  font-weight: 700;
}
.seminar-list-section--archived .seminar-list-section__count {
  background: #fff5f5;
  border-color: #fecaca;
  color: #991b1b;
}
.seminar-list-card {
  display: grid;
  gap: 1rem;
  padding: 1.05rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.92)),
    radial-gradient(circle at top right, rgba(217,4,41,.06), transparent 28%);
  border: 1px solid rgba(203,213,225,.78);
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.seminar-list-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15,23,42,.08);
  border-color: rgba(148,163,184,.9);
}
.seminar-list-card--archived {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(249,250,251,.92)),
    radial-gradient(circle at top right, rgba(148,163,184,.08), transparent 28%);
}
.seminar-list-card--archived .seminar-list-card__datebox {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-color: rgba(203,213,225,.9);
  color: #64748b;
}
.seminar-list-card__datebox {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .1rem;
  min-height: 104px;
  padding: .8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff5f6, #fff);
  border: 1px solid rgba(254,205,211,.9);
  color: #991b1b;
  text-align: center;
}
.seminar-list-card__day {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
}
.seminar-list-card__month,
.seminar-list-card__time {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.seminar-list-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.seminar-list-card__body {
  display: grid;
  gap: .9rem;
  min-width: 0;
}
.seminar-list-card__main {
  display: grid;
  gap: .22rem;
}
.seminar-list-card__main h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 26ch;
}
.seminar-list-card__main p {
  margin: 0;
  color: #64748b;
  font-size: .97rem;
}
.seminar-list-card__date {
  color: #64748b;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.seminar-list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.seminar-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2.2rem;
  padding: 0 .82rem;
  border-radius: 999px;
  background: rgba(248,250,252,.95);
  border: 1px solid rgba(226,232,240,.95);
  color: #475569;
  font-size: .9rem;
  font-weight: 600;
}
.seminar-meta-pill strong {
  color: #0f172a;
  font-weight: 700;
}
.seminar-list-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding-top: .2rem;
  gap: .75rem;
}
.seminar-next-hint {
  flex: 1 1 14rem;
  color: #64748b;
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.35;
}
.seminar-list-card__open {
  min-width: 132px;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border-color: rgba(217,4,41,.18);
  background: linear-gradient(180deg, #d90429, #b10323);
  color: #fff;
  box-shadow: 0 14px 28px rgba(217,4,41,.18);
}
.seminar-list-card__open:hover {
  background: linear-gradient(180deg, #c60326, #9f0320);
  color: #fff;
}
.seminar-list-card--archived .seminar-list-card__open {
  border-color: rgba(148,163,184,.32);
  background: linear-gradient(180deg, #334155, #1f2937);
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
}
.seminar-list-card--archived .seminar-list-card__open:hover {
  background: linear-gradient(180deg, #293548, #17202d);
}
.seminar-hero__head {
  display: grid;
  gap: 1rem;
}
.seminar-lock-note {
  max-width: 1120px;
  margin: 0 auto 1rem;
  background: rgba(153,27,27,.08);
  border: 1px solid rgba(248,113,113,.22);
  color: #7f1d1d;
}
.seminar-meta-grid,
.seminar-quick-grid {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
.seminar-meta-card {
  display: grid;
  gap: .3rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(248,250,252,.85);
  border: 1px solid rgba(203,213,225,.8);
}
.seminar-meta-card--status {
  background: linear-gradient(180deg, rgba(255,251,235,.95), rgba(254,243,199,.86));
  border-color: rgba(253,224,71,.55);
}
.seminar-meta-card--attendance {
  background: linear-gradient(180deg, rgba(239,250,243,.95), rgba(220,252,231,.86));
  border-color: rgba(134,239,172,.8);
}
.seminar-meta-card__label,
.admin-section-head__eyebrow {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}
.seminar-meta-card strong {
  font-size: 1rem;
  font-weight: 650;
  color: #0f172a;
}
.seminar-quick-card {
  display: grid;
  gap: .26rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(203,213,225,.82);
  background: rgba(255,255,255,.84);
}
.seminar-quick-card strong {
  font-size: 1.4rem;
  line-height: 1;
  color: #0f172a;
}
.seminar-quick-card span:last-child {
  color: #475569;
  font-size: .9rem;
}
.seminar-quick-card--present {
  background: linear-gradient(180deg, #effaf3, #dcfce7);
  border-color: #86efac;
}
.seminar-quick-card--present strong,
.seminar-quick-card--present span:last-child {
  color: #166534;
}
.seminar-quick-card--open {
  background: linear-gradient(180deg, #fffbee, #fff7d6);
  border-color: #fde68a;
}
.seminar-quick-card--open strong,
.seminar-quick-card--open span:last-child {
  color: #9a6700;
}
.seminar-quick-card--signed {
  background: linear-gradient(180deg, #eefaf1, #dcfce7);
  border-color: #86efac;
}
.seminar-quick-card--signed strong,
.seminar-quick-card--signed span:last-child {
  color: #166534;
}
.seminar-quick-card--absent {
  background: linear-gradient(180deg, #fff5f5, #fee2e2);
  border-color: #fecaca;
}
.seminar-quick-card--absent strong,
.seminar-quick-card--absent span:last-child {
  color: #b91c1c;
}
.admin-card--disabled {
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,250,252,.8));
}
.admin-card__notice {
  display: grid;
  gap: .35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(248,250,252,.82);
  border: 1px solid #dbe3f0;
  color: #475569;
}
.admin-card__notice strong {
  color: #0f172a;
}
.invitation-history {
  display: grid;
  gap: .85rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.invitation-history__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.invitation-history__head h3 {
  margin: .2rem 0 0;
  font-size: 1.05rem;
  color: #0f172a;
}
.invitation-history__list {
  display: grid;
  gap: .7rem;
}
.invitation-history__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  border: 1px solid #dbe3f0;
  background: rgba(248,250,252,.82);
}
.invitation-history__main {
  display: grid;
  gap: .18rem;
}
.invitation-history__main strong {
  color: #0f172a;
  font-weight: 700;
}
.invitation-history__main span {
  color: #64748b;
  font-size: .92rem;
}
.admin-tabs {
  display: grid;
  gap: .9rem;
  margin-top: .25rem;
}
.admin-tabs__nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .35rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 .95rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.admin-tab.is-active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
}
.admin-tab-panel {
  display: none;
  gap: .85rem;
}
.admin-tab-panel.is-active {
  display: grid;
}
.admin-copy-row {
  display: grid;
  gap: .75rem;
  align-items: end;
}
.admin-copy-row .admin-readonly {
  margin-top: 0;
}
.admin-copy-row .btn {
  min-height: 48px;
}
.admin-card--soft {
  background: rgba(255,255,255,.78);
}
.admin-section-head {
  display: grid;
  gap: .3rem;
  margin-bottom: 1rem;
}
.admin-section-head__row {
  display: grid;
  gap: 1rem;
}
.admin-section-head h2 {
  margin-bottom: 0;
}
.admin-section-head + h2 {
  display: none;
}
.admin-dialog {
  width: min(620px, calc(100vw - 2rem));
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15,23,42,.22);
}
.admin-dialog::backdrop {
  background: rgba(15,23,42,.5);
  backdrop-filter: blur(4px);
}
.admin-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0;
}
.admin-dialog form {
  margin: 0;
}
.admin-dialog .admin-form {
  padding: 1rem 1.35rem 1.35rem;
}
.admin-dialog--participant {
  width: min(860px, calc(100vw - 2rem));
}
.participant-dialog__form {
  grid-template-columns: 1fr;
  gap: .85rem;
}
.participant-dialog__section {
  display: grid;
  gap: .95rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, .96), rgba(255, 255, 255, .98));
}
.participant-dialog__section--company {
  background:
    radial-gradient(circle at top right, rgba(15, 23, 42, .05), transparent 36%),
    linear-gradient(180deg, rgba(241, 245, 249, .98), rgba(255, 255, 255, .98));
}
.participant-dialog__section-head {
  display: grid;
  gap: .3rem;
}
.participant-dialog__section-head h3 {
  margin: 0;
  font-size: 1.05rem;
}
.participant-dialog__section-head p {
  margin: 0;
  color: #64748b;
  font-size: .95rem;
}
.participant-dialog__notice {
  padding: .85rem .95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  border: 1px dashed rgba(148, 163, 184, .45);
  color: #475569;
  font-size: .92rem;
  line-height: 1.5;
}
.participant-dialog__notice--company {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.92));
}
.participant-dialog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.participant-dialog__field {
  display: grid;
  gap: .45rem;
  min-width: 0;
  padding: .85rem .9rem;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.participant-dialog__field label {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.participant-dialog__field--full,
.participant-dialog__form .admin-dialog__footer {
  grid-column: 1 / -1;
}
.participant-dialog__field[data-field].is-invalid {
  border-color: rgba(220, 38, 38, .4);
  background: linear-gradient(180deg, rgba(255,245,245,.96), rgba(255,255,255,.98));
}
.admin-dialog--registration-link .admin-tabs {
  padding: 1rem 1.35rem 0;
}
.admin-dialog--registration-link .admin-tab-panel .admin-form {
  padding: 1rem 0 0;
}
.admin-dialog--registration-link .admin-tab-panel .admin-help:first-child {
  margin-top: 0;
}
.admin-dialog--registration-link .invitation-history {
  margin: .75rem 0 0;
  padding: 1.1rem 1.35rem 1.35rem;
}
.admin-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .45rem;
}
.profile-hero {
  display: grid;
  gap: 1rem;
  margin-top: .25rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(217,4,41,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,252,255,.9));
}
.profile-hero__identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.profile-hero__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 22px;
  background: linear-gradient(135deg, #ef233c, #d90429);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(217,4,41,.22);
}
.profile-hero__identity h2 {
  margin: 0 0 .18rem;
  font-size: 1.45rem;
}
.profile-hero__identity p {
  margin: 0;
}
.profile-hero__meta {
  display: grid;
  gap: .8rem;
}
.profile-stat {
  display: grid;
  gap: .22rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  background: rgba(248,250,252,.88);
  border: 1px solid rgba(226,232,240,.95);
}
.profile-stat__label {
  color: #64748b;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.profile-stat strong {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}
.profile-note-list {
  display: grid;
  gap: .7rem;
}
.profile-note {
  display: grid;
  gap: .24rem;
  padding: .8rem .9rem;
  border-radius: 16px;
  background: rgba(248,250,252,.82);
  border: 1px solid rgba(226,232,240,.95);
}
.profile-note strong {
  color: #0f172a;
  font-weight: 700;
}
.profile-note span {
  color: #64748b;
  line-height: 1.5;
}
.profile-form {
  gap: 1rem 1.1rem;
}
.profile-form__field {
  display: grid;
  gap: .5rem;
}
.profile-form__field--full {
  grid-column: 1 / -1;
}
.profile-form__footer {
  display: grid;
  gap: .8rem;
  grid-column: 1 / -1;
  align-items: center;
}
.profile-form__hint {
  color: #64748b;
  font-size: .94rem;
}

@media (min-width: 768px) {
  .seminar-registration-form {
    gap: 1.15rem;
  }
  .public-panel--registration {
    max-width: 70rem;
  }
  .registration-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }
  .registration-block__head {
    grid-column: 1 / -1;
  }
  .seminar-registration-form > .registration-block .form-field:last-child,
  .registration-block--participant .form-field:last-child {
    grid-column: 1 / -1;
  }
  .participant-dialog__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem 1.2rem;
  }
  .participant-dialog__section {
    grid-column: 1 / -1;
  }
  .participant-dialog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem 1.2rem;
  }
  .admin-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-toolbar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .admin-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
  }
  .admin-form--grid .admin-submit {
    grid-column: 1 / -1;
    width: auto;
    justify-self: flex-start;
  }
  .attendance-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .attendance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .attendance-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .attendance-card__state {
    grid-column: auto;
  }
  .attendance-card__signature,
  .attendance-card__actions {
    grid-column: 1 / -1;
  }
  .admin-grid--detail { grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); }
  .seminar-hero {
    padding: 2rem;
  }
  .seminar-hero__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .seminar-list-card {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: stretch;
    gap: 1.1rem;
  }
  .seminar-list-card__top {
    gap: .75rem;
  }
  .seminar-list-card__meta {
    justify-content: flex-start;
  }
  .seminar-list-card__actions {
    justify-content: flex-start;
  }
  .seminar-meta-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .seminar-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-copy-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .admin-section-head__row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .participant-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .participant-summary__meta {
    grid-auto-flow: column;
    align-items: center;
  }
  .participant-details__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .participant-details__wide {
    grid-column: 1 / -1;
  }
  .registration-block__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .profile-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: center;
    padding: 1.7rem 1.8rem;
  }
  .profile-hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-note-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-form__footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
@media (min-width: 1100px) {
  .admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
  .admin-body--auth .admin-shell {
    display: block;
    max-width: 960px;
    margin: 0 auto;
  }
  .admin-sidebar {
    position: sticky;
    inset: 0;
    width: auto;
    transform: none;
    min-height: calc(100vh - 2rem);
  }
  .admin-sidebar__close {
    display: none;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-shell {
    grid-template-columns: 108px minmax(0, 1fr);
  }
  .admin-body--app.admin-sidebar-collapsed .admin-sidebar {
    padding-inline: .75rem;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-brand--sidebar {
    justify-content: center;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-brand--sidebar span,
  .admin-body--app.admin-sidebar-collapsed .admin-sidebar__link,
  .admin-body--app.admin-sidebar-collapsed .admin-sidebar__footer .btn {
    font-size: 0;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-user__label,
  .admin-body--app.admin-sidebar-collapsed .admin-user__icon {
    display: none;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-sidebar__link {
    justify-content: center;
    padding-inline: .5rem;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-sidebar__link::before {
    content: "•";
    font-size: 1.2rem;
    color: currentColor;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-user--sidebar {
    width: 48px;
    min-height: 48px;
    padding: 0;
    font-size: 0;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-user--sidebar::before {
    content: attr(data-initial);
    font-size: .95rem;
  }
  .admin-body--app.admin-sidebar-collapsed .admin-header__actions {
    display: none;
  }
  .public-panel--registration {
    max-width: 76rem;
  }
  .registration-block--participant {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .registration-block--participant .registration-block__head,
  .registration-block--participant .form-field:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .attendance-card__signature {
    grid-template-columns: 1fr;
  }
  .attendance-sign-pad__canvas {
    min-height: 14rem;
  }
}
