/* ═══════════════════════════════════════════════════════════════
   Swizz-IT – Homepage Dark Theme
   Lädt nach site.css; überschreibt und ergänzt für die Startseite.
   Nur CSS – kein PHP, kein JS, keine HTML-Änderungen.
   ═══════════════════════════════════════════════════════════════ */


/* ══ 1. Schweizer-Kreuz: wiederverwendbare CSS-Komponente ══════ */

.schweizer-kreuz {
  display: inline-flex;
  position: relative;
  width: 20px;
  height: 20px;
  background: var(--hf-rot);
  border-radius: 3px;
  flex-shrink: 0;
}
.schweizer-kreuz::before {
  content: '';
  position: absolute;
  background: #fff;
  width: 32%;
  height: 64%;
  top: 18%;
  left: 34%;
}
.schweizer-kreuz::after {
  content: '';
  position: absolute;
  background: #fff;
  width: 64%;
  height: 32%;
  top: 34%;
  left: 18%;
}


/* ══ 2. Seiten-Basis: dunkler Hintergrund ══════════════════════ */

body.page-home {
  background: var(--hf-dunkel);
  color: var(--hf-text);
  --hf-text-dim: #8fa3bf;
}


/* Kein horizontaler Scroll durch Breakout-Sektionen */
.site {
  overflow-x: hidden;
}


/* ══ 3. Navigation: Glassmorphism (nur auf Homepage) ═══════════ */

body.page-home .site-header {
  background: rgba(5, 13, 26, 0.80);
  border-bottom: 1px solid var(--hf-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

body.page-home .brand,
body.page-home .brand__text { color: var(--hf-text); }


body.page-home .nav__link { color: rgba(226, 234, 244, 0.68); }
body.page-home .nav__link:hover {
  color: var(--hf-text);
  background: rgba(255, 255, 255, 0.07);
}
body.page-home .nav__link.is-active  { color: var(--hf-gruen); font-weight: 700; }
body.page-home .nav__separator       { background: rgba(255,255,255,0.12); }
body.page-home .nav-toggle           { color: var(--hf-text); border-color: rgba(255,255,255,0.22); }
body.page-home .nav__link--cta       { background: var(--hf-gruen); color: #fff; }
body.page-home .nav__link--cta:hover { background: #217f74; }


/* ══ 4. Hero ════════════════════════════════════════════════════ */

.hero-v2 {
  position: relative;
  background: var(--hf-dunkel);
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Hintergrund: tiefes Leuchten */
.hero-v2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 44%, rgba(42,157,143,0.14) 0%, transparent 62%),
    radial-gradient(ellipse 40% 55% at 20% 80%, rgba(220,20,60,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(5,13,26,0.95) 0%, transparent 80%);
  pointer-events: none;
}

/* Statisches SVG-Netzwerk: sanftes Pulsieren */
.hero-v2__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.40;
  animation: network-pulse 9s ease-in-out infinite;
}

@keyframes network-pulse {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.50; }
}

/* Zweispalten-Grid: Text links, Globus rechts */
.hero-v2__inner {
  flex: 1;
  width: min(1680px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 48px 72px;
  align-items: center;
  padding: calc(var(--header-h) + 52px) 0 36px;
  position: relative;
  z-index: 1;
}

/* Eyebrow als grünes Badge */
.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 157, 143, 0.12);
  border: 1px solid rgba(42, 157, 143, 0.30);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #3dd6c7;
  margin-bottom: 22px;
  box-shadow: 0 0 22px rgba(42,157,143,0.10);
}

/* Pulsierender grüner Punkt */
.hero-v2__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hf-gruen);
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(42,157,143,0.85);
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Headline: weiss, Akzent als Teal-Gradient */
.hero-v2__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 22px;
}

.hero-v2__accent {
  background: linear-gradient(135deg, #2a9d8f 0%, #3dd6c7 55%, #5ef0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.hero-v2__accent-teal {
  color: #2a9d8f;
  -webkit-text-fill-color: #3dd6c7;
  display: inline-block;
}

.hero-v2__accent-rot {
  color: #dc143c;
  -webkit-text-fill-color: #dc143c;
  display: inline-block;
  text-shadow: 0 0 30px rgba(220,20,60,0.4);
}

.hero-v2__text {
  font-size: 1.08rem;
  color: rgba(226, 234, 244, 0.82);
  line-height: 1.74;
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

/* Haupt-CTA: grün */
.hero-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--hf-gruen);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(42,157,143,0.38), 0 0 0 1px rgba(42,157,143,0.15) inset;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hero-v2__btn:hover {
  background: #217f74;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(42,157,143,0.48);
}

/* Ghost-CTA: weisser Rand */
.hero-v2__btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-v2__btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
}

/* Trust-Zeilen */
.hero-v2__trust {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
}

/* Server-Rack Visual */
.hero-v2__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-server-rack {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 24px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 40px rgba(42,157,143,0.18));
}

/* Metriken-Leiste: Glassmorphism */
.hero-v2__metrics {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 46px; /* Platz für Scroll-Pfeil */
}

.hero-v2__metrics-inner {
  width: min(1680px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-v2__metric {
  padding: 24px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-v2__metric:last-child { border-right: none; }

/* Metriken: starke Zahl */
.hero-v2__metric strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hf-gruen);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.hero-v2__metric span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* "Schweiz"-Metrik: roter Akzent */
.hero-v2__metrics-inner .hero-v2__metric:nth-child(3) strong {
  color: #ef4444;
}

/* Scroll-Pfeil: animierter Chevron */
.hero-v2__metrics::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-right: 2.5px solid rgba(42,157,143,0.65);
  border-bottom: 2.5px solid rgba(42,157,143,0.65);
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) rotate(45deg) translateY(0);  opacity: 0.5; }
  50%       { transform: translateX(-50%) rotate(45deg) translateY(8px); opacity: 1; }
}


/* ══ 5. Eyebrow & Abschnittstitel ════════════════════════════ */

/* .eyebrow taucht in jeder Section auf */
body.page-home .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--hf-gruen);
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--hf-text);
  margin: 8px 0 12px;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--hf-text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-text {
  color: var(--hf-text-dim);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0 0 20px;
}


/* ══ 6. Domain-Check ════════════════════════════════════════ */

.domain-check-section {
  padding: 52px 0;
}

.domain-check-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hf-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 32px 64px rgba(0,0,0,0.4);
  text-align: center;
}

.domain-check__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 8px 0 6px;
  color: var(--hf-text);
}

.domain-check__sub {
  color: var(--hf-text-dim);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.domain-check-form { margin-bottom: 20px; }

.domain-check-input-row {
  display: flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.domain-check-input-row:focus-within {
  border-color: var(--hf-gruen);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.18);
}

.domain-check-prefix {
  padding: 0 10px 0 16px;
  color: var(--hf-text-dim);
  font-size: 0.95rem;
  white-space: nowrap;
}

.domain-check-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 8px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--hf-text);
  background: transparent;
  min-width: 0;
}
.domain-check-input::placeholder { color: var(--hf-text-dim); }

.domain-check-tld {
  border: none;
  border-left: 1px solid rgba(255,255,255,0.10);
  padding: 14px 12px;
  font-size: 0.9rem;
  color: var(--hf-text);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
}
.domain-check-tld option { background: #0d1e30; }

.domain-check-btn {
  border-radius: 0 10px 10px 0;
  padding: 14px 24px;
  white-space: nowrap;
}

.domain-check-loading,
.domain-check-error { margin: 12px 0 0; color: var(--hf-text-dim); font-size: 0.9rem; }
.domain-check-error { color: #f87171; }

.domain-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin: 12px auto 0;
}

.domain-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.9rem;
}
.domain-result--available {
  border-color: rgba(42,157,143,0.38);
  background: rgba(42,157,143,0.07);
}
.domain-result--taken {
  border-color: rgba(220,20,60,0.28);
  background: rgba(220,20,60,0.05);
}
.domain-result__name { font-weight: 600; color: var(--hf-text); }
.domain-result--available .domain-result__status { color: #3dd6c7; font-weight: 600; }
.domain-result--taken    .domain-result__status { color: #f87171; }
.domain-result__btn { padding: 5px 14px; font-size: 0.8rem; margin-left: auto; }

.domain-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
  overflow: hidden;
}
.domain-price-item { display: flex; align-items: center; gap: 5px; font-size: 0.85rem; }
.domain-ext  { font-weight: 700; color: var(--hf-text); }
.domain-cost { color: var(--hf-text-dim); }


/* ══ 7. Feature-Tiles ════════════════════════════════════════ */

.features-section { padding: 68px 0; }

.features-header { text-align: center; margin-bottom: 48px; }

.features-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hf-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.feature-tile:hover {
  border-color: rgba(42,157,143,0.45);
  box-shadow: 0 0 22px rgba(42,157,143,0.18), 0 8px 32px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}

.feature-tile__icon {
  width: 44px;
  height: 44px;
  background: rgba(42,157,143,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--hf-gruen);
}
.feature-tile__icon svg { width: 22px; height: 22px; }

.feature-tile h3 { font-size: 1rem; font-weight: 700; color: var(--hf-text); margin: 0 0 8px; }
.feature-tile p  { font-size: 0.9rem; color: var(--hf-text-dim); margin: 0; line-height: 1.6; }


/* ══ 8. Preisvorschau ═══════════════════════════════════════ */

.pricing-preview-section {
  padding: 68px 0;
  background: rgba(255,255,255,0.025);
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-preview-header { text-align: center; margin-bottom: 40px; }

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.pricing-preview-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hf-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* Empfohlene Card: grüner Leucht-Ring */
.pricing-preview-card--featured {
  border-color: rgba(42,157,143,0.60);
  box-shadow: 0 0 0 1px rgba(42,157,143,0.35), 0 0 48px rgba(42,157,143,0.14);
}
.pricing-preview-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(42,157,143,0.55), 0 0 60px rgba(42,157,143,0.20), 0 16px 48px rgba(0,0,0,0.4);
}

.pricing-preview-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hf-gruen);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(42,157,143,0.35);
}

.pricing-preview-card__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hf-text-dim);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pricing-preview-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.pricing-preview-card__amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--hf-text);
  line-height: 1;
}
.pricing-preview-card__unit { font-size: 0.9rem; color: var(--hf-text-dim); }

.pricing-preview-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-preview-list li {
  font-size: 0.9rem;
  color: var(--hf-text-dim);
  padding-left: 20px;
  position: relative;
}
.pricing-preview-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hf-gruen);
  font-weight: 700;
}

.pricing-preview-card__cta {
  width: 100%;
  text-align: center;
  display: block;
}

/* Für nicht-featured: Ghost-Variante auf dunklem Hintergrund */
body.page-home .pricing-preview-card .button--ghost {
  border-color: rgba(255,255,255,0.22);
  color: var(--hf-text);
}
body.page-home .pricing-preview-card .button--ghost:hover {
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.06);
}

.pricing-preview-footer { text-align: center; margin-top: 28px; }

.link-more {
  color: var(--hf-gruen);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.link-more:hover { text-decoration: underline; }


/* ══ 9. Showcase & Infra ════════════════════════════════════ */

.showcase-section { padding: 76px 0; }

.infra-section {
  padding: 76px 0;
  background: rgba(255,255,255,0.018);
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  border-top: 1px solid rgba(255,255,255,0.055);
}

/* Zweispaltig: Text | Visual */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: min(1680px, 94vw);
  margin: 0 auto;
}

/* Reihenfolge umkehren bei --reverse */
.showcase-grid--reverse { direction: rtl; }
.showcase-grid--reverse > * { direction: ltr; }

.showcase-text { display: flex; flex-direction: column; }
.showcase-text .button { align-self: flex-start; margin-top: 8px; }

/* Button auf dunklem Hintergrund */
body.page-home .showcase-text .button--ghost {
  border-color: rgba(255,255,255,0.24);
  color: var(--hf-text);
}

.showcase-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showcase-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--hf-text-dim);
  line-height: 1.55;
}
.showcase-checklist li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%232a9d8f' fill-opacity='.18'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%232a9d8f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.showcase-visual {}

/* Showcase SVG (Portal-Mockup): dunkler Rand, Schatten */
.showcase-visual svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 24px 64px rgba(0,0,0,0.55),
    0 0 40px rgba(42,157,143,0.06);
}

/* Infra-Badges */
.infra-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 24px;
}

.infra-badge {
  background: rgba(42,157,143,0.09);
  color: #3dd6c7;
  border: 1px solid rgba(42,157,143,0.28);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Infra: "Infrastruktur"-Eyebrow mit rotem Akzent */
.infra-section .eyebrow,
body.page-home .infra-section .eyebrow {
  color: var(--hf-rot);
  border-color: rgba(220,20,60,0.20);
}


/* ══ 10. Infra-DC-Karte ══════════════════════════════════════ */

.infra-dc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hf-border);
  border-top: 2px solid rgba(220,20,60,0.38); /* Schweiz-Rot-Akzent */
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 24px 56px rgba(0,0,0,0.45);
}

.infra-dc-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.infra-dc-card__loc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.infra-dc-card__loc-main {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hf-text);
  line-height: 1.3;
}

.infra-dc-card__loc-sub {
  font-size: 0.78rem;
  color: var(--hf-text-dim);
  margin-top: 2px;
}

/* Live-Badge */
.infra-dc-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
  white-space: nowrap;
  flex-shrink: 0;
}

.infra-dc-live__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.80);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.85); }
}

/* Metriken im DC-Panel */
.infra-dc-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-dc-metric {}

.infra-dc-metric__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.infra-dc-metric__label {
  font-size: 0.8rem;
  color: var(--hf-text-dim);
  font-weight: 500;
}

.infra-dc-metric__val {
  font-size: 0.8rem;
  color: var(--hf-text);
  font-weight: 700;
}

.infra-dc-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.infra-dc-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #2a9d8f, #3dd6c7);
  border-radius: 999px;
  transition: width 1s ease;
}

.infra-dc-bar__fill--low {
  background: linear-gradient(90deg, #f59e0b, #fcd34d);
}

/* Dienste-Liste */
.infra-dc-card__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.infra-dc-service {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--hf-text-dim);
  font-weight: 500;
}

.infra-dc-service__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
  flex-shrink: 0;
}

.infra-dc-service--ok .infra-dc-service__dot {
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34,197,94,0.55);
}

.infra-dc-service--ok { color: rgba(226,234,244,0.75); }

/* Card-Footer */
.infra-dc-card__footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.infra-dc-uptime-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
}

.infra-dc-uptime-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}


/* ══ 11. CTA-Sektion ════════════════════════════════════════ */

.cta-v2 {
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  background: linear-gradient(135deg, #080f1e 0%, #0b1e1a 48%, #1a060c 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtiler roter Schweiz-Glow in der Ecke */
.cta-v2::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(220,20,60,0.14) 0%, transparent 65%);
  pointer-events: none;
}

/* Teal-Glow links oben */
.cta-v2::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(42,157,143,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.cta-v2__inner {
  width: min(700px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-v2__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin: 8px 0 16px;
  line-height: 1.2;
}

.cta-v2__text {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-v2__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

/* Haupt-Button: grüner Glow */
.cta-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hf-gruen);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(42,157,143,0.40), 0 0 0 1px rgba(42,157,143,0.20) inset;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-v2__btn:hover {
  background: #217f74;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42,157,143,0.50);
}

/* Ghost-Button: weiss transparent */
.cta-v2__btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-v2__btn-ghost:hover {
  border-color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.07);
}

.cta-v2__note {
  color: rgba(255,255,255,0.38);
  font-size: 0.85rem;
  margin: 0;
}


/* ══ 12. Scroll-Reveal Animationen (bidirektional) ═══════════ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.0s cubic-bezier(0.16,1,0.3,1), transform 1.0s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal.is-visible  { opacity: 1; transform: none; }
.scroll-reveal.is-leaving  { opacity: 0; transform: translateX(36px); }

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 1.0s cubic-bezier(0.16,1,0.3,1), transform 1.0s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal-left.is-visible { opacity: 1; transform: none; }
.scroll-reveal-left.is-leaving  { opacity: 0; transform: translateX(44px); }

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 1.0s cubic-bezier(0.16,1,0.3,1), transform 1.0s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal-right.is-visible { opacity: 1; transform: none; }
.scroll-reveal-right.is-leaving  { opacity: 0; transform: translateX(-44px); }



/* ══ 13. Responsives Layout ══════════════════════════════════ */

/* ══ Mobile Navigation Dark Theme (nur auf Homepage) ════════ */

@media (max-width: 900px) {
  body.page-home .site-header {
    position: fixed;
    flex-wrap: wrap;
  }

  body.page-home .nav {
    background: rgba(5, 13, 26, 0.98);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 10px 12px 16px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  }

  body.page-home .nav__link {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 234, 244, 0.85);
    border-radius: 10px;
  }

  body.page-home .nav__link:hover {
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
  }

  body.page-home .nav__link.is-active {
    background: rgba(42, 157, 143, 0.14);
    color: var(--hf-gruen);
  }

  body.page-home .nav__link--cta {
    background: var(--hf-gruen);
    color: #fff;
  }

  body.page-home .nav__link--cta:hover {
    background: #217f74;
  }

  body.page-home .nav__separator {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-v2__inner { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
  .features-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .showcase-grid--reverse { direction: ltr; }
  .pricing-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-v2__inner {
    grid-template-columns: 1fr;
    padding: calc(var(--header-h) + 36px) 0 24px;
    gap: 32px;
    text-align: center;
  }
  .hero-v2__eyebrow { margin: 0 auto 18px; }
  .hero-v2__actions { justify-content: center; }
  .hero-v2__trust   { justify-content: center; }
  .hero-v2__text    { margin-left: auto; margin-right: auto; }

  .hero-v2__metrics-inner { grid-template-columns: 1fr 1fr; }

  .domain-check-card  { padding: 24px 16px; }
  .domain-check-input-row { flex-wrap: wrap; }
  .domain-check-input { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .domain-check-prefix { display: none; }
  .domain-check-tld { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); flex: 1; }
  .domain-check-btn { border-radius: 0 0 10px 10px; width: 100%; }

  .features-grid-6 { grid-template-columns: 1fr; }
  .pricing-preview-grid { grid-template-columns: 1fr; max-width: 400px; }
  .infra-dc-card__services { grid-template-columns: repeat(2, 1fr); }

  .cta-v2__actions { flex-direction: column; align-items: stretch; }
  .cta-v2__btn, .cta-v2__btn-ghost { width: 100%; justify-content: center; }

  .showcase-section, .infra-section { padding: 52px 0; }
  .features-section, .pricing-preview-section { padding: 44px 0; }
}

@media (max-width: 480px) {
  .hero-v2__metrics-inner { grid-template-columns: 1fr 1fr; }
  .hero-v2__trust { flex-direction: column; align-items: center; }
  .features-section, .pricing-preview-section { padding: 36px 0; }
  .hero-server-rack { max-width: 100%; }
}


/* ══ 14. Mittlere Sektionen: heller Hintergrund (wie vor dem Dark-Theme) ═ */

body.page-home .domain-check-section,
body.page-home .features-section,
body.page-home .showcase-section {
  background: var(--bg);
}

body.page-home .pricing-preview-section {
  background: var(--bg-soft);
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}

body.page-home .infra-section {
  background: var(--bg-soft);
  border-top-color: var(--line);
}

/* Texte in hellen Sektionen auf dunkle Tintenfarben umschalten */
body.page-home .domain-check__title,
body.page-home .features-section .section-title,
body.page-home .pricing-preview-section .section-title,
body.page-home .showcase-section .section-title,
body.page-home .infra-section .section-title { color: var(--ink); }

body.page-home .domain-check__sub,
body.page-home .features-section .section-subtitle,
body.page-home .pricing-preview-section .section-subtitle,
body.page-home .showcase-section .section-text,
body.page-home .infra-section .section-text { color: var(--ink-muted); }

/* Domain-Check: helles Card-Design */
body.page-home .domain-check-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-home .domain-check-input-row {
  background: var(--bg-soft);
  border-color: var(--line);
}
body.page-home .domain-check-input-row:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(42,157,143,0.15);
}
body.page-home .domain-check-input       { color: var(--ink); }
body.page-home .domain-check-input::placeholder { color: var(--ink-faint); }
body.page-home .domain-check-prefix      { color: var(--ink-muted); }
body.page-home .domain-check-tld         { background: var(--bg-soft); border-left-color: var(--line); color: var(--ink); }
body.page-home .domain-check-tld option  { background: #fff; }
body.page-home .domain-ext               { color: var(--ink); }
body.page-home .domain-cost              { color: var(--ink-muted); }
body.page-home .domain-prices            { border-top-color: var(--line); }
body.page-home .domain-result            { background: var(--surface); border-color: var(--line); }
body.page-home .domain-result__name      { color: var(--ink); }

/* Feature-Tiles: helles Design */
body.page-home .feature-tile {
  background: var(--surface);
  border-color: var(--line);
}
body.page-home .feature-tile:hover {
  border-color: var(--brand);
  box-shadow: 0 0 18px rgba(42,157,143,0.12), 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
body.page-home .feature-tile__icon { background: var(--brand-soft); }
body.page-home .feature-tile h3    { color: var(--ink); }
body.page-home .feature-tile p     { color: var(--ink-muted); }

/* Pricing-Cards: helles Design */
body.page-home .pricing-preview-card {
  background: var(--surface);
  border-color: var(--line);
}
body.page-home .pricing-preview-card:hover  { box-shadow: var(--shadow-lg); }
body.page-home .pricing-preview-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(42,157,143,0.35), var(--shadow-lg);
}
body.page-home .pricing-preview-card__amount { color: var(--ink); }
body.page-home .pricing-preview-card__name   { color: var(--ink-muted); }
body.page-home .pricing-preview-card__unit   { color: var(--ink-muted); }
body.page-home .pricing-preview-list li      { color: var(--ink-muted); }
body.page-home .pricing-preview-card .button--ghost {
  border-color: var(--line);
  color: var(--ink);
}
body.page-home .pricing-preview-card .button--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--brand);
  color: var(--brand);
}
body.page-home .link-more { color: var(--brand); }

/* Showcase: Text auf hellem Grund */
body.page-home .showcase-checklist li  { color: var(--ink-muted); }
body.page-home .showcase-visual svg    { box-shadow: var(--shadow-lg); }

/* Infra-Section: Badges auf hellem Grund */
body.page-home .infra-badge {
  background: var(--brand-soft);
  color: var(--brand-strong);
  border-color: rgba(42,157,143,0.25);
}

/* Infra-DC-Karte: alle Texte auf hellem Hintergrund lesbar machen */
body.page-home .infra-dc-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-lg);
}

body.page-home .infra-dc-card__loc-main { color: var(--ink); }
body.page-home .infra-dc-card__loc-sub  { color: var(--ink-muted); }

body.page-home .infra-dc-metric__label  { color: var(--ink-muted); }
body.page-home .infra-dc-metric__val    { color: var(--ink); }

body.page-home .infra-dc-bar            { background: rgba(0,0,0,0.08); }

body.page-home .infra-dc-service--ok    { color: var(--ink); }

body.page-home .infra-dc-card__footer   { border-top-color: var(--line); }

body.page-home .infra-dc-live {
  background: rgba(22,163,74,0.12);
  color: #16a34a;
}

body.page-home .infra-dc-uptime-pill {
  background: rgba(22,163,74,0.10);
  color: #16a34a;
}
