/* ============================================================
   VIGILON Sicherheitsdienst GmbH — Objekt-, Werk- & Veranstaltungsschutz
   Fiktive Portfolio-Demo · Design & Code: Medientrupp
   Farbwelt: „Nachtblau & Bernstein"
   ============================================================ */

:root {
  --ink: #0b1a2e;          /* dunkelstes Navy – Haupttext auf Hell */
  --ink-soft: #566579;     /* gedämpfter Text auf Hell */
  --navy: #0b1a2e;         /* dunkle Basis (Hero, Footer, Bänder) */
  --navy-2: #14263d;       /* Surface dunkel / dunkle Karten */
  --navy-3: #1f4e79;       /* Primärblau (Flächen, Links) */
  --amber: #f4a62a;        /* Signal-Akzent (CTA, Zahlen, Icons) */
  --amber-deep: #dd9316;   /* Hover-Akzent */
  --amber-soft: #fbe6c2;   /* helle Akzentfläche */
  --red: #e23b2e;          /* Notruf – nur Hotline/24-h */
  --steel: #f3f6fb;        /* helle Basis */
  --steel-2: #e7edf6;      /* etwas tiefere helle Fläche */
  --white: #ffffff;
  --muted-light: #9badc4;  /* gedämpfter Text auf Dunkel */
  --success: #2fa36b;      /* Häkchen / Trust */
  --line: rgba(11, 26, 46, 0.10);
  --line-dark: #25405c;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --shadow-card: 0 22px 44px -26px rgba(11, 26, 46, 0.42);
  --font-display: "Archivo", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--steel);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; background-color: var(--navy-2); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-xl { font-size: clamp(2.7rem, 5.6vw, 4.5rem); font-weight: 700; }
.display-lg { font-size: clamp(2rem, 3.9vw, 2.95rem); }
.display-md { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-2px); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11, 26, 46, 0.25);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.notice-bar {
  background: var(--navy);
  color: rgba(244, 247, 251, 0.9);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line-dark);
}

.notice-bar strong {
  color: var(--amber);
  font-weight: 600;
}

.site-header > .container { margin-top: 0; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: transparent;
  border-radius: 0;
  padding: 16px 0;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand svg { flex-shrink: 0; }
.brand .brand-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-display);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 22px; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-phone svg { color: var(--amber-deep); }
.nav-phone small { display: block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
}

.hero-media { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(78deg, rgba(7, 17, 30, 0.92) 0%, rgba(9, 20, 34, 0.72) 45%, rgba(9, 20, 34, 0.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 200px 0 110px;
}

.hero h1 { color: var(--white); max-width: 18ch; }
.hero .lead { color: rgba(244, 247, 251, 0.82); max-width: 48ch; margin: 24px 0 32px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 30px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 247, 251, 0.9);
}
.hero-badges svg { color: var(--amber); flex-shrink: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  text-align: left;
}
.video-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.video-link:hover .video-link-icon { transform: scale(1.08); }

/* ---------- Sections ---------- */

.section { padding: 94px 0; }
.section-tight { padding: 70px 0; }
.section-white { background: var(--white); }
.section-steel { background: var(--steel); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .lead { color: var(--muted-light); }
.section-navy .eyebrow { color: var(--amber); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}
.section-head h2 { max-width: 24ch; }
.section-head .lead { max-width: 44ch; }

/* ---------- Key-Facts-Leiste ---------- */

.keyfacts {
  position: relative;
  z-index: 3;
  margin-top: -66px;
}
.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.keyfact {
  padding: 30px 30px;
  border-right: 1px solid var(--line-dark);
  color: var(--white);
}
.keyfact:last-child { border-right: none; }
.keyfact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--amber);
  line-height: 1;
}
.keyfact span { display: block; margin-top: 8px; font-size: 0.94rem; color: var(--muted-light); }

/* ---------- Feature-Trio ---------- */

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }

.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy-3);
}

.feature-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.feature-card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Split ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.floating-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 15px 22px;
  line-height: 1.3;
}
.floating-tag strong { display: block; font-size: 1.9rem; letter-spacing: -0.02em; }

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 36px;
}
.mini-feature h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.mini-feature h4 svg { color: var(--success); flex-shrink: 0; }
.mini-feature p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Leistungen (Cards) ---------- */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.service-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-thumb img { transform: scale(1.06); }

.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 26, 46, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0;
}

.service-body { padding: 24px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.24rem; margin-bottom: 10px; }
.service-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 20px;
  color: var(--navy-3);
}
.service-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Stats-Band ---------- */

.stats-band {
  background: var(--navy);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: clamp(48px, 6vw, 78px);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244, 166, 42, 0.16), transparent 70%);
}
.stats-band .eyebrow { color: var(--amber); }
.stats-band h2 { color: var(--white); max-width: 20ch; position: relative; }
.stats-band .lead { color: var(--muted-light); position: relative; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}
.stat { border-top: 2px solid rgba(244, 166, 42, 0.4); padding-top: 22px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--amber);
}
.stat p { color: var(--muted-light); margin-top: 6px; }

/* ---------- Checkliste ---------- */

.check-list { display: grid; gap: 15px; margin: 28px 0 36px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-family: var(--font-display);
}
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--success); }

/* ---------- Branchen-Band ---------- */

.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sector {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.sector:hover { transform: translateY(-4px); border-color: var(--amber); }
.sector svg { color: var(--navy-3); margin-bottom: 12px; }
.sector span { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }

.section-navy .sector { background: var(--navy-2); border-color: var(--line-dark); }
.section-navy .sector span { color: var(--white); }
.section-navy .sector svg { color: var(--amber); }
.section-navy .sector:hover { background: #17304d; }

/* ---------- Prozess ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.process-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-deep);
  display: block;
  margin-bottom: 38px;
}
.process-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-card p { color: var(--ink-soft); font-size: 0.97rem; }

.section-navy .process-card { background: var(--navy-2); border-color: var(--line-dark); }
.section-navy .process-card p { color: var(--muted-light); }

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--amber); }
.testimonial-card blockquote { font-size: 1.02rem; color: var(--ink-soft); flex: 1; }
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.testimonial-person img { width: 52px; height: 52px; border-radius: 0; object-fit: cover; }
.testimonial-person strong { font-family: var(--font-display); font-weight: 600; display: block; }
.testimonial-person span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 18px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: saturate(0.95); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo .role-chip {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(11, 26, 46, 0.82);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 0;
}
.team-card h3 { font-size: 1.14rem; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 4px; }

/* ---------- Referenzen / Galerie ---------- */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 236px;
  gap: 18px;
}
.project-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 46, 0) 45%, rgba(11, 26, 46, 0.7) 100%);
}
.project-tile:hover img { transform: scale(1.07); }
.project-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.project-tile figcaption small {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3px;
}
.project-tile.wide { grid-column: span 2; }

/* ---------- Trust / Zertifikate ---------- */

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cert-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cert-badge {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 0;
  background: var(--navy);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.cert-card strong { font-family: var(--font-display); display: block; font-size: 1rem; }
.cert-card span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Hotline / Notruf ---------- */

.hotline-card {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hotline-card .pulse {
  width: 52px; height: 52px; border-radius: 0;
  background: rgba(226, 59, 46, 0.16);
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hotline-card .hl-txt { flex: 1; min-width: 200px; }
.hotline-card small { display: block; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); font-family: var(--font-display); font-weight: 600; }
.hotline-card strong { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -0.01em; }

/* ---------- FAQ ---------- */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.faq-cta {
  position: sticky;
  top: 120px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  overflow: hidden;
}
.faq-cta h3 { color: var(--white); font-size: clamp(1.6rem, 2.4vw, 2.05rem); margin-bottom: 16px; }
.faq-cta p { color: var(--muted-light); margin-bottom: 28px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  padding: 22px 26px;
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 0;
  background: var(--steel-2);
  display: grid; place-items: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber); color: var(--navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Blog / Aktuelles ---------- */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-thumb { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16 / 10; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 22px 12px 14px; }
.blog-date { font-size: 0.82rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.blog-date::before { content: ""; width: 16px; height: 2px; background: var(--amber); }
.blog-body h3 { font-size: 1.16rem; line-height: 1.32; }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  padding: 188px 0 96px;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(82deg, rgba(7, 17, 30, 0.92) 8%, rgba(9, 20, 34, 0.66) 58%, rgba(9, 20, 34, 0.34) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: rgba(244, 247, 251, 0.84); max-width: 54ch; margin-top: 20px; }

.crumbs { display: flex; gap: 10px; align-items: center; font-size: 0.86rem; color: var(--muted-light); margin-bottom: 20px; font-family: var(--font-display); }
.crumbs a:hover { color: var(--amber); }
.crumbs span { opacity: 0.5; }

.page-hero-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.page-hero-stats .hstat {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-family: var(--font-display);
}
.page-hero-stats strong { display: block; font-size: 1.7rem; font-weight: 700; color: var(--amber); letter-spacing: -0.02em; }
.page-hero-stats span { font-size: 0.86rem; color: rgba(244, 247, 251, 0.82); }

/* ---------- Mission / Werte ---------- */

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--line);
}
.mission-card.highlight { background: var(--navy); color: var(--white); border-color: var(--line-dark); }
.mission-card.highlight h3 { color: var(--white); }
.mission-card.highlight p { color: var(--muted-light); }
.mission-card.highlight .icon-chip { background: rgba(244, 166, 42, 0.16); color: var(--amber); }
.mission-card h3 { font-size: 1.32rem; margin: 20px 0 12px; }
.mission-card p { color: var(--ink-soft); }

/* ---------- Kontakt ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
}
.contact-info-card { display: grid; gap: 14px; }
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.contact-row .icon-chip { margin: 0; width: 48px; height: 48px; }
.contact-row strong { font-family: var(--font-display); display: block; margin-bottom: 2px; }
.contact-row a, .contact-row p { color: var(--ink-soft); }
.contact-row a:hover { color: var(--navy-3); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 46px);
}
.contact-form-card h2 { margin-bottom: 10px; }
.contact-form-card > p { color: var(--ink-soft); margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--steel);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 17px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--amber); background: var(--white); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 16px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 0.88rem; color: var(--ink-soft); }
.form-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy-3); flex-shrink: 0; }

/* ---------- Pre-Footer CTA ---------- */

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 20, 34, 0.82), rgba(9, 20, 34, 0.9)); }
.cta-band-inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(244, 247, 251, 0.84); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Founder-Zitat ---------- */

.founder-quote { max-width: 760px; margin-inline: auto; text-align: center; }
.founder-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.founder-quote-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 36px;
}
.founder-quote-person img { width: 52px; height: 52px; object-fit: cover; flex-shrink: 0; }
.founder-quote-person strong { font-family: var(--font-display); display: block; }
.founder-quote-person span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Inline-CTA (in dunklen Sektionen) ---------- */

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.inline-cta h3 { color: var(--white); font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 8px; }
.inline-cta p { color: var(--muted-light); max-width: 46ch; }
.inline-cta .cta-actions { justify-content: flex-start; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--muted-light);
  margin-top: 0;
  border-top: 1px solid var(--line-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 52px;
}
.site-footer .brand { color: var(--white); margin-bottom: 18px; }
.footer-about p { font-size: 0.96rem; max-width: 36ch; }
.footer-certs { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-certs span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-light);
  border: 1px solid var(--line-dark);
  border-radius: 0;
  padding: 6px 10px;
}
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-family: var(--font-display); }
.footer-col li { margin-bottom: 12px; font-size: 0.96rem; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}
.footer-bottom .demo-note { color: rgba(155, 173, 196, 0.6); }
.footer-legal { display: flex; gap: 18px; }

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .feature-grid, .service-grid, .testimonial-grid, .mission-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid, .keyfacts-grid { grid-template-columns: repeat(2, 1fr); }
  .keyfact:nth-child(2) { border-right: none; }
  .keyfact { border-bottom: 1px solid var(--line-dark); }
  .keyfact:nth-child(3), .keyfact:nth-child(4) { border-bottom: none; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-bar.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    padding: 16px 22px;
    box-shadow: 0 24px 44px -20px rgba(11, 26, 46, 0.5);
  }
  .nav-bar { position: relative; }
  .nav-bar.open .nav-links a { padding: 10px 0; width: 100%; }
  .hero-inner { padding-top: 210px; }
  .keyfacts { margin-top: 32px; }
  .split { grid-template-columns: 1fr; }
  .trust-band, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .feature-grid, .service-grid, .testimonial-grid, .process-grid,
  .team-grid, .mission-grid, .blog-grid, .stats-grid, .keyfacts-grid,
  .project-grid, .sector-grid, .cert-grid, .form-grid { grid-template-columns: 1fr; }
  .keyfact { border-right: none; }
  .project-tile.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 62px 0; }
}

/* ---------- Vorschau-Modal (Preview-Lock) ---------- */

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 17, 30, 0.68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.preview-modal.open { opacity: 1; visibility: visible; }

.preview-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 46px) clamp(26px, 5vw, 40px) clamp(28px, 4vw, 36px);
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(7, 17, 30, 0.6);
  transform: translateY(18px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview-modal.open .preview-modal__card { transform: none; }

.preview-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px; height: 34px;
  border: none;
  background: transparent;
  color: #8595a8;
  cursor: pointer;
  border-radius: 0;
  display: grid; place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.preview-modal__close:hover { background: var(--steel); color: var(--ink); }

.preview-modal__icon {
  width: 74px; height: 74px;
  margin: 0 auto 24px;
  border-radius: 0;
  background: var(--amber-soft);
  display: grid; place-items: center;
  color: var(--navy-3);
}

.preview-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-bottom: 14px;
}
.preview-modal__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

.preview-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.preview-modal__text { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 28px; }

.preview-modal__btn {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 0;
  padding: 16px 24px;
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(31, 78, 121, 0.9);
  transition: background 0.2s ease, transform 0.2s ease;
}
.preview-modal__btn:hover { background: var(--navy-3); transform: translateY(-1px); }

body.preview-open { overflow: hidden; }

.blog-card[data-preview], [data-preview] { cursor: pointer; }

[data-preview]:focus-visible,
.preview-modal__btn:focus-visible,
.preview-modal__close:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .preview-modal, .preview-modal__card { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .preview-modal__card { transform: none; }
}
