/* ============================================
   LocalGantry – Dark Tech / AI-Startup Design
   Premium-Software-Look | Mobile-First | High-Contrast
   ============================================ */

/* -------------------------------------------
   DESIGN SYSTEM – CSS Variables
   ------------------------------------------- */
:root {
  /* Dark Tech Farbpalette */
  --color-navy-bg: #0f172a;
  --color-navy-darker: #050b14;
  --color-cyan-accent: #22d3ee;
  --color-purple-ai: #a855f7;
  --color-green-trust: #22c55e;

  /* Mittelbereich – vorherige Version (Petrol/Gold) */
  --color-petrol: #0d5c63;
  --color-petrol-light: #0f766e;
  --color-gold: #b45309;

  /* Kompatibilität (für technik.css etc.) */
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-cyan: #22d3ee;
  --color-cyan-dim: #0891b2;
  --color-primary: #22d3ee;
  --color-primary-dark: #0891b2;
  --color-primary-light: #67e8f9;

  /* Typografie & Layout */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --max-width: 1100px;
  --spacing: 1.5rem;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
  --header-height: 4.25rem;

  /* Typografie-Hierarchie (Startseite) */
  --text-section-h2: clamp(1.875rem, 3vw, 2.125rem);
  --text-section-h2-weight: 700;
  --text-reading: 1.0625rem;
  --text-reading-line: 1.65;
}

/* -------------------------------------------
   RESET & BASE
   ------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-alt);
  padding-top: var(--header-height);
  max-width: 100%;
}

main {
  max-width: 100%;
}

.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing);
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
td,
th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html[lang="de"] h1,
html[lang="de"] h2,
html[lang="de"] h3,
html[lang="de"] h4,
html[lang="de"] p,
html[lang="de"] li,
html[lang="de"] td,
html[lang="de"] th {
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Sektions-H2 – einheitlich unter dem Hero */
.features h2,
.licenses h2,
.requirements h2,
.cta h2,
.limits-section h2,
.ps-problem-text h2,
.trust-section h2 {
  font-family: var(--font-heading);
  font-size: var(--text-section-h2);
  font-weight: var(--text-section-h2-weight);
  color: var(--color-text);
}

/* Fließtext in Leseblöcken */
.feature-card p,
.ps-problem-text p,
.ps-solution-box p,
.limits-card ul,
.limits-why p {
  font-size: var(--text-reading);
  line-height: var(--text-reading-line);
}

/* ===========================================
   DARK SECTIONS – Header, Hero, CTA
   =========================================== */

/* Header – Fixed (Ollama-Style: immer oben) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-navy-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--color-cyan-accent);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--color-cyan-accent);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
}

.nav-mobile {
  display: none;
  background: var(--color-navy-light);
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  padding: 1rem var(--spacing);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
}

.nav-mobile-inner a:hover {
  color: var(--color-cyan-accent);
}

.nav-mobile-inner .btn {
  width: fit-content;
}

/* Sprachumschalter */
#lang-switcher {
  margin-right: 0.5rem;
}

.lang-switcher {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.lang-switcher a {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.lang-switcher a:hover {
  color: var(--color-cyan-accent);
  background: rgba(34, 211, 238, 0.15);
}

.lang-switcher a.active {
  color: var(--color-cyan-accent);
  background: rgba(34, 211, 238, 0.2);
}

/* -------------------------------------------
   HERO – Dark Tech mit Cyan-Glow
   ------------------------------------------- */
.hero {
  padding: 3rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero-gradient {
  background: var(--color-navy-bg);
  color: #ffffff;
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
}

/* Sanfter atmosphärischer Cyan-Glow (::before) */
.hero-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(34, 211, 238, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-gradient .container {
  position: relative;
  z-index: 1;
}

.hero-claim,
.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.hero-gradient .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Hero Badges – Glassmorphismus */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badges span {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #ffffff;
}

.hero-badges span i {
  margin-right: 0.4rem;
  color: var(--color-cyan-accent);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-gradient .hero-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.hero-gradient .hero-setup-hint {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin: 0.25rem auto 0.35rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

/* -------------------------------------------
   BUTTONS
   ------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-accent {
  background: var(--color-cyan-accent);
  color: var(--color-navy-bg);
  border: 2px solid var(--color-cyan-accent);
}

.btn-accent:hover {
  background: #67e8f9;
  border-color: #67e8f9;
  color: var(--color-navy-bg);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}

.btn-accent i {
  margin-right: 0.5em;
}

/* Installer vorübergehend deaktiviert – Button bleibt sichtbar, ohne Download-Navigation */
.btn-download-disabled,
.btn-download-disabled:hover,
.btn-download-disabled:focus,
.btn-download-disabled:active,
body.theme-3d .btn-download-disabled,
body.theme-3d .btn-download-disabled:hover,
body.theme-3d-v2 .btn-download-disabled,
body.theme-3d-v2 .btn-download-disabled:hover,
body.theme-3d-v3 .btn-download-disabled,
body.theme-3d-v3 .btn-download-disabled:hover,
.cta .btn-download-disabled,
.cta .btn-download-disabled:hover {
  background: #94a3b8 !important;
  border-color: #94a3b8 !important;
  color: #f8fafc !important;
  opacity: 0.72;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
  filter: grayscale(0.35);
}

.download-unavailable-note {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: inherit;
}

.cta .download-unavailable-note,
.hero-ctas + .download-unavailable-note {
  text-align: center;
}

.btn-outline {
  border: 2px solid var(--color-cyan-accent);
  color: var(--color-cyan-accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-cyan-accent);
  color: var(--color-navy-bg);
}

.header .btn-outline {
  border-color: var(--color-cyan-accent);
  color: var(--color-cyan-accent);
}

.header .btn-outline:hover {
  background: var(--color-cyan-accent);
  color: var(--color-navy-bg);
}

.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(34, 211, 238, 0.6);
}

.btn-hero-outline:hover {
  background: rgba(34, 211, 238, 0.15);
  color: var(--color-cyan-accent);
  border-color: var(--color-cyan-accent);
}

/* ===========================================
   LIGHT SECTIONS – Problem, Features, Lizenzen, Requirements
   ------------------------------------------- */

/* Onboarding: 3 Schritte (vor finalem CTA) */
.setup-steps {
  padding: 2.75rem 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.setup-steps h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-navy-bg);
  margin-bottom: 1.25rem;
}

.setup-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .setup-steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.setup-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .setup-step {
    padding: 0 1.25rem;
    border-top: none;
    border-left: 1px solid var(--color-border);
  }

  .setup-step:first-child {
    padding-left: 0;
    border-left: none;
  }

  .setup-step:last-child {
    padding-right: 0;
  }
}

.setup-step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
}

.setup-step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy-bg);
  margin: 0 0 0.35rem;
}

.setup-step-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.setup-steps-link {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
}

.setup-steps-link a {
  color: var(--color-navy-bg);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.setup-steps-link a:hover {
  color: var(--color-primary-dark);
}

/* Problem & Lösung */
.problem-solution {
  padding: 4rem 0;
  background: var(--color-bg);
}

.ps-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.ps-problem-text h2 {
  margin-bottom: 1rem;
}

.ps-problem-text p {
  color: #475569;
  margin-bottom: 1rem;
}

/* Lösungs-Box: dezentes Navy/Cyan-Anbinden an den Rest */
.ps-solution-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--color-cyan-accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ps-solution-box h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy-bg);
  margin-bottom: 1rem;
}

.ps-solution-box p {
  color: #475569;
  margin-bottom: 1rem;
}

.ps-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.ps-trust.ps-trust-follow {
  margin-top: 0.75rem;
  padding-top: 0;
  border-top: none;
  color: #475569;
  font-weight: 500;
}

.ps-trust i {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--color-cyan-accent);
}

@media (min-width: 768px) {
  .ps-flex {
    flex-direction: row;
    align-items: stretch;
  }

  .ps-problem-text,
  .ps-solution-box {
    flex: 1;
  }
}

/* -------------------------------------------
   FEATURES – Navy/Cyan-Harmonisierung
   ------------------------------------------- */
.features {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}

.features h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: #ffffff;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.4);
}

.feature-icon-fa,
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-icon-fa i {
  font-size: 1.5rem;
}

/* Icons: Cyan-Akzent als Bindeglied zum Header/Footer */
.feature-icon-fa,
.feature-icon-fa i {
  color: var(--color-cyan-accent);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy-bg);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #475569;
}

.feature-card-link {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
}

.feature-card-link a {
  color: var(--color-cyan-accent, #0891b2);
  font-weight: 600;
  text-decoration: none;
}

.feature-card-link a:hover,
.feature-card-link a:focus-visible {
  text-decoration: underline;
}

/* Expandable Details */
.expandable-details,
.format-details {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.expandable-details summary,
.format-details summary {
  cursor: pointer;
  color: var(--color-cyan-accent);
  font-weight: 500;
  padding: 0.35rem 0;
  user-select: none;
}

.expandable-details summary:hover,
.format-details summary:hover {
  text-decoration: underline;
}

.expandable-content,
.format-list {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  color: #475569;
  font-size: 0.875rem;
}

.format-category {
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.format-category:last-child {
  border-bottom: none;
}

.expandable-content p {
  margin-bottom: 0.5rem;
}

.expandable-content p:last-child {
  margin-bottom: 0;
}

.license-details {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-card-wide {
    grid-column: span 2;
  }
}

/* -------------------------------------------
   LIZENZEN – Tabelle & Trust
   ------------------------------------------- */
.licenses {
  padding: 4rem 0;
  background: var(--color-bg);
}

.licenses h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Grenzen & Erwartung */
.limits-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.limits-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.limits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 2.5rem;
}

.limits-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.limits-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.35;
}

.limits-card h3 i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.limits-card--ideal {
  border-left: 4px solid #059669;
}

.limits-card--ideal h3 i {
  color: #059669;
}

.limits-card--limited {
  border-left: 4px solid #d97706;
}

.limits-card--limited h3 i {
  color: #d97706;
}

.limits-card--not {
  border-left: 4px solid #64748b;
}

.limits-card--not h3 i {
  color: #64748b;
}

.limits-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.limits-card li + li {
  margin-top: 0.5rem;
}

.limits-why {
  max-width: 50rem;
  margin: 0.5rem auto 1.75rem;
  padding: 0;
  text-align: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.limits-why h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-text);
  margin: 0 0 0.75rem;
}

.limits-why p {
  margin: 0;
  color: var(--color-text-muted);
  text-align: center;
}

.limits-link-wrap {
  text-align: center;
  margin: 0 0 0.75rem;
}

.limits-link {
  font-weight: 600;
  color: var(--color-primary);
}

.limits-footnote {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Optische Klammer: Spalten wie nebeneinanderstehende Karten */
.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: auto;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.45) rgba(15, 23, 42, 0.06);
}

.licenses .table-wrapper {
  margin-bottom: 2.5rem;
}

.license-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
}

.license-table th,
.license-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

/* Vertikale Trennung: Jede Lizenz-Spalte mit feinem Rahmen – vier Karten */
.license-table th:nth-child(2),
.license-table td:nth-child(2),
.license-table th:nth-child(3),
.license-table td:nth-child(3),
.license-table th:nth-child(4),
.license-table td:nth-child(4) {
  border-left: 1px solid #f0f9ff;
}

.license-table thead th:first-child {
  border-top-left-radius: var(--radius);
}

.license-table thead th:nth-child(2),
.license-table thead th:nth-child(3),
.license-table thead th:nth-child(4),
.license-table thead th:nth-child(5) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.license-table thead th:last-child {
  border-top-right-radius: var(--radius);
}

/* Tabellenkopf: Tiefes Navy – obere Zellen wirken wie Kartenköpfe */
.license-table th {
  background: var(--color-navy-bg);
  color: #ffffff;
  font-weight: 600;
}

.license-table th:first-child,
.license-table td:first-child {
  text-align: left;
  min-width: 220px;
  padding-left: 1.25rem;
}

.license-table tbody tr:hover {
  background: var(--color-bg-alt);
}

/* Checkmarks: Leuchtendes Cyan – verbindet mit Hero/Footer-Akzent */
.license-table .check {
  color: var(--color-cyan-accent);
  font-weight: 700;
}

.license-table .cross {
  color: var(--color-text-muted);
}

.license-table th .plan-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.license-table thead tr {
  height: 1px;
}

.license-table thead th:not(:first-child) {
  height: 100%;
  vertical-align: top;
}

body.theme-3d-v3 .license-table thead th:has(.plan-header-content) {
  padding: 0;
  vertical-align: top;
}

body.theme-3d-v3 .license-table thead th .plan-header-content {
  padding: 1rem 0.85rem 1.1rem;
  height: 100%;
  box-sizing: border-box;
}

.license-table th .plan-link:hover {
  opacity: 0.9;
}

.license-table th .plan-name {
  display: block;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
  min-height: 1.25em;
}

.license-table th .plan-price {
  display: block;
  flex: 0 0 auto;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-cyan-accent);
  margin: 0.35rem 0 0;
  line-height: 1.2;
  white-space: nowrap;
}

.plan-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 10.75rem;
  padding: 0;
  box-sizing: border-box;
}

.plan-config-slot {
  flex: 0 0 auto;
  width: 92%;
  max-width: 9.5rem;
  min-height: 1.5rem;
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-config-slot .proteam-dropdown {
  width: 100%;
  max-width: none;
}

.license-table th .plan-cta {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 92%;
  max-width: 9.5rem;
  margin-top: auto;
  padding: 0.42rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  border-width: 2px;
  border-style: solid;
}

.license-table th .plan-cta.plan-cta-demo {
  background: transparent;
  color: var(--color-cyan-accent);
  border-color: var(--color-cyan-accent);
}

.license-table th .plan-cta.plan-cta-demo:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-cyan-accent);
}

.proteam-dropdown {
  width: 100%;
  padding: 0.18rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background-color: rgba(15, 23, 42, 0.22);
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.proteam-dropdown:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.45);
}

.proteam-dropdown option {
  background-color: #0f172a;
  color: #fff;
}

.license-type {
  font-weight: 600;
  background: var(--color-bg-alt);
}

/* Pro-Team-Spalte: Kräftigerer Rahmen + dezenter Cyan-Hintergrund als Empfehlung */
.license-table th:last-child,
.license-table td:last-child {
  background: rgba(34, 211, 238, 0.05);
  border-left: 1px solid #bae6fd;
}

.license-table th:last-child {
  background: var(--color-navy-bg);
  border-left-color: #7dd3fc;
}

/* Pro-Team Grid – feine Cyan-Akzente */
.pro-team-grid {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(34, 211, 238, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 238, 0.15);
}

.pro-team-grid h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.pro-team-sub {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.pro-team-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.pro-team-card {
  display: block;
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.pro-team-card:hover {
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.15);
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.4);
}

.pro-team-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.pro-team-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-cyan-dim);
}

.pro-team-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 1.25rem 0 1.5rem;
}

.licenses-vat-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 1rem 0 2rem;
}

.license-team-setup {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 8px);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

.license-team-setup-lead {
  margin: 0;
}

.license-team-setup-intro {
  margin: 0;
  font-weight: 600;
}

.license-team-setup-list {
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
}

.license-team-setup-list li {
  margin-bottom: 0.45rem;
}

.license-team-setup-list li:last-child {
  margin-bottom: 0;
}

.license-team-setup-note {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.license-team-setup-example {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Trust Cards */
.trust-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: left;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.trust-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.4);
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-navy-bg);
}

.trust-card h3 i {
  margin-right: 0.4rem;
  color: var(--color-cyan-accent);
  font-size: 1rem;
}

.trust-card p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------
   SYSTEMVORAUSSETZUNGEN
   ------------------------------------------- */
.requirements {
  padding: 4rem 0;
  background: var(--color-bg-alt);
}

.requirements h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.requirements-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.requirements-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.requirement-tier {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.requirement-tier:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.4);
}

.requirement-tier h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-navy-bg);
}

.requirement-tier h3 i {
  margin-right: 0.4rem;
  color: var(--color-navy-bg);
}

.requirement-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  color: #475569;
}

.requirement-tier li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

/* Checkmarks: dezentes Blau statt helles Cyan */
.requirement-tier li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-dark);
  font-weight: 600;
}

.requirement-tier .tier-hint {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #475569;
  font-style: italic;
}

/* Empfohlen: Dezente Navy/Cyan-Hervorhebung */
.requirement-recommended {
  border-top: 3px solid var(--color-navy-bg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 0 20px -2px rgba(34, 211, 238, 0.12);
}

.requirements-link {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.requirements-link a {
  color: var(--color-navy-bg);
  text-decoration: none;
  font-weight: 600;
}

.requirements-link a:hover {
  text-decoration: underline;
}

.requirements-note {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .requirements-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================================
   CTA – Dark Hero-Stil (optische Klammer)
   =========================================== */
.cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--color-navy-bg);
  color: #ffffff;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 100%,
    rgba(34, 211, 238, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta .btn-accent {
  background: var(--color-cyan-accent);
  color: var(--color-navy-bg);
  border-color: var(--color-cyan-accent);
}

.cta .btn-accent:hover {
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.4);
}

.cta-download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}

.btn-ms-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0 !important;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.btn-ms-store:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(34, 211, 238, 0.5);
  color: #fff !important;
}

.cta-store-soon {
  margin: 0;
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.85);
  text-align: center;
}

/* Hinweis SmartScreen / Installation (unter Download) */
.hero-gradient .hero-install-hint {
  margin-top: 1.25rem;
  padding-top: 0.65rem;
  font-size: 0.875rem;
  text-align: center;
}

.hero-gradient .hero-install-hint-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-gradient .hero-install-hint > i {
  margin-right: 0.35rem;
  opacity: 0.85;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.75);
}

.hero-gradient .hero-install-hint-link:hover {
  color: var(--color-cyan-accent, #22d3ee);
}

.install-notice {
  margin: 2rem auto 0;
  max-width: 42rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08);
}

.install-notice-title {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #e2e8f0;
}

.install-notice-body p {
  margin-bottom: 0.75rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
}

.install-notice-foot {
  margin-bottom: 0 !important;
  font-size: 0.85rem !important;
  color: rgba(148, 163, 184, 0.95) !important;
}

.install-notice-figure {
  margin: 1rem 0 0;
}

.install-notice-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.install-vt {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.install-vt .install-vt-links {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.install-vt .install-vt-links a {
  color: var(--color-cyan-accent, #22d3ee);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.install-vt .install-vt-links a:hover {
  color: #67e8f9;
}

/* ===========================================
   FOOTER – Dunkelstes Fundament
   =========================================== */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--color-navy-darker);
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer .logo {
  color: #ffffff;
}

.footer .logo:hover {
  color: var(--color-cyan-accent);
}

.footer .logo-img {
  opacity: 0.7;
  filter: grayscale(0.3);
}

.footer-logo-img {
  width: 28px;
  height: 28px;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  color: #94a3b8;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.footer-contact .footer-email {
  margin: 0;
}

.footer-contact .footer-email-fallback {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.footer-contact .footer-email-fallback a {
  display: inline;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact .footer-email-fallback a:hover {
  color: var(--color-cyan-accent);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-cyan-accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-bottom p {
  font-size: 0.875rem;
  text-align: center;
  color: #64748b;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem !important;
  color: #64748b !important;
}

.footer-support {
  margin-top: 0.25rem;
}

.footer-support a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-support a:hover {
  color: var(--color-cyan-accent);
}

/* -------------------------------------------
   RESPONSIVE – Mobile First
   ------------------------------------------- */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    padding-left: max(1rem, var(--spacing));
    padding-right: max(1rem, var(--spacing));
  }

  .pro-team-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Preistabelle: horizontal wischbar, linke Spalte sticky (Feature + Zeilenlabels) */
  .licenses .table-wrapper {
    margin-bottom: 1.75rem;
    touch-action: auto;
    box-shadow:
      var(--shadow-sm),
      inset -12px 0 12px -12px rgba(15, 23, 42, 0.08);
  }

  .license-table {
    min-width: 44rem;
  }

  .license-table thead {
    position: relative;
    z-index: 20;
  }

  .license-table th:not(:first-child),
  .license-table td:not(:first-child) {
    min-width: 7rem;
  }

  .license-table th,
  .license-table td {
    padding: 0.65rem 0.55rem;
    font-size: 0.8125rem;
  }

  .license-table th:first-child,
  .license-table td:first-child,
  body.theme-3d-v3 .license-table th:first-child,
  body.theme-3d-v3 .license-table td:first-child {
    position: sticky;
    left: 0;
    width: 9.25rem;
    min-width: 9.25rem;
    max-width: 10.5rem;
    box-shadow: 6px 0 14px -8px rgba(15, 23, 42, 0.18);
  }

  .license-table thead th:first-child,
  body.theme-3d-v3 .license-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 30;
    vertical-align: bottom;
    background: #0f172a !important;
    box-shadow: 6px 0 14px -6px rgba(0, 0, 0, 0.35);
  }

  .license-table thead th:not(:first-child) {
    z-index: 22;
  }

  .license-table tbody td:first-child {
    z-index: 10;
    background: #ffffff;
  }

  .license-table tbody tr:hover td:first-child {
    background: var(--color-bg-alt);
  }

  .requirements h2,
  .licenses h2,
  .features h2,
  .limits-section h2 {
    max-width: 100%;
    padding-inline: 0.15rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .requirements h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.875rem);
  }

  .plan-header-content {
    min-height: 9.5rem;
  }

  .license-table th .plan-cta {
    white-space: normal;
    line-height: 1.2;
    padding: 0.38rem 0.45rem;
  }

  /* Font-Awesome-Icons in Flex/Grid nicht auf 0 stauchen */
  .feature-icon-fa i,
  .limits-card h3 i {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    line-height: 1.25rem;
    text-align: center;
  }

  body.page-home .feature-icon-fa i {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    font-size: 1.25rem;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer a,
  .footer p,
  .hero-subtitle,
  .hero-claim {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .pro-team-cards {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   RECHTLICHE UNTERSEITEN (Impressum, EULA, …)
   =========================================== */
.legal-page {
  padding: 3rem 0 4rem;
  background: var(--color-bg);
}

.legal-page .legal-content {
  max-width: 720px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-page h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-muted);
}

.legal-page p {
  margin-bottom: 0.75rem;
}

.legal-page ul,
.legal-page ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.legal-page a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--color-cyan-accent);
}

.legal-page .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.legal-page .legal-back:hover {
  color: var(--color-cyan-accent);
}

.legal-page .legal-back i {
  font-size: 0.8125rem;
}

.legal-page .legal-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.legal-page .legal-intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-page .eula-section {
  margin-bottom: 1.25rem;
}

.legal-page .eula-license-list {
  list-style: decimal;
  padding-left: 1.5rem;
}

.page-legal .header .logo-img {
  width: 28px;
  height: 28px;
}

/* ===========================================
   STARTSEITE (page-home) – ehem. V7
   =========================================== */
/**
 * LocalGantry – Startseite V7 (Header-Feinschliff)
 * Logo einzeilig, kompakter Sprach-Button, Anker-Scroll, Feature-Icon-Rahmen.
 * Nur aktiv mit body.page-home
 */

html:has(body.page-home) {
  --header-height: 4.25rem;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body.page-home {
  padding-top: var(--header-height);
}

body.page-home #problem,
body.page-home #features,
body.page-home #grenzen,
body.page-home #lizenzen,
body.page-home #anforderungen,
body.page-home #kontakt,
body.page-home #download-install-hinweis,
body.page-home #top {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

/* Header & Hero: nahtloser Übergang — kein weißer Balken
   Ursache: body padding-top (72px) > Header-Höhe (~68px) → heller body-bg (#f8fafc) sichtbar.
   Nicht nur border-bottom entfernen! */
body.page-home .header,
body.page-home .header::before,
body.page-home .header::after {
  border: none !important;
  border-bottom: none !important;
  outline: none;
}

body.page-home:not(.theme-3d) .header,
body.page-home:not(.theme-3d) .header::before,
body.page-home:not(.theme-3d) .header::after {
  box-shadow: none !important;
}

body.page-home .header-inner {
  border: none;
}

body.page-home .hero-gradient,
body.page-home .hero-gradient::after {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Hero direkt an Header schließen (keine Lücke) */
body.page-home main > .hero.hero-gradient:first-child {
  margin-top: 0;
}

/* Nav-Reiter: Site-Cyan, ohne Rahmen */
body.page-home .nav a,
body.page-home .nav-mobile-inner a {
  color: var(--color-primary-light);
}

body.page-home .nav a:hover,
body.page-home .nav-mobile-inner a:hover {
  color: var(--color-cyan-accent);
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.28);
}

body.page-home .nav a.is-active,
body.page-home .nav-mobile-inner a.is-active {
  color: var(--color-cyan-accent);
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.4);
}

body.page-home .nav a {
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, text-shadow 0.25s ease;
}

body.page-home .nav a:focus {
  outline: none;
}

body.page-home .nav a:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.55);
  outline-offset: 3px;
  border-radius: 4px;
}

body.page-home .nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.85) 20%,
    rgba(34, 211, 238, 0.85) 80%,
    transparent
  );
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.45);
}

body.page-home .nav-mobile-inner a {
  transition: color 0.2s ease, text-shadow 0.25s ease, padding-left 0.2s ease;
}

body.page-home .nav-mobile-inner a.is-active {
  padding-left: 0.35rem;
  border-left: 2px solid var(--color-cyan-accent);
}

/* Feature-Icons: kleiner Rahmen wie Referenz */
body.page-home .feature-icon-fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
}

body.page-home .feature-icon-fa i {
  color: var(--color-cyan-accent);
  font-size: 1.25rem;
}

body.page-home .feature-card:hover .feature-icon-fa {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.12);
}

/* Logo: Icon + Name in einer Zeile */
body.page-home .header .logo-nowrap {
  flex-shrink: 0;
  min-width: 0;
  white-space: nowrap;
}

body.page-home .header .logo-text {
  white-space: nowrap;
}

body.page-home .header-inner {
  gap: 0.75rem;
}

body.page-home .nav {
  gap: 1.25rem;
}

body.page-home .header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Kompakter Sprach-Button (Desktop) – Box/Pill wie Referenz */
body.page-home .lang-switcher-host {
  position: relative;
  margin-right: 0;
}

body.page-home .lang-switcher-compact {
  position: relative;
}

body.page-home .lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

body.page-home .lang-switcher-trigger:hover,
body.page-home .lang-switcher-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.65);
}

body.page-home .lang-switcher-trigger i.fa-globe {
  font-size: 0.8125rem;
  opacity: 0.9;
}

body.page-home .lang-switcher-trigger .lang-code {
  letter-spacing: 0.05em;
}

body.page-home .lang-switcher-trigger .lang-chevron {
  font-size: 0.5625rem;
  opacity: 0.55;
  transition: transform 0.2s;
}

body.page-home .lang-switcher-trigger[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

body.page-home .lang-switcher-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 11rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 1100;
}

body.page-home .lang-switcher-panel.is-open {
  display: block;
}

body.page-home .lang-switcher-panel button {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

body.page-home .lang-switcher-panel button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

body.page-home .lang-switcher-panel button.is-active {
  color: var(--color-cyan-accent);
  background: rgba(34, 211, 238, 0.1);
}

body.page-home .lang-switcher-panel .lang-option-code {
  display: inline-block;
  min-width: 1.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-right: 0.35rem;
}

/* Mobile: Sprachen im Burger-Menü */
body.page-home .lang-switcher-mobile-host {
  display: none;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-home .lang-switcher-mobile-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.5rem;
}

body.page-home .lang-switcher-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-home .lang-switcher-mobile-list button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0.25rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
}

body.page-home .lang-switcher-mobile-list button.is-active {
  color: var(--color-cyan-accent);
}

body.page-home .lang-switcher-mobile-list button:hover {
  color: var(--color-cyan-accent);
}

@media (max-width: 900px) {
  body.page-home .nav {
    gap: 0.85rem;
  }

  body.page-home .nav a {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  body.page-home .lang-switcher-host {
    display: none;
  }

  body.page-home .lang-switcher-mobile-host {
    display: block;
  }
}

/* ===========================================
   STARTSEITE 3D (theme-3d / v2 / v3) – Rollout 2026-06-07
   =========================================== */

/**
 * LocalGantry – Design-Vorschau 3D
 * Dezente Tiefe: Schatten, leichte Erhebung, Push-Buttons.
 * Nur mit body.theme-3d (hauptseite-varianten/index-3d.html)
 */

body.theme-3d {
  --3d-lift: -4px;
  --3d-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.12);
  --3d-shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 3px 0 #dbeafe,
    0 8px 20px rgba(15, 23, 42, 0.08);
  --3d-shadow-card-hover:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 5px 0 #cbd5e1,
    0 16px 36px rgba(15, 23, 42, 0.14);
}

/* Header schwebend */
body.theme-3d .header {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 32px rgba(0, 0, 0, 0.35);
}

body.theme-3d .lang-switcher-trigger {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 2px 6px rgba(0, 0, 0, 0.25);
}

body.theme-3d .lang-switcher-trigger:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

body.theme-3d .lang-switcher-panel {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Hero: Claim leicht erhaben */
body.theme-3d .hero-claim {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 8px 24px rgba(34, 211, 238, 0.15);
}

body.theme-3d .hero-badges span {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.theme-3d .hero-badges span:hover {
  transform: translateY(-2px);
}

/* Buttons: Push-3D */
body.theme-3d .btn-accent {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 4px 0 #0891b2,
    0 10px 24px rgba(34, 211, 238, 0.35);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.theme-3d .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 6px 0 #0891b2,
    0 14px 28px rgba(34, 211, 238, 0.4);
}

body.theme-3d .btn-accent:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 1px 0 #0891b2,
    0 4px 12px rgba(34, 211, 238, 0.25);
}

body.theme-3d .btn-hero-outline,
body.theme-3d .btn-outline {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 3px 0 rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

body.theme-3d .btn-hero-outline:hover,
body.theme-3d .btn-outline:hover {
  transform: translateY(-2px);
}

body.theme-3d .btn-hero-outline:active,
body.theme-3d .btn-outline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Problem-Lösung Box */
body.theme-3d .ps-solution-box {
  box-shadow: var(--3d-shadow-card);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.theme-3d .ps-solution-box:hover {
  transform: translateY(var(--3d-lift));
  box-shadow: var(--3d-shadow-card-hover);
}

/* Feature-Karten */
body.theme-3d .feature-card {
  box-shadow: var(--3d-shadow-card);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.theme-3d .feature-card:hover {
  transform: translateY(var(--3d-lift));
  box-shadow: var(--3d-shadow-card-hover);
}

body.theme-3d .feature-icon-fa {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 2px 0 rgba(34, 211, 238, 0.15),
    0 4px 10px rgba(34, 211, 238, 0.12);
}

/* Grenzen-Karten */
body.theme-3d .limits-card {
  box-shadow: var(--3d-shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.theme-3d .limits-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--3d-shadow-card-hover);
}

/* limits-why: zentriertes redaktionelles Statement (keine vierte Karte) */

/* Lizenz-Tabelle */
body.theme-3d .table-wrapper {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 6px 0 #e2e8f0,
    0 14px 32px -12px rgba(15, 23, 42, 0.14);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.theme-3d .table-wrapper:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 0 #cbd5e1,
    0 18px 40px -10px rgba(15, 23, 42, 0.16);
}

body.theme-3d .license-table thead th {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* Anforderungen & CTA */
body.theme-3d .requirement-tier {
  box-shadow: var(--3d-shadow-card);
}

body.theme-3d .requirement-tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--3d-shadow-card-hover);
}

body.theme-3d .cta .container {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

body.theme-3d .install-notice {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 6px 0 rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Pro-Team Karten */
body.theme-3d .pro-team-card {
  box-shadow: var(--3d-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.theme-3d .pro-team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--3d-shadow-card-hover);
}

@media (prefers-reduced-motion: reduce) {
  body.theme-3d .feature-card,
  body.theme-3d .ps-solution-box,
  body.theme-3d .limits-card,
  body.theme-3d .table-wrapper,
  body.theme-3d .pro-team-card,
  body.theme-3d .btn-accent,
  body.theme-3d .btn-hero-outline,
  body.theme-3d .btn-outline,
  body.theme-3d .hero-badges span {
    transition: none;
  }

  body.theme-3d .feature-card:hover,
  body.theme-3d .ps-solution-box:hover,
  body.theme-3d .limits-card:hover {
    transform: none;
  }
}
/**
 * LocalGantry – 3D V2: weiche volumetrische Buttons
 * Ergänzt styles-3d.css; überschreibt nur Button-Stile (keine harte Unterkante).
 * Nur mit body.theme-3d-v2 oder body.theme-3d-v3 (Produktion: v3)
 */

body.theme-3d-v2 .btn,
body.theme-3d-v3 .btn {
  border-radius: 12px;
}

body.theme-3d-v2 .btn-lg,
body.theme-3d-v3 .btn-lg {
  border-radius: 14px;
}

/* Accent: gewölbte Fläche + weicher Schatten um die Rundung */
body.theme-3d-v2 .btn-accent,
body.theme-3d-v3 .btn-accent {
  background: linear-gradient(
    180deg,
    #7ee8f7 0%,
    var(--color-cyan-accent) 48%,
    #06b6d4 100%
  );
  border-color: #2dd4bf;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 0 rgba(8, 145, 178, 0.22),
    0 4px 14px rgba(34, 211, 238, 0.32),
    0 10px 28px rgba(8, 47, 73, 0.18);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

body.theme-3d-v2 .btn-accent:hover,
body.theme-3d-v3 .btn-accent:hover {
  background: linear-gradient(
    180deg,
    #a5f3fc 0%,
    #67e8f9 48%,
    #22d3ee 100%
  );
  border-color: #67e8f9;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(8, 145, 178, 0.15),
    0 8px 22px rgba(34, 211, 238, 0.42),
    0 16px 36px rgba(8, 47, 73, 0.22);
}

body.theme-3d-v2 .btn-accent:active,
body.theme-3d-v3 .btn-accent:active {
  transform: translateY(1px);
  background: linear-gradient(
    180deg,
    #22d3ee 0%,
    #06b6d4 55%,
    #0891b2 100%
  );
  box-shadow:
    inset 0 3px 8px rgba(8, 145, 178, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 2px 10px rgba(34, 211, 238, 0.22);
}

body.theme-3d-v2 .cta .btn-accent,
body.theme-3d-v3 .cta .btn-accent {
  background: linear-gradient(
    180deg,
    #7ee8f7 0%,
    var(--color-cyan-accent) 48%,
    #06b6d4 100%
  );
}

body.theme-3d-v2 .cta .btn-accent:hover,
body.theme-3d-v3 .cta .btn-accent:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -2px 0 rgba(8, 145, 178, 0.15),
    0 8px 24px rgba(34, 211, 238, 0.45),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Hero-Outline: Glas + weicher Rand statt Streifen */
body.theme-3d-v2 .btn-hero-outline,
body.theme-3d-v3 .btn-hero-outline {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(34, 211, 238, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

body.theme-3d-v2 .btn-hero-outline:hover,
body.theme-3d-v3 .btn-hero-outline:hover {
  background: linear-gradient(
    180deg,
    rgba(34, 211, 238, 0.22) 0%,
    rgba(34, 211, 238, 0.08) 100%
  );
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(34, 211, 238, 0.2),
    0 0 0 1px rgba(34, 211, 238, 0.75);
}

body.theme-3d-v2 .btn-hero-outline:active,
body.theme-3d-v3 .btn-hero-outline:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(34, 211, 238, 0.5);
}

/* Outline auf hellen Sektionen */
body.theme-3d-v2 .btn-outline,
body.theme-3d-v3 .btn-outline {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(241, 245, 249, 0.9) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(148, 163, 184, 0.25),
    0 4px 14px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(34, 211, 238, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.theme-3d-v2 .btn-outline:hover,
body.theme-3d-v3 .btn-outline:hover {
  background: linear-gradient(
    180deg,
    #67e8f9 0%,
    var(--color-cyan-accent) 100%
  );
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(8, 145, 178, 0.2),
    0 8px 22px rgba(34, 211, 238, 0.28),
    0 0 0 1px rgba(34, 211, 238, 0.6);
}

body.theme-3d-v2 .btn-outline:active,
body.theme-3d-v3 .btn-outline:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 6px rgba(8, 145, 178, 0.25),
    0 2px 8px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(34, 211, 238, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  body.theme-3d-v2 .btn-accent,
  body.theme-3d-v3 .btn-accent,
  body.theme-3d-v2 .btn-hero-outline,
  body.theme-3d-v3 .btn-hero-outline,
  body.theme-3d-v2 .btn-outline,
  body.theme-3d-v3 .btn-outline {
    transition: none;
  }

  body.theme-3d-v2 .btn-accent:hover,
  body.theme-3d-v3 .btn-accent:hover,
  body.theme-3d-v2 .btn-hero-outline:hover,
  body.theme-3d-v3 .btn-hero-outline:hover,
  body.theme-3d-v2 .btn-outline:hover,
  body.theme-3d-v3 .btn-outline:hover {
    transform: none;
  }
}
/**
 * LocalGantry – 3D V3: Glas-Lizenztabelle
 * Tieferer dunkler Kopf, Spalten-Hover mit Glow. Nur body.theme-3d-v3.
 */

body.theme-3d-v3 .licenses .table-wrapper {
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px -14px rgba(15, 23, 42, 0.18),
    0 6px 16px -8px rgba(34, 211, 238, 0.06);
  transform: none;
  padding-top: 6px;
}

body.theme-3d-v3 .licenses .table-wrapper:hover {
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 36px -12px rgba(15, 23, 42, 0.2),
    0 8px 20px -8px rgba(34, 211, 238, 0.08);
}

body.theme-3d-v3 .license-table {
  border-collapse: separate;
  border-spacing: 0 0;
}

/* Dunkler Kopf: dezente Glas-Kante */
body.theme-3d-v3 .license-table thead th {
  position: relative;
  z-index: 1;
  vertical-align: bottom;
  background: linear-gradient(
    180deg,
    #1a2740 0%,
    var(--color-navy-bg) 58%,
    #070f1c 100%
  );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -2px 8px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.28s ease;
  overflow: visible;
}

body.theme-3d-v3 .license-table thead th:first-child {
  background: linear-gradient(
    180deg,
    #151f33 0%,
    #0f172a 100%
  );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

body.theme-3d-v3 .license-table thead th:not(:first-child)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 70% 45% at 50% 0%,
    rgba(34, 211, 238, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

body.theme-3d-v3 .license-table thead th:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16) 50%,
    transparent
  );
  pointer-events: none;
}

body.theme-3d-v3 .license-table thead th:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Plan-Spalten im Ruhezustand gleich — kein Default-Highlight für Pro */
body.theme-3d-v3 .license-table td:nth-child(2),
body.theme-3d-v3 .license-table td:nth-child(3),
body.theme-3d-v3 .license-table td:nth-child(4),
body.theme-3d-v3 .license-table td:nth-child(5) {
  background: transparent;
  box-shadow: none;
}

body.theme-3d-v3 .license-table td:not(:first-child) .check {
  text-shadow: none;
}

/* Pro-Team: Basis-Styles zurücksetzen, gleiche Glas-Logik */
body.theme-3d-v3 .license-table th:last-child,
body.theme-3d-v3 .license-table td:last-child {
  border-left-color: rgba(34, 211, 238, 0.12);
}

body.theme-3d-v3 .license-table th:last-child {
  background: linear-gradient(
    180deg,
    #1a2740 0%,
    var(--color-navy-bg) 58%,
    #070f1c 100%
  );
}

body.theme-3d-v3 .license-table td:last-child {
  background: transparent;
}

body.theme-3d-v3 .license-table td:not(:first-child) {
  transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

body.theme-3d-v3 .license-table thead th:nth-child(5) {
  cursor: default;
}

body.theme-3d-v3 .license-table tbody tr:hover {
  background: transparent;
}

/* Spalten-Hover: ganze Spalte synchron (data-active-col via site-license-table.js) */
@media (hover: hover) and (pointer: fine) {
  body.theme-3d-v3 .license-table[data-active-col="2"] thead th:nth-child(2),
  body.theme-3d-v3 .license-table[data-active-col="2"] tbody td:nth-child(2),
  body.theme-3d-v3 .license-table[data-active-col="3"] thead th:nth-child(3),
  body.theme-3d-v3 .license-table[data-active-col="3"] tbody td:nth-child(3),
  body.theme-3d-v3 .license-table[data-active-col="4"] thead th:nth-child(4),
  body.theme-3d-v3 .license-table[data-active-col="4"] tbody td:nth-child(4),
  body.theme-3d-v3 .license-table[data-active-col="5"] thead th:nth-child(5),
  body.theme-3d-v3 .license-table[data-active-col="5"] tbody td:nth-child(5) {
    position: relative;
    z-index: 6;
    transform: translateY(-4px);
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] thead th:nth-child(2),
  body.theme-3d-v3 .license-table[data-active-col="3"] thead th:nth-child(3),
  body.theme-3d-v3 .license-table[data-active-col="4"] thead th:nth-child(4),
  body.theme-3d-v3 .license-table[data-active-col="5"] thead th:nth-child(5) {
    filter: brightness(1.02);
    background: linear-gradient(
      180deg,
      #1e3352 0%,
      var(--color-navy-bg) 52%,
      #0a1420 100%
    );
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] thead th:nth-child(2)::before,
  body.theme-3d-v3 .license-table[data-active-col="3"] thead th:nth-child(3)::before,
  body.theme-3d-v3 .license-table[data-active-col="4"] thead th:nth-child(4)::before,
  body.theme-3d-v3 .license-table[data-active-col="5"] thead th:nth-child(5)::before,
  body.theme-3d-v3 .license-table[data-active-col="2"] thead th:nth-child(2)::after,
  body.theme-3d-v3 .license-table[data-active-col="3"] thead th:nth-child(3)::after,
  body.theme-3d-v3 .license-table[data-active-col="4"] thead th:nth-child(4)::after,
  body.theme-3d-v3 .license-table[data-active-col="5"] thead th:nth-child(5)::after {
    opacity: 0;
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] tbody td:nth-child(2),
  body.theme-3d-v3 .license-table[data-active-col="3"] tbody td:nth-child(3),
  body.theme-3d-v3 .license-table[data-active-col="4"] tbody td:nth-child(4),
  body.theme-3d-v3 .license-table[data-active-col="5"] tbody td:nth-child(5) {
    background: rgba(34, 211, 238, 0.04);
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] tbody tr:last-child td:nth-child(2),
  body.theme-3d-v3 .license-table[data-active-col="3"] tbody tr:last-child td:nth-child(3),
  body.theme-3d-v3 .license-table[data-active-col="4"] tbody tr:last-child td:nth-child(4),
  body.theme-3d-v3 .license-table[data-active-col="5"] tbody tr:last-child td:nth-child(5) {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 10px 22px -14px rgba(15, 23, 42, 0.14);
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] tbody td:nth-child(2) .check,
  body.theme-3d-v3 .license-table[data-active-col="3"] tbody td:nth-child(3) .check,
  body.theme-3d-v3 .license-table[data-active-col="4"] tbody td:nth-child(4) .check,
  body.theme-3d-v3 .license-table[data-active-col="5"] tbody td:nth-child(5) .check {
    text-shadow: 0 0 6px rgba(34, 211, 238, 0.35);
  }

  body.theme-3d-v3 .license-table[data-active-col="2"] thead th:nth-child(2) .plan-price,
  body.theme-3d-v3 .license-table[data-active-col="3"] thead th:nth-child(3) .plan-price,
  body.theme-3d-v3 .license-table[data-active-col="4"] thead th:nth-child(4) .plan-price,
  body.theme-3d-v3 .license-table[data-active-col="5"] thead th:nth-child(5) .plan-price {
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
  }
}

body.theme-3d-v3 .license-table th .plan-price {
  text-shadow: none;
  transition: text-shadow 0.28s ease;
}

body.theme-3d-v3 .license-table th .plan-cta:not(.plan-cta-demo) {
  border-radius: 10px;
  border-color: #5eead4;
  background: linear-gradient(180deg, #8eedf9 0%, var(--color-cyan-accent) 58%, #06b6d4 100%);
  color: var(--color-navy-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 3px 10px rgba(34, 211, 238, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.theme-3d-v3 .license-table th .plan-cta:not(.plan-cta-demo):hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 6px 16px rgba(34, 211, 238, 0.38);
}

body.theme-3d-v3 .license-table th .plan-cta:not(.plan-cta-demo):active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(34, 211, 238, 0.22);
}

body.theme-3d-v3 .license-table th .plan-cta.plan-cta-demo {
  border-radius: 10px;
  border-color: rgba(34, 211, 238, 0.88);
  background: rgba(15, 23, 42, 0.35);
  color: var(--color-cyan-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

body.theme-3d-v3 .license-table th .plan-cta.plan-cta-demo:hover {
  transform: translateY(-2px);
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-cyan-accent);
  border-color: var(--color-cyan-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 6px 16px rgba(34, 211, 238, 0.24),
    0 0 12px rgba(34, 211, 238, 0.12);
}

body.theme-3d-v3 .license-table th .plan-cta.plan-cta-demo:active {
  transform: translateY(0);
  background: rgba(34, 211, 238, 0.07);
  box-shadow:
    inset 0 2px 5px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.16);
}

/* Spalten-Hover: unterer Freiraum für Schatten */
body.theme-3d-v3 .licenses .table-wrapper {
  padding-bottom: 14px;
}

/* Pro-Team Controls im Glas-Kopf — flach und dezent zwischen Preis und CTA */
body.theme-3d-v3 .proteam-dropdown {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 23, 42, 0.28);
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.theme-3d-v3 .proteam-dropdown:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(15, 23, 42, 0.36);
  box-shadow: none;
}


@media (prefers-reduced-motion: reduce) {
  body.theme-3d-v3 .license-table thead th,
  body.theme-3d-v3 .license-table td:not(:first-child),
  body.theme-3d-v3 .proteam-dropdown,
  body.theme-3d-v3 .license-table th .plan-cta {
    transition: none;
  }

  body.theme-3d-v3 .license-table[data-active-col] thead th,
  body.theme-3d-v3 .license-table[data-active-col] tbody td {
    transform: none;
  }
}

/* Mobile / Touch: kein Spalten-Lift, kein Seiten-Overflow durch Hover-Glow */
@media (max-width: 768px), (hover: none) {
  body.theme-3d .table-wrapper,
  body.theme-3d .table-wrapper:hover,
  body.theme-3d-v3 .licenses .table-wrapper,
  body.theme-3d-v3 .licenses .table-wrapper:hover {
    transform: none;
  }

  body.theme-3d-v3 .license-table thead th:not(:first-child) {
    overflow: hidden;
    transform: none !important;
  }

  body.theme-3d-v3 .license-table thead th:first-child {
    position: sticky;
    left: 0;
    overflow: visible;
    transform: none !important;
    background: #0f172a !important;
    z-index: 30;
  }

  body.theme-3d-v3 .license-table tbody td:first-child {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 10;
  }
}


/* ============================================
   v17 Rollout (2026-06-19) – Startseite
   ============================================ */
/* ============================================
   v15 – Lesbarkeit, Weißraum, UX (Variante)
   Basiert auf v14, Feinschliff in v15-Block unten
   Scoped auf body.variant-v17
   ============================================ */

body.variant-v17 {
  --v14-body: 1.0625rem;       /* ~17px */
  --v14-body-lg: 1.125rem;     /* 18px */
  --v14-section-gap: 5rem;
  --v14-card-pad: 2rem;
  --v14-card-radius: 14px;
  --v14-card-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  --v14-card-border: 1px solid #e2e8f0;
  --v14-read-max: 38rem;
  --plan-ribbon-h: 1.625rem;
  --plan-header-min-h: 11.25rem;
}

/* ---- Banner ---- */
body.variant-v17 .variant-banner {
  background: linear-gradient(90deg, #115e59, #0f766e);
  font-size: 0.875rem;
  padding: 0.55rem 1rem;
}

/* ---- Navigation: eine Zeile, kein Umbruch (wie Bild 2) ---- */
body.variant-v17 .nav {
  flex-wrap: nowrap;
  gap: 0.85rem;
  min-width: 0;
}

body.variant-v17 .nav a {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  padding: 0.25rem 0;
}

@media (min-width: 992px) {
  body.variant-v17 .nav {
    gap: 1rem;
  }

  body.variant-v17 .nav a {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  body.variant-v17 .nav {
    gap: 1.15rem;
  }

  body.variant-v17 .nav a {
    font-size: 0.9375rem;
  }
}

/* ---- Hero ---- */
body.variant-v17 .hero {
  padding: 4rem 0 4.5rem;
}

body.variant-v17 .hero-claim {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  max-width: 16ch;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

body.variant-v17 .hero-subtitle {
  font-size: var(--v14-body-lg);
  line-height: 1.65;
  max-width: 40rem;
  margin-bottom: 2rem;
}

body.variant-v17 .hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

body.variant-v17 .hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 5.5rem;
  text-align: center;
}

body.variant-v17 .hero-trust-item i {
  font-size: 1.75rem;
  color: var(--color-cyan-accent);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

body.variant-v17 .hero-trust-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

body.variant-v17 .hero-badges {
  display: none;
}

body.variant-v17 .hero-ctas {
  margin-bottom: 1rem;
}

body.variant-v17 .hero-note {
  font-size: var(--v14-body);
  color: rgba(255, 255, 255, 0.78);
}

body.variant-v17 .hero-setup-details {
  max-width: 36rem;
  margin: 1rem auto 0;
  text-align: left;
}

body.variant-v17 .hero-setup-details summary {
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  list-style: none;
  text-align: center;
}

body.variant-v17 .hero-setup-details summary::-webkit-details-marker {
  display: none;
}

body.variant-v17 .hero-setup-details summary::before {
  content: "ℹ ";
}

body.variant-v17 .hero-setup-details[open] summary {
  margin-bottom: 0.5rem;
}

body.variant-v17 .hero-setup-details p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

body.variant-v17 .hero-setup-hint {
  display: none;
}

/* ---- Sections: spacing ---- */
body.variant-v17 .problem-solution,
body.variant-v17 .features,
body.variant-v17 .limits-section,
body.variant-v17 .licenses,
body.variant-v17 .requirements,
body.variant-v17 .setup-steps,
body.variant-v17 .einstieg-section {
  padding: var(--v14-section-gap) 0;
}

body.variant-v17 .section-intro,
body.variant-v17 .einstieg-lead {
  font-size: var(--v14-body-lg);
  line-height: 1.65;
  max-width: var(--v14-read-max);
}

body.variant-v17 .einstieg-section {
  background: var(--color-bg-alt, #f8fafc);
}

body.variant-v17 .einstieg-section h2 {
  margin-bottom: 0.75rem;
}

body.variant-v17 .einstieg-lead {
  max-width: 42rem;
  color: var(--color-text-muted, #64748b);
  margin-bottom: 2rem;
}

body.variant-v17 .einstieg-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* ---- Problem / Solution ---- */
body.variant-v17 .ps-flex {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  body.variant-v17 .ps-flex {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

body.variant-v17 .ps-problem-text p {
  font-size: var(--v14-body-lg);
  line-height: 1.7;
  max-width: var(--v14-read-max);
}

body.variant-v17 .ps-solution-box {
  padding: var(--v14-card-pad);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  border: var(--v14-card-border);
  border-top: 3px solid var(--color-cyan-accent);
  border-left: var(--v14-card-border);
  background: #fff;
}

body.variant-v17 .ps-solution-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

body.variant-v17 .ps-solution-box p {
  font-size: var(--v14-body);
  line-height: 1.65;
}

/* ---- Einstieg (v13 content) ---- */
body.variant-v17 .einstieg-pillar h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #0f766e;
}

body.variant-v17 .einstieg-pillar {
  padding: var(--v14-card-pad);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  border: var(--v14-card-border);
  background: #fff;
}

body.variant-v17 .einstieg-pillar p {
  font-size: var(--v14-body);
  line-height: 1.65;
}

body.variant-v17 .compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--v14-body);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

body.variant-v17 .compare-table thead th {
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
}

body.variant-v17 .compare-table thead th.col-product {
  background: linear-gradient(180deg, #0891b2 0%, #0e7490 100%);
  color: #f0fdfa;
}

body.variant-v17 .compare-table tbody tr:last-child td {
  border-bottom: none;
}

body.variant-v17 .compare-table tbody td.col-product {
  background: #f0fdfa;
  color: #0f172a;
}

body.variant-v17 .compare-table th,
body.variant-v17 .compare-table td {
  padding: 1.1rem 1.35rem;
  line-height: 1.55;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

/* ---- Features ---- */
body.variant-v17 .feature-grid {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.variant-v17 .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  body.variant-v17 .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.variant-v17 .feature-card {
  padding: var(--v14-card-pad);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  border: var(--v14-card-border);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body.variant-v17 .feature-icon-fa {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.08);
  box-shadow: none;
}

body.variant-v17 .feature-icon-fa i {
  font-size: 2rem;
  width: auto;
  height: auto;
  display: inline;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.variant-v17 .feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

body.variant-v17 .feature-card p {
  font-size: var(--v14-body);
  line-height: 1.65;
  flex: 1;
}

/* ---- Limits: subtle tint instead of heavy blocks ---- */
body.variant-v17 .limits-grid {
  gap: 1.5rem;
}

body.variant-v17 .limits-card {
  padding: var(--v14-card-pad);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  border: var(--v14-card-border);
  border-left: none;
  border-top: 4px solid transparent;
}

body.variant-v17 .limits-card--ideal {
  background: #f0fdf4;
  border-top-color: #059669;
}

body.variant-v17 .limits-card--limited {
  background: #fffbeb;
  border-top-color: #d97706;
}

body.variant-v17 .limits-card--not {
  background: #f8fafc;
  border-top-color: #64748b;
}

body.variant-v17 .limits-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

body.variant-v17 .limits-card h3 i {
  font-size: 1.25rem;
}

body.variant-v17 .limits-card ul {
  font-size: var(--v14-body);
  line-height: 1.65;
  padding-left: 0;
  list-style: none;
}

body.variant-v17 .limits-card li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

body.variant-v17 .limits-card li::before {
  content: "✓";
  font-family: inherit;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
}

body.variant-v17 .limits-card--limited li::before {
  content: "!";
  font-weight: 800;
}

body.variant-v17 .limits-card--not li::before {
  content: "×";
  font-size: 1.1rem;
  line-height: 1;
}

body.variant-v17 .limits-card li + li {
  margin-top: 0;
}

/* ---- License table ---- */
body.variant-v17 .license-table {
  font-size: var(--v14-body);
}

body.variant-v17 .license-table th,
body.variant-v17 .license-table td {
  line-height: 1.5;
}

body.variant-v17 .license-table tbody td,
body.variant-v17 .license-table thead th:first-child {
  padding: 1.15rem 1.35rem;
}

body.variant-v17 .license-table thead th:not(:first-child) {
  padding: 0;
  vertical-align: bottom;
  height: 1px;
}

body.variant-v17 .license-table th .plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 0.35rem;
}

body.variant-v17 .license-table th .plan-name {
  font-size: 1rem;
  flex: 0 0 auto;
  min-height: 1.25em;
  line-height: 1.25;
}

body.variant-v17 .license-table .check {
  font-size: 1.25rem;
  color: #059669;
}

body.variant-v17 .license-table th.plan-col-recommended,
body.variant-v17 .license-table td.plan-col-recommended {
  position: relative;
  box-sizing: border-box;
}

body.variant-v17 .license-table th.plan-col-recommended {
  background: #1e293b;
  box-shadow: inset 0 0 0 2px rgba(34, 211, 238, 0.42);
}

body.variant-v17 .license-table td.plan-col-recommended {
  background: rgba(34, 211, 238, 0.03);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.14);
}

/* Ribbon: durchgehender Kopfbalken (volle Spaltenbreite, bündig oben) */
body.variant-v17 .license-table thead th .plan-header-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: var(--plan-header-min-h);
  padding: 0 0.85rem 1.1rem;
  box-sizing: border-box;
}

body.variant-v17 .license-table thead th .plan-header-content > :not(.plan-ribbon) {
  align-self: center;
  width: 92%;
  max-width: 9.5rem;
  text-align: center;
}

body.variant-v17 .plan-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: auto;
  height: var(--plan-ribbon-h);
  flex: 0 0 var(--plan-ribbon-h);
  margin: 0 -0.85rem 0.35rem;
  padding: 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-cyan-accent, #22d3ee);
  color: #0f172a;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  pointer-events: none;
  cursor: default;
  user-select: none;
}

/* Andere Plan-Spalten: unsichtbarer Spacer = gleiche vertikale Startlinie */
body.variant-v17 .license-table thead th:not(:first-child):not(.plan-col-recommended) .plan-header-content::before {
  content: "";
  display: block;
  align-self: stretch;
  width: auto;
  height: var(--plan-ribbon-h);
  flex: 0 0 var(--plan-ribbon-h);
  margin: 0 -0.85rem 0.35rem;
}

body.variant-v17 .license-table th .plan-config-slot {
  flex: 0 0 auto;
  margin-top: 0.7rem;
}

body.variant-v17 .license-table thead th.plan-col-recommended {
  overflow: hidden;
}

body.variant-v17 .license-table th .plan-cta {
  flex: 0 0 auto;
  margin-top: auto;
  width: 92%;
  max-width: 9.5rem;
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
}

body.variant-v17 .plan-badge-recommended {
  display: none;
}

body.variant-v17 .license-table th .plan-cta.btn-accent {
  background: var(--color-cyan-accent);
  color: #0f172a;
  border-color: var(--color-cyan-accent);
}

body.variant-v17 .license-table th .plan-cta.btn-accent:hover {
  background: #67e8f9;
  border-color: #67e8f9;
  color: #0f172a;
}

/* Pro-Team-Spalte: kein Extra-Highlight (Pro ist empfohlen) */
body.variant-v17 .license-table th:last-child,
body.variant-v17 .license-table td:last-child {
  background: transparent;
  border-left: 1px solid #f0f9ff;
  box-shadow: none;
}

body.variant-v17 .license-table th:last-child {
  background: var(--color-navy-bg);
}

body.variant-v17 .plan-header-content {
  min-height: var(--plan-header-min-h);
}

body.variant-v17 .plan-col-recommended-wrap {
  display: contents;
}

/* ---- Trust & Requirements ---- */
body.variant-v17 .trust-grid,
body.variant-v17 .requirements-tiers {
  gap: 1.5rem;
}

body.variant-v17 .trust-card,
body.variant-v17 .requirement-tier {
  padding: var(--v14-card-pad);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  border: var(--v14-card-border);
}

body.variant-v17 .trust-card h3,
body.variant-v17 .requirement-tier h3 {
  font-size: 1.1rem;
}

body.variant-v17 .trust-card h3 i,
body.variant-v17 .requirement-tier h3 i {
  font-size: 1.35rem;
}

body.variant-v17 .trust-card p {
  font-size: var(--v14-body);
  line-height: 1.65;
}

body.variant-v17 .requirement-tier ul {
  font-size: var(--v14-body);
  line-height: 1.6;
}

body.variant-v17 .requirement-tier .tier-hint {
  font-size: 0.9375rem;
}

/* ---- Setup flow ---- */
body.variant-v17 .setup-steps h2 {
  font-size: var(--text-section-h2);
  margin-bottom: 2.5rem;
}

body.variant-v17 .setup-flow {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.variant-v17 .setup-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
  }
}

body.variant-v17 .setup-flow-step {
  background: #fff;
  border: var(--v14-card-border);
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
}

body.variant-v17 .setup-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-cyan-accent);
  color: #0f172a;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

body.variant-v17 .setup-flow-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy-bg);
}

body.variant-v17 .setup-flow-step p {
  font-size: var(--v14-body);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

body.variant-v17 .setup-flow-arrow {
  display: none;
  align-self: center;
  color: var(--color-cyan-accent);
  font-size: 1.25rem;
  padding: 0 0.75rem;
  opacity: 0.7;
}

@media (min-width: 768px) {
  body.variant-v17 .setup-flow-arrow {
    display: flex;
    align-items: center;
  }
}

body.variant-v17 .setup-steps-list {
  display: none;
}

/* ---- CTA ---- */
body.variant-v17 .cta {
  padding: var(--v14-section-gap) 0;
}

body.variant-v17 .cta-download-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

body.variant-v17 .cta .btn-accent.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  min-width: 16rem;
}

body.variant-v17 .cta-store-soon {
  font-size: 0.8125rem;
  opacity: 0.65;
  margin: 0;
}

body.variant-v17 .install-notice {
  display: none;
}

body.variant-v17 .install-notice-collapsible {
  max-width: 32rem;
  margin: 1.75rem auto 0;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

body.variant-v17 .install-notice-collapsible summary {
  cursor: pointer;
  padding: 0.85rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.9);
  list-style: none;
}

body.variant-v17 .install-notice-collapsible summary::-webkit-details-marker {
  display: none;
}

body.variant-v17 .install-notice-collapsible summary::after {
  content: " ▾";
  float: right;
  opacity: 0.6;
}

body.variant-v17 .install-notice-collapsible[open] summary {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

body.variant-v17 .install-notice-collapsible .install-notice-inner {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.85);
}

body.variant-v17 .install-notice-collapsible .install-notice-inner p {
  margin: 0 0 0.75rem;
}

body.variant-v17 .install-notice-collapsible .install-notice-figure {
  margin: 0.75rem 0 0;
}

body.variant-v17 .install-notice-collapsible .install-notice-figure img {
  border-radius: 8px;
  max-width: 100%;
}

/* ---- Footer ---- */
body.variant-v17 .footer {
  padding: 3.5rem 0 2rem;
}

body.variant-v17 .footer-brand p {
  font-size: var(--v14-body);
  line-height: 1.6;
}

body.variant-v17 .footer-links h4,
body.variant-v17 .footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

body.variant-v17 .footer-links a,
body.variant-v17 .footer-contact a {
  font-size: var(--v14-body);
  line-height: 1.8;
  padding: 0.15rem 0;
}

body.variant-v17 .footer-bottom p {
  font-size: var(--v14-body);
  line-height: 1.6;
}

body.variant-v17 .footer-disclaimer {
  font-size: 0.875rem !important;
}

/* ---- Buttons unified ---- */
body.variant-v17 .btn {
  border-radius: 10px;
}

body.variant-v17 .btn-lg {
  padding: 0.95rem 2.15rem;
  font-size: 1.0625rem;
}

/* ============================================
   v15 – Feinschliff (auf v14)
   ============================================ */

/* Hero: kürzere Zeilen, besser scannbar */
body.variant-v17 .hero-subtitle,
body.variant-v17 .hero-subtitle-v13 {
  max-width: 32rem;
  line-height: 1.75;
  font-size: 1.0625rem;
}

/* Vergleichstabelle: Produkt-Spalte Header lesbar (Kontrast) */
body.variant-v17 .compare-table thead th.col-product {
  background: linear-gradient(180deg, #0891b2 0%, #0e7490 100%);
  color: #f0fdfa;
}

body.variant-v17 .compare-table tbody td.col-product {
  background: #f0fdfa;
  color: #0f172a;
}

/* Feature-Grid: 6 Karten = sauberes 3×2 */
body.variant-v17 .feature-grid-v15,
body.variant-v17 .feature-grid-v16 {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.variant-v17 .feature-grid-v15,
body.variant-v17 .feature-grid-v16 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  body.variant-v17 .feature-grid-v15,
body.variant-v17 .feature-grid-v16 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   v16 – auf v15, Strategie & UI-Feinschliff
   ============================================ */

/* ---- Typografie-Raster v17b: Rahmen zentriert, Inhalt links ---- */
body.variant-v17 .features h2,
body.variant-v17 .limits-section h2,
body.variant-v17 .trust-section h2,
body.variant-v17 .setup-steps h2,
body.variant-v17 .requirements h2,
body.variant-v17 .licenses > .container > h2,
body.variant-v17 .licenses .section-intro,
body.variant-v17 .einstieg-section h2,
body.variant-v17 .einstieg-lead,
body.variant-v17 .requirements-intro {
  text-align: center;
}

body.variant-v17 .einstieg-lead,
body.variant-v17 .requirements-intro,
body.variant-v17 .licenses .section-intro {
  margin-left: auto;
  margin-right: auto;
}

body.variant-v17 .einstieg-pillar,
body.variant-v17 .feature-card,
body.variant-v17 .trust-card,
body.variant-v17 .requirement-tier,
body.variant-v17 .compare-table th,
body.variant-v17 .compare-table td,
body.variant-v17 .section-footnote,
body.variant-v17 .requirements-note,
body.variant-v17 .ps-problem-text,
body.variant-v17 .ps-solution-box,
body.variant-v17 .license-config-inner {
  text-align: left;
}

body.variant-v17 .setup-flow-step {
  text-align: center;
}

body.variant-v17 .pro-team-note {
  text-align: center;
}

body.variant-v17 .einstieg-pillar h3,
body.variant-v17 .feature-card h3,
body.variant-v17 .trust-card h3,
body.variant-v17 .requirement-tier h3 {
  text-align: left;
}

/* Abschnittslinks stehen als eigene Aktion unter dem jeweiligen Inhalt. */
body.variant-v17 .requirements-link,
body.variant-v17 .setup-steps-link {
  text-align: center;
}

body.variant-v17 .requirements-link a,
body.variant-v17 .setup-steps-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0e7490;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

body.variant-v17 .requirements-link a:hover,
body.variant-v17 .setup-steps-link a:hover {
  color: #155e75;
}

body.variant-v17 .requirements-link a:focus-visible,
body.variant-v17 .setup-steps-link a:focus-visible {
  outline: 3px solid rgba(14, 116, 144, 0.28);
  outline-offset: 4px;
  border-radius: 3px;
}

body.variant-v17 .requirements-link a i,
body.variant-v17 .setup-steps-link a i {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Lange Lesetexte bleiben linksbündig, der Textblock selbst ist zentriert. */
body.variant-v17 .requirements-note {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Disclaimer unter Vergleichstabelle (Fußnote, keine Box) ---- */
body.variant-v17 .section-footnote,
body.variant-v17 .einstieg-footnote {
  margin-top: 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 48rem;
}

body.variant-v17 .section-footnote strong {
  color: #475569;
  font-weight: 600;
}

/* ---- Preistabelle: Pro-Spalte – nur Inset, kein Layout-Shift ---- */
body.variant-v17 .license-table th.plan-col-recommended {
  vertical-align: bottom;
  padding: 0;
}

body.variant-v17 .table-wrapper:has(.plan-col-recommended) {
  overflow-x: auto;
  overflow-y: hidden;
}

/* ---- Lizenz-Panel: Tabelle + Fußnote + Details als ein Block ---- */
body.variant-v17 .license-panel {
  border: 1px solid #e2e8f0;
  border-radius: var(--v14-card-radius);
  box-shadow: var(--v14-card-shadow);
  overflow: hidden;
}

body.variant-v17 .license-panel .table-wrapper {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

/* Tabellen-Fuß: gleicher Ton wie „Lizenztyp“, flach — kein Extra-Panel */
body.variant-v17 .license-table tr.license-type td {
  border-bottom: none;
}

body.variant-v17 .license-table tfoot td {
  padding: 0;
  border-top: none;
  background: var(--color-bg-alt, #f8fafc);
  vertical-align: top;
}

body.variant-v17 .license-table-foot-inner {
  padding: 0.75rem 1.35rem 1.35rem;
}

body.variant-v17 .license-panel .pro-team-note {
  margin: 0 0 0.5rem;
  text-align: left;
  font-size: 0.8125rem;
  color: #64748b;
}

/* ---- Lizenz-Konfiguration: Hinweis-Link im Tabellen-Fuß ---- */
body.variant-v17 .license-config-details {
  margin-top: 0;
  border: none;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

body.variant-v17 .license-config-details summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  list-style: none;
  padding: 0;
  line-height: 1.5;
  transition: color 0.15s ease;
}

body.variant-v17 .license-config-details summary:hover {
  color: var(--color-cyan-accent, #0891b2);
}

body.variant-v17 .license-config-details summary i {
  font-size: 0.75rem;
  opacity: 0.75;
  flex-shrink: 0;
}

body.variant-v17 .license-config-details summary::-webkit-details-marker {
  display: none;
}

body.variant-v17 .license-config-details summary::after {
  content: "›";
  margin-left: 0.1rem;
  opacity: 0.55;
  font-weight: 400;
}

body.variant-v17 .license-config-details[open] summary {
  margin-bottom: 0.65rem;
  color: #475569;
}

body.variant-v17 .license-config-inner {
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text, #334155);
}

body.variant-v17 .license-config-inner p {
  margin: 0 0 0.75rem;
}

body.variant-v17 .license-team-setup-intro {
  font-weight: 600;
  margin: 0 0 0.5rem;
}

body.variant-v17 .license-team-setup-list {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

body.variant-v17 .license-team-setup-note,
body.variant-v17 .license-team-setup-example {
  font-size: 0.875rem;
  color: var(--color-text-muted, #64748b);
  margin: 0 0 0.65rem;
}

body.variant-v17 .license-config-subhead {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--color-text, #334155);
}

body.variant-v17 .license-config-link {
  margin: 0.75rem 0 0;
}

body.variant-v17 .trust-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #e2e8f0);
}

body.variant-v17 .feature-card-link {
  margin-top: 0.85rem;
}

body.variant-v17 .feature-card-link a,
body.variant-v17 .license-config-link a {
  color: var(--color-cyan-accent, #0891b2);
  font-weight: 600;
  text-decoration: none;
  border: none;
  padding: 0;
  background: none;
}

body.variant-v17 .feature-card-link a:hover,
body.variant-v17 .feature-card-link a:focus-visible,
body.variant-v17 .license-config-link a:hover {
  text-decoration: underline;
}

body.variant-v17 .license-config-link .fa-chevron-right {
  font-size: 0.75rem;
  margin-left: 0.15rem;
}

body.variant-v17 .license-team-setup {
  display: none;
}

body.variant-v17 .license-details {
  display: none;
}

/* ---- Header kompakter ---- */
body.variant-v17 {
  --header-height: 3.75rem;
}

body.variant-v17 .header-inner {
  padding: 0.65rem 0;
}

/* ---- Footer kompakter ---- */
body.variant-v17 .footer {
  padding: 2rem 0 1.25rem;
}

body.variant-v17 .footer-grid {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.variant-v17 .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

body.variant-v17 .footer-bottom {
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ---- Feature grid alias ---- */
body.variant-v17 .feature-grid-v16 {
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.variant-v17 .feature-grid-v16 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  body.variant-v17 .feature-grid-v16 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* v17: Pro-Ribbon – Layout via Spacer, siehe oben */

/* ============================================
   v17 + theme-3d / theme-3d-v3 – neue Elemente
   ============================================ */

body.variant-v17.theme-3d .feature-card,
body.variant-v17.theme-3d .einstieg-pillar,
body.variant-v17.theme-3d .ps-solution-box,
body.variant-v17.theme-3d .limits-card,
body.variant-v17.theme-3d .trust-card,
body.variant-v17.theme-3d .requirement-tier,
body.variant-v17.theme-3d .setup-flow-step {
  box-shadow: var(--3d-shadow-card);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.variant-v17.theme-3d .feature-card:hover,
body.variant-v17.theme-3d .einstieg-pillar:hover,
body.variant-v17.theme-3d .ps-solution-box:hover,
body.variant-v17.theme-3d .limits-card:hover,
body.variant-v17.theme-3d .trust-card:hover,
body.variant-v17.theme-3d .requirement-tier:hover,
body.variant-v17.theme-3d .setup-flow-step:hover {
  transform: translateY(var(--3d-lift, -4px));
  box-shadow: var(--3d-shadow-card-hover);
}

body.variant-v17.theme-3d .feature-icon-fa {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

body.variant-v17.theme-3d .feature-card:hover .feature-icon-fa {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 10px rgba(34, 211, 238, 0.14);
}

body.variant-v17.theme-3d .hero-trust-item i {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 3px 0 rgba(0, 0, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(34, 211, 238, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.variant-v17.theme-3d .hero-trust-item:hover i {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 4px 0 rgba(0, 0, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(34, 211, 238, 0.18);
}

body.variant-v17.theme-3d-v3 .einstieg-section .table-wrapper {
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px -14px rgba(15, 23, 42, 0.18),
    0 6px 16px -8px rgba(34, 211, 238, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

body.variant-v17.theme-3d-v3 .einstieg-section .table-wrapper:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 36px -12px rgba(15, 23, 42, 0.2),
    0 8px 20px -8px rgba(34, 211, 238, 0.08);
}

body.variant-v17.theme-3d-v3 .compare-table {
  box-shadow: none;
  border-collapse: separate;
  border-spacing: 0;
}

body.variant-v17.theme-3d-v3 .compare-table thead th {
  background: linear-gradient(
    180deg,
    #1a2740 0%,
    var(--color-navy-bg) 58%,
    #070f1c 100%
  );
  color: #f8fafc;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -2px 8px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.variant-v17.theme-3d-v3 .compare-table thead th.col-product {
  background: linear-gradient(
    180deg,
    #0e7490 0%,
    #0891b2 50%,
    #0e7490 100%
  );
  color: #f0fdfa;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 6px rgba(0, 0, 0, 0.22);
}

body.variant-v17.theme-3d-v3 .compare-table tbody td.col-product {
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.variant-v17.theme-3d-v3 .plan-ribbon {
  position: relative;
  z-index: 3;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(
    180deg,
    #a5f3fc 0%,
    var(--color-cyan-accent) 48%,
    #06b6d4 100%
  );
  color: #0f172a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(8, 145, 178, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

body.variant-v17.theme-3d-v3 .license-panel {
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 32px -14px rgba(15, 23, 42, 0.18),
    0 6px 16px -8px rgba(34, 211, 238, 0.06);
}

body.variant-v17.theme-3d-v3 .license-panel .table-wrapper {
  padding-top: 6px;
  border: none;
  box-shadow: none;
  background: transparent;
}

body.variant-v17.theme-3d-v3 .license-table tfoot td {
  background: #f1f5f9;
}

body.variant-v17.theme-3d-v3 .license-config-details[open] .license-config-inner {
  padding: 0.5rem 0 0;
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.variant-v17.theme-3d-v3 .license-table th.plan-col-recommended {
  background: linear-gradient(
    180deg,
    #243b5c 0%,
    var(--color-navy-bg) 42%,
    #070f1c 100%
  );
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -3px 12px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(34, 211, 238, 0.42);
  padding: 0;
}

body.variant-v17.theme-3d-v3 .license-table td.plan-col-recommended {
  background: rgba(34, 211, 238, 0.03);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.14);
}

body.variant-v17.theme-3d-v3 .license-table th:last-child,
body.variant-v17.theme-3d-v3 .license-table td:last-child {
  border-left-color: rgba(34, 211, 238, 0.12);
  box-shadow: none;
}

body.variant-v17.theme-3d-v3 .license-table th:last-child {
  background: linear-gradient(
    180deg,
    #1a2740 0%,
    var(--color-navy-bg) 58%,
    #070f1c 100%
  );
}

body.variant-v17.theme-3d-v3 .license-table td:last-child {
  background: transparent;
}

body.variant-v17.theme-3d-v3 .license-table th .plan-cta.btn-accent {
  background: linear-gradient(
    180deg,
    #8eedf9 0%,
    var(--color-cyan-accent) 58%,
    #06b6d4 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 3px 10px rgba(34, 211, 238, 0.28);
}

body.variant-v17.theme-3d-v3 .setup-flow-num {
  background: linear-gradient(
    180deg,
    #a5f3fc 0%,
    var(--color-cyan-accent) 50%,
    #06b6d4 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(8, 145, 178, 0.2),
    0 4px 12px rgba(34, 211, 238, 0.28);
}

body.variant-v17.theme-3d-v3 .setup-flow-arrow i {
  filter: drop-shadow(0 2px 6px rgba(34, 211, 238, 0.35));
}

body.variant-v17.theme-3d-v3 .install-notice-collapsible {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 6px 0 rgba(0, 0, 0, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.22);
}

body.variant-v17.theme-3d-v3 .install-notice-collapsible[open] {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 0 rgba(0, 0, 0, 0.14),
    0 20px 40px rgba(0, 0, 0, 0.28);
}

body.variant-v17.theme-3d-v3 .btn {
  border-radius: 12px;
}

body.variant-v17.theme-3d-v3 .btn-lg {
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  body.variant-v17.theme-3d .feature-card,
  body.variant-v17.theme-3d .einstieg-pillar,
  body.variant-v17.theme-3d .ps-solution-box,
  body.variant-v17.theme-3d .limits-card,
  body.variant-v17.theme-3d .trust-card,
  body.variant-v17.theme-3d .requirement-tier,
  body.variant-v17.theme-3d .setup-flow-step,
  body.variant-v17.theme-3d .hero-trust-item i {
    transition: none;
  }

  body.variant-v17.theme-3d .feature-card:hover,
  body.variant-v17.theme-3d .einstieg-pillar:hover,
  body.variant-v17.theme-3d .ps-solution-box:hover,
  body.variant-v17.theme-3d .limits-card:hover,
  body.variant-v17.theme-3d .trust-card:hover,
  body.variant-v17.theme-3d .requirement-tier:hover,
  body.variant-v17.theme-3d .setup-flow-step:hover,
  body.variant-v17.theme-3d .hero-trust-item:hover i {
    transform: none;
  }
}


/* Hero: nur App-Fenster neben Claim (v17 bleibt, kein Full-Page-Redesign) */
body.variant-v17 .hero-with-app .hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.75rem 2rem;
  align-items: center;
  text-align: left;
  max-width: 1120px;
}
body.variant-v17 .hero-with-app .hero-copy {
  min-width: 0;
}
body.variant-v17 .hero-with-app .hero-claim,
body.variant-v17 .hero-with-app .hero-subtitle,
body.variant-v17 .hero-with-app .hero-note {
  text-align: left;
}
body.variant-v17 .hero-with-app .hero-trust-row,
body.variant-v17 .hero-with-app .hero-ctas {
  justify-content: flex-start;
}
body.variant-v17 .hero-with-app .hero-app-frame {
  margin: 0;
  position: relative;
}
body.variant-v17 .hero-with-app .hero-app-frame::before {
  content: "";
  position: absolute;
  inset: 8% -6% -8% 8%;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
body.variant-v17 .hero-with-app .hero-app-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.25),
    0 22px 48px rgba(0, 0, 0, 0.45);
  object-fit: contain;
  background: #0b1220;
}
@media (max-width: 900px) {
  body.variant-v17 .hero-with-app .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.variant-v17 .hero-with-app .hero-claim,
  body.variant-v17 .hero-with-app .hero-subtitle,
  body.variant-v17 .hero-with-app .hero-note {
    text-align: center;
  }
  body.variant-v17 .hero-with-app .hero-trust-row,
  body.variant-v17 .hero-with-app .hero-ctas {
    justify-content: center;
  }
  body.variant-v17 .hero-with-app .hero-app-frame {
    order: 2;
    max-width: 36rem;
    margin-inline: auto;
  }
}

/* FAQ + Workflow (Briefing-Entwurf) */
body.variant-v17 .workflow-section {
  padding: 4rem 0;
  background: #0f172a;
}
body.variant-v17 .workflow-shot {
  margin: 1rem 0 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body.variant-v17 .workflow-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #0b1220;
}
body.variant-v17 .workflow-shot-note {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 40rem;
  margin: 0.5rem auto 0;
}
body.variant-v17 .shot-theme-toggle {
  display: inline-flex;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  z-index: 2;
}
body.variant-v17 .hero-app-frame .shot-theme-toggle {
  margin-bottom: 0.65rem;
}
body.variant-v17 .workflow-shot-toolbar {
  display: flex;
  justify-content: center;
  margin: 0 0 1.25rem;
}
body.variant-v17 .shot-theme-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #cbd5e1;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}
body.variant-v17 .shot-theme-toggle button.is-active {
  background: rgba(34, 211, 238, 0.18);
  color: #f8fafc;
}
/* Download-Vertrauen: bewusst kompakt, damit der Hinweis den CTA unterstützt. */
body.variant-v17 .download-trust-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  width: min(100%, 49rem);
  margin: 1.4rem auto 0;
  padding: 1rem 1.15rem;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.variant-v17 .download-trust-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-top: 0.05rem;
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 9px;
  background: rgba(34, 211, 238, 0.1);
}

body.variant-v17 .download-trust-copy h3 {
  margin: 0 0 0.3rem;
  color: #f8fafc;
  font-size: 0.96rem;
  line-height: 1.35;
}

body.variant-v17 .download-trust-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.55;
}

body.variant-v17 .download-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 0.65rem;
}

body.variant-v17 .download-trust-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #67e8f9;
  font-size: 0.79rem;
  font-weight: 600;
  text-decoration: none;
}

body.variant-v17 .download-trust-links a:hover,
body.variant-v17 .download-trust-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 600px) {
  body.variant-v17 .download-trust-note {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  body.variant-v17 .download-trust-links {
    display: grid;
  }
}

/* 2026-07-18: ruhige, manuell steuerbare Produktgalerie im Hero */
body.variant-v17 .hero-with-app .hero-split {
  grid-template-columns: minmax(0, 1fr) minmax(32rem, 1.2fr);
  max-width: 1180px;
  gap: 2.5rem;
}

body.variant-v17 .hero-with-app .hero-claim {
  max-width: 20ch;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.2rem, 3.35vw, 3.25rem);
  line-height: 1.08;
  text-wrap: balance;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

body.variant-v17 .hero-with-app .hero-subtitle {
  max-width: 36rem;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

body.variant-v17 .hero-with-app .hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
  max-width: 34rem;
  margin-left: 0;
  margin-right: 0;
}

body.variant-v17 .hero-with-app .hero-trust-item {
  min-width: 0;
}

body.variant-v17 .workflow-section h2 {
  color: #f8fafc;
  hyphens: none;
  overflow-wrap: normal;
}

body.variant-v17 .workflow-section .section-intro {
  color: #cbd5e1;
}

body.variant-v17 .workflow-section .workflow-grid {
  margin-top: 2rem;
}

body.variant-v17 .workflow-section .feature-card {
  min-height: 0;
}

body.variant-v17 .hero-app-frame {
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: rgba(8, 15, 29, 0.72);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.38);
}

body.variant-v17 .hero-shot-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.35rem;
  padding: 0 0.15rem 0.65rem;
}

body.variant-v17 .hero-shot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #cbd5e1;
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

body.variant-v17 .hero-app-frame .shot-theme-toggle {
  margin: 0;
}

body.variant-v17 .hero-shot-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  background: #0b1220;
}

body.variant-v17 .hero-with-app .hero-shot-stage img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  transform: none;
  transition: opacity 160ms ease;
}

body.variant-v17 .hero-shot-expand {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(226, 232, 240, 0.46);
  border-radius: 999px;
  background: rgba(8, 15, 29, 0.68);
  color: #f8fafc;
  cursor: zoom-in;
  opacity: 0.82;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.variant-v17 .hero-shot-expand:hover,
body.variant-v17 .hero-shot-expand:focus-visible {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: #67e8f9;
  background: #0e7490;
  opacity: 1;
  outline: none;
}

body.shot-lightbox-open {
  overflow: hidden;
}

body.variant-v17 .shot-lightbox[hidden] {
  display: none;
}

body.variant-v17 .shot-lightbox {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(8px);
}

body.variant-v17 .shot-lightbox-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(96vw, 1440px);
  max-height: calc(100vh - 2rem);
}

body.variant-v17 .shot-lightbox-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 5.5rem);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 12px;
  background: #0b1220;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

body.variant-v17 .shot-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.46);
  border-radius: 999px;
  background: rgba(8, 15, 29, 0.84);
  color: #f8fafc;
  cursor: pointer;
}

body.variant-v17 .shot-lightbox-close:hover,
body.variant-v17 .shot-lightbox-close:focus-visible {
  border-color: #67e8f9;
  background: #0e7490;
  outline: 2px solid #f8fafc;
  outline-offset: 2px;
}

body.variant-v17 .shot-lightbox-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(226, 232, 240, 0.48);
  border-radius: 999px;
  background: rgba(8, 15, 29, 0.88);
  color: #f8fafc;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body.variant-v17 .shot-lightbox-arrow:hover,
body.variant-v17 .shot-lightbox-arrow:focus-visible {
  transform: translateY(-50%) scale(1.06);
  border-color: #67e8f9;
  background: #0e7490;
  outline: 2px solid #f8fafc;
  outline-offset: 2px;
}

body.variant-v17 .shot-lightbox-prev {
  left: clamp(0.65rem, 2vw, 2rem);
}

body.variant-v17 .shot-lightbox-next {
  right: clamp(0.65rem, 2vw, 2rem);
}

body.variant-v17 .shot-lightbox-content p {
  margin: 0.7rem 0 0;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 600px) {
  body.variant-v17 .shot-lightbox {
    padding-inline: 3rem;
  }

  body.variant-v17 .shot-lightbox-arrow {
    width: 2.65rem;
    height: 2.65rem;
  }

  body.variant-v17 .shot-lightbox-prev {
    left: 0.25rem;
  }

  body.variant-v17 .shot-lightbox-next {
    right: 0.25rem;
  }
}

body.variant-v17 .hero-shot-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(226, 232, 240, 0.28);
  border-radius: 999px;
  background: rgba(8, 15, 29, 0.82);
  color: #f8fafc;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

body.variant-v17 .hero-shot-arrow:hover,
body.variant-v17 .hero-shot-arrow:focus-visible {
  border-color: #22d3ee;
  background: #0e7490;
  outline: none;
}

body.variant-v17 .hero-shot-prev { left: 0.65rem; }
body.variant-v17 .hero-shot-next { right: 0.65rem; }

body.variant-v17 .hero-shot-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
  min-height: 4.6rem;
  padding: 0.8rem 0.35rem 0.35rem;
  text-align: left;
}

body.variant-v17 .hero-shot-caption strong {
  color: #f8fafc;
  font-size: 0.94rem;
}

body.variant-v17 .hero-shot-caption span {
  color: #aebbd0;
  font-size: 0.8rem;
  line-height: 1.45;
}

body.variant-v17 .hero-shot-dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.2rem 0 0.15rem;
}

body.variant-v17 .hero-shot-dots button {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.62);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

body.variant-v17 .hero-shot-dots button.is-active {
  border-color: #22d3ee;
  background: #22d3ee;
}

body.variant-v17 .hero-shot-dots button:focus-visible {
  outline: 2px solid #f8fafc;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  body.variant-v17 .hero-with-app .hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(29rem, 1.12fr);
    gap: 1.75rem;
  }

  body.variant-v17 .hero-with-app .hero-claim {
    font-size: clamp(2.05rem, 3.7vw, 2.75rem);
  }
}

@media (max-width: 900px) {
  body.variant-v17 .hero-with-app .hero-split {
    grid-template-columns: minmax(0, 1fr);
  }

  body.variant-v17 .hero-with-app .hero-claim,
  body.variant-v17 .hero-with-app .hero-subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }

  body.variant-v17 .hero-with-app .hero-trust-row {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  body.variant-v17 .hero-with-app .hero-claim {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.1;
  }

  body.variant-v17 .hero-app-frame {
    padding: 0.55rem;
    border-radius: 14px;
  }

  body.variant-v17 .hero-shot-toolbar {
    align-items: flex-start;
  }

  body.variant-v17 .hero-shot-kicker {
    max-width: 9rem;
  }

  body.variant-v17 .hero-shot-stage {
    aspect-ratio: 4 / 3;
  }

  body.variant-v17 .hero-shot-arrow {
    width: 2rem;
    height: 2rem;
  }

  body.variant-v17 .hero-shot-expand {
    width: 2.55rem;
    height: 2.55rem;
  }

  body.variant-v17 .hero-shot-caption {
    min-height: 5.6rem;
  }

  body.variant-v17 .hero-with-app .hero-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.variant-v17 .hero-with-app .hero-shot-stage img,
  body.variant-v17 .hero-shot-dots button,
  body.variant-v17 .hero-shot-expand {
    transition: none;
  }
}

/* ===========================================
   Startseite – ergebnisorientierte Texte & Vertrauensführung (2026-07-18)
   =========================================== */

body.variant-v17 .nav-download {
  flex: 0 0 auto;
  min-height: 2.35rem;
  padding: 0.58rem 0.9rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

body.variant-v17 .nav-mobile-download {
  color: #08111f;
  background: linear-gradient(135deg, #67e8f9, #22d3ee);
  font-weight: 750;
}

body.variant-v17 .hero-copy {
  align-self: center;
}

body.variant-v17 .hero-claim {
  max-width: 12.5ch;
  font-size: clamp(2.3rem, 4.3vw, 3.65rem);
  line-height: 1.04;
  text-wrap: balance;
}

body.variant-v17 .hero-subtitle-v13 {
  max-width: 41rem;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

body.variant-v17 .audience-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

body.variant-v17 .audience-section h2,
body.variant-v17 .faq-section h2 {
  margin-bottom: 1rem;
  text-align: center;
}

body.variant-v17 .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.3rem;
}

body.variant-v17 .audience-card {
  min-width: 0;
  padding: 1.7rem;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 0 #dbeafe, 0 15px 34px rgba(15, 23, 42, 0.08);
}

body.variant-v17 .audience-card h3 {
  margin: 1rem 0 0.65rem;
  color: #0f172a;
  font-size: 1.08rem;
}

body.variant-v17 .audience-card p {
  margin: 0;
  color: #52627a;
  line-height: 1.65;
}

body.variant-v17 .mid-cta {
  padding: 2.7rem 0;
  background: linear-gradient(120deg, #071426, #0d2438 58%, #0b3b4b);
  color: #f8fafc;
  border-top: 1px solid rgba(103, 232, 249, 0.2);
  border-bottom: 1px solid rgba(103, 232, 249, 0.2);
}

body.variant-v17 .mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

body.variant-v17 .mid-cta h2 {
  margin: 0 0 0.45rem;
  color: #f8fafc;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

body.variant-v17 .mid-cta p {
  max-width: 44rem;
  margin: 0;
  color: #cbd5e1;
  font-size: 1rem;
}

body.variant-v17 .mid-cta .btn {
  flex: 0 0 auto;
}

body.variant-v17 .faq-section {
  padding: 5.5rem 0;
  background: #f6f8fb;
}

body.variant-v17 .faq-list {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 58rem);
  margin: 2rem auto 0;
}

body.variant-v17 .faq-list details {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

body.variant-v17 .faq-list summary {
  padding: 1rem 1.15rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

body.variant-v17 .faq-list details[open] summary {
  border-bottom: 1px solid #e2e8f0;
}

body.variant-v17 .faq-list p {
  margin: 0;
  padding: 1rem 1.15rem 1.15rem;
  color: #52627a;
  line-height: 1.7;
}

body.variant-v17 .final-cta-note {
  margin: 0.85rem 0 0;
  color: #a5f3fc;
  font-size: 0.9rem;
  font-weight: 650;
}

body.variant-v17 .compact-setup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin: 1rem auto 0;
  color: #cbd5e1;
  font-size: 0.84rem;
}

body.variant-v17 .compact-setup i,
body.variant-v17 .compact-setup a {
  color: #67e8f9;
}

body.variant-v17 .download-trust-details {
  width: min(100%, 49rem);
  margin: 1.15rem auto 0;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.48);
}

body.variant-v17 .download-trust-details summary {
  padding: 0.82rem 1rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
}

body.variant-v17 .download-trust-details summary i {
  margin-right: 0.4rem;
  color: #67e8f9;
}

body.variant-v17 .download-trust-details-content {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

body.variant-v17 .download-trust-details-content > p {
  margin: 0;
  padding-top: 0.85rem;
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  body.variant-v17 .nav-download {
    display: none;
  }
}

@media (max-width: 900px) {
  body.variant-v17 .audience-grid {
    grid-template-columns: 1fr;
  }

  body.variant-v17 .mid-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  body.variant-v17 .audience-section,
  body.variant-v17 .faq-section {
    padding: 4rem 0;
  }

  body.variant-v17 .audience-card {
    padding: 1.35rem;
  }

  body.variant-v17 .mid-cta .btn {
    width: 100%;
  }
}
