/* ============================================================
   SecuConCept – Themenwebsite Gesundheitswesen
   Design-Tokens identisch zur Hauptseite www.secuconcept.de
   (extrahiert aus den dortigen Stylesheets, Stand Sept. 2026)
   ============================================================ */

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/manrope-latin.woff2') format('woff2');
}

:root {
  /* Farben – exakt aus secuconcept.de übernommen */
  --bg-deep: #040a07;
  --bg: #07100c;
  --bg-panel: #0b1710;
  --bg-panel-2: #0e1c13;
  --green: #72ef45;
  --green-dark: #198e3d;
  --green-soft: #9cf77b;
  --amber: #f2bd5b;
  --line: rgba(229, 244, 233, 0.13);
  --line-strong: rgba(114, 239, 69, 0.28);
  --muted: #a4b4a9;
  --muted-2: #95a69a;
  --text: #e5f4e9;

  /* Typografie */
  --font: 'Manrope', Arial, Helvetica, sans-serif;

  /* Layout */
  --max: 1120px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-soft); text-decoration: none; }
a:hover { color: var(--green); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 90;
  background: rgba(7, 16, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand .mark { font-weight: 800; font-size: 21px; letter-spacing: 0.02em; color: var(--text); }
.brand .mark b { color: var(--green); font-weight: 800; }
.brand .sub { font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; }

nav.main ul { display: flex; flex-wrap: wrap; gap: 4px 16px; list-style: none; align-items: center; }
nav.main a { color: var(--muted); font-size: 14.5px; font-weight: 600; padding: 6px 4px; }
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--green); }

.head-cta { display: flex; align-items: center; gap: 12px; }
.head-phone { font-weight: 700; font-size: 15px; color: var(--text); white-space: nowrap; }
.head-phone span { color: var(--green); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--text); font-size: 20px; padding: 4px 12px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px; border: 1px solid transparent;
  cursor: pointer; transition: all .18s ease; line-height: 1.4; text-align: center;
}
.btn-primary { background: var(--green); color: #06120a; border-color: var(--green); }
.btn-primary:hover { background: var(--green-soft); color: #06120a; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; padding: 64px 0 56px; }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
}
h1 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.16; font-weight: 800; letter-spacing: -0.01em; }
h1 .accent { color: var(--green); }
.hero p.lead { font-size: 18px; color: var(--muted); margin-top: 18px; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 16px; font-size: 12px; color: var(--muted-2);
  background: linear-gradient(180deg, transparent, rgba(4, 10, 7, 0.88));
  border-top: 1px solid var(--line);
}

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 10px; }
.sec-label .num { color: var(--amber); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 33px); line-height: 1.22; font-weight: 800; margin: 12px 0 14px; letter-spacing: -0.01em; }
h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
p + p { margin-top: 12px; }
.sec-intro { color: var(--muted); max-width: 760px; font-size: 17px; }
.grid { display: grid; gap: 18px; margin-top: 30px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: border-color .18s ease;
}
.card:hover { border-color: var(--line-strong); }
.card .icon { font-size: 24px; margin-bottom: 12px; display: block; }
.card .tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 15px; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; }

/* Stat tiles */
.stat { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.stat .value { font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--green); line-height: 1.1; }
.stat .label { font-size: 14px; color: var(--text); font-weight: 600; margin-top: 6px; }
.stat .src { font-size: 12px; color: var(--muted-2); margin-top: 10px; }

/* ---------- Charts ---------- */
.chart { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 30px; }
.chart h3 { font-size: 17px; }
.chart .chart-note { font-size: 12.5px; color: var(--muted-2); margin-top: 18px; line-height: 1.6; }
.bar-row { margin-top: 16px; }
.bar-label { font-size: 14px; color: var(--text); font-weight: 600; display: flex; justify-content: space-between; gap: 10px; }
.bar-label b { color: var(--green); white-space: nowrap; }
.bar-track { height: 12px; background: rgba(229,244,233,0.07); border-radius: 6px; margin-top: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--green-dark), var(--green)); width: 0; transition: width 1s ease .1s; }
.bar-fill.amber { background: linear-gradient(90deg, #a87a2e, var(--amber)); }
.chart-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.chart-legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; background: var(--green); vertical-align: -1px; }
.chart-legend span.a::before { background: var(--amber); }

/* ---------- Kurze Antwort / AEO-Box ---------- */
.quick-answer {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(114,239,69,0.06), transparent);
  padding: 26px 28px; margin: 34px 0;
}
.quick-answer .qa-title { font-weight: 800; color: var(--green); font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.quick-answer p { color: var(--text); }
.quick-answer .qa-fine { font-size: 13px; color: var(--muted-2); margin-top: 12px; }

/* ---------- Quellen / Authority ---------- */
.sources { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; }
.sources h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 10px; }
.sources ul { list-style: none; display: grid; gap: 6px; }
.sources li { font-size: 13.5px; color: var(--muted); }
.sources li::before { content: "→ "; color: var(--green); }
.sources li a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.sources li a:hover { color: var(--green); }

/* ---------- Prozess ---------- */
.steps { counter-reset: step; display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.step { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); font-weight: 800; color: var(--amber); font-size: 13px; letter-spacing: 0.1em; }
.step h3 { font-size: 16px; margin-top: 8px; }
.step p { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 26px; display: grid; gap: 12px; }
details.faq { background: var(--bg-panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
details.faq[open] { border-color: var(--line-strong); }
details.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 15.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; color: var(--green); font-weight: 800; font-size: 18px; }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; margin-top: 34px; }
form.contact { background: var(--bg-panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); font-family: var(--font); font-size: 15px; padding: 11px 14px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { min-height: 130px; resize: vertical; }
.checkline { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.checkline input { width: auto; margin-top: 3px; }
.contact-info .ci { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-top: 12px; background: var(--bg-panel); }
.contact-info .ci .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); font-weight: 700; }
.contact-info .ci .v { font-size: 16px; font-weight: 700; margin-top: 4px; }
.contact-info .ci p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Tabellen ---------- */
table.data { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 14.5px; }
table.data th { text-align: left; color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; padding: 10px 12px; border-bottom: 1px solid var(--line-strong); }
table.data td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data td:first-child { font-weight: 700; white-space: nowrap; }

/* ---------- Artikel-Layout ---------- */
.page-head { padding: 46px 0 8px; }
.crumb { font-size: 13px; color: var(--muted-2); }
.crumb a { color: var(--muted-2); }
.crumb a:hover { color: var(--green); }
.prose { max-width: 780px; }
.prose h2 { margin-top: 44px; }
.meta-line { font-size: 13px; color: var(--muted-2); margin-top: 10px; }

figure.block-img { margin: 34px 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
figure.block-img img { width: 100%; }
figure.block-img figcaption { padding: 10px 16px; font-size: 12.5px; color: var(--muted-2); border-top: 1px solid var(--line); background: var(--bg-deep); }

.note {
  border-left: 3px solid var(--amber); background: rgba(242, 189, 91, 0.05);
  padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 22px 0; font-size: 15px; color: var(--text);
}

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--bg-deep); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); padding: 52px 0; text-align: left; }
.cta-band h2 { margin-top: 0; }
.cta-band p { color: var(--muted); max-width: 700px; }
.cta-band .hero-actions { margin-top: 22px; }

/* ---------- Footer ---------- */
footer.site { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 44px 0 30px; margin-top: 70px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 28px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); margin-bottom: 12px; }
.foot-grid ul { list-style: none; display: grid; gap: 8px; }
.foot-grid a { color: var(--muted); font-size: 14px; }
.foot-grid a:hover { color: var(--green); }
.foot-about p { color: var(--muted); font-size: 13.5px; margin-top: 10px; max-width: 340px; }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.linklike { background: none; border: none; color: var(--muted); font: inherit; cursor: pointer; padding: 0; font-size: 14px; }
.linklike:hover { color: var(--green); }

/* ---------- Cookie-Banner (secuconsent-Style) ---------- */
.cookie-backdrop { position: fixed; inset: 0; background: rgba(4,10,7,0.7); z-index: 200; display: none; }
.cookie-backdrop.show { display: block; }
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 201; display: none;
  background: var(--bg-deep); border-top: 1px solid var(--line-strong);
  padding: 22px 0 26px; box-shadow: 0 -18px 50px rgba(0,0,0,0.5);
}
.cookie-banner.show { display: block; }
.cookie-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: center; }
.cookie-banner h3 { font-size: 17px; }
.cookie-banner p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-details { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 16px; display: none; }
.cookie-details.show { display: block; }
.cookie-cat { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat input { width: auto; margin-top: 4px; }
.cookie-cat input:disabled { accent-color: var(--green-dark); }
.cookie-cat .cc-name { font-weight: 700; font-size: 14px; }
.cookie-cat .cc-desc { font-size: 13px; color: var(--muted); }
.cookie-cat .cc-always { font-size: 12px; color: var(--green); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 44px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main { display: none; width: 100%; }
  nav.main.open { display: block; border-top: 1px solid var(--line); padding: 10px 0 16px; }
  nav.main.open ul { flex-direction: column; gap: 8px; align-items: flex-start; }
  .nav-toggle { display: inline-block; }
  .site-head { flex-wrap: wrap; }
  .cookie-inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4, .steps, .form-row { grid-template-columns: 1fr; }
  .head-phone { display: none; }
  body { font-size: 15.5px; }
}

/* ---------- Logo-Marke (echtes SecuConCept-Logo) ---------- */
.brand.logo { align-items: center; gap: 14px; }
.brand.logo img { height: 46px; width: auto; display: block; }
.brand .sub { line-height: 1.3; }
@media (max-width: 620px) {
  .brand.logo img { height: 36px; }
  .brand .sub { display: none; }
}

/* ---------- Ansprechpartner-Karte (Portrait) ---------- */
.person-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--bg-panel); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 22px;
}
.person-card img {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--green); flex-shrink: 0;
}
.person-card .p-name { font-weight: 800; font-size: 16.5px; color: var(--text); }
.person-card .p-role { font-size: 13.5px; color: var(--amber); font-weight: 600; margin-top: 2px; }
.person-card .p-note { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 620px) {
  .person-card { flex-direction: column; text-align: center; }
}
