/* =====================================================
   SERVERCORE24 – Main Stylesheet v2
   ===================================================== */

/* ── Reset & Tokens ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c-blue: #2563eb;
  --c-blue-hover: #1d4ed8;
  --c-blue-dim: rgba(37, 99, 235, .08);
  --c-blue-glow: rgba(37, 99, 235, .25);
  --c-green: #10b981;
  --c-red: #ef4444;
  --c-amber: #f59e0b;
  --c-cyan: #06b6d4;
  --c-indigo: #6366f1;

  --c-dark: #050d1a;
  --c-dark-2: #091426;
  --c-dark-3: #0f1f38;
  --c-dark-border: rgba(255, 255, 255, .1);
  --c-text: #0f172a;
  --c-text-2: #475569;
  --c-text-3: #94a3b8;
  --c-border: #e2e8f0;
  --c-bg: #f8fafc;
  --c-white: #ffffff;

  --nav-h: 68px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 2px 4px rgba(0, 0, 0, .05);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, .1), 0 4px 8px rgba(0, 0, 0, .06);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, .12);
  --t: .2s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--c-white);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.3px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ── Utility ─────────────────────────────────────────── */
.container {
  width: 92%;
  margin: 0 auto;
}

.section {
  padding: 5rem 4%;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

/* Full-bleed sections */
.performance,
.promises {
  max-width: 100%;
  padding: 5rem 1.5rem;
}

.performance>.section-header,
.performance>.performance-grid,
.promises>.section-header,
.promises>.promises-grid {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.text-blue {
  color: var(--c-blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Navigation ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  width: 92%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: .2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: .5rem .95rem;
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  font-size: .875rem;
  font-weight: 500;
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--c-blue);
  background: var(--c-blue-dim);
}

.nav-item {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  display: inline-block;
  margin-left: .35rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: .4rem;
  min-width: 200px;
  display: none;
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
  display: block;
  animation: fadeDown .15s ease;
}

.dropdown-menu a {
  display: block;
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--c-text-2);
  transition: all var(--t);
}

.dropdown-menu a:hover {
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  color: var(--c-text);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}

.btn-login:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
  background: var(--c-blue-dim);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  z-index: 199;
}

.mobile-menu.active {
  display: block;
  animation: slideDown .25s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu ul {
  list-style: none;
  padding: .75rem;
}

.mobile-menu a {
  display: block;
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  font-weight: 500;
  font-size: .95rem;
  transition: all var(--t);
}

.mobile-menu a:hover {
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .925rem;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-blue);
  color: white;
  box-shadow: 0 4px 16px var(--c-blue-glow);
}

.btn-primary:hover {
  background: var(--c-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--c-blue-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, .08);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, .2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
}

.btn-blue {
  background: var(--c-blue);
  color: white;
  box-shadow: 0 4px 14px var(--c-blue-glow);
}

.btn-blue:hover {
  background: var(--c-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--c-blue-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  font-size: .925rem;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .35);
  color: white;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 2.25rem;
  background: #5865F2;
  color: white;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--t);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(88, 101, 242, .4);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(88, 101, 242, .5);
}

.btn-discord i {
  font-size: 1.1rem;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 5.5rem;
  color: white;
}

/* Dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Gradient orbs */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 70% 50%, rgba(37, 99, 235, .22) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 2% 70%, rgba(99, 102, 241, .12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 95% 10%, rgba(6, 182, 212, .08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.5rem;
}

.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px var(--c-green);
  animation: livepulse 2.5s infinite;
  flex-shrink: 0;
}

@keyframes livepulse {

  0%,
  100% {
    box-shadow: 0 0 5px var(--c-green);
  }

  50% {
    box-shadow: 0 0 14px var(--c-green), 0 0 24px rgba(16, 185, 129, .35);
  }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 1.5rem;
}

.hero-gradient {
  display: block;
  background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Hero status card ────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-status-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.hsc-header {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  gap: .65rem;
}

.hsc-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px var(--c-green);
  animation: livepulse 2.5s infinite;
  flex-shrink: 0;
}

.hsc-title {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  flex: 1;
}

.hsc-badge {
  padding: 2px 9px;
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .3);
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--c-green);
}

.hsc-body {
  padding: 1.25rem 1.4rem;
}

.hsc-metric {
  margin-bottom: 1.1rem;
}

.hsc-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .73rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .5rem;
}

.hsc-pct {
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
}

.hsc-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, .09);
  border-radius: 100px;
  overflow: hidden;
}

.hsc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-blue), #60a5fa);
  border-radius: 100px;
  box-shadow: 0 0 8px rgba(37, 99, 235, .5);
}

.hsc-bar-cyan {
  background: linear-gradient(90deg, var(--c-cyan), #67e8f9);
  box-shadow: 0 0 8px rgba(6, 182, 212, .5);
}

.hsc-services {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.hsc-svc {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
}

.hsc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hsc-dot.online {
  background: var(--c-green);
  box-shadow: 0 0 5px var(--c-green);
}

.hsc-dot.warn {
  background: var(--c-amber);
}

.hsc-footer {
  padding: .875rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hsc-footer i {
  color: var(--c-green);
}

.ob-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}

.ob-trust-pill {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
}

.ob-trust-pill i {
  color: var(--c-cyan);
}

/* Vergleichs-Tabelle: "Andere Hoster" vs. "ServerCore24" */
.ob-compare-wrap {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--c-border);
}

.ob-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  font-size: .95rem;
}

.ob-compare-table caption {
  caption-side: top;
  text-align: left;
  padding: 1rem 1.25rem 0;
  font-weight: 600;
  color: var(--c-text-2);
}

.ob-compare-table th,
.ob-compare-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}

.ob-compare-table thead th {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-text-3);
  border-bottom: 2px solid var(--c-border);
}

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

.ob-compare-table td:first-child {
  color: var(--c-text-2);
  width: 30%;
  font-weight: 500;
}

.ob-col-bad {
  color: var(--c-text-2);
}

.ob-col-bad i {
  color: var(--c-red);
  margin-right: .5rem;
}

.ob-col-good {
  color: var(--c-text);
  font-weight: 500;
}

.ob-col-good i {
  color: var(--c-green);
  margin-right: .5rem;
}

.ob-col-good-cell {
  background: var(--c-blue-dim);
}

.ob-compare-table th.ob-col-good-cell {
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

/* Hardware-Spec Grid */
.ob-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ob-spec-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  transition: transform .2s, box-shadow .2s;
}

.ob-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

.ob-spec-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-dim);
  color: var(--c-blue);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ob-spec-card h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.ob-spec-card p {
  color: var(--c-text-2);
  font-size: .9rem;
  line-height: 1.55;
}

.ob-spec-card .ob-spec-tag {
  display: inline-block;
  margin-top: .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

@media (max-width: 980px) {
  .ob-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .ob-spec-grid {
    grid-template-columns: 1fr;
  }

  .ob-compare-table td:first-child {
    width: auto;
  }
}

/* ── Stats strip ─────────────────────────────────────── */
.stats-strip {
  background: var(--c-dark-2);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 3px solid rgba(37, 99, 235, .3);
}

.stats-strip-inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.4rem 1rem;
  flex: 1;
  min-width: 160px;
  border-right: 1px solid rgba(255, 255, 255, .05);
}

.stat-pill:last-child {
  border-right: none;
}

.stat-pill-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.stat-pill-text {
  display: flex;
  flex-direction: column;
}

.stat-pill-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.stat-pill-label {
  font-size: .7rem;
  color: var(--c-text-3);
  margin-top: 2px;
}

/* ── Section base ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .75rem;
}

.section-header h2 {
  margin-bottom: .75rem;
  color: var(--c-text);
}

.section-header p {
  color: var(--c-text-2);
  max-width: 560px;
  margin: 0 auto;
  font-size: .975rem;
}

/* Dark section header */
.section-header-dark {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-dark h2 {
  color: white;
  margin-bottom: .75rem;
}

.section-header-dark p {
  color: rgba(255, 255, 255, .5);
  max-width: 540px;
  margin: 0 auto;
}

.section-eyebrow-dark {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: .75rem;
}

/* ── Package cards (Angebote & home) ─────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.pkg-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  position: relative;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.pkg-card:hover {
  border-color: var(--c-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--c-blue-glow);
}

.pkg-card.featured {
  border-color: var(--c-blue);
  background: linear-gradient(160deg, rgba(37, 99, 235, .04) 0%, transparent 60%);
  box-shadow: 0 8px 32px var(--c-blue-glow), inset 0 1px 0 rgba(37, 99, 235, .15);
}

.pkg-card.selected {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15), 0 12px 32px var(--c-blue-glow);
}

.pkg-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-blue);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.pkg-badge.green {
  background: var(--c-green);
}

.pkg-icon {
  font-size: 26px;
  margin-bottom: 1rem;
}

.pkg-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.pkg-sub {
  font-size: .78rem;
  color: var(--c-text-3);
  margin-bottom: 1.25rem;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: .2rem;
}

.pkg-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-blue);
}

.pkg-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-3);
}

.pkg-price .period {
  font-size: .8rem;
  color: var(--c-text-3);
}

.pkg-price-orig {
  font-size: .75rem;
  color: var(--c-text-3);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.pkg-divider {
  height: 1px;
  background: var(--c-border);
  margin: 1.1rem 0;
}

.pkg-specs {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.5rem;
}

.pkg-spec {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--c-text-2);
}

.pkg-spec .check {
  width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, .12);
  color: var(--c-green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
}

.pkg-spec .val {
  font-weight: 600;
  color: var(--c-text);
  margin-right: 2px;
}

.pkg-order-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text-2);
  text-decoration: none;
}

.pkg-order-btn:hover,
.pkg-card.featured .pkg-order-btn {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: white;
  box-shadow: 0 4px 14px var(--c-blue-glow);
}

/* ── Features dark section ───────────────────────────── */
.features-dark {
  background: var(--c-dark);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.features-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 100% 50%, rgba(37, 99, 235, .1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 0% 50%, rgba(99, 102, 241, .07) 0%, transparent 60%);
  pointer-events: none;
}

.features-dark-inner {
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.features-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fd-card {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all .3s;
}

.fd-card:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, .15), 0 8px 32px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}

.fd-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.fd-body h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.fd-body p {
  color: rgba(255, 255, 255, .45);
  font-size: .875rem;
  line-height: 1.65;
}

/* ── Partners section ────────────────────────────────── */
.partners-section {
  padding: 4.5rem 1.5rem;
  background: var(--c-dark);
}

.partners-section .section-header {
  margin-bottom: 2.5rem;
}

.partners-strip {
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-xl);
  transition: all .3s;
  min-width: 250px;
  text-align: center;
}

.partner-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 10px 32px var(--c-blue-glow);
  transform: translateY(-4px);
}

.partner-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--r-md);
}

.partner-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: white;
}

.partner-card p {
  font-size: .75rem;
  color: var(--c-text-3);
}

/* ── Cards grid (reused on other pages) ──────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: all .3s;
}

.card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 24px var(--c-blue-glow);
  transform: translateY(-4px);
}

.card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: var(--r-sm);
  object-fit: contain;
}

.card h3 {
  margin-bottom: .6rem;
}

.card p {
  color: var(--c-text-2);
  font-size: .925rem;
}

/* ── Performance section ─────────────────────────────── */
.performance {
  background: var(--c-bg);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.performance-card {
  background: var(--c-white);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  text-align: center;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.performance-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 24px var(--c-blue-glow);
  transform: translateY(-4px);
}

.performance-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--c-blue);
  margin-bottom: .4rem;
}

.performance-label {
  color: var(--c-text-2);
  font-size: .9rem;
  font-weight: 500;
}

/* ── Pricing overview ────────────────────────────────── */
.pricing-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 16px 40px var(--c-blue-glow);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--c-blue);
  box-shadow: 0 8px 24px var(--c-blue-glow);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 1.5rem;
  background: var(--c-blue);
  color: white;
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  background: var(--c-blue-dim);
  border: 1.5px solid rgba(37, 99, 235, .2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .5rem 0 1.25rem;
}

.pricing-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.pricing-category {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-blue);
}

.pricing-period {
  color: var(--c-text-3);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: .55rem 0;
  color: var(--c-text-2);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid var(--c-border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  padding: .8rem 1.25rem;
  border: 1.5px solid var(--c-blue);
  border-radius: var(--r-sm);
  text-align: center;
  color: var(--c-blue);
  font-weight: 600;
  font-size: .875rem;
  transition: all var(--t);
  cursor: pointer;
  background: none;
  text-decoration: none;
}

.btn-pricing:hover,
.btn-pricing-primary {
  background: var(--c-blue);
  color: white;
}

.btn-pricing-primary:hover {
  background: var(--c-blue-hover);
}

/* ── Category toggle ─────────────────────────────────── */
.cat-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  gap: 2px;
}

.cat-btn {
  padding: .55rem 1.4rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  color: var(--c-text-2);
  border: none;
  background: none;
}

.cat-btn.active {
  background: var(--c-blue);
  color: white;
  box-shadow: 0 2px 10px var(--c-blue-glow);
}

.cat-btn:not(.active):hover {
  color: var(--c-text);
}

/* ── Billing toggle ──────────────────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--c-text-2);
}

.billing-chip {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(16, 185, 129, .1);
  color: var(--c-green);
}

.billing-sw {
  position: relative;
  width: 40px;
  height: 21px;
  cursor: pointer;
}

.billing-sw input {
  display: none;
}

.billing-sw-track {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 100px;
  transition: background var(--t);
}

.billing-sw input:checked+.billing-sw-track {
  background: var(--c-blue);
}

.billing-sw-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  transition: transform var(--t);
  pointer-events: none;
}

.billing-sw input:checked~.billing-sw-thumb {
  transform: translateX(19px);
}

/* ── Configurator ────────────────────────────────────── */
.configurator {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-md);
}

.config-head {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.config-head h3 {
  font-size: 1rem;
  font-weight: 700;
}

.config-head p {
  font-size: .75rem;
  color: var(--c-text-3);
  margin-top: 2px;
}

.config-body {
  display: grid;
  grid-template-columns: 1fr 300px;
}

.config-left {
  padding: 1.75rem;
  border-right: 1px solid var(--c-border);
}

.config-right {
  padding: 1.75rem;
  background: var(--c-bg);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.game-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: .875rem .6rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--c-bg);
  transition: all .2s;
}

.game-btn:hover {
  border-color: var(--c-blue);
  background: var(--c-blue-dim);
}

.game-btn.selected {
  border-color: var(--c-blue);
  background: var(--c-blue-dim);
}

.game-btn .gi {
  font-size: 1.35rem;
}

.game-btn .gn {
  font-size: .7rem;
  font-weight: 600;
  color: var(--c-text-2);
  text-align: center;
}

.game-btn.selected .gn {
  color: var(--c-blue);
}

.slider-group {
  margin-bottom: 1.4rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}

.slider-label span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-3);
}

.slider-val {
  font-size: .925rem;
  font-weight: 700;
  color: var(--c-blue);
}

.slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--c-border);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-blue);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15), 0 2px 6px var(--c-blue-glow);
}

.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(37, 99, 235, .15), 0 2px 10px var(--c-blue-glow);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.slider-tick {
  font-size: .65rem;
  color: var(--c-text-3);
}

.config-summary-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.config-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .82rem;
}

.config-line:last-of-type {
  border-bottom: none;
}

.config-line-key {
  color: var(--c-text-2);
}

.config-line-val {
  font-weight: 600;
  font-size: .78rem;
}

.config-divider {
  height: 1px;
  background: var(--c-border);
  margin: 1rem 0;
}

.config-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.config-total-label {
  font-size: .875rem;
  font-weight: 700;
}

.config-total-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-blue);
}

.config-total-period {
  font-size: .75rem;
  color: var(--c-text-3);
}

.os-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 1.25rem;
}

.os-opt {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s;
  font-size: .78rem;
  font-weight: 500;
}

.os-opt:hover,
.os-opt.selected {
  border-color: var(--c-blue);
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

.os-opt .oi {
  font-size: 1rem;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 1.25rem;
}

.loc-btn {
  padding: .5rem .6rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  background: none;
}

.loc-btn:hover,
.loc-btn.selected {
  border-color: var(--c-blue);
  background: var(--c-blue-dim);
}

.loc-flag {
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}

.loc-name {
  font-size: .65rem;
  font-weight: 600;
  color: var(--c-text-2);
}

.loc-btn.selected .loc-name {
  color: var(--c-blue);
}

.loc-ping {
  font-size: .65rem;
  color: var(--c-text-3);
}

/* ── Hero Angebote banner ────────────────────────────── */
.hero-angebote {
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  background-color: var(--c-dark);
  overflow: hidden;
}

.hero-angebote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/datacenter.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-angebote-content {
  position: relative;
  z-index: 1;
}

.hero-angebote h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-angebote h1 span {
  color: #60a5fa;
}

.hero-angebote p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Section nav (Angebote sub-nav) ──────────────────── */
.hero-nav {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}

.hero-nav-container {
  width: 92%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.hero-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 1rem 0;
}

.hero-nav-links a {
  color: var(--c-text-2);
  font-size: .875rem;
  font-weight: 500;
  padding-bottom: .4rem;
  border-bottom: 2px solid transparent;
  transition: all var(--t);
}

.hero-nav-links a:hover,
.hero-nav-links a.active {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
}

.category-section {
  display: none;
}

.category-section.active {
  display: block;
}

/* ── Promises ────────────────────────────────────────── */
.promises {
  background: var(--c-bg);
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.promise-card {
  background: var(--c-white);
  padding: 1.75rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  text-align: center;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}

.promise-card:hover {
  border-color: var(--c-blue);
  box-shadow: 0 8px 24px var(--c-blue-glow);
  transform: translateY(-4px);
}

.promise-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.promise-card h3 {
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.promise-card p {
  color: var(--c-text-2);
  font-size: .9rem;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

details.faq-item {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

details.faq-item[open] {
  border-color: var(--c-blue);
  box-shadow: 0 4px 20px var(--c-blue-glow);
}

details.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .925rem;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: color var(--t);
}

details.faq-item[open] summary {
  color: var(--c-blue);
}

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

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--c-text-3);
  flex-shrink: 0;
  transition: all var(--t);
}

details.faq-item[open] .faq-icon {
  background: var(--c-blue-dim);
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: rotate(45deg);
}

.faq-body {
  padding: 1rem 1.5rem 1.3rem;
  color: var(--c-text-2);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: var(--c-dark);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(37, 99, 235, .18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner-inner h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner-inner p {
  color: rgba(255, 255, 255, .5);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-size: 1.025rem;
}

/* ── Features strip (Angebote page) ─────────────────── */
.features-strip {
  width: 92%;
  margin: 0 auto;
  padding: 0 0 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all var(--t);
}

.feature-card:hover {
  border-color: var(--c-blue);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.feature-title {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.feature-desc {
  font-size: .78rem;
  color: var(--c-text-3);
  line-height: 1.6;
}

/* ── Testimonials (other pages) ──────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--c-white);
  padding: 1.75rem;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--c-amber);
  margin-bottom: .75rem;
  font-size: 1rem;
  letter-spacing: .1em;
}

.testimonial p {
  color: var(--c-text-2);
  margin-bottom: .75rem;
  font-style: italic;
  font-size: .925rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: .875rem;
}

.testimonial-role {
  color: var(--c-text-3);
  font-size: .8rem;
}

/* partner-img legacy */
.partner-img {
  border-radius: var(--r-md);
}

/* ── Checkout overlay ────────────────────────────────── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  width: min(820px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--c-border);
}

.checkout-head h2 {
  font-size: 1.2rem;
  font-weight: 800;
}

.close-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--t);
}

.close-btn:hover {
  border-color: var(--c-red);
  color: var(--c-red);
  background: rgba(239, 68, 68, .06);
}

.checkout-body {
  display: grid;
  grid-template-columns: 1fr 280px;
}

.checkout-form {
  padding: 1.75rem;
  border-right: 1px solid var(--c-border);
}

.checkout-summary {
  padding: 1.75rem;
  background: var(--c-bg);
}

/* ── Auth Modal ──────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
  animation: fadeInOverlay .2s ease forwards;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-content {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 500px;
  max-height: 92dvh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  animation: slideUp .28s cubic-bezier(.34, 1.4, .64, 1) forwards;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
}

.modal-brand img {
  height: 48px;
  width: auto;
}

.modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  cursor: pointer;
  transition: all var(--t);
}

.modal-close:hover {
  background: rgba(239, 68, 68, .06);
  border-color: var(--c-red);
  color: var(--c-red);
}

.modal-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 3px;
  position: relative;
}

.modal-tab-btn {
  flex: 1;
  padding: .55rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  color: var(--c-text-3);
  border-radius: var(--r-sm);
  transition: all var(--t);
  position: relative;
  z-index: 1;
}

.modal-tab-btn.active {
  color: var(--c-blue);
}

.tab-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  width: calc(50% - 3px);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  transition: transform .22s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm);
}

.tab-slider.right {
  transform: translateX(100%);
}

/* ── Form elements ───────────────────────────────────── */
.form-section-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-text-3);
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-border);
}

.form-section-label:not(:first-child) {
  margin-top: 1.25rem;
}

.dbl-group {
  display: flex;
  gap: .75rem;
}

.dbl-group .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  margin-bottom: .9rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-text-2);
  margin-bottom: 5px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--r-md);
}

.input-wrap .input-icon {
  position: absolute;
  left: 11px;
  width: 14px;
  height: 14px;
  color: var(--c-text-3);
  pointer-events: none;
  flex-shrink: 0;
}

.input-wrap input {
  padding-left: 36px !important;
}

.input-wrap .toggle-pw {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: all var(--t);
  padding: 0;
}

.input-wrap .toggle-pw:hover {
  color: var(--c-text-2);
  background: var(--c-bg);
}

.input-wrap .toggle-pw svg {
  width: 13px;
  height: 13px;
}

.form-group input,
.dbl-group input {
  width: 100%;
  padding: .6rem .8rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: .875rem;
  color: var(--c-text);
  font-family: inherit;
  transition: all var(--t);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.dbl-group input::placeholder {
  color: var(--c-text-3);
}

.form-group input:focus,
.dbl-group input:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
  background: rgba(37, 99, 235, .02);
}

.pw-strength {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: -.4rem;
  margin-bottom: .875rem;
}

.pw-bars {
  display: flex;
  gap: 3px;
  flex: 1;
}

.pw-bar {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--c-border);
  transition: background .3s;
}

.pw-bar.weak {
  background: var(--c-red);
}

.pw-bar.fair {
  background: var(--c-amber);
}

.pw-bar.good {
  background: var(--c-blue);
}

.pw-bar.strong {
  background: var(--c-green);
}

#pwLabel {
  font-size: .7rem;
  color: var(--c-text-3);
  min-width: 48px;
}

.forgot-link {
  font-size: .8rem;
  color: var(--c-blue);
  text-decoration: none;
}

.forgot-link:hover {
  opacity: .75;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.3rem;
  background: var(--c-blue);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-submit svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}

.btn-submit:hover {
  background: var(--c-blue-hover);
  box-shadow: 0 4px 14px var(--c-blue-glow);
  transform: translateY(-1px);
}

.btn-submit:hover svg {
  transform: translateX(3px);
}

/* ── Toast ───────────────────────────────────────────── */
.response-box {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1rem;
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--shadow-xl);
  min-width: 280px;
  max-width: 360px;
  opacity: 0;
  transform: translateX(calc(100% + 1.5rem));
  transition: opacity .3s var(--t), transform .3s var(--t);
  pointer-events: none;
}

.response-box.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.response-box.success {
  border-color: rgba(16, 185, 129, .3);
}

.response-box.error {
  border-color: rgba(239, 68, 68, .3);
}

.response-box.info {
  border-color: rgba(37, 99, 235, .3);
}

.response-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
}

.response-box.success .response-icon {
  background: rgba(16, 185, 129, .1);
  color: var(--c-green);
}

.response-box.error .response-icon {
  background: rgba(239, 68, 68, .1);
  color: var(--c-red);
}

.response-box.info .response-icon {
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

.response-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.response-text strong {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-text);
}

.response-text span {
  font-size: .78rem;
  color: var(--c-text-2);
  line-height: 1.5;
}

.response-close {
  background: none;
  border: none;
  color: var(--c-text-3);
  cursor: pointer;
  font-size: .8rem;
  flex-shrink: 0;
  transition: color var(--t);
  padding: 2px;
}

.response-close:hover {
  color: var(--c-text);
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--c-dark);
  color: #64748b;
  padding: 5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-container {
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.75;
  max-width: 270px;
  color: #475569;
}

.footer-section h4 {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #475569;
  font-size: .875rem;
  line-height: 2.4;
  transition: color var(--t);
  display: inline-block;
}

.footer-section a:hover {
  color: rgba(255, 255, 255, .85);
}

.footer-bottom {
  width: 92%;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: #334155;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Legal pages ─────────────────────────────────────── */
.impressum-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.impressum-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: .875rem;
}

.impressum-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.impressum-section {
  margin-bottom: 2.75rem;
}

.impressum-section h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-border);
}

.impressum-section p,
.impressum-section address {
  font-size: .925rem;
  line-height: 1.8;
  color: var(--c-text-2);
  font-style: normal;
}

.impressum-section a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.impressum-section a:hover {
  color: var(--c-blue-hover);
}

.impressum-note {
  background: var(--c-bg);
  border-left: 3px solid var(--c-border);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .875rem;
  color: var(--c-text-2);
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── Checkout page ───────────────────────────────────── */
.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
}

.auth-tabs {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--c-border);
}

.auth-tab-buttons {
  display: flex;
  border-bottom: 1.5px solid var(--c-border);
}

.auth-tab-btn {
  flex: 1;
  padding: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-text-2);
  border-bottom: 2px solid transparent;
  transition: all var(--t);
  font-size: .925rem;
}

.auth-tab-btn.active {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
}

.auth-tab-btn:hover {
  background: var(--c-bg);
}

.auth-tab-content {
  display: none;
  padding: 1.75rem;
}

.auth-tab-content.active {
  display: block;
}

.order-summary {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  box-shadow: var(--shadow-sm);
}

.order-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.order-item {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-border);
}

.order-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-name {
  font-weight: 600;
  margin-bottom: .4rem;
  font-size: .9rem;
}

.item-specs {
  font-size: .8rem;
  color: var(--c-text-2);
  line-height: 1.5;
  margin-bottom: .6rem;
}

.item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blue);
}

.order-total {
  background: var(--c-bg);
  padding: 1.25rem;
  border-radius: var(--r-md);
  margin-top: 1.25rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: .6rem;
  font-size: .9rem;
  color: var(--c-text-2);
}

.total-row.final {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  padding-top: .875rem;
  border-top: 1.5px solid var(--c-border);
}

.total-row.final .amount {
  color: var(--c-blue);
}

.payment-section {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.payment-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: .875rem;
  margin-bottom: 1.75rem;
}

.payment-option {
  position: relative;
}

.payment-option input {
  display: none;
}

.payment-label {
  display: block;
  padding: .875rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--t);
  font-weight: 500;
  font-size: .875rem;
}

.payment-option input:checked+.payment-label {
  border-color: var(--c-blue);
  background: var(--c-blue-dim);
  color: var(--c-blue);
}

.payment-label:hover {
  border-color: var(--c-blue);
}

.legal-note {
  font-size: .8rem;
  color: var(--c-text-2);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.legal-note a {
  color: var(--c-blue);
  text-decoration: underline;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--c-green);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--t);
}

.btn-checkout:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, .3);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-border);
  font-size: .8rem;
  color: var(--c-text-2);
}

.security-badge svg {
  width: 18px;
  height: 18px;
  color: var(--c-green);
}

/* ── Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-text-3);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .config-left {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .game-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    max-width: 480px;
    width: 100%;
  }

  .hero-status-card {
    max-width: 100%;
  }

  .features-dark-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 3.5rem 4%;
    width: 96%;
  }

  .performance,
  .promises {
    padding: 3.5rem 4%;
  }

  .performance>.section-header,
  .performance>.performance-grid,
  .promises>.section-header,
  .promises>.promises-grid {
    width: 96%;
  }

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

  .pricing-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-list {
    max-width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .checkout-container {
    grid-template-columns: 1fr;
  }

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

  .features-dark {
    padding: 4rem 1.25rem;
  }

  .cta-banner {
    padding: 5rem 1.25rem;
  }

  .stats-strip-inner {
    flex-direction: column;
  }

  .stat-pill {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .stat-pill:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .features-dark-grid {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hsc-services {
    grid-template-columns: 1fr;
  }
}