:root {
  --bg: #0B0820;
  --surface: #120D33;
  --surface2: #19134A;
  --accent: #8B5FFF;
  --secondary: #6D3FE0;
  --star: #E8E4FF;
  --nebula: #FF6FD8;
  --text: #F0EEFF;
  --muted: #7A6FB0;
  --border: #2A1F66;
  --footer: #050318;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  padding-top: 72px;
}

img {
  max-width: 100%;
}

a {
  color: var(--star);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  filter: drop-shadow(0 0 10px rgba(139, 95, 255, 0.45));
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(11, 8, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  font-size: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--star);
}

.hero,
.hero-page {
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/hero-home.webp");
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -72px;
  padding: 114px 16px 80px;
}

.hero.starfield::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(232, 228, 255, 0.9), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(139, 95, 255, 0.8), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 111, 216, 0.7), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(232, 228, 255, 0.6), transparent),
    radial-gradient(2px 2px at 10% 60%, rgba(139, 95, 255, 0.5), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255, 111, 216, 0.5), transparent);
  opacity: 0.55;
}

.hero-preise {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/hero-preise.webp");
}

.hero-reseller {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/hero-reseller.webp");
}

.hero-kontakt {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/hero-kontakt.webp");
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  color: #fff;
}

h1,
h2,
h3,
.section-title,
.popup-title {
  font-family: "Exo", sans-serif;
  letter-spacing: 0.02em;
}

.signal-badge,
.mx-tag,
.galaxy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  padding: 6px 20px;
  border: 1px solid rgba(139, 95, 255, 0.35);
  background: rgba(139, 95, 255, 0.12);
  color: var(--star);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Exo", sans-serif;
}

.galaxy-pills-wrap,
.device-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.galaxy-pill,
.device-pill {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(139, 95, 255, 0.35);
  color: var(--star);
  background: rgba(139, 95, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
}

.galaxy-devices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.galaxy-device-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(139, 95, 255, 0.1);
}

.galaxy-device-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.galaxy-device-card h3 {
  font-family: "Exo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ok-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(139, 95, 255, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.scale-display {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  margin: 24px auto;
  max-width: 480px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 12px;
}

.scale-display .scale-value {
  color: var(--star);
  font-size: 1.75rem;
  font-family: "Exo", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.scale-display .scale-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(139, 95, 255, 0.32);
}

.btn-primary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: var(--nebula);
  color: var(--nebula);
}

.trust-strip {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-strip .check {
  color: var(--star);
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-surface {
  background: var(--surface);
}

.bg-surface2 {
  background: var(--surface2);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
}

.section-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.diagonal-slash {
  height: 4px;
  width: 100%;
  max-width: 220px;
  margin: 0 auto 28px;
  background: linear-gradient(
    135deg,
    transparent 48%,
    var(--accent) 49%,
    var(--accent) 51%,
    transparent 52%
  );
}

.speed-cards,
.extreme-cards,
.pricing-grid,
.reviews-grid,
.blog-grid,
.bento-grid,
.faq-list,
.stat-cards,
.step-cards {
  display: grid;
  gap: 18px;
}

.speed-cards,
.extreme-cards,
.stat-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.speed-card,
.extreme-card,
.price-card,
.review-card,
.blog-card,
.bento-card,
.panel-card,
.contact-card,
.reseller-plan,
.faq-item,
.step-card,
.stat-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(139, 95, 255, 0.1);
}

.speed-card,
.extreme-card,
.step-card,
.review-card,
.blog-card,
.bento-card,
.panel-card,
.contact-card,
.reseller-plan,
.faq-item,
.stat-box {
  padding: 24px;
}

.extreme-card h3,
.speed-card h3,
.stat-box h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--star);
  margin-bottom: 8px;
}

.extreme-card p,
.speed-card p,
.stat-box p {
  color: var(--muted);
}

.stat-box {
  text-align: center;
  border-color: var(--accent);
  background: rgba(139, 95, 255, 0.08);
}

.stat-box .stat-num {
  font-family: "Exo", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-box .stat-desc {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.step-card.purple {
  border-color: color-mix(in srgb, var(--accent), #000000 40%);
  background: rgba(139, 95, 255, 0.1);
}

.step-num {
  color: var(--accent);
  font-family: "Exo", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stats-bar {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 40px 16px;
  width: 100%;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.stat-value {
  font-family: "Exo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
}

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

.price-card {
  text-align: center;
  padding: 32px 24px;
}

.price-card.featured {
  border: 1px solid var(--accent);
  box-shadow:
    0 0 40px rgba(139, 95, 255, 0.28),
    0 4px 24px rgba(139, 95, 255, 0.15);
  background: linear-gradient(180deg, rgba(139, 95, 255, 0.16), var(--surface));
}

.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-family: "Exo", sans-serif;
}

.save-badge {
  background: var(--nebula);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 6px;
}

.price-card .duration {
  font-family: "Exo", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.price-card .price {
  font-family: "Exo", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin: 10px 0;
}

.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1rem;
}

.pricing-monthly {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 16px 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-features li {
  padding: 5px 0;
}

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

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

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

.bento-card h3 {
  font-family: "Exo", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.bento-card.bento-large {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-color: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card.bento-large h3,
.bento-card.bento-large p {
  color: #fff;
}

.bento-card.bento-wide {
  grid-column: span 2;
}

.bento-card.bento-accent,
.bento-card.nebula {
  border-left: 4px solid var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split-reverse .split-content {
  order: 1;
}

.split-reverse .split-image {
  order: 2;
}

.visual-banner {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.visual-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-showcase img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

.split-image {
  min-height: 360px;
  overflow: hidden;
  background: var(--surface2);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.split-content {
  padding: 48px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-label {
  color: var(--nebula);
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  margin-bottom: 12px;
}

.split-content h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.check-list {
  list-style: none;
  margin-bottom: 24px;
  line-height: 1.85;
  color: var(--text);
}

.check-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

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

.review-card {
  border-left: 4px solid var(--accent);
}

.review-stars {
  color: var(--star);
  margin-bottom: 8px;
}

.review-author {
  font-weight: 700;
}

.review-date {
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-text {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 10px;
  padding: 0;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question span {
  color: var(--accent);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--muted);
  display: none;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-card-body {
  padding: 20px;
}

.blog-card h3 {
  margin: 8px 0 10px;
  font-size: 1.1rem;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.blog-article,
.legal-content,
.error-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 16px 64px;
}

.blog-article p,
.legal-content p {
  color: var(--muted);
  line-height: 1.85;
}

.blog-cta {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  background: rgba(139, 95, 255, 0.08);
}

.final-cta {
  text-align: center;
  padding: 80px 16px;
}

.final-cta-galaxy {
  background: linear-gradient(135deg, #0B0820, #19134A 45%, #6D3FE0);
  border-top: 1px solid var(--accent);
  color: #fff;
}

.final-cta-galaxy h2 {
  font-family: "Exo", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.final-cta-galaxy .btn-primary {
  background: var(--accent);
  color: #fff;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal {
  width: min(96vw, 420px);
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, var(--surface2), var(--surface));
  color: var(--text);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 0 40px rgba(139, 95, 255, 0.28);
}

.popup-deal {
  color: var(--star);
  font-weight: 700;
  font-family: "Exo", sans-serif;
  letter-spacing: 0.12em;
}

.popup-price {
  font-family: "Exo", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}

.popup-close {
  margin-top: 10px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

.app-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.app-pill {
  padding: 8px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(139, 95, 255, 0.1);
}

.panel-card,
.contact-card,
.reseller-plan {
  padding: 28px;
}

.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--border);
  padding: 44px 16px 22px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h4 {
  color: var(--star);
  font-family: "Exo", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--star);
}

.copyright {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 980px) {
  .speed-cards,
  .extreme-cards,
  .stat-cards,
  .step-cards,
  .stats-grid,
  .footer-grid,
  .split-section,
  .bento-grid-choose,
  .galaxy-devices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card.bento-large,
  .bento-card.bento-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .split-content {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    background: #0B0820;
  }

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

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .grid,
  .cards,
  [class*="grid"],
  [class*="cards"],
  [class*="bento"],
  [class*="row"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .grid > *,
  .cards > *,
  [class*="grid"] > *,
  [class*="row"] > *,
  [class*="bento"] > * {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    flex: none !important;
  }

  [class*="review"] > *,
  [class*="bewertung"] > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  h1 {
    font-size: 40px !important;
    line-height: 1.1 !important;
  }

  h2 {
    font-size: 28px !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  .image-showcase {
    grid-template-columns: 1fr !important;
  }

  .split-reverse .split-content,
  .split-reverse .split-image {
    order: unset !important;
  }

  footer [class*="grid"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  footer [class*="logo"],
  footer .brand-col {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  footer .copyright {
    grid-column: 1 / -1 !important;
    text-align: center !important;
  }

  .mobile-cta-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #8B5FFF !important;
    color: white !important;
    text-align: center !important;
    padding: 16px !important;
    z-index: 9999 !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    display: block !important;
    text-decoration: none !important;
    font-family: "Exo", sans-serif !important;
    letter-spacing: 1px !important;
  }

  body {
    padding-bottom: 60px !important;
  }

  .hero,
  .hero-page {
    min-height: 88vh;
    padding-top: 100px;
  }

  .scale-display {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none !important;
  }
}
