/* ==========================================================================
   Rehost24 – Design-System (Vorschlag, September 2026)
   Farben: Navy aus dem Kundencenter (Lagom), Grün #83b220 und Teal #42a2c0
   aus der bestehenden Marke. Eine Schrift: Archivo (lokal eingebettet, variabel).
   ========================================================================== */

@font-face { font-family: "Archivo"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
  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: "Archivo"; font-style: italic; font-weight: 100 900; font-display: swap;
  src: url("../fonts/archivo-italic-latin.woff2") format("woff2");
  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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: italic; font-weight: 100 900; font-display: swap;
  src: url("../fonts/archivo-italic-latin-ext.woff2") format("woff2");
  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; }

:root {
  --navy-900: #0f1720;
  --navy-800: #1c2836;
  --navy-700: #2a3a4d;
  --navy-600: #3d4f65;
  --ink: #1f2d3d;
  --ink-2: #55657a;
  --ink-3: #66768a;   /* 4,65:1 auf Weiß, damit Preishinweise und Bedingungen WCAG AA erreichen */
  --line: #e3e8ee;
  --line-strong: #cfd7e0;
  --bg: #f5f7f9;
  --bg-2: #eef2f5;
  --card: #ffffff;
  --green: #83b220;
  --green-700: #6d9617;
  --green-100: #eef6dc;
  --teal: #42a2c0;
  --teal-700: #1e7f9c;
  --teal-100: #e4f2f7;
  --amber: #f0b429;
  --red: #d64541;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(31, 45, 61, .06);
  --shadow: 0 1px 2px rgba(31, 45, 61, .05), 0 10px 30px rgba(31, 45, 61, .08);
  --shadow-lg: 0 2px 4px rgba(15, 23, 32, .08), 0 24px 60px rgba(15, 23, 32, .18);
  --font: "Archivo", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --gutter: 24px;
  --section: 96px;
  --header-h: 76px;
}

@media (max-width: 900px) {
  :root { --section: 64px; --gutter: 20px; --header-h: 64px; }
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--card);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(34px, 4.4vw, 54px); letter-spacing: -.03em; font-weight: 750; }
h2 { font-size: clamp(28px, 3vw, 36px); }
h3 { font-size: 20px; letter-spacing: -.01em; }
h4 { font-size: 17px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong, b { font-weight: 700; }
small, .small { font-size: 14px; }
.muted { color: var(--ink-2); }
.tnum { font-variant-numeric: tabular-nums; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * .66); }
.section-alt { background: var(--bg); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 18px; color: var(--ink-2); }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Buttons & Formulare
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px;
  font: inherit; font-weight: 700; font-size: 15px; line-height: 1;
  color: #fff; background: var(--green); border: 2px solid var(--green);
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover { background: var(--green-700); border-color: var(--green-700); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 16px; }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--bg); border-color: var(--ink-3); }
.btn-light { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn-light:hover { background: var(--bg); border-color: var(--bg); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }
.btn-block { width: 100%; }

.input {
  font: inherit; font-size: 16px; color: var(--ink);
  min-height: 48px; padding: 0 16px;
  border: 2px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-100); }
.input::placeholder { color: var(--ink-3); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-800); color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.site-header.on-dark { position: absolute; left: 0; right: 0; background: transparent; box-shadow: none; }
.site-header.on-dark.is-stuck { position: fixed; background: var(--navy-800); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
.header-bar { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 150px; height: auto; }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav > li { position: relative; }
.nav > li > a, .nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font: inherit; font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .86);
  padding: 10px 14px; border-radius: var(--radius-sm); background: none; border: 0; cursor: pointer;
}
.nav > li > a:hover, .nav > li > button:hover, .nav > li:hover > button, .nav > li:focus-within > button { color: #fff; background: rgba(255, 255, 255, .08); text-decoration: none; }
.nav > li > a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--green); border-radius: 0; }
.nav button svg { width: 14px; height: 14px; opacity: .7; transition: transform .15s ease; }
.nav > li:hover > button svg, .nav > li:focus-within > button svg { transform: rotate(180deg); }
.nav .sub {
  position: absolute; left: 0; top: calc(100% + 10px); min-width: 300px;
  padding: 10px; background: #fff; color: var(--ink);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility 0s .15s;
}
.nav > li:hover > .sub, .nav > li:focus-within > .sub { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.nav .sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav .sub::after { content: ""; position: absolute; left: 28px; top: -7px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.nav .sub.cols-2 { min-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 6px; }
.nav .sub.sub-end { left: auto; right: 0; }
.nav .sub.sub-end::after { left: auto; right: 28px; }
.nav .sub .sub-foot { grid-column: 1 / -1; margin-top: 6px; padding: 12px 10px 4px; border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 600; }
.nav .sub .sub-foot a { display: inline-flex; align-items: center; gap: 6px; padding: 0; }
.nav .sub .sub-foot svg { width: 15px; height: 15px; }
.nav .sub a { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 8px 10px; border-radius: 8px; color: var(--ink); }
.nav .sub a i { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; transition: background .15s ease, color .15s ease; }
.nav .sub a i svg { width: 19px; height: 19px; }
.nav .sub a b { display: block; font-weight: 700; font-size: 14.5px; line-height: 1.25; }
.nav .sub a .t > span { display: block; font-size: 12.5px; color: var(--ink-2); font-weight: 500; line-height: 1.3; margin-top: 1px; }
.nav .sub a:hover i { background: var(--green-100); color: var(--green-700); }
.nav .sub a:hover { background: var(--bg); text-decoration: none; }
.nav .sub a[aria-current="page"] { background: var(--green-100); }
.nav .sub a[aria-current="page"] i { background: var(--green); color: #fff; }
.nav > li.nav-actions { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-actions .link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .86); font-weight: 600; font-size: 15px; padding: 10px 12px; border-radius: var(--radius-sm); }
.header-actions .link:hover { color: #fff; background: rgba(255, 255, 255, .08); text-decoration: none; }
.header-actions .link svg { width: 18px; height: 18px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .08); color: #fff; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* 1081–1200 px: kompaktes Menü, Warenkorb nur als Icon; darunter Burger (site.js nutzt denselben Wert) */
@media (max-width: 1200px) {
  .nav > li > a, .nav > li > button { padding: 10px 10px; font-size: 14px; white-space: nowrap; }
  .brand img { width: 132px; }
  .header-actions .link:not(.kontakt) span { display: none; }
}
@media (max-width: 1080px) {
  .header-bar { gap: 8px; }
  .header-actions { margin-left: auto; order: 1; }
  .header-actions .link span, .header-actions .link.kontakt, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; order: 2; margin-left: 0; }
  .site-header.nav-open { background: var(--navy-800); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
  .site-header.on-dark.nav-open { position: fixed; }
  html.nav-open { overflow: hidden; }
  /* Menü als Fläche unter dem Kopf; Bereiche klappen als Akkordeon auf (site.js) */
  .nav {
    display: none; position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: var(--navy-800); padding: 4px var(--gutter) 32px; overflow: auto; overscroll-behavior: contain;
  }
  .site-header.nav-open .nav { display: flex; }
  .nav > li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .nav > li > button, .nav > li:hover > button, .nav > li:focus-within > button { width: 100%; justify-content: space-between; padding: 15px 4px; font-size: 16px; border-radius: 0; background: none; color: rgba(255, 255, 255, .92); }
  .nav > li.is-open > button { color: #fff; }
  .nav button svg { width: 16px; height: 16px; }
  .nav > li:hover > button svg, .nav > li:focus-within > button svg { transform: none; }
  .nav > li.is-open > button svg { transform: rotate(180deg); }
  .nav .sub, .nav .sub.cols-2 { display: none; position: static; opacity: 1; visibility: visible; transform: none; transition: none; background: transparent; border: 0; box-shadow: none; padding: 0 0 12px; min-width: 0; }
  .nav > li.is-open > .sub { display: block; }
  .nav .sub::before, .nav .sub::after { display: none; }
  .nav .sub a { grid-template-columns: 32px 1fr; padding: 8px 4px; color: rgba(255, 255, 255, .92); }
  .nav .sub a i { width: 32px; height: 32px; border-radius: 8px; background: rgba(255, 255, 255, .08); color: var(--teal); }
  .nav .sub a i svg { width: 17px; height: 17px; }
  .nav .sub a b { font-size: 15px; font-weight: 600; }
  .nav .sub a .t > span { color: rgba(255, 255, 255, .55); }
  .nav .sub a:hover { background: rgba(255, 255, 255, .06); }
  .nav .sub a:hover i { background: rgba(255, 255, 255, .14); color: #fff; }
  .nav .sub a[aria-current="page"] { background: rgba(131, 178, 32, .16); color: #fff; }
  .nav .sub a[aria-current="page"] i { background: var(--green); color: #fff; }
  .nav .sub .sub-foot { margin: 4px 0 0; padding: 12px 4px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
  .nav .sub .sub-foot a { color: rgba(255, 255, 255, .75); padding: 4px 0; }
  .nav > li.nav-actions { display: block; border-bottom: 0; }
  .nav > li.nav-actions > div { display: grid; gap: 10px; padding: 20px 0 0; }
}

/* --------------------------------------------------------------------------
   Dunkler Kopfbereich (Startseite) und Unterseiten-Header
   -------------------------------------------------------------------------- */
.dark-block {
  position: relative; color: #e6ebf0;
  background: radial-gradient(110% 80% at 50% 10%, #101c22 0%, var(--navy-900) 70%);
  overflow: hidden;
}
.dark-block h1, .dark-block h2, .dark-block h3 { color: #fff; }
.dark-block .lead { color: #aab7c4; font-size: 19px; max-width: 60ch; }
.hero-wrap { position: relative; }
.hero-map { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-map { --land: #1d2d36; --land-edge: #2e434f; --grat: #182933; }
.hero-map svg { position: absolute; max-width: none; width: auto; height: 116%; top: -4%; right: -6%; left: auto; opacity: .9; }
.hero-map .lbl, .hero-map .hitzone { display: none; }
.hero-map::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, .92) 0%, rgba(15, 23, 32, .78) 30%, rgba(15, 23, 32, .12) 58%, rgba(15, 23, 32, 0) 100%),
    linear-gradient(180deg, rgba(15, 23, 32, .3) 0%, rgba(15, 23, 32, 0) 16%, rgba(15, 23, 32, 0) 62%, var(--navy-900) 100%);
}
.hero { position: relative; padding: calc(var(--header-h) + 72px) 0 128px; }
.hero-copy { max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-live {
  position: absolute; right: 0; bottom: 104px;
  display: inline-flex; align-items: center; gap: 10px; max-width: 360px;
  font-size: 13.5px; line-height: 1.4; color: #c7d1db;
  background: rgba(15, 23, 32, .55); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 8px 16px 8px 12px;
  backdrop-filter: blur(6px);
}
.hero-live i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none; box-shadow: 0 0 0 3px rgba(132, 174, 30, .25); animation: livepulse 2s ease-out infinite; }
.hero-live b { color: #fff; font-weight: 700; }
.hero-live a { color: var(--teal); white-space: nowrap; }
@media (max-width: 900px) {
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 104px; }
  .hero-map svg { width: 200%; height: auto; left: -40%; right: auto; top: 12%; opacity: .4; }
  .hero-live { position: static; margin-top: 28px; max-width: none; }
}

.teasers { position: relative; z-index: 2; margin-top: -76px; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.teaser {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 22px 22px 20px; color: var(--ink); text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.teaser:hover { text-decoration: none; transform: translateY(-2px); }
.teaser .icon-circle { width: 56px; height: 56px; }
.teaser .icon-circle svg { width: 26px; height: 26px; }
.teaser .t-title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; line-height: 1.25; margin-bottom: 6px; }
.teaser .t-new { font-size: 11px; font-weight: 800; letter-spacing: .03em; color: #5a7c12; border: 1.5px solid var(--green); border-radius: 999px; padding: 1px 8px; line-height: 1.5; }
.teaser p { font-size: 14px; color: var(--ink-2); margin: 0 0 12px; }
.teaser .t-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--teal-700); }
.teaser .t-link svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } .teasers { margin-top: -64px; } }

.page-head { padding: calc(var(--header-h) + 56px) 0 64px; }
.page-head .breadcrumb { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: #8fa0b1; margin-bottom: 18px; }
.page-head .breadcrumb a { color: #b7c4d1; }
.page-head .breadcrumb li + li::before { content: "/"; margin-right: 6px; color: #55657a; }
.page-head-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
/* Grafikspalte läuft rechts über das 1200-px-Raster hinaus bis zum Bildschirmrand (der dunkle Block schneidet ab) */
.page-head-visual { display: flex; justify-content: center; margin-right: calc(-1 * ((100vw - min(var(--container), 100vw - 2 * var(--gutter))) / 2 - var(--gutter))); }
.page-head-visual img { max-height: 320px; width: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4)); }
@media (max-width: 900px) {
  .page-head { padding-top: calc(var(--header-h) + 32px); padding-bottom: 48px; }
  /* Einspaltig; die Textspalte löst sich auf, damit die Grafik direkt unter der H1 stehen kann */
  .page-head-grid { grid-template-columns: 1fr; gap: 0; }
  .page-head-grid > div:first-child { display: contents; }
  .page-head-grid .tag { order: -3; justify-self: start; }
  .page-head-grid h1 { order: -2; }
  .page-head-visual { order: -1; margin: 6px 0 30px; }
  .page-head-visual .ill, .page-head-visual .srv, .page-head-visual .dom { max-width: none; }
}
@media (max-width: 600px) { .page-head .hero-actions .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   Live-Angriffskarte (secstats-map.php, eingebettet)
   Die Klassen entsprechen dem Original, gekapselt unter .secmap
   -------------------------------------------------------------------------- */
.worldmap {
  --bg: #0c1317; --bg-2: #101c22; --land: #18252c; --land-edge: #24363f; --grat: #132029;
  --ink: #e4e4e4; --ink-2: #aeaeae; --muted: #6f7f87; --line: rgba(228, 228, 228, .08);
  --brand: #42a2c0; --brand-light: #60c6f0; --brand-deep: #186684; --brand-r: 66, 162, 192;
  --accent: #84ae1e; --accent-r: 132, 174, 30;
  --danger: #ff4a45; --danger-light: #ff8f88; --danger-r: 255, 74, 69;
}
.secmap { color: var(--ink); font-size: 14px; line-height: 1.4; margin-top: 40px; padding: 24px 0 0; }
.secmap-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-bottom: 14px; }
.secmap-head h2 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: .01em; color: #fff; }
.secmap-head h2 small { color: var(--muted); font-weight: 400; font-size: 13px; margin-left: 10px; }
.secmap-head .live { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--accent); }
.secmap-head .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-r), .25); animation: livepulse 2s ease-out infinite; }
@keyframes livepulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(var(--accent-r), .25); } 50% { box-shadow: 0 0 0 6px rgba(var(--accent-r), .12); } }
.secmap-head nav { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.secmap-head nav a { color: var(--ink-2); text-decoration: none; padding: 4px 12px; border-radius: 4px; border: 1px solid var(--line); font-size: 13px; }
.secmap-head nav a[aria-current] { color: var(--ink); border-color: rgba(var(--brand-r), .7); background: rgba(var(--brand-r), .14); }
.secmap .stage { display: grid; grid-template-columns: minmax(0, 1fr) 232px; gap: 20px; align-items: start; }
.secmap .mapwrap { position: relative; display: flex; justify-content: center; }
.secmap svg.map { width: 100%; height: auto; display: block; }
.worldmap .country { fill: var(--land); stroke: var(--land-edge); stroke-width: .5; vector-effect: non-scaling-stroke; }
.worldmap .country.hit { fill: var(--brand); }
.worldmap .grat { fill: none; stroke: var(--grat); stroke-width: .5; vector-effect: non-scaling-stroke; }
.worldmap .sphere { fill: none; stroke: var(--line); stroke-width: 1; vector-effect: non-scaling-stroke; }
.worldmap .arc { fill: none; stroke: var(--brand); stroke-width: .7; stroke-opacity: .3; vector-effect: non-scaling-stroke; }
.worldmap .arcglow { fill: none; stroke: var(--danger); stroke-width: 3.5; stroke-opacity: .16; filter: url(#soft); }
.worldmap .flow { fill: none; stroke: var(--brand-light); stroke-linecap: butt; stroke-width: 1.2; vector-effect: non-scaling-stroke; filter: url(#glow);
  animation: flow linear infinite; animation-duration: var(--dur); stroke-dasharray: 5 var(--gap); }
.worldmap .src { fill: var(--brand-light); filter: url(#glow); }
.worldmap .src-ring { fill: none; stroke: var(--brand); stroke-width: .7; stroke-opacity: .7; vector-effect: non-scaling-stroke; }
.worldmap .hot .arc, .secmap .arc.hot { stroke: var(--danger); stroke-opacity: .38; }
.worldmap .flow.hot { stroke: var(--danger-light); }
.worldmap .src.hot { fill: var(--danger-light); }
.worldmap .src-ring.hot { stroke: var(--danger); }
/* Elemente der Live-Karte (secstats-map.php), die der Schnappschuss noch nicht hatte */
.worldmap .src-glow { fill: var(--brand-light); opacity: .22; }
.worldmap .src-glow.hot { fill: var(--danger-light); }
.worldmap .micro { fill: var(--brand); filter: url(#soft); pointer-events: none; }
.worldmap .micro.hot { fill: var(--danger); }
.worldmap .flow.under { stroke-width: 3.2; stroke-opacity: .28; filter: none; }
.worldmap .shield { fill: var(--accent); stroke: var(--bg); stroke-width: 1; paint-order: stroke; }
.worldmap .shield-mark { fill: none; stroke: var(--bg); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.worldmap .lbl { fill: var(--ink-2); font-size: 10.5px; font-weight: 500; letter-spacing: .02em; paint-order: stroke; stroke: var(--bg); stroke-width: 3px; stroke-linejoin: round; }
.worldmap .home { fill: var(--accent); }
.worldmap .ring { fill: none; stroke: var(--accent); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: sonar 3.2s ease-out infinite; opacity: 0; }
.worldmap .ring.r2 { animation-delay: 1.6s; }
.worldmap .hitzone { cursor: crosshair; fill: transparent; }
@keyframes sonar { 0% { transform: scale(.3); opacity: .9; } 100% { transform: scale(3.4); opacity: 0; } }
@keyframes flow { to { stroke-dashoffset: calc(-1 * var(--period)); } }
.secmap .overlay { position: absolute; left: 2%; bottom: 4%; pointer-events: none; }
.secmap .num { font-size: 54px; font-weight: 600; line-height: 1; letter-spacing: -.02em; color: #fff; font-variant-numeric: tabular-nums; }
.secmap .num-l { color: var(--ink-2); margin-top: 6px; max-width: 30ch; }
.secmap .num-l b { color: var(--ink); font-weight: 600; }
.secmap aside { border-left: 1px solid var(--line); padding-left: 18px; align-self: stretch; }
.secmap aside h3 { font-size: 13px; font-weight: 600; color: var(--ink-2); margin: 4px 0 12px; }
.secmap .row { display: grid; grid-template-columns: 26px 1fr auto; gap: 8px; align-items: center; padding: 5px 0; font-variant-numeric: tabular-nums; }
.secmap .row .name { color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.secmap .row .n { color: var(--ink-2); }
.secmap .row .bar { grid-column: 2 / 4; height: 2px; background: var(--line); overflow: hidden; }
.secmap .row .bar i { display: block; height: 100%; background: var(--brand); }
.secmap .row.hot .bar i { background: var(--danger); }
.secmap .foot { color: var(--muted); font-size: 12px; display: flex; flex-wrap: wrap; gap: 6px 18px; padding: 16px 0 0; }
.secmap .foot .k { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); margin-right: 5px; vertical-align: 0; }
.secmap .foot .k.big { width: 12px; height: 12px; vertical-align: -2px; margin-left: 10px; background: var(--brand-light); box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px rgba(var(--brand-r), .7); }
.secmap .foot .k.hot { background: var(--danger); box-shadow: 0 0 6px rgba(var(--danger-r), .8); margin-left: 10px; }
.secmap .foot .k.home { background: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-r), .35); }
.secmap-tip { position: fixed; pointer-events: none; background: rgba(12, 19, 23, .96); color: #e4e4e4; border: 1px solid rgba(66, 162, 192, .5); padding: 7px 10px; border-radius: 4px; font-size: 12px; line-height: 1.5; display: none; z-index: 60; white-space: nowrap; font-variant-numeric: tabular-nums; }
.secmap-tip b { display: block; font-weight: 600; margin-bottom: 2px; }
.secmap-tip.hot { border-color: rgba(255, 74, 69, .6); }
@media (prefers-reduced-motion: reduce) {
  .secmap .ring, .secmap .flow, .secmap-head .live i { animation: none; }
  .secmap .ring { opacity: .5; transform: scale(1.6); }
  .secmap .flow { stroke-opacity: .5; }
}
@media (max-width: 860px) {
  .secmap .stage { grid-template-columns: 1fr; }
  .secmap aside { border-left: 0; padding-left: 0; }
  .secmap .overlay { position: static; margin-top: 12px; }
  .secmap .num { font-size: 40px; }
}

/* --------------------------------------------------------------------------
   Domain-Check (überlappende Karte)
   -------------------------------------------------------------------------- */
.domain-check { position: relative; z-index: 2; margin-top: -44px; }
.domain-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 28px 32px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px 32px; align-items: center;
}
.domain-card h2 { font-size: 20px; margin: 0 0 4px; }
.domain-card p { color: var(--ink-2); font-size: 15px; margin: 0; }
.domain-form { display: flex; gap: 10px; }
.domain-form .field { position: relative; flex: 1; }
.domain-form .input { width: 100%; min-height: 56px; padding-left: 52px; font-size: 17px; }
.domain-form .field svg { position: absolute; left: 18px; top: 50%; width: 22px; height: 22px; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.domain-form .btn { min-height: 56px; padding: 0 28px; }
@media (max-width: 800px) {
  .domain-card { grid-template-columns: 1fr; padding: 24px; }
  .domain-form { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   Feature-Raster, Icon-Kreise
   -------------------------------------------------------------------------- */
.icon-circle {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-100); color: var(--teal-700); flex: none;
}
.icon-circle svg { width: 30px; height: 30px; }
.icon-circle.green { background: var(--green-100); color: var(--green-700); }
.feature { display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--ink-2); font-size: 15px; }
.feature-list { display: grid; gap: 28px; }
.feature-list .feature { grid-template-columns: 48px 1fr; gap: 16px; }
.feature-list .icon-circle { width: 48px; height: 48px; }
.feature-list .icon-circle svg { width: 24px; height: 24px; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.split-visual img { margin-inline: auto; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* --------------------------------------------------------------------------
   Kundenstimmen, Partnerlogos
   -------------------------------------------------------------------------- */
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote blockquote { margin: 0; font-size: 16px; color: var(--ink); }
.quote .stars { display: inline-flex; gap: 2px; color: var(--amber); }
.quote .stars svg { width: 18px; height: 18px; }
.quote footer { margin-top: auto; }
.quote footer b { display: block; font-size: 16px; }
.quote footer span { color: var(--ink-2); font-size: 14px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px 64px; }
.logos img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.logos .tall img { height: 56px; }

/* --------------------------------------------------------------------------
   Preise
   -------------------------------------------------------------------------- */
.plans { display: grid; gap: 24px; align-items: stretch; }
.plans-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plans-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plans-1 { grid-template-columns: minmax(0, 400px); justify-content: center; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 24px; box-shadow: var(--shadow-sm);
}
.plan.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), var(--shadow); }
.plan .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 12px; font-weight: 800; letter-spacing: .04em; color: #fff; background: var(--green); padding: 5px 12px; border-radius: 999px; }
.plan h3 { font-size: 22px; margin-bottom: 2px; }
.plan .sub { color: var(--ink-2); font-size: 14px; min-height: 22px; }
.plan .price { margin: 20px 0 6px; display: flex; align-items: baseline; gap: 6px; font-variant-numeric: tabular-nums; }
.plan .price .from { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.plan .price .amount { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .price .per { font-size: 15px; color: var(--ink-2); }
.plan .terms { color: var(--ink-3); font-size: 13px; line-height: 1.5; min-height: 40px; }
.plan .btn { margin: 20px 0 22px; }
.plan ul { display: grid; gap: 9px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 15px; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.plan li svg { width: 20px; height: 20px; color: var(--green-700); margin-top: 2px; }
.plan li.no { color: var(--ink-3); }
.plan li.no svg { color: var(--line-strong); }
.plan li b { font-weight: 700; }
.plan .meta { margin-top: auto; padding-top: 18px; font-size: 13px; color: var(--ink-3); }
@media (max-width: 1080px) { .plans-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .plans-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .plans-2, .plans-4 { grid-template-columns: 1fr; } }

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 720px; }
.compare th, .compare td { padding: 13px 18px; border-bottom: 1px solid var(--line); text-align: center; vertical-align: middle; }
.compare th { font-weight: 700; background: var(--bg); }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare td:first-child { font-weight: 600; color: var(--ink); }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody th[colspan] { text-align: left; background: var(--bg-2); font-size: 13px; letter-spacing: .02em; color: var(--ink-2); }
.compare .yes { color: var(--green-700); }
.compare .no { color: var(--line-strong); }
.compare svg { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.compare .featured { background: rgba(131, 178, 32, .06); }
.compare tfoot td { border-top: 2px solid var(--line); padding: 20px 18px; }

.price-note { font-size: 13px; color: var(--ink-3); margin-top: 20px; max-width: 900px; }

/* Add-ons / Info-Karten */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 15px; }
.card .price-inline { font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.checklist { display: grid; gap: 10px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--green-700); margin-top: 1px; }

/* FAQ */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; color: var(--ink-3); flex: none; transition: transform .2s ease; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .answer { padding: 0 0 20px; color: var(--ink-2); max-width: 75ch; }

/* CTA-Band */
.cta-band { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 40px 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { color: #fff; font-size: 26px; margin: 0 0 6px; }
.cta-band p { color: #aab7c4; margin: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #aab7c4; padding: 64px 0 28px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; }
.site-footer h3 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.site-footer a { color: #aab7c4; }
.site-footer a:hover { color: #fff; }
.site-footer ul { display: grid; gap: 8px; }
.rating { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--radius); padding: 18px 20px; max-width: 360px; }
.rating .score { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.03em; }
.rating .score small { display: block; font-size: 12px; font-weight: 500; color: #8fa0b1; letter-spacing: 0; margin-top: 4px; }
.rating .stars { display: inline-flex; gap: 2px; color: var(--amber); margin-bottom: 6px; }
.rating .stars svg { width: 18px; height: 18px; }
.rating p { margin: 0; font-size: 14px; color: #d0d8e0; }
.rating p small { display: block; color: #8fa0b1; }
.rating { position: relative; transition: border-color .15s ease, background .15s ease; }
.rating:hover { border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); }
.rating-open { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 0; border: 0; background: none; font: inherit; font-size: 13.5px; font-weight: 700; color: var(--green); cursor: pointer; }
.rating-open svg { width: 15px; height: 15px; transition: transform .15s ease; }
.rating:hover .rating-open svg { transform: translateX(3px); }
.rating-open::after { content: ""; position: absolute; inset: 0; border-radius: inherit; } /* ganze Karte klickbar */

/* Dialoge (natives <dialog>, geöffnet per [data-dialog], geschlossen per [data-close], Escape oder Klick daneben) */
.dialog { width: min(520px, calc(100vw - 32px)); max-width: none; border: 0; padding: 0; background: transparent; color: var(--ink); }
.dialog::backdrop { background: rgba(15, 23, 32, .72); backdrop-filter: blur(2px); }
.dialog-panel { position: relative; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 36px 32px 28px; }
.dialog-close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--bg); color: var(--ink-2); display: grid; place-items: center; cursor: pointer; }
.dialog-close:hover { background: var(--bg-2); color: var(--ink); }
.dialog-close svg { width: 18px; height: 18px; }
.dialog-stars { display: inline-flex; gap: 3px; color: var(--amber); margin-bottom: 12px; }
.dialog-stars svg { width: 22px; height: 22px; }
.review-dialog h2 { font-size: 24px; margin: 0 0 8px; padding-right: 40px; }
.review-dialog p { color: var(--ink-2); margin: 0 0 22px; }
.dialog-actions { display: grid; gap: 10px; margin-bottom: 22px; }
.review-dialog .dialog-note { font-size: 13.5px; padding-top: 16px; border-top: 1px solid var(--line); margin: 0; }
@media (max-width: 600px) { .dialog-panel { padding: 30px 22px 22px; } }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; font-size: 14px; color: #8fa0b1; }
.footer-bottom .maker { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom .maker img { width: 24px; height: 24px; }
.footer-claim { color: #8fa0b1; font-size: 14px; margin: 14px 0 22px; max-width: 30ch; }
.site-footer .brand img { width: 140px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Ergänzungen: Kundenstimmen-Slider (nativ, scroll-snap), Spezifikationslisten, Tooltips
   -------------------------------------------------------------------------- */
.quotes {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; margin: -4px -4px 0;
}
.quotes .quote { scroll-snap-align: start; }
/* Sichtbarer, etwas kräftigerer Scrollbalken in Navy statt Texthinweis (auch bei macOS-Overlay-Scrollbalken sichtbar) */
.quotes::-webkit-scrollbar { height: 10px; }
.quotes::-webkit-scrollbar-track { background: var(--bg-2); border-radius: 999px; }
.quotes::-webkit-scrollbar-thumb { background: var(--navy-800); border-radius: 999px; border: 2px solid var(--bg-2); }
.quotes::-webkit-scrollbar-thumb:hover { background: var(--navy-700); }
@supports not selector(::-webkit-scrollbar) { .quotes { scrollbar-width: auto; scrollbar-color: var(--navy-800) var(--bg-2); } }
@media (max-width: 900px) { .quotes { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .quotes { grid-auto-columns: 88%; } }

.spec { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 4px; }
.spec li { display: grid; grid-template-columns: auto auto; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec li span:first-child { color: var(--ink-2); }
.spec li b { font-variant-numeric: tabular-nums; }
.spec li span em { display: block; font-style: normal; font-size: 12.5px; color: var(--ink-3); margin-top: 1px; }
.spec li b { text-align: right; }
.plan .spec + .btn { margin-top: 24px; }

.tech-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 36px; }
.tech-strip img { height: 34px; width: auto; max-width: 150px; object-fit: contain; }
.tech-strip .chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
.tech-strip .chip svg { width: 16px; height: 16px; color: var(--green-700); }
.dark-block .tech-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 24px 28px; }
.dark-block .tech-card h2 { font-size: 16px; color: #aab7c4; font-weight: 600; margin-bottom: 18px; }
.dark-block .tech-card .logos-dark { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; align-items: center; }
.dark-block .tech-card .logos-dark span { background: #fff; border-radius: var(--radius-sm); padding: 10px 14px; display: grid; place-items: center; min-height: 58px; }
.dark-block .tech-card .logos-dark img { height: 30px; width: auto; max-width: 100%; object-fit: contain; }
.dark-block .tech-card .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dark-block .tech-card .chip { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: #e6ebf0; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 6px 14px; }
.dark-block .tech-card .chip svg { width: 16px; height: 16px; color: var(--green); }
.dark-block .tag { display: inline-block; font-size: 13px; font-weight: 800; color: var(--navy-900); background: var(--green); padding: 4px 10px; border-radius: 4px; margin-bottom: 18px; }
.dark-block .facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 24px; font-size: 15px; color: #d0d8e0; }
.dark-block .facts li { display: inline-flex; align-items: center; gap: 8px; }
.dark-block .facts svg { width: 18px; height: 18px; color: var(--green); }

.compare .tip { text-decoration: underline dotted var(--ink-3); text-underline-offset: 3px; cursor: help; }
.compare .inf { font-size: 20px; line-height: 1; font-weight: 600; color: var(--green-700); }
.compare .val { font-weight: 600; }
.compare td img { height: 22px; width: auto; margin-inline: auto; }
.compare-details summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--teal-700); margin: 0 0 20px; }
.compare-details summary::-webkit-details-marker { display: none; }
.compare-details summary svg { width: 18px; height: 18px; transition: transform .2s ease; }
.compare-details[open] summary svg { transform: rotate(180deg); }
.compare-legend { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; color: var(--ink-2); margin-top: 14px; }
.compare-legend svg { display: inline-block; width: 18px; height: 18px; vertical-align: -4px; }
.compare-legend span { display: inline-flex; align-items: center; gap: 6px; }
.notice { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; background: #fff8e6; border: 1px solid #f3dfae; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; color: #6b5313; margin-top: 20px; }
.notice svg { width: 22px; height: 22px; color: #c98f0a; }

.dark-block .domain-form { margin-top: 28px; max-width: 620px; }
.hero-seals { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 30px; }
.hero-seals img:first-child { width: 96px; height: 96px; }
.hero-seals .seal-abuse { display: grid; gap: 2px; }
.hero-seals .seal-abuse img { width: 305px; height: auto; max-width: 100%; }
.hero-seals .seal-abuse small { font-size: 12px; color: #8fa0b1; margin-left: 32.5%; }
@media (max-width: 600px) { .hero-seals .seal-abuse img { width: 260px; } }
.dark-block .domain-form .input { border-color: transparent; box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }
.dark-block .domain-form .input:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(131, 178, 32, .25); }
.dark-block .domain-form label { display: block; font-size: 14px; font-weight: 700; color: #d0d8e0; margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   Cookie-Hinweis (Entwurf; produktiv übernimmt der Rehost24 Cookie-Consent-Manager)
   -------------------------------------------------------------------------- */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80; max-width: 760px; margin-inline: auto;
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 20px 22px;
}
.cookie-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.cookie-icon svg { width: 24px; height: 24px; }
.cookie h2 { font-size: 17px; margin: 6px 0 6px; }
.cookie p { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.cookie-link { font-size: 14px; font-weight: 600; margin-left: auto; }
@media (max-width: 600px) {
  .cookie { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 1fr; padding: 18px; }
  .cookie-icon { display: none; }
  .cookie-link { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Heller Seitenkopf und Fließtext (Rechtstexte, Info-Seiten)
   -------------------------------------------------------------------------- */
.page-head-light { padding-top: calc(var(--header-h) + 40px); }
.page-head-light .breadcrumb { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--ink-3); }
.page-head-light .breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--line-strong); }
.page-head-light h1 { margin-bottom: 8px; }
.page-head-light .lead { font-size: 18px; color: var(--ink-2); max-width: 70ch; margin: 0; }
.site-header:not(.on-dark) + main .page-head-light { padding-top: 40px; }
.prose { max-width: 75ch; }
.prose h2 { font-size: 24px; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 19px; margin: 1.4em 0 .4em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-bottom: 1em; }
.prose a { overflow-wrap: anywhere; }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose ol { list-style: decimal; padding-left: 1.3em; }
.prose li { margin-bottom: .35em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 1em 0 1.5em; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--bg); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 1em 0; padding: 12px 18px; border-left: 3px solid var(--green); background: var(--bg); }
.prose address { font-style: normal; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.prose-wide { max-width: none; }
.toc { display: grid; gap: 6px; padding: 18px 22px; background: var(--bg); border-radius: var(--radius); font-size: 15px; margin-bottom: 32px; }
.toc a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Technologie-Logos im dunklen Kopf (einfarbig weiß) und Server-Animation
   -------------------------------------------------------------------------- */
.tech-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin: 20px 0 26px; }
.tech-row img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .82; }
.tech-row .chip { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: #c7d1db; }
.tech-row .chip svg { width: 15px; height: 15px; color: var(--green); }
.page-head-visual .srv { width: 100%; max-width: 780px; height: auto; }

.srv { display: block; overflow: visible; font-family: inherit; }
.srv .line { fill: none; stroke: #42a2c0; stroke-opacity: .3; stroke-width: 1.5; }
.srv .line.hot { stroke: #ff4a45; stroke-opacity: .3; }
.srv .pkt { fill: #60c6f0; filter: url(#srv-glow); animation: srv-pkt 1.4s linear infinite; }
.srv .pkt2 { fill: #60c6f0; animation: srv-pkt2 1s linear infinite; }
.srv .atk { fill: #ff8f88; filter: url(#srv-glow); animation: srv-atk 2.4s ease-in infinite; }
.srv .hit { fill: none; stroke: #ff4a45; stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: srv-hit 2.4s ease-out infinite; opacity: 0; }
.srv .ring { fill: none; stroke: #84ae1e; stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: sonar 3.2s ease-out infinite; opacity: 0; }
.srv .ring.r2 { animation-delay: 1.6s; }
.srv .shield { fill: rgba(132, 174, 30, .16); stroke: #84ae1e; stroke-width: 2; filter: url(#srv-glow); }
.srv .shield-check { fill: none; stroke: #c9ec6c; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.srv .rack { fill: #0d151d; stroke: #2b3b48; stroke-width: 1.5; }
.srv .holes { fill: #1c2a36; }
.srv .unit rect:first-child { fill: url(#srv-face); stroke: #2e3f4f; }
.srv .bay { fill: #0d151d; stroke: #33475a; }
.srv .grill { stroke: #3a4f63; stroke-width: 1.4; stroke-linecap: round; }
.srv .led { fill: #84ae1e; animation: srv-led 1.1s steps(2, start) infinite; }
.srv .power { fill: #84ae1e; filter: url(#srv-glow); }
.srv .stat { fill: #60c6f0; animation: srv-led 1.8s steps(2, start) infinite; }
.srv .panel { fill: #101922; stroke: #2b3b48; stroke-width: 1.5; }
.srv .live-dot { fill: #84ae1e; animation: livepulse 2s ease-out infinite; }
.srv .track { fill: #1f2d3a; }
.srv .bar { fill: #42a2c0; transform-box: fill-box; transform-origin: left; animation: srv-bar 3.2s ease-in-out infinite alternate; }
.srv .bar.fast { fill: #84ae1e; animation-duration: 2.1s; }
.srv .tick circle { fill: rgba(132, 174, 30, .2); stroke: #84ae1e; stroke-width: 1.2; }
.srv .tick path { fill: none; stroke: #c9ec6c; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 12; animation: srv-tick 4s ease-in-out infinite; }
.srv .lbl { fill: #8fa0b1; font-size: 11px; font-weight: 500; }
.srv .lbl.strong { fill: #e6ebf0; font-weight: 700; }
.srv .lbl.small { font-size: 9px; fill: #6f8090; }
.srv .big { fill: #fff; font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
@keyframes srv-pkt { 0% { transform: translateX(0); opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateX(148px); opacity: 0; } }
@keyframes srv-pkt2 { 0% { transform: translateX(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateX(46px); opacity: 0; } }
@keyframes srv-atk { 0% { transform: translateX(0); opacity: 0; } 8% { opacity: 1; } 68% { transform: translateX(74px); opacity: 1; } 74%, 100% { transform: translateX(74px); opacity: 0; } }
@keyframes srv-hit { 0%, 66% { transform: scale(.3); opacity: 0; } 70% { transform: scale(.6); opacity: .9; } 88%, 100% { transform: scale(2.2); opacity: 0; } }
@keyframes srv-led { 0% { opacity: 1; } 100% { opacity: .25; } }
@keyframes srv-bar { from { transform: scaleX(.35); } to { transform: scaleX(1); } }
@keyframes srv-tick { 0%, 15% { stroke-dashoffset: 12; } 35%, 100% { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .srv .pkt, .srv .pkt2, .srv .atk, .srv .hit, .srv .ring, .srv .led, .srv .stat, .srv .live-dot, .srv .bar, .srv .tick path { animation: none; }
  .srv .pkt, .srv .atk { opacity: 1; } .srv .pkt { transform: translateX(60px); } .srv .atk { transform: translateX(40px); }
  .srv .ring { opacity: .4; transform: scale(1.4); } .srv .bar { transform: scaleX(.7); } .srv .tick path { stroke-dashoffset: 0; }
}

/* --------------------------------------------------------------------------
   Domain-Suche (animiert) und eingebettetes Domainpreis-Widget
   -------------------------------------------------------------------------- */
.page-head-visual .dom { width: 100%; max-width: 660px; height: auto; }
.dom { display: block; overflow: visible; font-family: inherit; }
.dom .chip rect { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .13); }
.dom .chip text { fill: #a9b7c4; font-weight: 600; }
.dom .chip { animation: dom-float 11s ease-in-out infinite; }
.dom .bar { fill: rgba(255, 255, 255, .07); stroke: rgba(255, 255, 255, .16); stroke-width: 1.2; }
.dom .globe circle, .dom .globe path { fill: none; stroke: #7f90a0; stroke-width: 1.5; }
.dom .query { fill: #fff; font-size: 17px; font-weight: 600; }
.dom .query .tld { fill: #60c6f0; }
.dom .clip { transform-box: fill-box; transform-origin: left; animation: dom-type 7s infinite; }
.dom .caret { fill: #83b220; animation: dom-caret 1s steps(2, start) infinite, dom-caret-move 7s infinite; }
.dom .go circle { fill: #83b220; }
.dom .go .lens { fill: none; stroke: #fff; stroke-width: 2; }
.dom .go path { stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
.dom .row { opacity: 0; transform-box: fill-box; animation: dom-row 7s ease-out infinite; }
.dom .row > rect { fill: rgba(15, 23, 32, .55); stroke: rgba(255, 255, 255, .12); }
.dom .ok circle { fill: rgba(132, 174, 30, .18); stroke: #84ae1e; stroke-width: 1.4; }
.dom .ok path { fill: none; stroke: #c9ec6c; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dom .name { fill: #fff; font-size: 14px; font-weight: 600; }
.dom .name tspan { fill: #60c6f0; }
.dom .pill { fill: rgba(132, 174, 30, .16); }
.dom .pill-t { fill: #c9ec6c; font-size: 11.5px; font-weight: 700; }
.dom .price { fill: #c7d1db; font-size: 13.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
@keyframes dom-type { 0% { transform: scaleX(0); animation-timing-function: steps(17, end); } 14% { transform: scaleX(1); } 88% { transform: scaleX(1); } 92%, 100% { transform: scaleX(0); } }
@keyframes dom-caret-move { 0% { transform: translateX(0); animation-timing-function: steps(17, end); } 14% { transform: translateX(158px); } 88% { transform: translateX(158px); } 92%, 100% { transform: translateX(0); } }
@keyframes dom-caret { to { opacity: 0; } }
@keyframes dom-row { 0%, 15% { opacity: 0; transform: translateY(8px); } 21% { opacity: 1; transform: translateY(0); } 86% { opacity: 1; } 91%, 100% { opacity: 0; transform: translateY(0); } }
@keyframes dom-float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(3px, -9px); } }
@media (prefers-reduced-motion: reduce) {
  .dom .clip, .dom .caret, .dom .row, .dom .chip { animation: none; }
  .dom .clip { transform: scaleX(1); } .dom .row { opacity: 1; }
}
.domain-search { max-width: 760px; margin: 0 auto 40px; }

/* Original-Widget von rehost24.com/domainpreise.php an das Seitendesign angleichen */
.domain-price-widget .table-container { justify-content: stretch !important; }
.domain-price-widget .domaint { width: 100%; max-width: none !important; border-collapse: collapse; font-size: 15px; }
.domain-price-widget .domaint th, .domain-price-widget .domaint td { padding: 12px 16px !important; border-bottom: 1px solid var(--line); vertical-align: middle; }
.domain-price-widget .domaint thead tr { background: var(--bg) !important; }
.domain-price-widget .domaint th { font-weight: 700; }
.domain-price-widget .domaint tbody tr { background: transparent !important; }
.domain-price-widget .domaint tbody tr:nth-child(even) { background: rgba(31, 45, 61, .025) !important; }
.domain-price-widget .btn.btn-xs.btn-light-blue { min-height: 34px; padding: 0 14px !important; font-size: 13px; background: transparent; color: var(--ink); border-color: var(--line-strong); }
.domain-price-widget .btn.btn-xs.btn-light-blue:hover { background: var(--bg); border-color: var(--ink-3); }
.domain-price-widget .load-more-btn { display: inline-flex !important; align-items: center; min-height: 44px; padding: 0 22px !important; margin: 24px auto 0 !important; border-radius: var(--radius-sm) !important; border: 2px solid var(--green) !important; font-weight: 700; color: var(--ink) !important; background: transparent !important; }
.domain-price-widget .load-more-btn:hover { background: var(--green) !important; color: #fff !important; }
.domain-price-widget .fade-out-overlay { background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 85%) !important; }

/* --------------------------------------------------------------------------
   Breite Flat-Illustrationen der alten Seiten als Karte im dunklen Kopf
   -------------------------------------------------------------------------- */
.hero-banner { margin: 0; width: 100%; max-width: 640px; aspect-ratio: 2 / 1; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 24px 60px rgba(0, 0, 0, .35); background: #5fc0dd; }
.page-head-visual .hero-banner img { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: var(--pos, center); filter: none; }
.container.narrow { width: min(860px, 100% - 2 * var(--gutter)); }

/* --------------------------------------------------------------------------
   Themen-Illustrationen für dunkle Seitenköpfe (includes/ill-*.php, reines SVG + CSS)
   -------------------------------------------------------------------------- */
.page-head-visual .ill { width: 100%; max-width: 620px; height: auto; }
.ill { display: block; overflow: visible; font-family: inherit; }
.ill .panel { fill: #101922; stroke: #2b3b48; stroke-width: 1.5; }
.ill .panel2 { fill: #182430; stroke: #2f4050; stroke-width: 1.2; }
.ill .soft { fill: rgba(255, 255, 255, .06); stroke: rgba(255, 255, 255, .12); }
.ill .t { fill: #8fa0b1; font-size: 11px; font-weight: 500; }
.ill .t.w { fill: #e6ebf0; }
.ill .t.s { fill: #fff; font-size: 13px; font-weight: 700; }
.ill .t.big { fill: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.ill .t.teal { fill: #60c6f0; }
.ill .t.green { fill: #c9ec6c; font-weight: 700; }
.ill .ln { fill: rgba(255, 255, 255, .14); }
.ill .stroke { fill: none; stroke: #8fa0b1; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ill .stroke.w { stroke: #e6ebf0; }
.ill .green { fill: #84ae1e; } .ill .teal { fill: #42a2c0; } .ill .tealb { fill: #60c6f0; } .ill .red { fill: #ff8f88; }
.ill .glow { filter: url(#ill-glow); }
.ill .ok circle { fill: rgba(132, 174, 30, .18); stroke: #84ae1e; stroke-width: 1.4; }
.ill .ok path { fill: none; stroke: #c9ec6c; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ill .chip rect { fill: rgba(255, 255, 255, .06); stroke: rgba(255, 255, 255, .14); }
.ill .chip text { fill: #c7d1db; font-size: 11px; font-weight: 600; }
.ill .chip.g rect { fill: rgba(132, 174, 30, .16); stroke: rgba(132, 174, 30, .5); } .ill .chip.g text { fill: #c9ec6c; }
.ill .chip.b rect { fill: rgba(66, 162, 192, .16); stroke: rgba(66, 162, 192, .5); } .ill .chip.b text { fill: #8fd8f5; }
.ill .chip.r rect { fill: rgba(255, 74, 69, .14); stroke: rgba(255, 74, 69, .45); } .ill .chip.r text { fill: #ffb3ae; }
.ill .btn { fill: #83b220; } .ill .btn-t { fill: #fff; font-size: 12px; font-weight: 700; }
.ill .btn-o { fill: none; stroke: rgba(255, 255, 255, .3); stroke-width: 1.2; } .ill .btn-ot { fill: #c7d1db; font-size: 12px; font-weight: 700; }
.ill .dash { fill: none; stroke: rgba(96, 198, 240, .45); stroke-width: 1.5; stroke-dasharray: 4 6; }
.ill .shield { fill: rgba(132, 174, 30, .16); stroke: #84ae1e; stroke-width: 2; }
.ill .ring { fill: none; stroke: #84ae1e; stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: sonar 3.2s ease-out infinite; opacity: 0; }
.ill .ring.r2 { animation-delay: 1.6s; }
.ill .pulse { animation: ill-pulse 2.4s ease-in-out infinite; }
.ill .pop { transform-box: fill-box; transform-origin: center; transform: scale(0); opacity: 0; animation: ill-pop 1.2s ease-out 1 forwards; }
.ill .swap-a, .ill .swap-b { animation: ill-swap 6s ease-in-out infinite; } .ill .swap-b { animation-delay: -3s; }
.ill .mv { animation: ill-mv 3s linear infinite; }
.ill .grow { transform-box: fill-box; transform-origin: left; transform: scaleX(0); animation: ill-grow 1.6s ease-in-out .4s 1 forwards; }
.ill .spin { transform-box: fill-box; transform-origin: center; animation: ill-spin 5s linear infinite; }
.ill .dial { fill: none; stroke: #84ae1e; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 1 1000; animation: ill-dial 2.4s ease-out .3s 1 forwards; }
.ill .track { fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 8; }
.ill .rise { transform: translateY(70px); opacity: 0; animation: ill-rise 1.4s ease-out .8s 1 forwards; }
.ill .atk { animation: ill-atk 2.6s ease-in infinite; }
.ill .hit { fill: none; stroke: #ff4a45; stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: ill-hit 2.6s ease-out infinite; opacity: 0; }
@keyframes ill-pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
@keyframes ill-pop { 0% { transform: scale(0); opacity: 0; } 70% { transform: scale(1.15); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes ill-swap { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes ill-mv { 0% { transform: translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateX(var(--dx, 200px)); opacity: 0; } }
@keyframes ill-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes ill-spin { to { transform: rotate(360deg); } }
@keyframes ill-dial { from { stroke-dasharray: 1 1000; } to { stroke-dasharray: var(--len, 300) 1000; } }
@keyframes ill-rise { from { transform: translateY(70px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes ill-atk { 0% { transform: translateX(0); opacity: 0; } 8% { opacity: 1; } 68% { transform: translateX(var(--dx, 100px)); opacity: 1; } 74%, 100% { transform: translateX(var(--dx, 100px)); opacity: 0; } }
@keyframes ill-hit { 0%, 66% { transform: scale(.3); opacity: 0; } 70% { transform: scale(.6); opacity: .9; } 88%, 100% { transform: scale(2.2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ill .ring, .ill .pulse, .ill .pop, .ill .swap-a, .ill .swap-b, .ill .mv, .ill .grow, .ill .spin, .ill .dial, .ill .rise, .ill .atk, .ill .hit { animation: none; }
  .ill .ring { opacity: .4; transform: scale(1.4); } .ill .pop { transform: none; opacity: 1; } .ill .swap-b { opacity: 0; } .ill .rise { transform: none; opacity: 1; }
  .ill .mv { opacity: 1; transform: translateX(calc(var(--dx, 200px) / 2)); } .ill .grow { transform: scaleX(1); }
  .ill .dial { stroke-dasharray: var(--len, 300) 1000; } .ill .rise { transform: none; opacity: 1; } .ill .atk { opacity: 1; transform: translateX(calc(var(--dx, 100px) / 2)); }
}

/* --------------------------------------------------------------------------
   Angebotsseiten: Inhalt links, mitscrollende Preis-Sidebar rechts
   -------------------------------------------------------------------------- */
.offer { display: grid; grid-template-columns: minmax(0, 1fr) 380px; grid-template-areas: "main aside"; gap: 56px; align-items: start; }
.offer-main { grid-area: main; min-width: 0; }
.offer-aside { grid-area: aside; position: sticky; top: calc(var(--header-h) + 24px); }
.offer-aside .plan { padding: 26px 26px 22px; box-shadow: var(--shadow); }
.offer-aside .plan .btn { margin: 18px 0 16px; }
.offer-aside .plan ul { padding-top: 16px; }
.offer-aside .trust { display: grid; gap: 8px; margin-top: 16px; font-size: 13.5px; color: var(--ink-2); }
.offer-aside .trust li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; }
.offer-aside .trust svg { width: 18px; height: 18px; color: var(--green-700); margin-top: 1px; }
.offer-aside .price-note { margin-top: 14px; font-size: 12.5px; }
.offer-aside .example { display: flex; justify-content: space-between; gap: 12px; margin: 14px 0 0; padding: 10px 12px; font-size: 13.5px; color: var(--ink-2); background: var(--bg); border-radius: var(--radius-sm); }
.offer-aside .example b { white-space: nowrap; }
.offer-aside .example b { color: var(--ink); }
.offer-block + .offer-block { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.offer-block h2 { font-size: 22px; margin-bottom: 10px; }
.offer-block > p { color: var(--ink-2); max-width: 70ch; }
.offer-block .feature-list { margin-top: 24px; }
.offer-block .feature p { font-size: 15px; }
.keyfacts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 0 0 32px; }
.keyfacts li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14px; line-height: 1.45; color: var(--ink-2); display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.keyfacts svg { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--green-100); color: var(--green-700); }
.keyfacts b { display: block; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.content-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 40px; }
.content-panel .offer-block + .offer-block { margin-top: 36px; padding-top: 36px; }
.content-panel .faq details:last-child { border-bottom: 0; }
.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.more svg { width: 15px; height: 15px; }
@media (max-width: 1080px) { .offer { grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; } }
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; grid-template-areas: "aside" "main"; gap: 40px; }
  .offer-aside { position: static; }
  .keyfacts { grid-template-columns: 1fr; }
  .content-panel { padding: 24px 20px; }
}

/* Schritt-Karten mit Screenshot (Pagebuilder) */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.step figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg); }
.step figure img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.step .step-body { padding: 22px 24px 26px; }
.step .num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* SSD-Webhosting: Ladezeit-Animation */
.page-head-visual .ill.ssd { max-width: 720px; }
.ssd .nvme { fill: #16212b; stroke: #3a4f63; stroke-width: 1.2; }
.ssd .chip { fill: #0d151d; stroke: #33475a; }
.ssd .pins { stroke: #8593a3; stroke-width: 1.6; }
.ssd .stream { fill: none; stroke: rgba(96, 198, 240, .28); stroke-width: 1.5; stroke-dasharray: 3 5; }
.ssd .pk { fill: #60c6f0; filter: url(#ill-glow); offset-path: path("M150 200 C200 200 190 120 250 120 S330 110 330 110"); offset-rotate: 0deg; animation: ssd-pk 1.2s linear infinite; }
.ssd .ld { transform-box: fill-box; transform-origin: center; opacity: 0; animation: ssd-ld 6s ease-out infinite; }
.ssd .ld1 { animation-name: ssd-ld1; } .ssd .ld2 { animation-name: ssd-ld2; } .ssd .ld3 { animation-name: ssd-ld3; } .ssd .ld4 { animation-name: ssd-ld4; } .ssd .ld5 { animation-name: ssd-ld5; }
.ssd .ld6 { transform-box: fill-box; transform-origin: center; opacity: 0; animation: ssd-ld6 6s ease-out infinite; }
.ssd .track2 { fill: rgba(255, 255, 255, .1); }
.ssd .bar-fast { fill: url(#ssd-bar); transform-box: fill-box; transform-origin: left; animation: ssd-fast 6s ease-out infinite; }
.ssd .bar-slow { fill: #55657a; transform-box: fill-box; transform-origin: left; animation: ssd-slow 6s linear infinite; }
@keyframes ssd-pk { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes ssd-ld1 { 0%, 5% { opacity: 0; transform: scale(.96); } 8% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-ld2 { 0%, 8% { opacity: 0; transform: scale(.96); } 11% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-ld3 { 0%, 11% { opacity: 0; transform: scale(.96); } 14% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-ld4 { 0%, 13% { opacity: 0; transform: scale(.96); } 16% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-ld5 { 0%, 15% { opacity: 0; transform: scale(.96); } 18% { opacity: 1; transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-ld6 { 0%, 20% { opacity: 0; transform: scale(.6); } 24% { opacity: 1; transform: scale(1.1); } 27% { transform: scale(1); } 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes ssd-fast { 0%, 4% { transform: scaleX(0); } 18% { transform: scaleX(1); } 92% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
@keyframes ssd-slow { 0%, 4% { transform: scaleX(0); } 44% { transform: scaleX(1); } 92% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
@media (prefers-reduced-motion: reduce) {
  .ssd .pk, .ssd .ld, .ssd .ld6, .ssd .bar-fast, .ssd .bar-slow { animation: none; }
  .ssd .pk { offset-distance: 50%; opacity: 1; } .ssd .ld, .ssd .ld6 { opacity: 1; transform: none; } .ssd .bar-fast { transform: scaleX(1); } .ssd .bar-slow { transform: scaleX(.35); }
}

/* Gemeinsame Leistungen unter Preiskarten */
.included { margin-top: 28px; padding: 22px 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.included h3 { font-size: 15px; margin-bottom: 12px; }
.included .checklist { gap: 8px 24px; font-size: 15px; }
.included .checklist.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.included .checklist.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .included .checklist.cols-3, .included .checklist.cols-4 { grid-template-columns: 1fr; } }

/* Wartungsvertrag: Update-Ablauf */
.upd .track2 { fill: rgba(255, 255, 255, .1); }
.upd .prog { fill: #84ae1e; transform-box: fill-box; transform-origin: left; animation: upd-prog 9s linear infinite; }
.upd .st-a { animation: upd-sta 9s linear infinite; opacity: 0; }
.upd .st-b { animation: upd-stb 9s linear infinite; opacity: 0; }
.upd .v-old { animation: upd-vold 9s linear infinite; }
.upd .v-new { animation: upd-vnew 9s linear infinite; opacity: 0; }
.upd .rail { fill: none; stroke: rgba(255, 255, 255, .14); stroke-width: 2; }
.upd .runner { fill: #60c6f0; filter: url(#ill-glow); animation: upd-run 9s linear infinite; }
.upd .node circle:first-child { fill: #101922; stroke: #3a4f63; stroke-width: 1.6; transition: none; animation: upd-node 9s linear infinite; }
.upd .node .ic { fill: none; stroke: #8fa0b1; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; animation: upd-ic 9s linear infinite; }
.upd .lbl { fill: #8fa0b1; font-size: 11px; font-weight: 600; animation: upd-lbl 9s linear infinite; }
.upd .n1 circle:first-child, .upd .n1 .ic, .upd .l1 { animation-delay: 0s; }
.upd .n2 circle:first-child, .upd .n2 .ic, .upd .l2 { animation-delay: 1.6s; }
.upd .n3 circle:first-child, .upd .n3 .ic, .upd .l3 { animation-delay: 4.2s; }
.upd .n4 circle:first-child, .upd .n4 .ic, .upd .l4 { animation-delay: 5.6s; }
.upd .spin-upd { transform-box: fill-box; transform-origin: center; animation: upd-spin 9s linear infinite; }
@keyframes upd-node { 0%, 8% { fill: #101922; stroke: #3a4f63; } 10%, 90% { fill: rgba(132, 174, 30, .2); stroke: #84ae1e; } 96%, 100% { fill: #101922; stroke: #3a4f63; } }
@keyframes upd-ic { 0%, 8% { stroke: #8fa0b1; } 10%, 90% { stroke: #c9ec6c; } 96%, 100% { stroke: #8fa0b1; } }
@keyframes upd-lbl { 0%, 8% { fill: #8fa0b1; } 10%, 90% { fill: #e6ebf0; } 96%, 100% { fill: #8fa0b1; } }
@keyframes upd-run { 0%, 6% { transform: translateX(0); opacity: 0; } 8% { opacity: 1; } 24% { transform: translateX(113px); } 26% { transform: translateX(113px); } 52% { transform: translateX(227px); } 54% { transform: translateX(227px); } 68% { transform: translateX(340px); opacity: 1; } 72%, 100% { transform: translateX(340px); opacity: 0; } }
@keyframes upd-prog { 0%, 24% { transform: scaleX(0); } 50% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
@keyframes upd-sta { 0%, 22% { opacity: 0; } 25%, 52% { opacity: 1; } 55%, 100% { opacity: 0; } }
@keyframes upd-stb { 0%, 68% { opacity: 0; } 72%, 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes upd-vold { 0%, 50% { opacity: 1; } 53%, 92% { opacity: 0; } 96%, 100% { opacity: 1; } }
@keyframes upd-vnew { 0%, 50% { opacity: 0; } 53%, 92% { opacity: 1; } 96%, 100% { opacity: 0; } }
@keyframes upd-spin { 0%, 24% { transform: rotate(0deg); } 52% { transform: rotate(720deg); } 100% { transform: rotate(720deg); } }
@media (prefers-reduced-motion: reduce) {
  .upd .prog, .upd .st-a, .upd .st-b, .upd .v-old, .upd .v-new, .upd .runner, .upd .node circle:first-child, .upd .node .ic, .upd .lbl, .upd .spin-upd { animation: none; }
  .upd .prog { transform: scaleX(1); } .upd .st-a { opacity: 0; } .upd .st-b { opacity: 1; } .upd .v-old { opacity: 0; } .upd .v-new { opacity: 1; } .upd .runner { opacity: 0; }
  .upd .node circle:first-child { fill: rgba(132, 174, 30, .2); stroke: #84ae1e; } .upd .node .ic { stroke: #c9ec6c; } .upd .lbl { fill: #e6ebf0; }
}

/* Inhaltsbereiche der Mehrplan-Seiten in voller Breite */
.card-wide { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; padding: 32px 36px; }
.card-wide h3 { font-size: 22px; margin-bottom: 10px; }
.card-wide p { font-size: 16px; }
.faq.cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; align-items: start; }
.faq.cols-2 details:last-child { border-bottom: 0; }
.faq.cols-2 details:nth-last-child(2) { border-bottom: 1px solid var(--line); }
.faq.cols-2 details:nth-child(2) { border-top: 1px solid var(--line); }
@media (max-width: 900px) { .card-wide { grid-template-columns: 1fr; } .faq.cols-2 { grid-template-columns: 1fr; } }

/* Rechenzentrum: vollbreites Panorama unter dem Seitenkopf */
.dc-hero .page-head { padding-bottom: 8px; }
.dc-stage { position: relative; margin-top: 8px; }
.dc-stage .dc { display: block; width: 100%; height: clamp(220px, 27.5vw, 440px); }
.dc .sun { fill: rgba(240, 180, 41, .12); stroke: rgba(240, 180, 41, .5); stroke-width: 1.5; }
.dc .sun-halo { fill: url(#dc-sunhalo); }
.dc .cloud { fill: #1a2732; }
.dc .c1 { animation: dc-cloud 150s linear infinite; }
.dc .c2 { animation: dc-cloud 190s linear infinite; animation-delay: -95s; }
.dc .hill { fill: #131e28; }
.dc .ground { fill: url(#dc-ground); }
.dc .gline { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 1; }
.dc .tower { fill: #8fa0b1; }
.dc .hub, .dc .hubdot { fill: #dfe6ec; }
.dc .blade { fill: #c9d3dc; }
.dc .blades { transform-box: fill-box; transform-origin: center; animation: dc-spin 9s linear infinite; }
.dc .b2 { animation-duration: 7s; animation-delay: -3s; }
.dc .b3 { animation-duration: 6s; animation-delay: -1.5s; }
.dc .bank { fill: #172430; }
.dc .water { fill: rgba(66, 162, 192, .22); }
.dc .wave { fill: none; stroke: rgba(96, 198, 240, .55); stroke-width: 1.4; stroke-linecap: round; stroke-dasharray: 14 10; animation: dc-flow 3s linear infinite; }
.dc .wave.slow { stroke-dasharray: 8 16; animation-duration: 4.5s; }
.dc .dam { fill: #22323f; stroke: #2f4050; stroke-width: 1.2; }
.dc .pipe { fill: none; stroke: #3a4f63; stroke-width: 5; stroke-linecap: round; }
.dc .wheel { fill: none; stroke: #60c6f0; stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: dc-spin 3s linear infinite; }
.dc .outflow { fill: none; stroke: rgba(96, 198, 240, .5); stroke-width: 2; stroke-dasharray: 6 6; animation: dc-flow 1.6s linear infinite; }
.dc .pylon { fill: none; stroke: #55657a; stroke-width: 2; stroke-linejoin: round; }
.dc .wire { fill: none; stroke: rgba(255, 255, 255, .16); stroke-width: 1.5; }
.dc .pulse { fill: #c9ec6c; filter: url(#dc-glow); offset-rotate: 0deg; animation: dc-pulse 3s linear infinite; }
.dc .pA { offset-path: path("M150 286 Q265 330 380 282"); animation-duration: 2.4s; }
.dc .pB { offset-path: path("M380 282 Q555 320 730 272 Q780 262 812 250"); animation-duration: 3.6s; }
.dc .pC { offset-path: path("M640 346 Q690 320 730 272"); animation-duration: 2s; }
.dc .win { fill: rgba(255, 255, 255, .05); stroke: rgba(255, 255, 255, .1); }
.dc .led { fill: #60c6f0; animation: dc-led 2.6s ease-in-out infinite; }
.dc .led.g { fill: #84ae1e; }
.dc .door { fill: #182430; stroke: #2f4050; }
.dc .warm { fill: none; stroke: rgba(255, 143, 136, .6); stroke-width: 3; stroke-dasharray: 5 7; animation: dc-flow 2s linear infinite; }
.dc .cold { fill: none; stroke: rgba(96, 198, 240, .65); stroke-width: 3; stroke-dasharray: 5 7; animation: dc-flow 2s linear infinite; }
.dc .fan { fill: #0d151d; stroke: #3a4f63; stroke-width: 1.4; }
.dc .fan-blades { fill: #8fa0b1; transform-box: fill-box; transform-origin: center; animation: dc-spin 1.4s linear infinite; }
.dc .fin { fill: none; stroke: #2f4050; stroke-width: 1.2; }
.dc .f2 { animation-duration: 1.7s; animation-delay: -.5s; }
.dc .mast { stroke: #55657a; stroke-width: 2; }
.dc .beacon { fill: #ff8f88; filter: url(#dc-glow); animation: dc-led 1.8s ease-in-out infinite; }
.dc .trunk { fill: #3b4a5a; }
.dc .canopy { fill: #234631; stroke: #33633f; stroke-width: 1.2; }
.dc .tree { transform-box: fill-box; transform-origin: 50% 100%; animation: dc-sway 5s ease-in-out infinite alternate; }
.dc .t2 { animation-duration: 6.5s; animation-delay: -2s; } .dc .t3 { animation-duration: 5.5s; animation-delay: -4s; }
.dc .t4 { animation-duration: 7s; animation-delay: -1s; } .dc .t5 { animation-duration: 6s; animation-delay: -3s; }
@keyframes dc-spin { to { transform: rotate(360deg); } }
@keyframes dc-flow { to { stroke-dashoffset: -48; } }
@keyframes dc-pulse { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes dc-led { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }
@keyframes dc-sway { from { transform: rotate(-1.5deg); } to { transform: rotate(1.5deg); } }
@keyframes dc-cloud { from { transform: translateX(-620px); } to { transform: translateX(1400px); } }
@media (prefers-reduced-motion: reduce) {
  .dc .c1, .dc .c2, .dc .blades, .dc .wave, .dc .wheel, .dc .outflow, .dc .pulse, .dc .led, .dc .beacon, .dc .warm, .dc .cold, .dc .fan-blades, .dc .tree { animation: none; }
  .dc .pulse { offset-distance: 50%; opacity: 1; } .dc .led { opacity: .8; }
}
