:root {
  --ink: #0b0c0e;
  --ink-2: #14161a;
  --panel: #16181d;
  --muted: #5c636d;
  --muted-light: rgba(255, 255, 255, 0.66);
  --line: #e6e2d8;
  --line-dark: rgba(255, 255, 255, 0.12);
  --surface: #f6f4ef;
  --surface-2: #efebe1;
  --white: #ffffff;
  --gold: #cda85f;
  --gold-bright: #e3c585;
  --gold-strong: #a9863d;
  --shadow-sm: 0 1px 0 rgba(11, 12, 14, 0.04);
  --shadow: 0 24px 60px -28px rgba(11, 12, 14, 0.45);
  --shadow-gold: 0 20px 50px -22px rgba(169, 134, 61, 0.55);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 124px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  font-family: Sora, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { margin: 0 0 1em; }

.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.container--narrow { width: min(820px, calc(100% - 48px)); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  padding: 12px 18px; color: var(--ink); background: var(--gold);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  color: var(--white);
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line-dark);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}
.header.is-stuck {
  background: rgba(11, 12, 14, 0.96);
  box-shadow: 0 14px 40px -20px rgba(0, 0, 0, 0.8);
}

.topbar { border-bottom: 1px solid var(--line-dark); font-size: 0.86rem; color: var(--muted-light); }
.topbar__inner { display: flex; align-items: center; gap: 26px; min-height: 44px; }
.topbar__badge { margin-left: auto; color: var(--gold-bright); font-weight: 600; }
.topbar__link, .topbar__note, .topbar__badge { display: inline-flex; align-items: center; gap: 8px; }
.topbar__link:hover { color: var(--white); }

i[data-lucide] { width: 18px; height: 18px; flex: 0 0 auto; }

.nav { display: flex; align-items: center; gap: 14px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; width: 185px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.nav-links { display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; margin: 0 auto; font-size: 0.88rem; font-weight: 500; color: var(--muted-light); }
.nav-item { position: relative; flex: 0 0 auto; }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 6px; padding: 8px 0; white-space: nowrap; transition: color 160ms var(--ease); background: none; border: 0; color: inherit; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease); }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--white); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link .chev { width: 15px; height: 15px; transition: transform 200ms var(--ease); }

.has-dropdown .dropdown {
  position: absolute; top: calc(100% + 2px); margin-top: 0; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; padding: 10px; display: grid; gap: 2px;
  background: #14161a; border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: -20px; right: -20px; height: 12px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .nav-link .chev { transform: rotate(180deg); }
.dropdown a { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: var(--radius-sm); color: var(--muted-light); font-size: 0.92rem; transition: background 150ms var(--ease), color 150ms var(--ease); }
.dropdown a:hover { background: rgba(255, 255, 255, 0.06); color: var(--white); }
.dropdown a i { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; color: var(--white); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); }

/* ---------- Topbar cert badges ---------- */
.topbar__certs { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.topbar__certs img { height: 32px; width: auto; }

/* ---------- Topbar social links ---------- */
.topbar__socials { display: flex; align-items: center; gap: 4px; margin-right: 8px; }
.topbar__socials a { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--muted-light); border-radius: 6px; transition: color 160ms var(--ease), background 160ms var(--ease); }
.topbar__socials a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.topbar__socials svg { width: 16px; height: 16px; }

/* ---------- Footer social links ---------- */
.footer__socials { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.footer__socials a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: 10px; transition: color 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease); }
.footer__socials a:hover { color: var(--white); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.footer__socials svg { width: 18px; height: 18px; }

/* ---------- Footer cert images ---------- */
.footer__certs { display: flex; flex-wrap: nowrap; gap: 10px; align-items: center; margin-top: 18px; }
.footer__certs img { height: 46px; width: auto; }

/* ---------- Cert seal images (cert-strip) ---------- */
.cert-seal { height: 80px; width: auto; flex: 0 0 auto; }

/* ---------- Cert card real logo ---------- */
.cert-card__logo--img { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; background: transparent !important; box-shadow: none !important; border-radius: 0 !important; }
.cert-card__logo--img img { width: 58px; height: 58px; object-fit: contain; display: block; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; font-weight: 600; font-size: 0.96rem; border: 1px solid transparent; border-radius: 999px; transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--lg { min-height: 56px; padding: 0 26px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { color: #1a1404; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); box-shadow: var(--shadow-gold); }
.btn--primary:hover { box-shadow: 0 26px 60px -20px rgba(169, 134, 61, 0.7); }
.btn--ghost { color: var(--white); background: transparent; border-color: var(--line-dark); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.btn--glass { color: var(--white); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.14); }
.btn--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-2); }

/* ---------- Eyebrow / typography ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--gold-strong); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow--light { color: var(--gold-bright); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 4px rgba(205, 168, 95, 0.25); }

h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.accent { color: var(--gold-bright); }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 60ch; }
.lead--light { color: var(--muted-light); }

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: clamp(560px, 82svh, 760px); display: grid; align-items: center; color: var(--white); background: var(--ink); overflow: hidden; }
.hero__media, .hero__veil, .hero__grid { position: absolute; inset: 0; }
.hero__media { background-size: cover; background-position: center 28%; filter: saturate(0.85) contrast(1.05); transform: scale(1.04); }
.hero__veil { background: linear-gradient(95deg, rgba(8,9,10,0.96) 0%, rgba(8,9,10,0.86) 40%, rgba(8,9,10,0.45) 72%, rgba(8,9,10,0.2) 100%), linear-gradient(0deg, rgba(8,9,10,0.6), rgba(8,9,10,0.1)); }
.hero__grid { background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 80% 20%, #000 30%, transparent 75%); }
.hero__content { position: relative; z-index: 1; padding: 60px 0; }
.hero h1 { max-width: 18ch; }
.hero__lead { max-width: 58ch; margin-bottom: 32px; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.7vw, 1.32rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin: 0; max-width: 720px; }
.hero__stats div { padding: 22px 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); backdrop-filter: blur(6px); }
.hero__stats dt { font-family: Sora, sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--gold-bright); letter-spacing: -0.02em; }
.hero__stats dd { margin: 6px 0 0; font-size: 0.9rem; color: rgba(255,255,255,0.72); }

/* ---------- Subpage hero ---------- */
.page-hero { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; filter: saturate(0.8); }
.page-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,10,0.78), rgba(8,9,10,0.94)); }
.page-hero__inner { position: relative; z-index: 1; padding: 88px 0 64px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { width: 14px; height: 14px; }
.page-hero h1 { max-width: 20ch; margin-bottom: 14px; }
.page-hero__lead { max-width: 62ch; color: rgba(255,255,255,0.8); font-size: 1.18rem; }

/* ---------- Marquee strip ---------- */
.marquee { background: var(--ink-2); color: var(--white); border-bottom: 1px solid var(--line-dark); }
.marquee__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.marquee__grid div, .marquee__grid a { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 26px 16px; font-weight: 600; font-size: 0.98rem; color: rgba(255,255,255,0.88); text-decoration: none; }
.marquee__grid i { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 80px 0; }
.section--intro { background: var(--surface); }
.section--dark { color: var(--white); background: var(--panel); }
.section--muted { background: var(--surface-2); }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-bottom: 0; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }
.section--dark .lead { color: var(--muted-light); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--faq { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.split--contact { grid-template-columns: 1fr 1fr; align-items: start; }
.split__text .lead { margin-bottom: 28px; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose p { color: var(--muted); }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.4em; font-size: 1.3rem; }
.prose ul { margin: 0 0 1.2em; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--muted); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--gold); border-radius: 999px; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 20px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.checklist i { width: 44px; height: 44px; padding: 11px; color: var(--gold-strong); background: rgba(205,168,95,0.12); border-radius: 12px; }
.checklist strong { display: block; margin-bottom: 2px; font-family: Sora, sans-serif; }
.checklist li > div { color: var(--muted); font-size: 0.98rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card { display: flex; flex-direction: column; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(169,134,61,0.4); }
.card--feature { color: var(--white); background: linear-gradient(165deg, var(--ink-2), var(--ink)); border-color: var(--ink); }
.card--link { cursor: pointer; position: relative; }
.card--link .card__more::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; margin-bottom: 22px; color: var(--gold-strong); background: rgba(205,168,95,0.12); border-radius: 14px; }
.card__icon i { width: 26px; height: 26px; }
.card--feature .card__icon { color: var(--gold-bright); background: rgba(205,168,95,0.16); }
.card h3 { font-size: 1.26rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card--feature p { color: rgba(255,255,255,0.74); }
.card ul { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.card li { position: relative; padding-left: 22px; font-size: 0.95rem; color: var(--muted); }
.card--feature li { color: rgba(255,255,255,0.78); }
.card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--gold); border-radius: 999px; }
.card__more { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-strong); font-weight: 600; font-size: 0.92rem; }
.card--feature .card__more { color: var(--gold-bright); }
.card:hover .card__more i { transform: translateX(4px); }
.card__more i { width: 16px; height: 16px; transition: transform 180ms var(--ease); }
.service-card { overflow: hidden; padding: 0; }
.service-card .card__media { position: relative; width: 100%; aspect-ratio: 1.58; margin: 0; overflow: hidden; background: var(--ink); border-bottom: 1px solid var(--line); }
.service-card .card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,0), rgba(11,12,14,0.18)); pointer-events: none; }
.service-card .card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease), filter 420ms var(--ease); }
.service-card:hover .card__media img { transform: scale(1.035); filter: saturate(1.06); }
.service-card .card__body { display: flex; flex: 1; flex-direction: column; padding: 26px 28px 30px; }
.service-card .card__icon { margin-bottom: 18px; }
.service-card.card--feature .card__media { border-color: rgba(205,168,95,0.18); }
.service-card.card--feature .card__media::after { background: linear-gradient(180deg, rgba(11,12,14,0.04), rgba(11,12,14,0.28)); }
.service-card.card--coming-soon .card__media { border-bottom-style: dashed; }
.service-card.card--logo .card__media { background: #000; }
.service-card.card--logo .card__media img { object-fit: contain; padding: 24px; }
.service-card.card--logo .card__media::after { display: none; }
.service-card.card--logo:hover .card__media img { transform: none; filter: none; }

/* ---------- Media figure ---------- */
.media { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); }
.media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: 54% 46%; }
.media figcaption { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: 0.86rem; font-weight: 600; color: var(--white); background: rgba(11,12,14,0.72); border: 1px solid var(--line-dark); border-radius: 999px; backdrop-filter: blur(8px); }
.media figcaption i { color: var(--gold-bright); }
.security-intro { align-items: center; margin-bottom: 52px; }
.media--zentrale { justify-self: end; width: min(100%, 460px); border-color: var(--line); box-shadow: var(--shadow-sm); }
.media--zentrale img { display: block; height: auto; min-height: 0; object-fit: contain; object-position: center; }
.media--dresscode { align-self: stretch; min-height: 430px; border-color: var(--line-dark); box-shadow: 0 28px 70px -36px rgba(0,0,0,0.75); }
.media--dresscode img { min-height: 430px; object-position: center; }
.media--dresscode figcaption { max-width: calc(100% - 36px); white-space: normal; line-height: 1.35; border-radius: 12px; }

/* ---------- HBS system graphic ---------- */
.section--tech { background: linear-gradient(180deg, #fbfaf6, var(--surface)); }
.tech-system { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr); gap: 56px; align-items: center; }
.tech-points { display: grid; gap: 14px; align-content: center; }
.tech-points div { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.tech-points i { width: 46px; height: 46px; padding: 12px; color: var(--gold-strong); background: rgba(205,168,95,0.12); border-radius: 12px; }
.tech-points strong { display: block; margin-bottom: 2px; font-family: Sora, Inter, sans-serif; color: var(--ink); line-height: 1.2; }
.tech-points span { color: var(--muted); }
.system-graphic { position: relative; min-height: 470px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 48% 46%, rgba(205,168,95,0.28), transparent 31%), linear-gradient(150deg, #0b0c0e, #15171d 58%, #262010); border: 1px solid rgba(205,168,95,0.22); border-radius: var(--radius); box-shadow: var(--shadow); }
.system-graphic::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(135deg, rgba(255,255,255,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 54px 54px, 120px 120px; opacity: 0.55; }
.system-graphic::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.08); border-radius: calc(var(--radius) - 4px); pointer-events: none; }
.system-graphic__core { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 178px; height: 178px; transform: translate(-50%, -50%); border: 1px solid rgba(227,197,133,0.55); border-radius: 999px; background: rgba(11,12,14,0.78); box-shadow: 0 0 60px rgba(205,168,95,0.24), inset 0 0 28px rgba(205,168,95,0.08); }
.system-graphic__core img { width: 86px; margin-bottom: -4px; opacity: 0.94; }
.system-graphic__core span { margin-top: -18px; font-family: Sora, Inter, sans-serif; font-size: 0.84rem; font-weight: 700; line-height: 1.18; text-align: center; color: rgba(255,255,255,0.86); }
.system-graphic__node { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 9px; min-width: 146px; padding: 11px 14px; color: rgba(255,255,255,0.86); background: rgba(11,12,14,0.72); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; backdrop-filter: blur(12px); box-shadow: 0 16px 34px -24px rgba(0,0,0,0.9); }
.system-graphic__node i { width: 18px; height: 18px; color: var(--gold-bright); }
.system-graphic__node span { font-size: 0.84rem; font-weight: 700; white-space: nowrap; }
.system-graphic__node--briefing { left: 42px; top: 58px; }
.system-graphic__node--team { right: 44px; top: 92px; }
.system-graphic__node--control { left: 54px; bottom: 84px; }
.system-graphic__node--privacy { right: 50px; bottom: 58px; }
.system-graphic__line { position: absolute; z-index: 1; left: 50%; top: 50%; width: 1px; height: 190px; background: linear-gradient(180deg, rgba(227,197,133,0), rgba(227,197,133,0.36), rgba(227,197,133,0)); transform-origin: top center; opacity: 0.74; }
.system-graphic__line--a { transform: rotate(43deg); }
.system-graphic__line--b { transform: rotate(-48deg); }
.system-graphic__line--c { transform: rotate(132deg); }

/* ---------- Taglist ---------- */
.taglist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.taglist span { display: inline-flex; align-items: center; gap: 10px; padding: 14px 16px; font-size: 0.94rem; color: rgba(255,255,255,0.86); background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); }
.taglist i { color: var(--gold-bright); }

/* ---------- Stats band ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.statband div { text-align: center; }
.statband dt { font-family: Sora, sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gold-bright); }
.statband dd { margin: 6px 0 0; color: var(--muted-light); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 30px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.steps__num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin-bottom: 24px; font-family: Sora, sans-serif; font-weight: 800; color: #1a1404; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-radius: 14px; }
.steps h3 { font-size: 1.14rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 200ms var(--ease); }
details[open] { border-color: rgba(169,134,61,0.4); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; font-family: Sora, sans-serif; font-weight: 600; font-size: 1.04rem; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary i { flex: 0 0 auto; color: var(--gold-strong); transition: transform 220ms var(--ease); }
details[open] summary i { transform: rotate(45deg); }
details p { margin: 0; padding: 0 24px 24px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta { color: var(--white); background: linear-gradient(120deg, var(--ink), var(--ink-2)); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 56px 0; }
.cta h2 { max-width: 22ch; margin: 0; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-cards { display: grid; gap: 12px; }
.contact-cards a { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; padding: 16px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 180ms var(--ease), transform 180ms var(--ease); }
.contact-cards a:hover { transform: translateX(3px); border-color: rgba(169,134,61,0.45); }
.contact-cards i { width: 46px; height: 46px; padding: 12px; color: var(--gold-strong); background: rgba(205,168,95,0.12); border-radius: 12px; }
.contact-cards span { display: block; color: var(--muted); font-size: 0.95rem; }
.contact-cards strong { display: block; color: var(--ink); font-family: Sora, sans-serif; }

/* ---------- Form ---------- */
.form { display: grid; gap: 16px; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .checkbox { font-size: 0.9rem; font-weight: 600; color: #353a40; }
input, select, textarea { width: 100%; min-height: 50px; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #d8d3c6; border-radius: var(--radius-sm); outline: none; transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease); }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-strong); box-shadow: 0 0 0 3px rgba(205,168,95,0.22); }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 500; }
.checkbox input { width: 20px; height: 20px; min-height: 20px; margin-top: 2px; accent-color: var(--gold-strong); }
.form-status { min-height: 22px; margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--gold-strong); }
.form-status.is-error { color: #b74135; }

/* ---------- Footer ---------- */
.footer { padding: 64px 0 28px; color: rgba(255,255,255,0.72); background: var(--ink); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line-dark); }
.footer__brand .brand { width: 200px; margin-bottom: 18px; }
.footer__brand p { max-width: 40ch; margin: 0; font-size: 0.96rem; }
.footer__col h4 { margin-bottom: 16px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); }
.footer__col a, .footer__col span { display: block; margin-bottom: 10px; font-size: 0.95rem; }
.footer__col a:hover { color: var(--white); }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 24px; font-size: 0.86rem; color: rgba(255,255,255,0.5); }

/* ---------- Cert strip (compact, dark bg) ---------- */
.cert-strip { background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.cert-strip__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding: 22px 0; }
.cert-strip__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.35); flex: 0 0 auto; white-space: nowrap; }
.cert-strip__badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-radius: 10px; border: 1px solid; white-space: nowrap; transition: border-color 200ms; }
.cert-badge--dekra { background: rgba(0,133,62,0.12); border-color: rgba(0,133,62,0.35); }
.cert-badge--iso   { background: rgba(0,48,135,0.12);  border-color: rgba(0,48,135,0.35); }
.cert-badge--gewa  { background: rgba(205,168,95,0.10); border-color: rgba(205,168,95,0.32); }
.cert-badge--allianz { background: rgba(0,109,182,0.10); border-color: rgba(0,109,182,0.32); }
.cert-badge:hover { border-color: rgba(255,255,255,0.25); }
.cert-badge__icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 7px; flex: 0 0 auto; }
.cert-badge--dekra .cert-badge__icon   { background: #00853e; }
.cert-badge--iso .cert-badge__icon     { background: #003087; }
.cert-badge--gewa .cert-badge__icon    { background: var(--gold-strong); }
.cert-badge--allianz .cert-badge__icon { background: #006DB6; }
.cert-badge__icon i { width: 17px; height: 17px; color: #fff; }
.cert-badge__text { display: flex; flex-direction: column; gap: 1px; }
.cert-badge__name { font-family: Sora, sans-serif; font-size: 0.84rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.cert-badge__sub  { font-size: 0.72rem; color: rgba(255,255,255,0.48); line-height: 1.2; }

/* ---------- Cert section (full-width, dark panel) ---------- */
.cert-section { padding: 88px 0; background: var(--panel); color: var(--white); }
.cert-section h2 { color: var(--white); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.cert-card { display: flex; flex-direction: column; gap: 10px; padding: 20px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); transition: border-color 220ms var(--ease), transform 220ms var(--ease); }
.cert-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-4px); }
.cert-card__logo { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 13px; flex: 0 0 auto; }
.cert-card--dekra .cert-card__logo   { background: #00853e; }
.cert-card--iso .cert-card__logo     { background: #003087; }
.cert-card--allianz .cert-card__logo { background: #006DB6; }
.cert-card__logo i { width: 24px; height: 24px; color: #fff; }
.cert-card__title  { font-family: Sora, sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--white); line-height: 1.15; }
.cert-card__issuer { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.cert-card__body   { font-size: 0.8rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.5; flex: 1; }
.cert-card__meta   { font-size: 0.66rem; font-family: ui-monospace, monospace; color: rgba(255,255,255,0.3); padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: auto; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  :root { --header-h: 116px; }
  .nav-links, .nav-actions .btn--call { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; order: 3; }
  .nav-actions { margin-left: auto; }
  .split, .split--faq, .split--contact { grid-template-columns: 1fr; gap: 40px; }
  .tech-system { grid-template-columns: 1fr; }
  .system-graphic { min-height: 420px; }
  .split--media .media { order: 2; }
  .cards, .cards--4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .marquee__grid { grid-template-columns: 1fr 1fr; }
  .statband { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  /* Tablet nav overlay (760px–1100px) */
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 116px;
    left: 14px;
    right: 14px;
    gap: 2px;
    margin: 0;
    padding: 12px;
    max-height: calc(100svh - 136px);
    overflow-y: auto;
    background: #14161a;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav-links.is-open .nav-item { width: 100%; }
  .nav-links.is-open .nav-link { width: 100%; padding: 14px 12px; }
  .nav-links.is-open .has-dropdown .dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; padding: 0 0 8px 14px; background: none; border: 0; box-shadow: none; display: none; }
  .nav-links.is-open .has-dropdown.is-open .dropdown { display: grid; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  :root { --header-h: 72px; }
  .nav { min-height: 70px; gap: 14px; }
  .brand { width: 162px; }
  .nav-actions .btn { min-height: 44px; padding: 0 16px; font-size: 0.9rem; }
  .nav-links { position: fixed; inset: 70px 14px auto 14px; display: none; flex-direction: column; align-items: stretch; gap: 2px; margin: 0; padding: 12px; max-height: calc(100svh - 90px); overflow-y: auto; background: #14161a; border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 12px; }
  .nav-link::after { display: none; }
  .has-dropdown .dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; padding: 0 0 8px 14px; background: none; border: 0; box-shadow: none; display: none; }
  .has-dropdown.is-open .dropdown { display: grid; }
  .has-dropdown.is-open .nav-link .chev { transform: rotate(180deg); }
  .page-hero__inner { padding: 56px 0 44px; }
  .page-hero__lead { font-size: 1.06rem; }
  .hero__content { padding: 48px 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { grid-template-columns: 1fr; gap: 10px; }
  .hero__stats div { display: flex; align-items: baseline; gap: 14px; padding: 16px 18px; }
  .hero__stats dd { margin: 0; }
  .section, .section--tight { padding: 64px 0; }
  .cards, .cards--2, .cards--4, .steps, .marquee__grid, .taglist, .statband, .cert-grid, .field-row, .footer__inner { grid-template-columns: 1fr; }
  .tech-system { gap: 34px; }
  .tech-points div { grid-template-columns: 42px 1fr; padding: 15px 16px; }
  .tech-points i { width: 42px; height: 42px; padding: 10px; }
  .system-graphic { min-height: 430px; }
  .system-graphic__core { width: 144px; height: 144px; }
  .system-graphic__core img { width: 70px; }
  .system-graphic__core span { font-size: 0.74rem; }
  .system-graphic__node { min-width: 0; padding: 10px 12px; }
  .system-graphic__node span { font-size: 0.76rem; }
  .system-graphic__node--briefing { left: 22px; top: 34px; }
  .system-graphic__node--team { right: 22px; top: 72px; }
  .system-graphic__node--control { left: 22px; bottom: 76px; }
  .system-graphic__node--privacy { right: 22px; bottom: 34px; }
  .cert-strip__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cert-strip__badges { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px; }
  .cert-seal { height: 56px; }
  .media img { min-height: 340px; }
  .cta__inner { padding: 44px 0; }
  .footer__legal { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ANIMATIONS (lavent-inspired)
   ═══════════════════════════════════════════════════════ */

/* Slide-in from sides */
[data-reveal-left]  { opacity: 0; transform: translateX(-52px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
[data-reveal-right] { opacity: 0; transform: translateX(52px);  transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
[data-reveal-left].is-visible, [data-reveal-right].is-visible { opacity: 1; transform: none; }

/* Card stagger – cards inside a cards grid appear one by one */
.cards [data-reveal]:nth-child(2) { transition-delay: 90ms; }
.cards [data-reveal]:nth-child(3) { transition-delay: 180ms; }
.cards [data-reveal]:nth-child(4) { transition-delay: 270ms; }
.cards [data-reveal]:nth-child(5) { transition-delay: 360ms; }
.cards [data-reveal]:nth-child(6) { transition-delay: 450ms; }

/* Hero cascade – h1/lead/actions enter sequentially on page load */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero__content > .eyebrow  { animation: hero-enter 0.75s var(--ease) 0.05s both; }
.hero__content > h1        { animation: hero-enter 0.85s var(--ease) 0.18s both; }
.hero__content > .hero__lead { animation: hero-enter 0.85s var(--ease) 0.32s both; }
.hero__content > .hero__actions { animation: hero-enter 0.85s var(--ease) 0.46s both; }
.hero__content > .hero__stats { animation: hero-enter 0.85s var(--ease) 0.58s both; }

/* Enhanced card hover – stronger lift + gold glow */
.card:hover { transform: translateY(-9px); box-shadow: 0 32px 72px -24px rgba(11,12,14,0.44), 0 0 0 1px rgba(169,134,61,0.18); }
.card--feature:hover { box-shadow: 0 32px 72px -24px rgba(0,0,0,0.7), 0 0 0 1px rgba(205,168,95,0.35); }

/* ═══════════════════════════════════════════════════════
   COMING SOON CARDS
   ═══════════════════════════════════════════════════════ */
.card--coming-soon { position: relative; overflow: hidden; border-style: dashed; }
.card--coming-soon::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(205,168,95,0.03) 10px, rgba(205,168,95,0.03) 20px); pointer-events: none; border-radius: var(--radius); }
.coming-soon-badge { position: absolute; z-index: 2; top: 16px; right: 16px; padding: 4px 12px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #1a1404; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); border-radius: 999px; box-shadow: 0 4px 14px -4px rgba(169,134,61,0.5); }

/* ═══════════════════════════════════════════════════════
   STANDORTE GRID
   ═══════════════════════════════════════════════════════ */
.standorte-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.standort-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease); }
.standort-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(169,134,61,0.3); }
.standort-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #121417; }
.standort-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,14,0) 48%, rgba(11,12,14,0.46) 100%); pointer-events: none; }
.standort-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms var(--ease); }
.standort-card:hover .standort-card__media img { transform: scale(1.045); }
.standort-card__icon { position: absolute; left: 14px; bottom: 14px; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--gold-bright); background: rgba(11,12,14,0.7); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; backdrop-filter: blur(10px); }
.standort-card__icon i { width: 20px; height: 20px; }
.standort-card__body { display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 18px 18px 20px; }
.standort-card__city { font-family: Sora, sans-serif; font-size: 1.16rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.standort-card__region { font-size: 0.83rem; color: var(--muted); }
.standort-card__badge { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding: 4px 10px; width: fit-content; font-size: 0.71rem; font-weight: 600; color: #1a5c2e; background: rgba(0,133,62,0.1); border-radius: 6px; border: 1px solid rgba(0,133,62,0.2); }

/* ═══════════════════════════════════════════════════════
   DRESSCODE GRID
   ═══════════════════════════════════════════════════════ */
.dresscode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.dresscode-item { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius-sm); transition: background 180ms var(--ease), border-color 180ms var(--ease); }
.dresscode-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(205,168,95,0.3); }
.dresscode-item i { width: 22px; height: 22px; color: var(--gold-bright); flex: 0 0 auto; }
.dresscode-item span { font-size: 0.96rem; font-weight: 600; color: var(--white); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE – new components
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .standorte-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .standorte-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .standort-card__body { padding: 15px 14px 16px; }
  .standort-card__city { font-size: 1rem; }
  .standort-card__region { font-size: 0.78rem; }
  .dresscode-grid { grid-template-columns: 1fr; }
  [data-reveal-left], [data-reveal-right] { transform: translateY(24px); }
}
@media (max-width: 520px) {
  .standorte-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal-left], [data-reveal-right] { opacity: 1; transform: none; transition: none; }
  .hero__content > * { animation: none; opacity: 1; transform: none; }
}

/* Footer credit */
.footer__credit a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.34); font-size: 0.82rem; transition: color 160ms var(--ease), opacity 160ms var(--ease); }
.footer__credit img { display: block; width: 94px; height: auto; opacity: 0.72; transition: opacity 160ms var(--ease); }
.footer__credit a:hover { color: rgba(255,255,255,0.58); }
.footer__credit a:hover img { opacity: 1; }
