/* Public site styles for the marketing pages */

@charset "UTF-8";

/* Design variables */
:root {
  color-scheme: light;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --header-h: 64px;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --ink: #0f172a;
  --ink-muted: #475569;
  --ink-faint: #94a3b8;
  --brand: #2a9d8f;
  --brand-strong: #217f74;
  --brand-rgb: 42, 157, 143;
  --brand-soft: #edfafa;
  --line: #e2e8f0;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);

  /* Dark-Theme-Variablen (Homepage) */
  --hf-dunkel:      #050d1a;
  --hf-surface:     rgba(255, 255, 255, 0.04);
  --hf-gruen:       #2a9d8f;
  --hf-gruen-glow:  rgba(42, 157, 143, 0.25);
  --hf-rot:         #dc143c;
  --hf-rot-glow:    rgba(220, 20, 60, 0.15);
  --hf-text:        #e2eaf4;
  --hf-text-dim:    #6b7fa3;
  --hf-border:      rgba(255, 255, 255, 0.08);
}

/* Base reset */
* {
  box-sizing: border-box;
}

/* Page base */
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
}

body {
  line-height: 1.5;
}

/* Main page wrapper */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Shared content width */
.container {
  width: min(1680px, 94vw);
  margin: 0 auto;
}

/* ── Fixed Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Transparenter Header über dem dunklen Hero */
.site-header--on-hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.site-header--on-hero .brand__text,
.site-header--on-hero .brand { color: #fff !important; }
.site-header--on-hero .nav__link { color: rgba(255,255,255,0.88) !important; }
.site-header--on-hero .nav__link:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.site-header--on-hero .nav__link--cta { background: var(--brand) !important; color: #fff !important; }
.site-header--on-hero .nav__separator { background: rgba(255,255,255,0.2) !important; }
.site-header--on-hero .nav-toggle { color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }

.header__row {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  padding: 14px 0;
}

.header__brand-group {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  min-width: 0;
}

/* Logo-Link */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 26px;
  height: 26px;
  color: var(--brand);
  flex: 0 0 auto;
}

.brand__text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand__tagline {
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Mobiler Menu-Button */
.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.nav-toggle:hover {
  background: var(--bg-soft);
}

/* Trennlinie in der Nav */
.nav__separator {
  width: 1px;
  height: 18px;
  background: var(--line);
  flex: 0 0 auto;
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 7px 12px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.nav__link:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

/* Aktiver Navigationspunkt */
.nav__link.is-active {
  color: var(--brand);
  font-weight: 700;
}

/* CTA-Button in der Nav */
.nav__link--cta {
  background: var(--brand);
  color: #fff;
  padding: 8px 18px;
  box-shadow: 0 2px 10px rgba(var(--brand-rgb), 0.3);
}

.nav__link--cta:hover {
  background: var(--brand-strong);
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--brand-rgb), 0.35);
}

/* Shared focus states */
.nav__link:focus-visible,
.nav-toggle:focus-visible,
.button:focus-visible,
.button--ghost:focus-visible,
.footer-link:focus-visible,
.link:focus-visible,
.tld-card:focus-visible {
  outline: 2px solid rgba(var(--brand-rgb), 0.75);
  outline-offset: 2px;
}

/* Main content area */
.site-main {
  flex: 1;
  padding: var(--header-h) 0 80px;
  background: var(--bg);
  box-shadow: inset 0 30px 60px rgba(15, 17, 21, 0.05);
}

/* Homepage: kein Top-Padding — Hero startet direkt hinter dem fixed Header */
body.page-home .site-main {
  padding-top: 0;
}

/* Footer area */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 60px;
  color: #c9d1dd;
  font-size: 0.95rem;
  background: #0a1513;
}

/* Footer-Innenbereich */
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Footer column layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

/* Copyright-Zeile */
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(201, 209, 221, 0.6);
}

/* Footer heading */
.footer-title {
  font-weight: 700;
  color: #f4f6fb;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

/* Footer paragraph */
.footer-text {
  color: #c9d1dd;
  line-height: 1.6;
}

/* Footer link */
.footer-link {
  display: block;
  color: #c9d1dd;
  text-decoration: none;
  margin: 6px 0;
  cursor: pointer;
}

/* Footer link hover */
.footer-link:hover {
  color: #ffffff;
}

/* Static footer text that should not look clickable */
.footer-link--static {
  cursor: default;
}

/* Keep static footer text unchanged on hover */
.footer-link--static:hover {
  color: #c9d1dd;
}

/* Small section intro text */
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
  align-items: center;
  padding: 80px 0 64px;
}

/* Linke Textspalte */
.hero__content {
  max-width: 600px;
}

/* Kleines Label über dem Titel */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}

/* Hauptüberschrift */
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink);
}

.hero__title-accent {
  color: var(--brand);
}

/* Fliesstext */
.hero__text {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}

/* Aktions-Buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__btn-primary {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero__btn-ghost {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Vertrauens-Badges */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* Rechte Illustration-Spalte */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illustration {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.10));
  border-radius: 20px;
}

/* Metriken-Streifen unter dem Hero */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 72px;
  overflow: hidden;
}

.hero-metric {
  background: var(--surface);
  padding: 24px 20px;
  text-align: center;
}

.hero-metric__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-metric__label {
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ── Domain-Sektion ──────────────────────────────────────────── */
.domain-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin: 72px 0 72px;
  padding: 56px 40px;
}

.domain-section__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── Features ────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}

.feature-item:hover {
  box-shadow: var(--shadow);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.feature-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.feature-item__text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA-Sektion ─────────────────────────────────────────────── */
.cta-section {
  background: var(--brand);
  border-radius: var(--radius-lg);
  margin: 72px 0 72px;
  overflow: hidden;
}

.cta-section__inner {
  padding: 56px 48px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0 0 28px;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-section__btn {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
  padding: 14px 28px;
}

.cta-section__btn:hover {
  background: #f0fafa;
  transform: translateY(-1px);
}

.cta-section__btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.cta-section__btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Shared button row */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
}

/* Primary button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: var(--brand);
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(var(--brand-rgb), 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Primary button hover */
.button:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}

/* Secondary button */
.button--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
  cursor: pointer;
}

/* Secondary button hover */
.button--ghost:hover {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(var(--brand-rgb), 0.25);
}

/* Generic form layout */
.form {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

/* Single form field wrapper */
.field {
  display: grid;
  gap: 6px;
}

/* Basic input element */
.input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Label styling */
label {
  font-weight: 600;
  color: var(--ink);
}

/* Generic card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* Card title */
.card__title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

/* Card subtitle */
.card__subtitle {
  color: var(--ink-muted);
}

/* Softer card variant */
.card--soft {
  background: var(--surface-soft);
}

/* Generic grid */
.grid {
  display: grid;
  gap: 16px;
}

/* Two column order page layout */
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 380px);
  gap: clamp(24px, 3.5vw, 52px);
  align-items: start;
}

/* Main order content */
.order-main {
  display: grid;
  gap: 32px;
}

/* Large order card */
.order-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: var(--shadow);
  width: 100%;
}

/* Allow full width forms inside order card */
.order-card .form {
  max-width: none;
}

/* Order page title */
.order-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 2rem;
}

/* Order page subtitle */
.order-subtitle {
  margin: 0 0 18px;
  color: var(--ink-muted);
}

/* Order step navigation */
.order-stepper {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
  padding: 16px;
  margin: 0 0 34px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #f2ebe3;
  width: 100%;
}

/* Single order step */
.order-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  min-height: 78px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid transparent;
  color: var(--ink-muted);
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

/* Order step number */
.order-step__index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

/* Order step label */
.order-step__label {
  font-size: 0.98rem;
  line-height: 1.2;
  white-space: normal;
}

/* Active order step */
.order-step.is-active {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(31, 126, 121, 0.2);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  transform: translateY(-1px);
}

/* Active order step number */
.order-step.is-active .order-step__index {
  background: var(--brand);
  color: #ffffff;
  border-color: transparent;
}

/* Sticky order summary on desktop */
.order-summary {
  position: sticky;
  top: 120px;
}

/* Order summary card */
.order-summary__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

/* Summary content block */
.order-summary__block {
  margin: 16px 0;
}

/* Summary line */
.order-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* Total row */
.order-summary__line--total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

/* Summary heading */
.order-summary__title {
  margin: 0 0 6px;
  font-size: 1rem;
}

/* Summary value */
.order-summary__value {
  margin: 0;
  font-weight: 600;
}

/* Summary price note */
.order-summary__price {
  margin: 6px 0 0;
  color: var(--ink-muted);
}

/* Summary small note */
.order-summary__note {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* Responsive summary grid */
.order-summary-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

/* Package cards grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Wrapper for one package option */
.package-option {
  position: relative;
}

/* Hidden radio for package selection */
.package-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Visible package card */
.package-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  min-height: 240px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Package card hover */
.package-card:hover {
  border-color: rgba(var(--brand-rgb), 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.1);
}

/* Package price */
.package-price {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

/* Selected package card */
.package-radio:checked + .package-card {
  border-color: var(--brand);
  box-shadow: 0 16px 35px rgba(var(--brand-rgb), 0.18);
  transform: translateY(-2px);
}

/* Domain picker row */
.domain-picker {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(120px, 160px);
  gap: 16px 18px;
  align-items: center;
}

/* Actions below domain picker */
.domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  grid-column: 1 / -1;
}

/* Keep domain buttons on one line if possible */
.domain-actions .button,
.domain-actions .button--ghost {
  white-space: nowrap;
}

/* Align button row inside order card */
.order-card .button-row {
  justify-content: flex-end;
  gap: 12px;
}

/* Domain TLD select */
.domain-select {
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

/* Domain result list */
.domain-results {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

/* Domain price text */
.tld-card__price {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Order form wrapper */
.order-form {
  max-width: none;
}

/* Multi column form grid */
.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Full-width field spans both columns */
.order-form-grid .field--full {
  grid-column: 1 / -1;
}

/* Three column helper */
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Generic list */
.list {
  margin: 12px 0;
  padding-left: 18px;
  color: var(--ink-muted);
}

/* Generic notice box */
.notice {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink-muted);
}

/* Success notice */
.notice--success {
  background: #f3fbf6;
  border-color: #cfe9d6;
  color: #1f6b40;
}

/* Warning notice */
.notice--warn {
  background: #fff7e8;
  border-color: #f0e3c7;
  color: #8a5a1f;
}

/* Error notice */
.notice--error {
  background: #fff2f2;
  border-color: #f4d1d1;
  color: #8b2c2c;
}

/* Generic inline link */
.link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

/* Inline link hover */
.link:hover {
  text-decoration: underline;
}

/* Small stats section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 26px 0 6px;
}

/* Single stat card */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

/* Stat number */
.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

/* Stat text */
.stat-label {
  margin: 6px 0 0;
  color: var(--ink-muted);
}

/* Generic content section */
.section {
  margin-top: 72px;
}

/* Muted content section */
.section--muted {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

/* Section heading wrapper */
.section__header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

/* Section title */
.section__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 0;
}

/* Section intro text */
.section__text {
  margin: 0;
  color: var(--ink-muted);
}

/* Domain search area */
.domain-check {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  max-width: 820px;
  width: 100%;
  margin-right: auto;
}

/* Domain search row */
.domain-check__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 120px;
  gap: 12px;
  align-items: center;
}

/* Plain domain input */
.domain-input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
}

/* Input group with domain prefix */
.domain-input-group {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: #ffffff;
  overflow: hidden;
}

/* Highlight border on focus, no blue ring bleeding into prefix */
.domain-input-group:focus-within {
  border-color: var(--brand, #2a9d8f);
  outline: none;
}

/* Static www prefix */
.domain-prefix {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Inner input in grouped domain field */
.domain-input-group .domain-input {
  border: none;
  padding: 12px 0;
  background: transparent;
}

/* Remove default focus line inside grouped field */
.domain-input-group .domain-input:focus,
.domain-input-group .domain-input:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Suppress browser autofill blue background */
.domain-input-group .domain-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

/* Dropdown with domain result cards */
.domain-dropdown {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 820px;
  width: 100%;
  margin-right: auto;
}

/* Grid for TLD cards */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

/* TLD card */
.tld-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-muted);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

/* Domain text inside TLD card */
.tld-card__domain {
  font-size: 1rem;
  color: var(--ink);
}

/* Status text inside TLD card */
.tld-card__status {
  margin-top: 6px;
  font-size: 0.85rem;
}

/* Available TLD card */
.tld-card--available {
  background: #f3fbf6;
  border-color: #cfe9d6;
  color: #1f6b40;
}

/* Reserved TLD card */
.tld-card--reserved {
  background: #fff7e8;
  border-color: #f0e3c7;
  color: #8a5a1f;
}

/* Taken or invalid TLD card */
.tld-card--taken,
.tld-card--invalid {
  background: #fff2f2;
  border-color: #f4d1d1;
  color: #8b2c2c;
}

/* Currently selected TLD card */
.tld-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(var(--brand-rgb), 0.2);
}

/* Generic feature cards grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* Single feature card */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

/* Feature icon */
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Feature title */
.feature-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* Feature text */
.feature-text {
  margin: 0;
  color: var(--ink-muted);
}

/* Highlight section that shows panel features */
.panel-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
}

/* Highlight media side */
.panel-highlight__media {
  order: 1;
}

/* Highlight content side */
.panel-highlight__content {
  order: 2;
}

/* Generic bullet list */
.bullet-list {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: var(--ink-muted);
}

/* Placeholder images */
.image-placeholder {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: linear-gradient(140deg, #dfe5f0 0%, #f4f6fb 100%);
  border-radius: 18px;
  min-height: 240px;
  border: 1px dashed rgba(27, 31, 36, 0.15);
  display: block;
}

/* Larger placeholder for hero */
.image-placeholder--hero {
  min-height: 320px;
}

/* Panel preview placeholder */
.image-placeholder--panel {
  min-height: 260px;
}

/* Slider wrapper */
.slider {
  margin-top: 30px;
  overflow: hidden;
}

/* Slider heading */
.slider__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

/* Hidden overflow viewport */
.slider__viewport {
  overflow: hidden;
  padding: 6px 0 14px;
}

/* Slider inner track */
.slider__track {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* Slide card */
.slide-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 300px;
  transform: scale(0.92);
  opacity: 0.7;
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
}

/* Center slide */
.slide-card.is-center {
  transform: scale(1);
  opacity: 1;
  box-shadow: var(--shadow);
}

/* Left slide */
.slide-card.is-left {
  transform: translateX(-10px) translateY(6px) scale(0.92);
  opacity: 0.8;
}

/* Right slide */
.slide-card.is-right {
  transform: translateX(10px) translateY(6px) scale(0.92);
  opacity: 0.8;
}

/* Hidden slide */
.slide-card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Slide heading */
.slide-card__title {
  margin: 12px 0 6px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

/* Slider dot navigation */
.slider__dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* Single dot */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27, 31, 36, 0.2);
}

/* Active dot */
.dot.is-active {
  background: var(--brand);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
  box-shadow: var(--shadow);
}

/* Cookie text */
.cookie-text {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Cookie action buttons */
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Larger package layout on desktop */
@media (min-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Four package columns on wide screens */
@media (min-width: 1320px) {
  .package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Collapse order layout earlier on medium screens */
@media (max-width: 1100px) {
  .order-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-summary {
    position: static;
  }
}

/* Tablet order layout */
@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .domain-picker {
    grid-template-columns: 1fr;
  }

  .domain-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 0;
  }
}

/* Mobile navigation and slider changes */
@media (max-width: 900px) {
  .header__row {
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand__mark {
    width: 22px;
    height: 22px;
  }

  .brand__tagline {
    display: none;
  }

  .header__brand-group {
    width: calc(100% - 110px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--ink-muted);
  }

  /* Hero: Einspaltig auf mobil */
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
  }

  .hero__visual {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing: Einspaltig */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-toggle {
    flex-direction: column;
    border-radius: 14px;
  }

  .pricing-toggle__btn {
    border-radius: 10px;
    justify-content: center;
  }

  /* CTA-Sektion */
  .cta-section__inner {
    padding: 40px 24px;
  }

  .domain-section {
    padding: 32px 20px;
  }

  .slide-card {
    flex: 0 0 240px;
    min-width: 240px;
  }

  .slide-card.is-left,
  .slide-card.is-right {
    opacity: 0.45;
    transform: translateY(8px) scale(0.88);
  }
}

/* Domain action alignment */
@media (max-width: 860px) {
  .domain-actions {
    justify-content: flex-start;
  }
}

/* Extra-klein: Metriken 2-spaltig */
@media (max-width: 540px) {
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero__trust {
    flex-direction: column;
    gap: 4px;
  }

  .pricing-header {
    padding: 40px 0 28px;
  }
}

/* Two columns for order steps */
@media (max-width: 820px) {
  .order-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small tablet and mobile layout */
@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100vw - 28px));
  }

  .header__brand-group {
    width: 100%;
  }

  .brand__tagline {
    display: none;
  }

  .hero__badge {
    position: static;
    margin-top: 10px;
  }

  .domain-check__row {
    grid-template-columns: 1fr;
  }

  .slide-card.is-left,
  .slide-card.is-right {
    display: none;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button,
  .cookie-actions .button--ghost {
    width: 100%;
  }
}

/* One column for order steps and stacked buttons */
@media (max-width: 520px) {
  .order-stepper {
    grid-template-columns: 1fr;
  }

  .button-row {
    justify-content: stretch;
  }

  .button-row .button,
  .button-row .button--ghost {
    width: 100%;
  }

  .order-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   PAKETE / PRICING PAGE
   ================================================================ */

/* Seitenkopf der Paketübersicht */
.pricing-header {
  text-align: center;
  padding: 64px 0 40px;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 8px 0 14px;
  line-height: 1.1;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Laufzeit-Toggle-Buttons */
.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  padding: 4px;
  gap: 2px;
}

.pricing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: none;
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.pricing-toggle__btn.is-active {
  background: var(--brand);
  color: #fff;
}

.pricing-toggle__badge {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.25);
  color: inherit;
}

.pricing-toggle__btn:not(.is-active) .pricing-toggle__badge {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

/* Preiskarten-Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

/* Einzelne Preiskarte */
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Empfohlene Karte */
.pricing-card--featured {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.08);
}

/* Empfohlen-Badge */
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Paketname */
.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* Preis-Block */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card__unit {
  font-size: 0.9rem;
  color: var(--ink-faint);
}

/* Abrechnungs-Hinweis */
.pricing-card__billing {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

/* Feature-Liste */
.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--brand);
}

.pricing-features li strong {
  color: var(--ink);
}

/* CTA-Button in der Karte */
.pricing-card__cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 100px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 12px;
}

.pricing-card__cta:hover {
  background: var(--brand-strong);
}

.pricing-card__cta--ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.pricing-card__cta--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

/* Kleiner Hinweis unter dem CTA */
.pricing-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin: 0;
}

/* ================================================================
   VERGLEICHSTABELLE
   ================================================================ */

.compare-section {
  margin: 0 0 64px;
}

.compare-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-align: center;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.compare-table thead th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--ink);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: var(--bg-soft);
}

.compare-check {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 700;
}

/* ================================================================
   FAQ-BEREICH
   ================================================================ */

.faq-section {
  margin-bottom: 64px;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Laufzeit-Tabs (Billing Cycle) ===== */
.billing-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--surface);
}

/* Einzelner Tab */
.billing-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-right: 1px solid var(--line);
  transition: background 0.15s, color 0.15s;
  user-select: none;
  text-align: center;
}

.billing-tab:last-child {
  border-right: none;
}

.billing-tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Aktiver Tab */
.billing-tab.is-active {
  background: var(--brand);
  color: #fff;
}

/* Rabatt-Badge auf dem Tab */
.billing-tab__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
}

.billing-tab:not(.is-active) .billing-tab__badge {
  background: var(--brand);
  color: #fff;
}

/* Paketkartenname */
.package-card__name {
  margin: 4px 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Preis-Einheit */
.package-price__amount {
  font-size: 1.6rem;
  font-weight: 800;
}

.package-price__unit {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* Gesamtpreis-Hinweis unter dem Monatspreis */
.package-total {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

/* Featureliste im Paket */
.package-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-features li::before {
  content: "✓ ";
  color: var(--brand);
  font-weight: 700;
}

/* Metazeile in der Bestellübersicht (z.B. Laufzeit) */
.order-summary__meta {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 600;
}

/* ================================================================
   HOMEPAGE – MODERNES DESIGN V2
   ================================================================ */

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

/* ── Hero V2 (dunkel, volle Viewport-Breite) ──────────────────── */

/* Breakout aus dem .container, startet bei y=0 hinter dem fixed Header */
.hero-v2 {
  position: relative;
  background: linear-gradient(135deg, #0b1a2e 0%, #0d2a2a 52%, #091e1e 100%);
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  margin-top: 0;
  overflow: hidden;
}

/* Radiale Lichtakzente im Hintergrund */
.hero-v2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 72% 48%, rgba(42, 157, 143, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 55% 70% at 18% 85%, rgba(11, 26, 46, 0.55) 0%, transparent 60%);
  pointer-events: none;
}

/* Echtes Hintergrundbild (optional) */
.hero-v2__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
}

/* Zentrierung + Zweispalten-Grid */
.hero-v2__inner {
  width: min(1680px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 48px 72px;
  align-items: center;
  padding: 96px 0 44px;
  position: relative;
  z-index: 1;
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.hero-v2__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0;
  animation: hero-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-v2__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 22px;
}

.hero-v2__accent {
  color: var(--brand);
}

.hero-v2__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  margin: 0 0 32px;
  max-width: 520px;
}

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

.hero-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(42, 157, 143, 0.38);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-v2__btn:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(42, 157, 143, 0.45);
}

.hero-v2__btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  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.68);
  background: rgba(255, 255, 255, 0.07);
}

.hero-v2__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* Rechte Bildseite */
.hero-v2__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5);
}

/* Metriken-Streifen am unteren Rand des Hero */
.hero-v2__metrics-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 16px;
}

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

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

.hero-v2__metric:last-child {
  border-right: none;
}

.hero-v2__metric-val {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-v2__metric-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Bild-Platzhalter (dunkel, für Hero) ──────────────────────── */
.img-placeholder--dark {
  min-height: 360px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  padding: 40px 32px;
  width: 100%;
}

.img-placeholder--dark svg {
  flex-shrink: 0;
}

.img-placeholder--dark span {
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Bild-Platzhalter (hell, für Showcase-Sektionen) ──────────── */
.img-placeholder--showcase {
  min-height: 400px;
  background: var(--bg-soft);
  border: 1px dashed rgba(15, 23, 42, 0.14);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink-faint);
  text-align: center;
  padding: 40px 32px;
  width: 100%;
}

.img-placeholder--showcase span {
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── Showcase-Sektion (Panel-Vorschau) ────────────────────────── */
.showcase-section {
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  padding: 96px 0;
  background: var(--surface);
}

.showcase-section .showcase-grid,
.infra-section .showcase-grid {
  width: min(1680px, 94vw);
  margin: 0 auto;
}

/* ── Infrastruktur-Sektion ────────────────────────────────────── */
.infra-section {
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  padding: 96px 0;
  background: var(--bg-soft);
}

/* ── Showcase-Grid (Zweispalten, Text + Bild) ─────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: center;
}

/* Umgekehrte Reihenfolge */
.showcase-grid--reverse {
  direction: rtl;
}

.showcase-grid--reverse > * {
  direction: ltr;
}

.showcase-grid__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.showcase-grid__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.1;
}

.showcase-grid__text {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.72;
  margin: 0 0 24px;
}

/* Checklistenpunkte */
.showcase-checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.showcase-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.showcase-checklist li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--brand-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a9d8f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Infrastruktur-Badges */
.infra-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.infra-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.infra-badge svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Infra DC Card ────────────────────────────────────────────── */
.infra-dc-card {
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,.06) inset;
}

.infra-dc-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}

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

.infra-dc-card__loc-main {
  font-size: 0.83rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.infra-dc-card__loc-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: #475569;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.infra-dc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.infra-dc-live__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: infra-pulse 2s ease-in-out infinite;
}

@keyframes infra-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.65); }
}

.infra-dc-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 20px 18px;
}

.infra-dc-metric {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.infra-dc-metric__label {
  font-size: 0.77rem;
  color: #64748b;
  font-weight: 500;
}

.infra-dc-metric__val {
  font-size: 0.77rem;
  font-weight: 700;
  color: #e2e8f0;
}

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

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

.infra-dc-bar__fill--low {
  background: linear-gradient(90deg, #3dd6c7 0%, #7fe8e0 100%);
}

.infra-dc-card__services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.07);
}

.infra-dc-service {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.infra-dc-service:nth-child(3n) { border-right: none; }
.infra-dc-service:nth-last-child(-n+3) { border-bottom: none; }

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

.infra-dc-service--ok .infra-dc-service__dot { background: #22c55e; }

.infra-dc-card__footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.infra-dc-uptime-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4ade80;
}

.infra-dc-uptime-pill__dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: infra-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Features-Sektion ─────────────────────────────────────────── */
.features-section {
  padding: 96px 0 80px;
}

.features-section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

/* ── CTA V2 (dunkel, volle Breite) ────────────────────────────── */
.cta-v2 {
  position: relative;
  background: linear-gradient(135deg, #0b1a2e 0%, #0d2a2a 60%, #091e1e 100%);
  margin-left: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  overflow: hidden;
  margin-bottom: -80px; /* site-main bottom padding ausgleichen */
}

.cta-v2__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.cta-v2__inner {
  position: relative;
  z-index: 1;
  padding: 96px 24px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-v2__title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  line-height: 1.1;
}

.cta-v2__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin: 0 0 36px;
}

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

.cta-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(42, 157, 143, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.cta-v2__btn:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
}

.cta-v2__btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  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;
}

.cta-v2__btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .showcase-grid {
    gap: 36px 48px;
  }
}

@media (max-width: 900px) {
  .hero-v2__inner {
    grid-template-columns: 1fr;
    padding: 64px 0 32px;
    gap: 32px;
  }

  .hero-v2__visual {
    display: none;
  }

  .hero-v2__metrics-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .showcase-grid--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .showcase-grid--reverse > * {
    direction: ltr;
  }

  .showcase-section,
  .infra-section {
    padding: 64px 0;
  }

  .features-section {
    padding: 64px 0 56px;
  }

  .cta-v2__inner {
    padding: 72px 24px;
  }
}

@media (max-width: 540px) {
  .hero-v2__metrics-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-v2__trust {
    flex-direction: column;
    gap: 4px;
  }

  .infra-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-v2__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-v2__btn,
  .cta-v2__btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
/* ── Legal pages (AGB, Datenschutz, Impressum) ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}

.legal-page__updated {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0 0 48px;
}

.legal-page__section {
  margin-bottom: 36px;
}

.legal-page__section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}

.legal-page__section p,
.legal-page__section ul {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.legal-page__section ul {
  padding-left: 20px;
}

.legal-page__section ul li {
  margin-bottom: 4px;
}

.legal-page .link {
  color: var(--brand);
  text-decoration: none;
}

.legal-page .link:hover {
  text-decoration: underline;
}

/* Remove footer-link--static style (now unused) */
.footer-link--static {
  cursor: default;
  opacity: 0.5;
}
