/* =====================================================================
   NetCell-IT — Theme Stylesheet
   Handgeschrieben, kein Framework. Design-System über CSS Custom Properties.
   Stil: Clean Corporate Light (Referenz: Hetzner / InterNetX)
   ===================================================================== */

/* ------------------------------------------------------------------
   0. Hausschrift – Inter (self-hosted, DSGVO-konform, kein CDN)
   ------------------------------------------------------------------ */
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter Variable";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/inter-latin-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ------------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------------ */
:root {
  /* Farben – Marke */
  --c-accent:        #60a5fa;   /* CI-Blau (Logo "IT") */
  --c-accent-strong: #3b82f6;
  --c-primary:       #2563eb;   /* Aktions-/Link-Blau (kontraststark) */
  --c-primary-hover: #1d4ed8;
  --c-primary-soft:  #eff6ff;   /* heller Blau-Hintergrund */

  /* Farben – Neutral (Slate) */
  --c-bg:        #ffffff;
  --c-bg-alt:    #f8fafc;
  --c-bg-dark:   #0f172a;
  --c-bg-darker: #0b1220;
  --c-text:      #334155;
  --c-text-soft: #64748b;
  --c-heading:   #0f172a;
  --c-border:    #e2e8f0;
  --c-border-soft:#eef2f6;
  --c-white:     #ffffff;

  /* Statusfarben */
  --c-success: #16a34a;

  /* Typografie */
  --font-sans: "Inter Variable", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-xs:   0.8125rem;  /* 13px */
  --fs-sm:   0.875rem;   /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-md:   1.125rem;   /* 18px */
  --fs-lg:   1.375rem;   /* 22px */
  --fs-xl:   1.75rem;    /* 28px */
  --fs-2xl:  2.25rem;    /* 36px */
  --fs-3xl:  3rem;       /* 48px */
  --fs-4xl:  3.75rem;    /* 60px */
  --lh-tight: 1.15;
  --lh-snug:  1.3;
  --lh-base:  1.65;

  /* Layout */
  --container:    1200px;
  --container-nw: 920px;
  --gutter:       24px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Abstände (Section-Rhythmus) */
  --space-section: 96px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow:    0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-md: 0 12px 28px rgba(15,23,42,.10), 0 4px 10px rgba(15,23,42,.05);
  --shadow-lg: 0 24px 48px rgba(15,23,42,.12);
  --shadow-blue: 0 14px 30px rgba(37,99,235,.25);

  --transition: 160ms cubic-bezier(.4,0,.2,1);
}

/* ------------------------------------------------------------------
   2. Reset / Base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-hover); }

h1, h2, h3, h4 {
  color: var(--c-heading);
  line-height: var(--lh-snug);
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-3xl); line-height: var(--lh-tight); letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-lg); }

p { color: var(--c-text); }

ul, ol { padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid rgba(37,99,235,.45); outline-offset: 2px; border-radius: 4px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------
   3. Layout-Helfer
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-nw); }

.section { padding-block: var(--space-section); }
.section--alt { background: var(--c-bg-alt); }
.section--tight { padding-block: 64px; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: var(--fs-md); color: var(--c-text-soft); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: var(--fs-base); font-weight: 600; line-height: 1;
  padding: 14px 24px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--c-primary-hover); color: #fff; transform: translateY(-1px); }
.btn--secondary { background: #fff; color: var(--c-heading); border-color: var(--c-border); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { border-color: var(--c-accent); color: var(--c-primary); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--c-heading); padding-inline: 14px; }
.btn--ghost:hover { color: var(--c-primary); }
.btn--lg { font-size: var(--fs-md); padding: 17px 30px; }
.btn--white { background:#fff; color: var(--c-primary); }
.btn--white:hover { background: var(--c-primary-soft); color: var(--c-primary-hover); }
.btn--block { width: 100%; justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--c-primary);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.arrow-link:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------------
   5. Wortmarke (Logo als Text)
   ------------------------------------------------------------------ */
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 1.5rem; letter-spacing: 0.02em;
  color: var(--c-heading); line-height: 1;
}
.brand__mark { width: 28px; height: 28px; flex-shrink: 0; display: block; }
.brand__text { display: inline-flex; align-items: baseline; }
.brand b { font-weight: 800; }
.brand .brand-it { color: var(--c-accent-strong); margin-left: 1px; }
.brand--light { color: #fff; }
.brand--light .brand-it { color: var(--c-accent); }
.brand-tag {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--c-text-soft); text-transform: uppercase; margin-top: 4px;
}

/* ------------------------------------------------------------------
   6. Topbar (schmale Info-Leiste)
   ------------------------------------------------------------------ */
.topbar {
  background: var(--c-bg-dark); color: #cbd5e1;
  font-size: var(--fs-xs);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; align-items: center; gap: 8px; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__right a { display: inline-flex; align-items: center; gap: 6px; }
.topbar__right svg { width: 14px; height: 14px; }

/* ------------------------------------------------------------------
   7. Header / Navigation
   ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border-soft);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow); border-color: transparent; }
.site-header__inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.site-header__logo { flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--c-heading); font-weight: 600; font-size: var(--fs-sm);
}
.main-nav > li > a:hover,
.main-nav > li.is-open > a { color: var(--c-primary); background: var(--c-primary-soft); }
.main-nav .caret { width: 14px; height: 14px; transition: transform var(--transition); }
.main-nav > li.is-open .caret { transform: rotate(180deg); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* Mega-Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 560px; padding: 16px;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.main-nav > li:hover .dropdown,
.main-nav > li.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown__item {
  display: flex; gap: 12px; padding: 12px; border-radius: var(--radius);
  transition: background var(--transition);
}
.dropdown__item:hover { background: var(--c-bg-alt); }
.dropdown__ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary);
}
.dropdown__ico svg { width: 20px; height: 20px; }
.dropdown__item > span:last-child { display: block; min-width: 0; }
.dropdown__title { display: block; font-weight: 600; font-size: var(--fs-sm); color: var(--c-heading); }
.dropdown__desc { display: block; font-size: var(--fs-xs); color: var(--c-text-soft); line-height: 1.45; margin-top: 2px; }
.dropdown__price { display: block; font-size: var(--fs-xs); font-weight: 700; color: var(--c-primary); margin-top: 4px; }

/* Mega-Dropdown mit Promo-Spalte */
.dropdown--mega { min-width: 720px; padding: 14px; }
.dropdown--mega .dropdown__layout { display: grid; grid-template-columns: 1fr 232px; gap: 14px; }
.dropdown--mega .dropdown__grid { grid-template-columns: 1fr 1fr; }
.dropdown__foot {
  grid-column: 1 / -1; margin-top: 6px; padding: 10px 12px 4px;
  border-top: 1px solid var(--c-border-soft);
}
.dropdown__promo {
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(160deg, var(--c-primary), #1e3a8a);
  border-radius: var(--radius); padding: 20px; color: #fff;
  position: relative; overflow: hidden; transition: transform var(--transition);
}
.dropdown__promo:hover { transform: translateY(-2px); color: #fff; }
.dropdown__promo::before { content:""; position:absolute; inset:0; background: radial-gradient(220px 120px at 80% 0%, rgba(96,165,250,.45), transparent 60%); }
.dropdown__promo > * { position: relative; }
.dropdown__promo-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: 12px; }
.dropdown__promo-ico svg { width: 20px; height: 20px; color: #fff; }
.dropdown__promo b { font-size: var(--fs-base); font-weight: 700; display: block; }
.dropdown__promo span { font-size: var(--fs-xs); color: rgba(255,255,255,.85); margin-top: 4px; display: block; line-height: 1.5; }
.dropdown__promo .promo-cta { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-sm); font-weight: 700; margin-top: 16px; color: #fff; }
.dropdown__promo .promo-cta svg { width: 15px; height: 15px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); background: #fff; padding: 0;
  align-items: center; justify-content: center; margin-left: auto;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--c-heading);
  border-radius: 2px; transition: var(--transition); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  padding-block: 90px 96px;
  background:
    radial-gradient(900px 420px at 78% -8%, rgba(96,165,250,.16), transparent 60%),
    radial-gradient(700px 380px at 12% 110%, rgba(37,99,235,.08), transparent 55%),
    var(--c-bg);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: #fff; border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm); font-size: var(--fs-sm); font-weight: 600; color: var(--c-text);
  margin-bottom: 24px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); }
.hero h1 { font-size: var(--fs-4xl); margin-bottom: 22px; }
.hero h1 .hl { color: var(--c-primary); }
.hero__lead { font-size: var(--fs-md); color: var(--c-text-soft); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-sm); font-weight: 600; color: var(--c-text); }
.hero__trust svg { width: 18px; height: 18px; color: var(--c-success); }

/* Hero-Visual: abstrakte "Server/Cloud"-Karte */
.hero__visual {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #0f172a, #1e293b);
  box-shadow: var(--shadow-lg);
  padding: 28px; color: #e2e8f0; overflow: hidden;
}
.hero__visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 80% 0%, rgba(96,165,250,.28), transparent 60%);
}
.hero__visual-head { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hero__visual-dots { display: flex; gap: 6px; }
.hero__visual-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.hero__visual-tag { font-size: var(--fs-xs); color: #94a3b8; font-weight: 600; }
.hero-stat { position: relative; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.hero-stat__cell { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 16px; }
.hero-stat__num { font-size: var(--fs-xl); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.hero-stat__lbl { font-size: var(--fs-xs); color: #94a3b8; margin-top: 2px; }
.hero-bars { position: relative; display: flex; align-items: flex-end; gap: 7px; height: 64px; margin-top: 18px; }
.hero-bars span { flex: 1; background: linear-gradient(180deg, var(--c-accent), var(--c-primary)); border-radius: 4px 4px 0 0; opacity: .85; }

/* Hero-Netzwerk-/Standort-Visual */
.hero-map {
  position: relative; height: 158px; margin: 2px 0 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); overflow: hidden;
}
.hero-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-map__node { fill: var(--c-accent); }
.hero-map__node--edge { fill: #475569; }
.hero-map__line { stroke: rgba(96,165,250,.35); stroke-width: 1.2; stroke-dasharray: 3 4; }
.hero-map__ring { fill: none; stroke: var(--c-accent); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: nc-pulse 3.2s ease-out infinite; }
.hero-map__ring:nth-of-type(2) { animation-delay: 1.05s; }
.hero-map__ring:nth-of-type(3) { animation-delay: 2.1s; }
@keyframes nc-pulse {
  0%   { transform: scale(.25); opacity: .7; }
  100% { transform: scale(1); opacity: 0; }
}
.hero-map__pin {
  position: absolute; left: 14px; bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(15,23,42,.7); border: 1px solid rgba(96,165,250,.4);
  color: #e2e8f0; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em; backdrop-filter: blur(4px);
}
.hero-map__pin .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 4px rgba(96,165,250,.25); }
.hero-map__badge {
  position: absolute; right: 12px; top: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #64748b;
}

/* ------------------------------------------------------------------
   9. Logo-/Trust-Leiste
   ------------------------------------------------------------------ */
.logobar { padding-block: 40px; border-top: 1px solid var(--c-border-soft); border-bottom: 1px solid var(--c-border-soft); }
.logobar__label { text-align: center; font-size: var(--fs-sm); color: var(--c-text-soft); margin-bottom: 22px; }
.logobar__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logobar__row .chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: #94a3b8; font-size: var(--fs-md); letter-spacing: .01em;
}
.logobar__row .chip svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------------
   10. Service-/Produkt-Karten
   ------------------------------------------------------------------ */
.card {
  position: relative; background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card__ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--c-primary-soft); color: var(--c-primary);
}
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card__desc { color: var(--c-text-soft); font-size: var(--fs-sm); margin-bottom: 18px; flex-grow: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card__price { font-size: var(--fs-sm); color: var(--c-text-soft); }
.card__price b { font-size: var(--fs-lg); color: var(--c-heading); font-weight: 800; }
.card__price small { display: block; font-size: var(--fs-xs); }
.card .stretched { position: absolute; inset: 0; border-radius: inherit; }

/* ------------------------------------------------------------------
   11. Feature / USP-Spalten
   ------------------------------------------------------------------ */
.feature { text-align: left; }
.feature__ico {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: grid; place-items: center; background: #fff;
  border: 1px solid var(--c-border); color: var(--c-primary); box-shadow: var(--shadow-sm);
}
.feature__ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-md); margin-bottom: 8px; }
.feature p { font-size: var(--fs-sm); color: var(--c-text-soft); }

/* ------------------------------------------------------------------
   12. Split / Spotlight
   ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-xl); overflow: hidden; min-height: 380px;
  background: linear-gradient(155deg, #1e293b, #0f172a);
  position: relative; box-shadow: var(--shadow-lg);
}
.split__media::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(400px 260px at 75% 15%, rgba(96,165,250,.30), transparent 65%);
}
.split__media .glyph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.split__media .glyph svg { width: 120px; height: 120px; }
.split ul.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--fs-base); }
.checklist svg { width: 22px; height: 22px; color: var(--c-success); flex-shrink: 0; margin-top: 1px; }

/* ------------------------------------------------------------------
   13. Stats-Band
   ------------------------------------------------------------------ */
.stats { background: var(--c-bg-dark); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stats__num { font-size: var(--fs-3xl); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stats__num .accent { color: var(--c-accent); }
.stats__lbl { color: #94a3b8; font-size: var(--fs-sm); margin-top: 6px; }

/* ------------------------------------------------------------------
   14. Zertifikate / Badges
   ------------------------------------------------------------------ */
.badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.badge-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow-sm);
}
.badge-card__ico { width: 40px; height: 40px; color: var(--c-primary); flex-shrink: 0; }
.badge-card__ico svg { width: 40px; height: 40px; }
.badge-card b { display: block; font-size: var(--fs-sm); color: var(--c-heading); }
.badge-card span { font-size: var(--fs-xs); color: var(--c-text-soft); }

/* ------------------------------------------------------------------
   15. CTA-Band
   ------------------------------------------------------------------ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--c-primary), #1e3a8a);
  border-radius: var(--radius-xl); padding: 64px;
  color: #fff; text-align: center;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 80% 0%, rgba(96,165,250,.4), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: var(--fs-md); max-width: 560px; margin: 0 auto 32px; }
.cta-band .hero__cta { justify-content: center; margin-bottom: 0; }

/* ------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------ */
.site-footer { background: var(--c-bg-darker); color: #94a3b8; padding-top: 0; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }

/* Footer-Vorband: Newsletter + Bewertung + Trust */
.footer__pre {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__newsletter h3 { color: #fff; font-size: var(--fs-md); margin-bottom: 6px; }
.footer__newsletter p { color: #94a3b8; font-size: var(--fs-sm); margin-bottom: 16px; }
.newsletter { display: flex; gap: 10px; max-width: 440px; }
.newsletter input {
  flex: 1; padding: 12px 15px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05); color: #fff; font: inherit;
}
.newsletter input::placeholder { color: #64748b; }
.newsletter input:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(96,165,250,.2); }
.footer__proof { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating__stars { color: #fbbf24; font-size: var(--fs-md); letter-spacing: 2px; }
.rating b { color: #fff; }
.rating span { color: #94a3b8; font-size: var(--fs-sm); }
.footer__trust { display: flex; flex-wrap: wrap; gap: 8px; }
.tbadge {
  display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 600; color: #cbd5e1;
  padding: 6px 11px; border-radius: 100px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.tbadge svg { width: 14px; height: 14px; color: var(--c-accent); }
.footer__top { padding-top: 56px; }

/* Bottom-Meta: Status + Sprache */
.footer__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-success); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.lang-switch a { font-weight: 600; }
.lang-switch a[aria-current="true"] { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer__brand p { color: #94a3b8; font-size: var(--fs-sm); margin-top: 18px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}
.footer__social a:hover { background: var(--c-primary); border-color: var(--c-primary); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: var(--fs-sm); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: var(--fs-xs); flex-wrap: wrap;
}
.footer__bottom .made { display: inline-flex; align-items: center; gap: 8px; }
.flag-de { width: 18px; height: 13px; border-radius: 2px; overflow: hidden; display: inline-block; box-shadow: 0 0 0 1px rgba(255,255,255,.1); }

/* ------------------------------------------------------------------
   17. Allgemeine Inhalts-/Seiten-Typo (page.php, single.php)
   ------------------------------------------------------------------ */
.page-hero { background: var(--c-bg-alt); border-bottom: 1px solid var(--c-border-soft); padding-block: 64px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .breadcrumb { font-size: var(--fs-sm); color: var(--c-text-soft); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--c-text-soft); }
.entry-content { font-size: var(--fs-md); }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: .4em; }
.entry-content a { text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { border-radius: var(--radius); margin-block: 1.4em; }
.entry-content blockquote {
  border-left: 4px solid var(--c-accent); padding: 8px 0 8px 22px; color: var(--c-text-soft); font-style: italic;
}

/* ------------------------------------------------------------------
   18. Unterseiten-Komponenten
   ------------------------------------------------------------------ */

/* Page-Hero – Variante mit Lead & Aktionen (Produkt/Über/Kontakt) */
.page-hero--lg { padding-block: 80px; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero__lead { font-size: var(--fs-md); color: var(--c-text-soft); max-width: 620px; margin-top: 14px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Preis-Tabellen (Pricing) */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 30px;
  transition: all var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card--featured { border-color: var(--c-primary); box-shadow: var(--shadow-md); position: relative; }
.price-card--featured::before {
  content: "Beliebt"; position: absolute; top: 18px; right: 18px;
  background: var(--c-primary-soft); color: var(--c-primary); font-size: var(--fs-xs);
  font-weight: 700; padding: 4px 11px; border-radius: 100px;
}
.price-card__name { font-size: var(--fs-md); font-weight: 700; color: var(--c-heading); }
.price-card__desc { font-size: var(--fs-sm); color: var(--c-text-soft); margin-top: 6px; min-height: 40px; }
.price-card__price { margin: 20px 0; display: flex; align-items: baseline; gap: 6px; }
.price-card__price .amount { font-size: var(--fs-3xl); font-weight: 800; color: var(--c-heading); letter-spacing: -0.02em; }
.price-card__price .per { font-size: var(--fs-sm); color: var(--c-text-soft); }
.price-card .feature-list { margin: 8px 0 26px; display: grid; gap: 12px; flex-grow: 1; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); }
.feature-list svg { width: 19px; height: 19px; color: var(--c-success); flex-shrink: 0; margin-top: 1px; }
.feature-list li.muted { color: var(--c-text-soft); }
.feature-list li.muted svg { color: var(--c-border); }

/* Spezifikations-/Inklusiv-Raster */
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.spec { display: flex; gap: 14px; align-items: flex-start; }
.spec__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; flex-shrink: 0; }
.spec__ico svg { width: 22px; height: 22px; }
.spec h3 { font-size: var(--fs-base); margin-bottom: 4px; }
.spec p { font-size: var(--fs-sm); color: var(--c-text-soft); }

/* FAQ – natives <details>/<summary>, kein JS */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 4px 22px; transition: border-color var(--transition);
}
.faq details[open] { border-color: var(--c-accent); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--c-heading);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 11px; height: 11px; flex-shrink: 0;
  border-right: 2px solid var(--c-text-soft); border-bottom: 2px solid var(--c-text-soft);
  transform: rotate(45deg); transition: transform var(--transition); margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__body { padding: 0 0 20px; color: var(--c-text-soft); font-size: var(--fs-base); }

/* Team-Karten */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card__avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(150deg, var(--c-accent), var(--c-primary));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: var(--fs-xl);
}
.team-card h3 { font-size: var(--fs-base); margin-bottom: 2px; }
.team-card p { font-size: var(--fs-sm); color: var(--c-text-soft); }

/* Werte-/Story-Split: heller Media-Block mit Stat-Overlay */
.media-stat {
  border-radius: var(--radius-xl); background: linear-gradient(155deg,#1e293b,#0f172a);
  position: relative; min-height: 360px; box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; place-items: center; padding: 32px;
}
.media-stat::after { content:""; position:absolute; inset:0; background: radial-gradient(380px 240px at 70% 20%, rgba(96,165,250,.28), transparent 65%); }
.media-stat__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.media-stat__cell { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; text-align: center; }
.media-stat__num { font-size: var(--fs-2xl); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.media-stat__num .accent { color: var(--c-accent); }
.media-stat__lbl { font-size: var(--fs-xs); color: #94a3b8; margin-top: 4px; }

/* Kontakt-Layout */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__ico { width: 44px; height: 44px; border-radius: 12px; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; flex-shrink: 0; }
.contact-info__ico svg { width: 22px; height: 22px; }
.contact-info__item b { display: block; color: var(--c-heading); font-size: var(--fs-sm); }
.contact-info__item span, .contact-info__item a { font-size: var(--fs-sm); color: var(--c-text-soft); }

/* Formular */
.form { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--c-heading); margin-bottom: 7px; }
.field .req { color: var(--c-primary); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  font: inherit; color: var(--c-text); background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(96,165,250,.2);
}
.field textarea { resize: vertical; min-height: 140px; }
.field--check { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--c-text-soft); }
.field--check input { width: auto; margin-top: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); font-size: var(--fs-sm); margin-bottom: 22px; }
.form-note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.form-note--ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-note--err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Prose-Container für CMS-Inhalt mittig */
.prose { max-width: 760px; }

/* ------------------------------------------------------------------
   19. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  :root { --space-section: 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 880px) {
  .topbar { display: none; }
  .main-nav, .header-actions .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobiles Off-Canvas-Menü */
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 84px 18px 24px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform var(--transition);
    overflow-y: auto; z-index: 90; display: flex;
  }
  .nav-open .main-nav { transform: translateX(0); }
  .main-nav > li > a { padding: 14px; font-size: var(--fs-base); justify-content: space-between; }
  .dropdown {
    position: static; transform: none; min-width: 0; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 8px;
    max-height: 0; overflow: hidden; transition: max-height var(--transition);
  }
  .main-nav > li.is-open .dropdown { max-height: 1000px; }
  .dropdown__grid { grid-template-columns: 1fr; }
  .dropdown--mega { min-width: 0; padding: 0; }
  .dropdown--mega .dropdown__layout { grid-template-columns: 1fr; }
  .dropdown__promo { margin-top: 8px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(15,23,42,.4); opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 80;
  }
  .nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

@media (max-width: 720px) {
  :root { --space-section: 56px; --gutter: 18px; }
  h1 { font-size: var(--fs-2xl); }
  .hero h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .spec-grid, .team-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .page-hero__cta .btn { flex: 1; justify-content: center; }
  .footer__pre { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 420px) {
  .stats__grid, .footer__top { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------
   20. Motion – Scroll-Reveal (per JS gesetzt, daher ohne JS sichtbar)
   ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.4,0,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .06s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; }
.reveal-d4 { transition-delay: .24s; }

/* ------------------------------------------------------------------
   21. Cookie-Consent-Banner
   ------------------------------------------------------------------ */
.cc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: #fff; border-top: 1px solid var(--c-border);
  box-shadow: 0 -12px 30px rgba(15,23,42,.12);
}
.cc[hidden], .cc__cats[hidden], .cc__actions .btn[hidden] { display: none !important; }
.cc__inner { display: flex; align-items: center; gap: 24px; padding-block: 18px; flex-wrap: wrap; }
.cc__body { flex: 1; min-width: 280px; }
.cc__title { display: block; font-size: var(--fs-base); font-weight: 700; color: var(--c-heading); margin-bottom: 4px; }
.cc__text { font-size: var(--fs-sm); color: var(--c-text-soft); line-height: 1.55; }
.cc__text a { font-weight: 600; }
.cc__cats { display: grid; gap: 10px; margin-top: 14px; }
.cc__cat { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--c-text); }
.cc__cat input { margin-top: 3px; }
.cc__cat b { color: var(--c-heading); }
.cc__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cc__actions .btn { padding-block: 11px; }

/* Footer-Link „Cookie-Einstellungen" */
.cc-revoke { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.cc-revoke:hover { color: #fff; }

@media (max-width: 720px) {
  .cc__inner { gap: 14px; }
  .cc__actions { width: 100%; }
  .cc__actions .btn { flex: 1; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
