/* =====================================================================
   SecuTrust — Design System
   Aesthetic: Refined Industrial / Documentation
   Palette: Marineblau (#01245A) · Stahlgrau (#7C7D7F) · Weiß · kein Akzent
   Type: Archivo (display) · IBM Plex Sans (body) · IBM Plex Mono (labels)
   ===================================================================== */

:root {
  /* Brand */
  --navy:        #01245A;
  --navy-900:    #05122a;
  --navy-850:    #07182f;
  --navy-800:    #0a2147;
  --navy-700:    #0f2f5e;
  --navy-600:    #18467e;
  --navy-500:    #2c63a0;
  --steel:       #7c7d7f;
  --steel-400:   #9aa0a8;
  --steel-300:   #c2c8cf;

  /* Neutrals */
  --ink:         #0c1722;
  --slate:       #4f5e6d;
  --slate-400:   #6b7a89;
  --line:        #e2e7ed;
  --line-strong: #cfd6de;
  --mist:        #eef1f5;
  --paper:       #f5f7f9;
  --white:       #ffffff;

  /* Roles */
  --bg:          var(--white);
  --text:        var(--ink);
  --muted:       var(--slate);

  /* Type */
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing / layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(7,24,47,.06), 0 2px 8px rgba(7,24,47,.05);
  --shadow-md: 0 10px 30px -12px rgba(7,24,47,.22), 0 4px 12px -6px rgba(7,24,47,.12);
  --shadow-lg: 0 40px 80px -28px rgba(5,18,42,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--navy); color: #fff; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow--plain::before { display: none; }

.section-no {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--steel-400);
}

.h-xl { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 5rem); }
.h-lg { font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem); }
.h-md { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem); }

.lead { font-size: clamp(1.1rem, 1.02rem + .5vw, 1.4rem); color: var(--slate); line-height: 1.55; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --bw: 1px;
  position: relative;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  padding: 1rem 1.6rem;
  border-radius: var(--radius);
  border: var(--bw) solid transparent;
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn .ic { width: 1.05em; height: 1.05em; transition: transform .35s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--navy); }
.link-arrow .ic { transition: transform .3s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 84px;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand__shield { height: 38px; width: auto; transition: filter .4s var(--ease); }
.brand__word { height: 19px; width: auto; transition: filter .4s var(--ease); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; padding: 0; }
.nav__links a {
  font-size: .92rem; font-weight: 500; letter-spacing: .01em;
  position: relative; padding: .3rem 0; color: #fff; transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .03em; color: #fff;
}
.nav__phone .ic { width: 1em; height: 1em; }

/* scrolled / solid state */
.site-header.is-solid { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.site-header.is-solid .nav__links a,
.site-header.is-solid .nav__phone { color: var(--ink); }
.site-header.is-solid .brand__shield,
.site-header.is-solid .brand__word { filter: none; }
/* transparent-over-hero state: white logos + white text */
.site-header:not(.is-solid) .brand__shield,
.site-header:not(.is-solid) .brand__word { filter: brightness(0) invert(1); }
.site-header:not(.is-solid) .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.site-header:not(.is-solid) .btn-outline:hover { border-color:#fff; color:#fff; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); margin-inline: auto; }
.site-header.is-solid .nav-toggle span { background: var(--ink); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,18,42,.62) 0%, rgba(5,18,42,.28) 32%, rgba(5,18,42,.55) 72%, rgba(5,18,42,.92) 100%),
    linear-gradient(90deg, rgba(5,18,42,.65) 0%, rgba(5,18,42,.15) 55%, rgba(5,18,42,0) 100%);
}
.hero__grain { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: overlay; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 9rem 2.6rem; text-align: center; }
.hero__eyebrow { color: rgba(255,255,255,.82); margin-bottom: 1.4rem; }
.hero h1 { max-width: 16ch; margin-inline: auto; margin-bottom: 1.5rem; text-wrap: balance; }
.hero h1 .accentline { display: block; color: var(--steel-300); }
.hero__sub { max-width: 52ch; margin-inline: auto; color: rgba(255,255,255,.85); font-size: clamp(1.05rem,1rem+.45vw,1.3rem); margin-bottom: 2.3rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }

.hero__bar {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 3.2rem;
}
.hero__bar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.4rem 3rem; list-style: none; padding: 1.5rem 0 0; }
.hero__bar li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .15rem; }
.hero__bar .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero__bar .v { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; }

.scroll-cue { position: absolute; right: var(--gutter); bottom: 2.4rem; z-index: 2; display: flex; align-items: center; gap: .6rem; writing-mode: vertical-rl; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.scroll-cue::after { content:""; writing-mode: horizontal-tb; width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--navy-900); color: #fff; }
.section--paper { background: var(--paper); }
.section--tight { padding-block: clamp(3rem,5vw,4.5rem); }
.section-head { display: grid; gap: 1.1rem; max-width: 62ch; margin-inline: auto; margin-bottom: clamp(2.4rem,4vw,3.6rem); justify-items: center; text-align: center; }
.section-head .row { display: flex; align-items: baseline; justify-content: center; gap: 1.2rem; }
/* side-by-side text columns keep their natural left alignment */
.proof-grid .section-head { margin-inline: 0; justify-items: start; text-align: left; }
.proof-grid .section-head .row { justify-content: flex-start; }
.section--dark .lead, .section--dark .muted { color: rgba(255,255,255,.72); }
.section--dark .section-no { color: rgba(255,255,255,.4); }
.section--dark .eyebrow { color: var(--steel-300); }

/* hairline grid backdrop for dark sections */
.gridlines { position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%); }
.section--dark > .container { position: relative; z-index: 1; }

/* =====================================================================
   STATEMENT (Problem / Nutzen)
   ===================================================================== */
.statement .big { font-size: clamp(1.8rem,1.2rem+2.6vw,3.1rem); line-height: 1.1; letter-spacing: -.02em; max-width: 20ch; }
.statement .big em { font-style: normal; color: var(--steel); }
.risk-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(2.4rem,4vw,3.4rem); border-radius: var(--radius); overflow: hidden; }
.risk { background: #fff; padding: 1.8rem 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .7rem; min-height: 168px; transition: background-color .35s var(--ease); }
.risk:hover { background: var(--paper); }
.risk .ic { width: 26px; height: 26px; color: var(--navy); }
.risk h3 { font-size: 1.08rem; font-weight: 700; }
.risk p { font-size: .92rem; color: var(--slate); line-height: 1.5; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,1.6vw,1.5rem); }
.card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--navy-800); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(5,18,42,.55)); }
.card__no { position: absolute; top: .85rem; left: .95rem; z-index: 2; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; color: rgba(255,255,255,.9); }
.card__body { padding: 1.4rem 1.45rem 1.6rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem; flex: 1; }
.card__body h3 { font-size: 1.28rem; }
.card__body p { font-size: .93rem; color: var(--slate); flex: 1; }
.card__foot { margin-top: .6rem; }

/* =====================================================================
   PROCESS
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.2rem,2.5vw,2.4rem); counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; text-align: center; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: .8rem; letter-spacing: .15em; color: var(--steel-300);
}
.step h3 { font-size: 1.18rem; margin-bottom: .55rem; color: #fff; }
.step p { font-size: .92rem; color: rgba(255,255,255,.68); }

/* =====================================================================
   PROOF / DOKUMENTATION
   ===================================================================== */
.proof-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.proof__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--navy-800); }
.proof__media img { width:100%; height:100%; object-fit: cover; }
.proof__media .scan { position:absolute; left:0; right:0; height: 36%; top:-36%;
  background: linear-gradient(180deg, transparent, rgba(120,170,255,.10) 60%, rgba(160,200,255,.5));
  border-bottom: 1px solid rgba(180,210,255,.7); animation: scan 4.2s var(--ease) infinite; mix-blend-mode: screen; }
@keyframes scan { 0%{ top:-36% } 70%,100%{ top:100% } }
.proof__media .badge { position:absolute; bottom:1rem; left:1rem; display:flex; align-items:center; gap:.5rem; font-family: var(--font-mono); font-size:.72rem; letter-spacing:.12em; color:#fff; background: rgba(5,18,42,.6); backdrop-filter: blur(6px); padding:.5rem .8rem; border:1px solid rgba(255,255,255,.16); border-radius: 100px; }
.dot-live { width:7px; height:7px; border-radius:50%; background:#cbd6e6; box-shadow:0 0 0 0 rgba(203,214,230,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70%{ box-shadow:0 0 0 7px rgba(203,214,230,0) } 100%{ box-shadow:0 0 0 0 rgba(203,214,230,0) } }
.feature-list { list-style: none; padding: 0; display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.feature .fno { font-family: var(--font-mono); font-size: .78rem; color: var(--steel-400); padding-top: .25rem; border-top: 2px solid var(--navy); }
.feature h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.feature p { font-size: .92rem; color: var(--slate); }

/* =====================================================================
   REGION (Freilassing & Umkreis — schlanke Ortspills)
   ===================================================================== */
.region-band { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem .8rem; max-width: 780px; margin-inline: auto; }
.rp { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: .6rem 1.1rem; transition: border-color .3s var(--ease), color .3s var(--ease); }
.rp:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.rp--lead { background: #fff; color: var(--navy-900); border-color: #fff; font-weight: 600; }

/* =====================================================================
   SECTORS marquee
   ===================================================================== */
.sectors { border-block: 1px solid var(--line); overflow: hidden; }
.marquee { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee span { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem,1rem+1.6vw,2.1rem); color: var(--ink); padding-inline: 1.6rem; }
.marquee span::after { content: "·"; color: var(--steel-300); margin-left: 3.2rem; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact-aside h2 { margin-bottom: 1.2rem; }
.contact-aside .lead { margin-bottom: 2rem; }
.contact-points { display: grid; gap: 1.25rem; }
.cp { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: center; }
.cp .ic { width: 22px; height: 22px; color: var(--navy); }
.cp .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.cp .v { font-weight: 600; font-size: 1.02rem; }
.cp .v.ph { display:inline-flex; align-items:center; gap:.4rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); }
.field label .req { color: var(--navy); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8rem .9rem; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(1,36,90,.1); }
.form__foot { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .9rem; }
.form__note { font-size: .8rem; color: var(--slate-400); }
.form__submit { width: 100%; justify-content: center; }
.form__success { display:none; text-align:center; padding: 1rem; }
.form.is-sent .form-grid, .form.is-sent .form__foot { display: none; }
.form.is-sent .form__success { display: block; }
.form__success .ic { width: 44px; height: 44px; color: var(--navy); margin: 0 auto 1rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand__stacked { height: 78px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .9rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--steel-300); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .92rem; color: rgba(255,255,255,.7); transition: color .25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom .legal { display: flex; gap: 1.4rem; }
.placeholder { color: var(--steel-300); border-bottom: 1px dashed rgba(255,255,255,.3); }

/* =====================================================================
   PLACEHOLDER FLAG (visible marker for unfilled real data)
   ===================================================================== */
.ph-flag {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); color: #fff; font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .04em; text-align: center;
  padding: .55rem 1rem; transform: translateY(100%); transition: transform .4s var(--ease);
}
.ph-flag.show { transform: translateY(0); }
.ph-flag button { text-decoration: underline; margin-left: .8rem; opacity: .85; }

/* =====================================================================
   LEGAL pages
   ===================================================================== */
.legal-wrap { max-width: 760px; margin-inline: auto; padding-block: clamp(7rem,12vw,9rem) var(--section-y); }
.legal-wrap h1 { font-size: clamp(2rem,1.5rem+2vw,3rem); margin-bottom: 2rem; }
.legal-wrap h2 { font-size: 1.3rem; margin: 2.4rem 0 .8rem; }
.legal-wrap p, .legal-wrap li { color: var(--slate); margin-bottom: .8rem; }
.legal-wrap a { color: var(--navy); text-decoration: underline; }
.legal-note { background: var(--mist); border-left: 3px solid var(--navy); padding: 1rem 1.2rem; border-radius: var(--radius); font-size: .9rem; color: var(--ink); margin-bottom: 2rem; }
.legal-back { display:inline-flex; align-items:center; gap:.5rem; margin-top: 3rem; font-weight:600; color: var(--navy); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in-view { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* hero load stagger */
.hero [data-load] { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
.hero [data-load="1"]{animation-delay:.15s} .hero [data-load="2"]{animation-delay:.3s}
.hero [data-load="3"]{animation-delay:.45s} .hero [data-load="4"]{animation-delay:.6s} .hero [data-load="5"]{animation-delay:.78s}
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero [data-load] { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .scan, .dot-live, .marquee, .scroll-cue::after { animation: none !important; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .risk-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 820px) {
  .nav__links, .nav__phone { display: none; }
  .nav-toggle { display: flex; }
  .proof-grid, .contact-grid { grid-template-columns: 1fr; }
  .proof__media { order: -1; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__bar ul { gap: 1.4rem 2rem; }

  /* mobile menu */
  .nav { position: fixed; inset: 0; background: var(--navy-900); flex-direction: column; justify-content: center; gap: 2.5rem; transform: translateX(100%); transition: transform .45s var(--ease); z-index: 90; }
  .nav.open { transform: none; }
  .nav .nav__links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav .nav__links a { color: #fff; font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; }
  .nav .nav__phone { display: inline-flex; color: #fff; font-size: 1rem; }
  .nav .btn { display: inline-flex; }
  body.menu-open { overflow: hidden; }
  .nav-toggle { z-index: 95; }
  .site-header.menu-open .nav-toggle span { background: #fff; }
  .site-header.menu-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .services-grid, .risk-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   PRINZIP — stat band
   ===================================================================== */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: clamp(2.4rem,4vw,3.4rem); }
.stat { background: #fff; padding: 1.7rem 1.2rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,1.2rem+1.7vw,2.6rem); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.stat .l { font-size: .86rem; color: var(--slate); margin-top: .5rem; }

/* =====================================================================
   WEITERE LEISTUNGEN — icon tiles
   ===================================================================== */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: clamp(1.4rem,2.5vw,2rem); }
.tile { background: #fff; padding: 1.8rem 1.6rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; transition: background-color .35s var(--ease); }
.tile:hover { background: var(--paper); }
.tile .ic { width: 27px; height: 27px; color: var(--navy); }
.tile h3 { font-size: 1.14rem; }
.tile p { font-size: .9rem; color: var(--slate); }
.tile .link-arrow { font-size: .86rem; }

/* =====================================================================
   MULTIFUNKTIONSTURM
   ===================================================================== */
.tower-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.tower__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--navy-800); }
.tower__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.award { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(5,18,42,.6); backdrop-filter: blur(6px); padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; }
.award .ic { width: 14px; height: 14px; }
/* content column reads left-aligned like the proof block */
.tower-grid .section-head { margin-inline: 0; justify-items: start; text-align: left; }
.tower-grid .section-head .row { justify-content: flex-start; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.spec { background: var(--navy-900); padding: 1rem 1.1rem; }
.spec .k { display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-300); margin-bottom: .35rem; }
.spec .v { font-size: .9rem; color: rgba(255,255,255,.88); line-height: 1.4; }
.tower__note { font-size: .82rem; color: rgba(255,255,255,.55); margin: 1.2rem 0 1.6rem; }

/* steps on a light background */
.steps--light .step h3 { color: var(--ink); }
.steps--light .step p { color: var(--slate); }
.steps--light .step::before { color: var(--steel-400); }

/* =====================================================================
   REFERENZEN
   ===================================================================== */
.ref-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ref { background: #fff; padding: 1.5rem; font-size: .96rem; font-weight: 500; color: var(--ink); display: flex; align-items: center; justify-content: center; text-align: center; min-height: 124px; line-height: 1.45; transition: background-color .35s var(--ease); }
.ref:hover { background: var(--paper); }
.ref-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem,3vw,2rem); margin-top: clamp(1.6rem,3vw,2.4rem); }
.rh { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; background: var(--navy-900); color: #fff; padding: 1.6rem 1.7rem; border-radius: var(--radius); }
.rh .ic { width: 26px; height: 26px; color: var(--steel-300); margin-top: .1rem; }
.rh p { font-size: .95rem; color: rgba(255,255,255,.8); }
.rh strong { color: #fff; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qa { background: #fff; transition: background-color .3s var(--ease); }
.qa summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; width: 10px; height: 10px; flex: none; border-right: 2px solid var(--steel); border-bottom: 2px solid var(--steel); transform: rotate(45deg); transition: transform .3s var(--ease); margin-top: -3px; }
.qa[open] summary::after { transform: rotate(225deg); margin-top: 3px; }
.qa[open] summary { color: var(--navy); }
.qa p { padding: 0 1.5rem 1.4rem; color: var(--slate); font-size: .96rem; max-width: 66ch; }

/* =====================================================================
   RESPONSIVE — new components
   ===================================================================== */
@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2,1fr); }
  .ref-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .tower-grid { grid-template-columns: 1fr; }
  .tower__media { order: -1; aspect-ratio: 3/4; }
  .tiles { grid-template-columns: 1fr; }
  .ref-highlight { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .specs { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
}
