﻿:root {
  --bg: #0b1220;
  --surface: #101a30;
  --surface-soft: #0d1528;
  --line: rgba(255, 255, 255, 0.12);
  --text: #eaf0ff;
  --text-soft: #9fb0cf;
  --primary: #2b7cff;
  --primary-strong: #1d65dd;
  --accent: #ff9b2f;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", "Trebuchet MS", "Tahoma", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 16% 8%, rgba(43, 124, 255, 0.22), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(61, 131, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #070c16 0%, var(--bg) 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  backdrop-filter: blur(10px);
  background: rgba(7, 12, 22, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 187, 92, 0), rgba(255, 187, 92, 0.35), rgba(92, 156, 255, 0.35), rgba(92, 156, 255, 0));
  pointer-events: none;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(11, 91, 211, 0.18);
  border: 1px solid rgba(195, 219, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.brand.brand-wide {
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo-wide {
  width: clamp(252px, 27.5vw, 400px);
  height: auto;
  max-height: 78px;
  display: block;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  filter: none;
}

.brand.brand-wide .brand-text {
  display: none;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  letter-spacing: 0.2px;
  font-size: 1.04rem;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.79rem;
  line-height: 1.25;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav a {
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav a.is-active,
.nav a[aria-current="page"] {
  color: #eef5ff;
  background: rgba(95, 156, 255, 0.24);
  border: 1px solid rgba(95, 156, 255, 0.38);
}

.nav a.is-active:hover,
.nav a[aria-current="page"]:hover {
  background: rgba(95, 156, 255, 0.32);
}

.nav a.nav-link-feature {
  color: var(--text-soft);
  border: 0;
  background: transparent;
}

.nav a.nav-link-feature:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.35rem;
  margin-bottom: -0.35rem;
}

.nav-drop-btn {
  font: inherit;
  font-weight: 600;
  color: var(--text-soft);
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-drop-btn::after {
  content: "▾";
  margin-left: 0.38rem;
  font-size: 0.72rem;
  color: #bcd0f4;
}

.nav-drop-btn:hover,
.nav-dropdown:focus-within .nav-drop-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 185px;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(12, 20, 36, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 0.5rem 0.62rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #d7e4ff;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(43, 124, 255, 0.14);
  border-color: rgba(43, 124, 255, 0.45);
}

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem 0 0.9rem;
}

.mobile-nav a {
  padding: 0.6rem 0.72rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-soft);
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav a.is-active,
.mobile-nav a[aria-current="page"] {
  color: #eef5ff;
  background: rgba(95, 156, 255, 0.2);
  border: 1px solid rgba(95, 156, 255, 0.34);
}

.mobile-nav a.nav-link-feature {
  color: var(--text-soft);
  border: 0;
  background: transparent;
}

.mobile-nav-group {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.3rem;
}

.mobile-nav-group p {
  margin: 0;
  padding: 0.35rem 0.5rem;
  color: #cfe3ff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}

.hero {
  padding: 2.9rem 0 1.85rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.hero-home-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.92fr);
  align-items: stretch;
  gap: 1.2rem;
}

.hero-subpage-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: stretch;
  gap: 1rem;
}

.domain-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero-content,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-content {
  background: linear-gradient(165deg, rgba(16, 26, 48, 0.95), rgba(16, 26, 48, 0.7));
  padding: 1.6rem;
}

.hero-home-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(69, 136, 255, 0.18), transparent 34%),
    linear-gradient(165deg, rgba(17, 30, 57, 0.97), rgba(18, 31, 56, 0.82));
  padding: 1.78rem 1.9rem 1.68rem;
}

.hero-subpage-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(69, 136, 255, 0.14), transparent 34%),
    linear-gradient(165deg, rgba(17, 30, 57, 0.97), rgba(18, 31, 56, 0.82));
  padding: 1.7rem 1.85rem 1.65rem;
}

.hero-home-main h1 {
  max-width: none;
  text-wrap: pretty;
}

.hero-subpage-main h1 {
  max-width: none;
  text-wrap: pretty;
}

.hero-home-main > p {
  max-width: 38ch;
}

.hero-subpage-main > p {
  max-width: 42ch;
}

.hero-home-side {
  display: flex;
}

.hero-subpage-side {
  display: flex;
}

.hero-side-panel {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(191, 214, 255, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 186, 87, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(14, 24, 43, 0.96), rgba(11, 18, 34, 0.94));
  box-shadow: var(--shadow);
  padding: 1.15rem 1.1rem;
}

.hero-subpage-side .hero-side-panel {
  padding: 1rem;
}

.hero-side-kicker {
  margin: 0;
  color: #ffe0aa;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.44px;
  text-transform: uppercase;
}

.hero-side-panel h2 {
  margin: 0.55rem 0 0;
  font-size: 1.32rem;
  line-height: 1.16;
}

.hero-side-stack {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
}

.hero-choice {
  display: grid;
  gap: 0.18rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.hero-choice:hover {
  transform: translateY(-1px);
}

.hero-choice strong {
  color: var(--text);
  font-size: 1rem;
}

.hero-choice span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-choice-it {
  border-color: rgba(78, 142, 255, 0.28);
  background: linear-gradient(180deg, rgba(88, 146, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 24px rgba(32, 95, 210, 0.2);
}

.hero-choice-energy {
  border-color: rgba(255, 188, 92, 0.34);
  background: linear-gradient(180deg, rgba(255, 188, 92, 0.12), rgba(255, 255, 255, 0.04));
}

.hero-choice-hosting {
  border-color: rgba(116, 168, 255, 0.2);
  background: rgba(255, 255, 255, 0.025);
}

.hero-side-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.hero-side-list li {
  padding: 0.74rem 0.84rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.hero-side-list li:hover,
.hero-side-list li:focus-within {
  transform: translateY(-1px);
  border-color: rgba(95, 156, 255, 0.55);
  background: rgba(95, 156, 255, 0.12);
}

.hero-side-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-side-link:focus-visible {
  outline: 2px solid rgba(95, 156, 255, 0.85);
  outline-offset: 3px;
  border-radius: 8px;
}

.hero-side-list strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

.hero-side-list span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.38;
}

.hero-side-note {
  margin: 0.9rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-side-note strong {
  color: var(--text);
}

.domain-hero-visual {
  border-radius: var(--radius);
  border: 1px solid rgba(43, 124, 255, 0.34);
  background:
    radial-gradient(circle at 18% 16%, rgba(43, 124, 255, 0.28), transparent 52%),
    linear-gradient(160deg, rgba(10, 17, 30, 0.95), rgba(8, 14, 26, 0.88));
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.domain-hero-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(43, 124, 255, 0.38);
  background: rgba(43, 124, 255, 0.14);
  color: #d9e8ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.22rem 0.52rem;
}

.domain-hero-visual h2 {
  margin: 0.62rem 0 0;
  font-size: 1.06rem;
}

.domain-hero-list {
  list-style: none;
  margin: 0.82rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.54rem;
}

.domain-hero-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.48rem 0.58rem;
}

.domain-hero-list strong {
  color: #d6e6ff;
}

.domain-hero-list span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.hero-trust {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-home-main .hero-actions {
  margin-top: 1.05rem;
}

.hero-trust h2 {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}

.hero-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  color: var(--text-soft);
}

.hero-trust li {
  font-size: 0.95rem;
  line-height: 1.36;
}

.hero-trust strong {
  color: var(--text);
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 0.64rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: #d7e7ff;
  background: rgba(43, 124, 255, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(1.9rem, 3.9vw, 2.9rem);
  letter-spacing: -0.5px;
}

.hero-content > p {
  color: var(--text-soft);
  font-size: 1.03rem;
  margin: 0.95rem 0 0;
}

.hero-badges {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span,
.hero-badges a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.86rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #d7e4ff;
}

.hero-badges span span,
.hero-badges a span {
  margin-right: 0.35rem;
}

.hosting-facts {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hosting-fact {
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #2f77ed);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-strong), #1f67df);
}

.btn-secondary {
  color: #dce7ff;
  border-color: rgba(43, 124, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn-accent {
  color: #dce7ff;
  border-color: rgba(43, 124, 255, 0.36);
  background: rgba(43, 124, 255, 0.1);
  box-shadow: none;
}

.btn-accent:hover {
  background: rgba(43, 124, 255, 0.14);
  border-color: rgba(43, 124, 255, 0.46);
}

.btn-maint-enable {
  color: #fff4db;
  border-color: rgba(255, 183, 84, 0.7);
  background: linear-gradient(135deg, rgba(188, 126, 36, 0.78), rgba(139, 92, 20, 0.82));
}

.btn-maint-enable:hover {
  background: linear-gradient(135deg, rgba(206, 140, 45, 0.84), rgba(151, 101, 22, 0.88));
  border-color: rgba(255, 197, 113, 0.82);
}

.btn-maint-disable {
  color: #e3fff1;
  border-color: rgba(67, 201, 136, 0.68);
  background: linear-gradient(135deg, rgba(24, 130, 88, 0.78), rgba(17, 102, 69, 0.84));
}

.btn-maint-disable:hover {
  background: linear-gradient(135deg, rgba(28, 148, 99, 0.82), rgba(20, 113, 77, 0.88));
  border-color: rgba(104, 233, 171, 0.78);
}

.maintenance-toggle-form .btn:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.15);
}

.btn-energy {
  color: #14233f;
  border-color: rgba(255, 206, 111, 0.95);
  background: linear-gradient(135deg, #ffd877, #ffb452);
  box-shadow: 0 12px 28px rgba(255, 180, 82, 0.2);
}

.btn-energy:hover {
  background: linear-gradient(135deg, #ffcf64, #ffac44);
}

.contact-card {
  background: linear-gradient(180deg, rgba(16, 26, 48, 0.9), rgba(13, 21, 40, 0.86));
  padding: 1.35rem;
}

.contact-card h2 {
  margin-bottom: 0.9rem;
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
  color: var(--text-soft);
}

.contact-card strong {
  color: var(--text);
}

.card-note {
  color: var(--text-soft);
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.section {
  padding: 1.5rem 0;
}

.section-soft {
  background: transparent;
}

#schnellstart {
  background: transparent;
  padding-bottom: 1.05rem;
}

#zusatzleistungen {
  background: transparent;
}

.decision-shell,
.services-shell {
  padding: 1.12rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(190, 214, 255, 0.14);
  background: linear-gradient(180deg, rgba(22, 36, 65, 0.72), rgba(14, 23, 41, 0.48));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.section-head-copy {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
}

.section-head-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-kicker {
  margin: 0 0 0.3rem;
  color: #ffd9a0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.quickstart-intro {
  display: grid;
  gap: 0.24rem;
  max-width: 41rem;
}

.quickstart-intro p:last-child {
  margin: 0;
  max-width: 47ch;
  color: var(--text-soft);
}

.quickstart-grid {
  margin-top: 0.72rem;
  gap: 0.78rem;
  align-items: stretch;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.section-head.section-head-stack {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.section-head-with-actions {
  align-items: flex-end;
  gap: 0.85rem 1rem;
}

.section-head-with-actions .section-head-copy {
  flex: 1 1 440px;
}

.section-head-compact {
  gap: 0.55rem;
}

.section-head p {
  margin: 0;
  color: var(--text-soft);
}

.page-shell {
  border: 1px solid rgba(216, 229, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 37, 66, 0.62), rgba(14, 24, 42, 0.42));
  box-shadow: 0 14px 32px rgba(6, 14, 28, 0.16);
  padding: 1rem;
}

.page-shell-soft {
  background: linear-gradient(180deg, rgba(26, 42, 74, 0.66), rgba(16, 26, 45, 0.44));
}

.page-shell .section-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(216, 229, 255, 0.16);
}

.page-shell .section-head p {
  max-width: 58ch;
}

.page-shell .hero-actions:last-child {
  margin-top: 0.95rem;
}

.page-shell .pricing-note {
  margin-bottom: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.1rem 0 1rem;
}

.section-head-with-actions .section-actions {
  margin: 0;
  justify-content: flex-end;
}

.section-actions-start {
  margin: 0;
  justify-content: flex-start;
}

.section-head.section-head-stack .section-head-copy,
.section-head.section-head-stack .section-actions {
  width: 100%;
}

#leistungen .section-head p,
#zusatzleistungen .section-head p {
  max-width: 56ch;
}

#leistungen {
  padding-top: 1.15rem;
  padding-bottom: 1.05rem;
  border-bottom: 0;
}

#zusatzleistungen {
  padding-top: 0.8rem;
}

#leistungen .container,
#zusatzleistungen .container {
  border: 1px solid rgba(216, 229, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(6, 14, 28, 0.18);
  padding: 1rem;
}

#leistungen .section-head,
#zusatzleistungen .section-head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid rgba(216, 229, 255, 0.18);
}

#leistungen .services-shell {
  border: 1px solid rgba(190, 214, 255, 0.14);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(22, 36, 65, 0.72), rgba(14, 23, 41, 0.48));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 1.2rem;
}

.legal-main {
  min-height: calc(100vh - 180px);
}

body.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.legal-page .legal-main {
  min-height: 0;
  flex: 1;
}

body.legal-page .site-footer {
  margin-top: 0;
  background: rgba(7, 12, 22, 0.95);
}

.legal-note {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.legal-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.legal-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
}

.legal-card a {
  color: #cfe3ff;
  text-decoration: underline;
}

.card-grid {
  display: grid;
  gap: 0.85rem;
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.faq-item:hover {
  border-color: rgba(95, 156, 255, 0.38);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 1rem;
  color: var(--text);
  position: relative;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(95, 156, 255, 0.8);
  outline-offset: -2px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.18s ease, color 0.18s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  color: #7eb3ff;
}

.faq-item[open] {
  border-color: rgba(95, 156, 255, 0.58);
  background: linear-gradient(180deg, rgba(95, 156, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 30px rgba(8, 21, 44, 0.3);
}

.faq-item[open] summary {
  color: #e9f2ff;
}

.faq-item[open] p {
  color: #d6e5ff;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--text-soft);
}

.faq-item a {
  color: #cfe3ff;
  text-decoration: underline;
}

.compare-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  padding: 0.78rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.compare-table tr > :nth-child(n + 2) {
  border-left: 1px solid var(--line);
}

.compare-table th {
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

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

.compare-table .compare-group td {
  padding: 0.58rem 0.9rem;
  font-size: 0.74rem;
  letter-spacing: 0.85px;
  text-transform: uppercase;
  color: #cfe3ff;
  font-weight: 700;
  background: rgba(43, 124, 255, 0.1);
}

.compare-table td.merged-center {
  text-align: center;
}

.admin-links-table td.admin-links-cell {
  padding: 0;
}

.admin-links-link {
  display: block;
  width: 100%;
  padding: 0.72rem 0.9rem;
  min-height: 100%;
  font-weight: 700;
  color: #deebff;
  background: rgba(95, 156, 255, 0.12);
  transition: background-color 0.16s ease, color 0.16s ease;
}

.admin-links-link:hover {
  color: #f5f9ff;
  background: rgba(95, 156, 255, 0.22);
}

.admin-links-link:focus-visible {
  outline: 2px solid rgba(95, 156, 255, 0.78);
  outline-offset: -2px;
}

.mark-no,
.mark-yes {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  vertical-align: middle;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols", sans-serif;
}

.mark-no {
  color: #ff5c6f;
}

.mark-yes {
  color: #38d27c;
}

.domain-check-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.domain-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.domain-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.domain-card p {
  color: var(--text-soft);
}

.domain-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  color: #cfe3ff;
  font-weight: 700;
}

.domain-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 130px;
  gap: 0.55rem;
}

.domain-input-row input,
.domain-input-row select {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 26, 0.7);
  color: var(--text);
  padding: 0.58rem 0.75rem;
  font: inherit;
}

.domain-input-row input {
  font-size: 1.02rem;
}

.domain-input-row input::placeholder {
  color: #8ea3c8;
}

.domain-actions {
  margin-top: 0.72rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.domain-hint {
  margin: 0.72rem 0 0;
  font-size: 0.86rem;
}

.domain-links {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.domain-suggestions {
  margin-top: 0.75rem;
}

.domain-suggestion-title {
  margin: 0;
  font-size: 0.86rem;
  color: #cfe3ff;
  font-weight: 700;
}

.domain-suggestion-list {
  margin-top: 0.45rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.server-config-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}

.server-config-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.server-config-controls {
  display: grid;
  gap: 0.9rem;
}

.server-config-field {
  display: grid;
  gap: 0.45rem;
}

.server-config-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.server-config-label label {
  color: #cfe3ff;
  font-weight: 700;
  font-size: 0.9rem;
}

.server-config-value {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.55rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.server-config-field input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.server-config-summary h3 {
  margin-bottom: 0.8rem;
}

.server-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.server-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 0.62rem;
}

.server-price-list span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.server-price-list strong {
  color: #dbe8ff;
  font-size: 0.95rem;
}

.server-config-note {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.server-config-summary .btn {
  width: 100%;
  margin-top: 0.85rem;
}

.server-order-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0.85rem;
}

.server-order-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.server-order-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.04rem;
}

.server-order-note {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.server-order-note a {
  color: #cfe3ff;
  text-decoration: underline;
  text-decoration-color: rgba(207, 227, 255, 0.42);
}

.server-order-note a:hover {
  color: var(--text);
}

.server-order-form {
  display: grid;
  gap: 0.72rem;
}

.server-order-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.server-order-form-row > * {
  min-width: 0;
}

.server-order-field {
  display: grid;
  gap: 0.36rem;
  min-width: 0;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.server-order-field label {
  color: #cfe3ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.server-order-field input,
.server-order-field select,
.server-order-field textarea {
  min-height: 42px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 26, 0.7);
  color: var(--text);
  padding: 0.5rem 0.68rem;
  font: inherit;
}

.server-order-field select {
  padding-right: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-order-field input[readonly] {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.server-order-field textarea {
  min-height: 122px;
  resize: vertical;
}

.server-order-field input::placeholder,
.server-order-field textarea::placeholder {
  color: #8ea3c8;
}

.server-order-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.server-order-consent input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.server-order-consent a {
  color: #cfe3ff;
  text-decoration: underline;
  text-decoration-color: rgba(207, 227, 255, 0.42);
}

.server-order-consent a:hover {
  color: var(--text);
}

.server-order-form .btn {
  width: 100%;
  margin-top: 0.24rem;
}

.turnstile-wrap {
  margin: 0.22rem 0 0.12rem;
  min-height: 66px;
}

.server-order-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  margin: 0.1rem 0 0;
  min-height: 1.2rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.form-status.success {
  color: #7ce5a5;
}

.form-status.error {
  color: #ff9d9d;
}

.domain-price-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  padding: 0.72rem;
}

.domain-price-tools {
  margin-bottom: 0.72rem;
}

.domain-price-search-label {
  display: inline-block;
  margin-bottom: 0.42rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #cfe3ff;
}

.domain-price-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
}

.domain-price-search-row input {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 26, 0.7);
  color: var(--text);
  padding: 0.5rem 0.68rem;
  font: inherit;
}

.domain-price-search-row input::placeholder {
  color: #8ea3c8;
}

.domain-price-meta {
  margin: 0.48rem 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.domain-price-card .compare-table-wrap {
  max-height: 620px;
}

.domain-price-card .compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.domain-price-note {
  margin: 0.76rem 0 0;
  color: var(--text-soft);
  font-size: 0.87rem;
}

.domain-price-note a {
  color: #cfe3ff;
  text-decoration: underline;
  text-decoration-color: rgba(207, 227, 255, 0.45);
}

.domain-price-note a:hover {
  color: var(--text);
}

.feature-card,
.pricing-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.feature-card {
  padding: 1rem;
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.02rem 0.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
}

.path-card-it::before {
  background: linear-gradient(90deg, rgba(78, 142, 255, 0.95), rgba(78, 142, 255, 0.16));
}

.path-card-energy::before {
  background: linear-gradient(90deg, rgba(255, 189, 92, 0.95), rgba(255, 189, 92, 0.18));
}

.path-card-hosting::before {
  background: linear-gradient(90deg, rgba(109, 165, 255, 0.62), rgba(109, 165, 255, 0.08));
}

.path-card-it {
  border-color: rgba(108, 166, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 36px rgba(15, 35, 79, 0.4);
}

.path-card-hosting {
  border-color: rgba(108, 166, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016));
  box-shadow: 0 8px 20px rgba(10, 22, 46, 0.16);
}

.feature-card p.path-card-kicker {
  margin: 0 0 0.28rem;
  color: #cfe3ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.path-card-energy .path-card-kicker {
  color: #ffe2a9;
}

.path-card-hosting .path-card-kicker {
  color: #bfd2f1;
}

.feature-card.path-card h3 {
  font-size: 1.14rem;
  line-height: 1.24;
}

.path-card .card-icon {
  width: 40px;
  height: 40px;
  margin: 0.05rem 0 0.55rem;
  font-size: 1.02rem;
}

.path-card-energy .card-icon {
  background: rgba(255, 188, 92, 0.12);
  border-color: rgba(255, 188, 92, 0.3);
}

.path-card-hosting .card-icon {
  background: rgba(95, 156, 255, 0.1);
  border-color: rgba(95, 156, 255, 0.24);
}

.feature-card.path-card > p:not(.path-card-kicker) {
  margin-top: 0.42rem;
  font-size: 0.93rem;
  line-height: 1.48;
}

.path-card-list {
  list-style: none;
  margin: 0.72rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.path-card-list li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--text-soft);
  line-height: 1.42;
}

.path-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #6ca2ff;
}

.path-card-energy .path-card-list li::before {
  background: #ffc35e;
}

.path-card-hosting .path-card-list li::before {
  background: #5e89cd;
}

.path-card-hosting h3,
.path-card-hosting p,
.path-card-hosting li {
  color: #b9cceb;
}

.path-card-hosting h3 {
  color: #cfdef5;
}

.path-card-actions {
  margin-top: auto;
  padding-top: 0.82rem;
  display: flex;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.12rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(118, 159, 240, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.feature-card p.service-tag {
  margin: 0 0 0.42rem;
  color: #b9cbec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.feature-card.service-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.feature-card h3 {
  font-size: 1rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 0.65rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  line-height: 1;
  background: rgba(43, 124, 255, 0.14);
  border: 1px solid rgba(43, 124, 255, 0.3);
}

.feature-card .card-icon {
  transform: translateY(-2px);
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.addon-section .section-head p {
  max-width: 760px;
}

.more-services {
  margin-top: 0.82rem;
}

.more-services summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.46rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(121, 174, 254, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: #dce7ff;
  font-weight: 700;
}

.more-services summary::after {
  content: "▾";
  margin-left: 0.5rem;
  font-size: 0.82rem;
  opacity: 0.9;
  transition: transform 0.18s ease;
}

.more-services[open] summary::after {
  transform: rotate(180deg);
}

.more-services summary::-webkit-details-marker {
  display: none;
}

.more-services-grid {
  margin-top: 0.78rem;
}

.addon-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  opacity: 0.92;
}

.addon-card .card-icon {
  margin-bottom: 0.3rem;
}

.addon-card:hover {
  opacity: 1;
}

.addon-meta {
  margin: 0.1rem 0 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.addon-card .pricing-actions {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(216, 229, 255, 0.14);
}

.pricing-card {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-card h3 {
  font-size: 1rem;
}

.pricing-sub {
  margin: 0;
  color: #cfe3ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.pricing-card .card-icon {
  margin-bottom: 0.5rem;
  background: rgba(255, 155, 47, 0.14);
  border-color: rgba(255, 155, 47, 0.35);
}

.price-kicker {
  margin: 0.1rem 0 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.price {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-strong);
}

.price-stack {
  display: grid;
  gap: 0.08rem;
}

.price span {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
}

.setup-fee {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.15;
  color: rgba(204, 218, 244, 0.66);
  font-weight: 500;
}

.setup-old {
  display: inline-block;
  margin-right: 0.34rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15px;
  color: rgba(245, 223, 183, 0.96);
  text-decoration: line-through;
  text-decoration-thickness: 1.6px;
  text-decoration-color: rgba(227, 196, 136, 0.95);
  opacity: 0.97;
}

.setup-zero {
  color: #ffd96b;
  font-weight: 700;
  white-space: nowrap;
}

.compare-table .setup-old {
  font-size: 0.74rem;
}

#managed-pakete .price-kicker {
  font-size: 0.79rem;
  letter-spacing: 0.48px;
}

#managed-pakete .pricing-sub {
  font-size: 0.88rem;
  line-height: 1.32;
  letter-spacing: 0.1px;
}

#managed-pakete .pricing-card h3 {
  font-size: 1.14rem;
  line-height: 1.22;
}

#managed-pakete .price {
  font-size: 1.7rem;
  letter-spacing: -0.2px;
}

#managed-pakete .price span {
  font-size: 0.9rem;
}

#managed-pakete .setup-fee {
  font-size: 0.78rem;
  line-height: 1.3;
}

#managed-pakete .setup-old,
#managed-pakete .compare-table .setup-old {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 1;
}

#managed-pakete .pricing-card ul {
  font-size: 1rem;
  line-height: 1.52;
  gap: 0.42rem;
}

#managed-direktvergleich .compare-table .setup-old {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 1;
}

#managed-direktvergleich .compare-table th,
#managed-direktvergleich .compare-table td {
  font-size: 0.97rem;
  line-height: 1.46;
  padding: 0.92rem 1.02rem;
}

#managed-direktvergleich .compare-table th:first-child,
#managed-direktvergleich .compare-table td:first-child {
  min-width: 240px;
  font-weight: 700;
}

#managed-direktvergleich .compare-table .compare-group td {
  font-size: 0.76rem;
  letter-spacing: 0.4px;
}

#managed-konfigurator .server-config-summary {
  background:
    radial-gradient(circle at 15% 0%, rgba(95, 156, 255, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-color: rgba(95, 156, 255, 0.32);
}

#managed-konfigurator .server-config-summary h3 {
  margin-bottom: 1rem;
}

#managed-konfigurator .server-order-field {
  margin-bottom: 0.8rem;
}

#managed-konfigurator .server-price-list li {
  background: rgba(95, 156, 255, 0.08);
  border-color: rgba(95, 156, 255, 0.2);
  padding: 0.62rem 0.7rem;
}

#managed-konfigurator .server-price-list span {
  font-size: 0.92rem;
  color: #ccdcf5;
}

#managed-konfigurator .server-price-list strong {
  font-size: 1.14rem;
  color: #ecf4ff;
  letter-spacing: 0.2px;
}

#managed-konfigurator #cfg-first-month {
  font-size: 1.2rem;
  color: #ffffff;
}

#managed-konfigurator .server-config-note {
  font-size: 0.9rem;
  color: #c8d9f5;
}

#managed-konfigurator .server-config-summary .btn {
  min-height: 46px;
  font-size: 0.95rem;
  font-weight: 800;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  display: grid;
  gap: 0.38rem;
  min-height: 100px;
}

#managed .pricing-card h3 {
  font-size: 1rem;
}

#managed .pricing-card ul {
  font-size: 0.95rem;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pricing-actions .btn {
  margin-top: 0;
  min-width: 172px;
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 40px;
  padding: 0.48rem 0.86rem;
  border-radius: 10px;
  border: 1px solid rgba(216, 229, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #dce8ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-mini:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.pricing-note {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffd3a3;
  background: rgba(255, 155, 47, 0.2);
  border: 1px solid rgba(255, 155, 47, 0.4);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}

.featured {
  border-color: rgba(43, 124, 255, 0.45);
  box-shadow: 0 16px 35px rgba(43, 124, 255, 0.15);
}

.site-footer {
  margin-top: 1.55rem;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 21, 40, 0.4), rgba(7, 12, 22, 0.92));
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 188, 92, 0), rgba(255, 188, 92, 0.35), rgba(95, 156, 255, 0.35), rgba(95, 156, 255, 0));
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(245px, 1.02fr) repeat(3, minmax(165px, 1fr));
  gap: 1.1rem 1.9rem;
  padding: 1.55rem 0 1.05rem;
  align-items: start;
}

.footer-grid > section {
  min-width: 0;
  align-self: start;
  padding-left: 0;
  border-left: 0;
}

.footer-grid > section:not(.footer-brand) {
  padding-top: 0.18rem;
}

.site-footer h2 {
  font-size: 1.04rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.2px;
  line-height: 1.25;
  min-height: 1.25em;
}

.site-footer p,
.site-footer li,
.site-footer small {
  color: var(--text-soft);
}

.site-footer a {
  color: #dce8ff;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: #fff1d2;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.34rem;
}

.footer-brand {
  display: block;
  text-align: left;
  max-width: 24ch;
  padding-right: 0;
}

.footer-kicker {
  margin: 0 0 0.2rem;
  color: #d6e4ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}

.footer-logo {
  display: none;
  width: 70px;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin: 0 0 0.44rem;
}

.footer-brand p {
  margin: 0 0 0.42rem;
  max-width: 24ch;
  line-height: 1.48;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.footer-brand .chips {
  justify-content: flex-start;
  margin-top: 0;
}

.chips span {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.18rem 0.42rem;
  font-size: 0.69rem;
}

.footer-bottom {
  margin-top: 0.18rem;
  padding: 1.02rem 0 1.32rem;
  border-top: 1px solid var(--line);
  color: rgba(228, 238, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}


/* Friendly brightening while preserving the original visual language */
:root {
  --bg: #13223d;
  --surface: #1a2d50;
  --surface-soft: #172845;
  --line: rgba(216, 229, 255, 0.2);
  --text: #edf4ff;
  --text-soft: #bfd2f1;
  --primary: #3d8dff;
  --primary-strong: #2a77ea;
  --accent: #ffad4b;
  --shadow: 0 16px 34px rgba(7, 17, 36, 0.24);
}

body {
  background:
    radial-gradient(circle at 18% -6%, rgba(82, 148, 255, 0.14), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 173, 75, 0.06), transparent 24%),
    linear-gradient(180deg, #172a4a 0%, #13223d 42%, #0f1c32 100%);
}

.site-header {
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 159, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(26, 43, 74, 0.92), rgba(18, 33, 59, 0.9));
  border-bottom-color: rgba(216, 229, 255, 0.2);
  box-shadow: 0 10px 24px rgba(9, 21, 43, 0.2);
}

.brand-logo {
  box-shadow: 0 14px 28px rgba(8, 22, 48, 0.22);
  border-color: rgba(220, 232, 255, 0.14);
}

.nav a,
.nav-drop-btn,
.mobile-nav a {
  color: #c7d7f3;
}

.nav a:hover,
.nav-drop-btn:hover,
.nav-dropdown:focus-within .nav-drop-btn,
.mobile-nav a:hover {
  color: var(--text);
  background: rgba(92, 156, 255, 0.16);
}

.nav-drop-btn::after {
  color: #d5e2fb;
}

.nav-dropdown-menu {
  background: rgba(17, 31, 56, 0.98);
  border-color: rgba(216, 229, 255, 0.24);
  box-shadow: 0 16px 30px rgba(6, 16, 34, 0.3);
}

.nav-dropdown-menu a:hover {
  background: rgba(95, 156, 255, 0.15);
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(216, 229, 255, 0.24);
}

.nav-toggle span {
  background: #e2edff;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(95, 156, 255, 0.22);
  border-color: rgba(95, 156, 255, 0.45);
}

.hero-content {
  background: linear-gradient(165deg, rgba(28, 43, 74, 0.95), rgba(28, 43, 74, 0.78));
}

.contact-card {
  background: linear-gradient(180deg, rgba(27, 42, 73, 0.94), rgba(23, 36, 63, 0.9));
}

.domain-hero-visual {
  border-color: rgba(104, 162, 255, 0.45);
  background:
    radial-gradient(circle at 18% 16%, rgba(61, 137, 255, 0.32), transparent 52%),
    linear-gradient(160deg, rgba(20, 34, 60, 0.96), rgba(18, 30, 54, 0.9));
  box-shadow: 0 16px 34px rgba(7, 17, 36, 0.24);
}

.hero-badges span,
.hero-badges a,
.hosting-fact,
.server-config-value,
.server-price-list li,
.btn-mini,
.chips span,
.domain-hero-list li {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(216, 229, 255, 0.22);
  color: #dce8ff;
}

.legal-card,
.domain-card,
.server-config-card,
.server-order-card,
.domain-price-card,
.feature-card,
.pricing-card,
.compare-table-wrap,
.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(216, 229, 255, 0.2);
  box-shadow: 0 14px 30px rgba(7, 17, 36, 0.22);
}

.btn-secondary {
  color: #e5efff;
  border-color: rgba(95, 156, 255, 0.38);
  background: rgba(95, 156, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(95, 156, 255, 0.24);
}

.btn-accent {
  color: #e5efff;
  border-color: rgba(95, 156, 255, 0.4);
  background: rgba(95, 156, 255, 0.18);
}

.btn-accent:hover {
  background: rgba(95, 156, 255, 0.26);
  border-color: rgba(95, 156, 255, 0.5);
}

.compare-table th {
  background: rgba(255, 255, 255, 0.1);
}

.compare-table .compare-group td {
  background: rgba(95, 156, 255, 0.22);
  color: #e6f0ff;
}

.domain-input-row input,
.domain-input-row select,
.server-order-field input,
.server-order-field select,
.server-order-field textarea,
.domain-price-search-row input {
  background: rgba(12, 21, 38, 0.56);
  color: var(--text);
  border-color: rgba(216, 229, 255, 0.24);
}

.domain-input-row input::placeholder,
.server-order-field input::placeholder,
.server-order-field textarea::placeholder,
.domain-price-search-row input::placeholder {
  color: #a9bedf;
}

.server-order-field input[readonly] {
  background: rgba(255, 255, 255, 0.08);
  color: #c4d5f2;
}

.setup-fee {
  color: rgba(198, 214, 239, 0.82);
}

.setup-old {
  text-decoration-color: rgba(255, 197, 111, 0.95);
}

.setup-zero {
  color: #ffd86e;
}

.tag {
  color: #ffe1b5;
  background: rgba(255, 173, 75, 0.22);
  border-color: rgba(255, 173, 75, 0.45);
}

body.legal-page .site-footer {
  background: rgba(22, 35, 61, 0.95);
}

body.admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% -6%, rgba(82, 148, 255, 0.14), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 173, 75, 0.06), transparent 24%),
    linear-gradient(180deg, #172a4a 0%, #13223d 42%, #0f1c32 100%);
  background-attachment: fixed;
}

body.admin-page main {
  flex: 1;
}

.site-footer {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 183, 84, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(34, 52, 89, 0.55), rgba(22, 35, 61, 0.92));
  border-top-color: rgba(216, 229, 255, 0.2);
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
    gap: 0.85rem;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    transition: max-height 0.28s ease, opacity 0.2s ease;
  }

  .mobile-nav.is-open {
    max-height: 360px;
    opacity: 1;
  }

  .brand-logo-wide {
    width: clamp(210px, 44vw, 295px);
    max-height: 66px;
  }
}

@media (max-width: 1366px) and (min-width: 901px) {
  .brand-logo-wide {
    width: clamp(230px, 25vw, 336px);
  }
}

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

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

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

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

  .server-config-grid {
    grid-template-columns: 1fr;
  }

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

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.52rem;
  }

  .pricing-actions .btn,
  .pricing-actions .btn-mini {
    width: 100%;
    min-width: 0;
  }

  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 760px;
  }

  .compare-table th:not(:first-child),
  .compare-table td:not(:first-child) {
    white-space: nowrap;
  }

  #managed-pakete .price {
    font-size: 1.58rem;
  }

  #managed-pakete .setup-fee {
    font-size: 0.76rem;
  }

  #managed-pakete .pricing-card ul {
    font-size: 0.97rem;
  }

  #managed-direktvergleich .compare-table th,
  #managed-direktvergleich .compare-table td {
    font-size: 0.92rem;
    padding: 0.82rem 0.88rem;
  }

  #managed-direktvergleich .compare-table th:first-child,
  #managed-direktvergleich .compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: rgba(17, 30, 54, 0.96);
  }

  .quickstart-intro {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem 0.72rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-right: 0;
    margin-bottom: 0.2rem;
  }

  .footer-grid > section {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .brand-logo-wide {
    width: clamp(196px, 60vw, 244px);
    max-height: 62px;
    filter: saturate(1.04) contrast(1.05);
  }

  .hero {
    padding-top: 2.1rem;
  }

  .footer-logo {
    width: 72px;
  }

  .hero-content,
  .contact-card,
  .feature-card,
  .pricing-card {
    padding: 0.9rem;
  }

  .hero-side-panel,
  .hero-subpage-main,
  .decision-shell,
  .services-shell {
    padding: 0.95rem;
  }

  .three-cols,
  .two-cols,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .section {
    padding: 1.2rem 0;
  }

  #leistungen,
  #zusatzleistungen {
    padding-bottom: 0.9rem;
  }

  #leistungen .container,
  #zusatzleistungen .container {
    padding: 0.85rem;
  }

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

  .domain-price-search-row {
    grid-template-columns: 1fr;
  }

  .server-order-form-row {
    grid-template-columns: 1fr;
  }

  .setup-fee {
    font-size: 0.72rem;
    line-height: 1.24;
  }

  .setup-old {
    font-size: 0.76rem;
  }

  .compare-table {
    min-width: 800px;
  }

  #managed-konfigurator .server-price-list li {
    padding: 0.56rem 0.62rem;
  }

  #managed-konfigurator .server-price-list strong {
    font-size: 1.02rem;
  }

  #managed-direktvergleich .compare-table th,
  #managed-direktvergleich .compare-table td {
    font-size: 0.9rem;
    padding: 0.78rem 0.84rem;
  }
}




