/* ==========================================================================
   Toolstrategen — Design System
   Selbst gehostete Fonts (DSGVO: kein Google-Fonts-CDN)
   ========================================================================== */

@font-face {
  font-family: 'Sora';
  src: url('../assets/fonts/Sora.ttf') format('truetype-variations'),
       url('../assets/fonts/Sora.ttf') format('truetype');
  font-weight: 100 800;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../assets/fonts/SpaceMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../assets/fonts/SpaceMono-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Farben */
  --color-bg: #070b14;
  --color-bg-elevated: #0c1220;
  --color-bg-card: #0a0e18;
  --color-accent: #4d7cff;
  --color-accent-soft: rgba(77, 124, 255, 0.14);
  --color-gold: #d4af6a;
  --color-gold-light: #f5dfa8;
  --color-gold-dark: #a8763a;
  --gold-gradient: linear-gradient(135deg, var(--color-gold), var(--color-gold-light) 45%, var(--color-gold-dark));
  --bg-metallic: radial-gradient(circle at 15% 10%, rgba(175, 205, 255, 0.32), transparent 32%),
    radial-gradient(circle at 72% 22%, rgba(150, 185, 255, 0.22), transparent 28%),
    radial-gradient(circle at 42% 82%, rgba(130, 165, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #0a1122 0%, #1c2c4d 30%, #16233f 55%, #223760 75%, #0d1526 100%);
  --color-text: #f5f6fa;
  --color-text-muted: #8b94ac;
  --color-border: #1b2438;

  /* Helle Karten (Hybrid-Look: dunkler Seiten-Hintergrund, helle Karten) */
  --card-bg: #ffffff;
  --card-shadow: 0 16px 40px rgba(3, 6, 16, 0.4);
  --card-shadow-hover: 0 20px 48px rgba(3, 6, 16, 0.5);
  --card-heading: #182333;
  --card-text: #5b6472;
  --card-radius: 16px;
  --icon-gradient: linear-gradient(135deg, var(--color-accent), var(--color-gold));

  /* Typografie */
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* Layout */
  --max-width: 1240px;
  --section-pad-y: clamp(64px, 10vw, 140px);
  --section-pad-x: clamp(20px, 5vw, 64px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg-metallic);
  background-color: var(--color-bg);
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

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

/* Sichtbarer Fokus-Ring für Tastaturbedienung */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #04060c;
  padding: 12px 20px;
  z-index: 1000;
  font-family: var(--font-mono);
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Visuell versteckt, aber für Screenreader/SEO vorhanden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

/* Eyebrow: CLI-Stil-Label, das Struktur signalisiert (Signature-Element) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 1px;
  animation: blink 1.6s steps(2, jump-none) infinite;
}

@keyframes blink {
  50% { opacity: 0.25; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow::before {
    animation: none;
  }
}

/* Einmaliger Glanz-Effekt beim Reinscrollen — bewusst sparsam eingesetzt,
   nicht endlos, nur an ausgewählten Stellen (Hero, Preise). */
.shimmer-once {
  position: relative;
  overflow: hidden;
}

.shimmer-once::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212, 175, 106, 0.45), transparent);
  opacity: 0;
  pointer-events: none;
}

.shimmer-once.is-visible::after {
  animation: shimmerOnce 1.1s ease-out 1;
}

@keyframes shimmerOnce {
  0%   { left: -60%; opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .shimmer-once.is-visible::after {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--color-accent);
  color: #04060c;
}

.btn-primary:hover {
  background: #6a90ff;
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: var(--color-border);
}

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

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(7, 11, 20, 0.85), transparent);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--color-accent);
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  padding: 8px 10px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-headline {
  font-size: clamp(38px, 5.6vw, 76px);
  max-width: 15ch;
  margin-bottom: 20px;
}

.hero-headline .accent {
  color: var(--color-accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-content {
  padding-bottom: clamp(48px, 8vh, 96px);
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,6,12,0.55) 0%, rgba(4,6,12,0.15) 30%, rgba(4,6,12,0.55) 100%),
    linear-gradient(90deg, rgba(4,6,12,0.35) 0%, rgba(4,6,12,0) 45%);
}

.hero-content .container {
  max-width: var(--max-width);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-cue .chevron {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollcue 1.8s ease-in-out infinite;
}

@keyframes scrollcue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue .chevron {
    animation: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero-headline {
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-cue {
    display: none;
  }
}

/* Placeholder-Sektion für die noch folgenden Bausteine */
.coming-next {
  padding: var(--section-pad-y) 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 13px;
  border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   Sections — gemeinsame Bausteine
   ========================================================================== */

.section {
  padding: var(--section-pad-y) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================================================
   Demo-Galerie
   ========================================================================== */

.demo-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.demo-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px;
  flex: 1;
}

.demo-track::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    var(--gold-gradient) border-box;
  color: var(--color-gold-light);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  box-shadow: 0 0 18px rgba(212, 175, 106, 0.3);
  transform: scale(1.06);
}

.demo-card {
  position: relative;
  display: block;
  flex: 0 0 calc(50% - 12px);
  min-width: 320px;
  scroll-snap-align: start;
  border-radius: var(--card-radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.demo-card:hover,
.demo-card:focus-visible {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.demo-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(4, 6, 12, 0.75);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.demo-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.demo-card-media img,
.demo-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.demo-card:hover .demo-card-media img,
.demo-card:focus-visible .demo-card-media img {
  transform: scale(1.06);
}

.demo-card-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.demo-card-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--card-heading);
}

.demo-card-subtitle {
  font-size: 12px;
  color: var(--card-text);
}

.demo-card-arrow {
  color: var(--color-accent);
  font-size: 18px;
  transition: transform 0.25s ease;
}

.demo-card:hover .demo-card-arrow,
.demo-card:focus-visible .demo-card-arrow {
  transform: translateX(4px);
}

.demo-card-next {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--card-radius);
  box-shadow: none;
  color: var(--color-text-muted);
  font-size: 13px;
  min-height: 100%;
  padding: 40px 20px;
}

/* ==========================================================================
   Leistungen
   ========================================================================== */

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.leistung-card {
  position: relative;
  display: block;
  border-radius: var(--card-radius);
  padding: 44px 30px 34px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.leistung-card:hover,
.leistung-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.leistung-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
}

.leistung-card::before {
  content: '';
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--icon-gradient);
}

/* Homepage-Leistungen: drei leicht unterschiedliche Icon-Formen */
#leistungen .leistung-card:nth-child(1)::before {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
#leistungen .leistung-card:nth-child(2)::before {
  border-radius: 22%;
}
#leistungen .leistung-card:nth-child(3)::before {
  border-radius: 50%;
  transform: rotate(45deg);
}

.leistung-tag {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.leistung-title {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--card-heading);
}

.leistung-text {
  color: var(--card-text);
  font-size: 13.5px;
  line-height: 1.7;
}

.leistung-card.is-upcoming {
  box-shadow: var(--card-shadow);
  border: none;
}

.leistung-card.is-upcoming::before {
  background: linear-gradient(135deg, #b7bfcc, #8b94ac);
}

.leistung-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #1a1206;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ==========================================================================
   Preise
   ========================================================================== */

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

.price-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    var(--gold-gradient) border-box;
  box-shadow: 0 0 22px rgba(212, 175, 106, 0.12);
}

.price-card.is-highlight {
  background:
    linear-gradient(180deg, rgba(212, 175, 106, 0.12), var(--color-bg-card) 45%) padding-box,
    var(--gold-gradient) border-box;
  box-shadow: 0 0 38px rgba(212, 175, 106, 0.3);
}

.price-card.is-highlight .foil-strip {
  height: 6px;
  margin: -36px -30px 24px;
  background: linear-gradient(
    90deg,
    var(--color-gold-dark),
    var(--color-gold-light) 25%,
    var(--color-gold) 50%,
    var(--color-gold-light) 75%,
    var(--color-gold-dark)
  );
  border-radius: 9px 9px 0 0;
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 30px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  color: #1a1206;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

.price-title {
  font-size: 19px;
  margin-bottom: 14px;
}

.price-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 2px;
}

.price-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.price-features li {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

.addon-strip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 28px 32px;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    var(--gold-gradient) border-box;
  box-shadow: 0 0 22px rgba(212, 175, 106, 0.12);
}

.addon-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(212, 175, 106, 0.22), transparent);
  animation: sweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweep {
  0%   { left: -60%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .addon-strip::before {
    animation: none;
    display: none;
  }
}

.addon-tag {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.addon-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.addon-text {
  color: var(--color-text-muted);
  font-size: 13.5px;
  max-width: 52ch;
  line-height: 1.6;
}

.addon-text a {
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   Kontakt-Formular (Formspree)
   ========================================================================== */

.contact-alt {
  margin-top: 24px;
  font-size: 13px;
  color: var(--card-text);
}

.contact-alt a {
  color: var(--color-accent);
  font-weight: 700;
}

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow-hover);
  padding: 22px 24px 20px;
  overflow: hidden;
  transform: translateY(160%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: 13px;
  color: var(--card-text);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--color-accent);
  font-weight: 700;
}

.cookie-banner-btn {
  flex-shrink: 0;
}

/* ==========================================================================
   Pakete-Vergleichstabelle
   ========================================================================== */

.compare-table-wrap {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow-x: auto;
  margin-bottom: 24px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-family: var(--font-mono);
}

.compare-table thead th {
  padding: 28px 20px 20px;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 2px solid #eef0f4;
}

.compare-feature-col {
  width: 240px;
}

.compare-table thead th.is-highlight {
  background: linear-gradient(180deg, rgba(212, 175, 106, 0.1), transparent 70%);
  position: relative;
}

.compare-table thead th.is-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.compare-plan-name,
.compare-badge {
  display: block;
}

.compare-plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--card-heading);
  margin-bottom: 6px;
}

.compare-plan-price {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--card-heading);
}

.compare-plan-note {
  display: block;
  font-size: 11px;
  color: var(--card-text);
  margin-top: 2px;
}

.compare-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1206;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto 10px;
}

.compare-table tbody tr {
  border-bottom: 1px solid #f0f1f4;
}

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

.compare-table tbody td:first-child {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--card-heading);
  padding: 16px 20px;
}

.compare-table tbody td {
  text-align: center;
  font-size: 13px;
  color: var(--card-text);
  padding: 16px 14px;
}

.compare-table tbody td.is-highlight {
  background: rgba(212, 175, 106, 0.05);
}

.compare-yes {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 15px;
}

.compare-no {
  color: #c3c8d1;
  font-weight: 700;
}

.compare-row-cta td {
  padding: 24px 16px 20px;
}

.compare-row-cta .btn {
  width: 100%;
  justify-content: center;
}

.compare-row-cta .btn-ghost {
  color: var(--card-heading);
  border-color: #d8dce4;
}

.compare-row-cta .btn-ghost:hover {
  border-color: var(--color-accent);
}

@media (max-width: 700px) {
  .compare-table-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    width: calc(100% + 40px);
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px 20px 18px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 14px;
  width: 100%;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%238b94ac' stroke-width='1.6'%3E%3Cpath d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-row textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--font-mono);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-submit {
  align-self: flex-start;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 13px;
  margin: 0;
  min-height: 18px;
}

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

.form-status.is-error {
  color: #ff8a8a;
}

.addon-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  white-space: nowrap;
}

.addon-price span {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px 24px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 28px 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--color-accent);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 22px;
  max-width: 62ch;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */

.contact-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 56px;
  background:
    linear-gradient(var(--color-bg-card), var(--color-bg-card)) padding-box,
    var(--gold-gradient) border-box;
  box-shadow: 0 0 30px rgba(212, 175, 106, 0.14);
}

.contact-box .section-title {
  margin-bottom: 14px;
}

.contact-box .section-lead {
  margin-bottom: 28px;
  max-width: 52ch;
}

.contact-email {
  font-size: 15px;
}

.contact-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-checklist li {
  font-size: 13.5px;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.contact-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
  margin-top: var(--section-pad-y);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-brand .logo span {
  color: var(--color-accent);
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 13.5px;
  max-width: 32ch;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 13.5px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 760px) {
  .contact-box {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .demo-card {
    flex-basis: 86%;
    min-width: 240px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   Vertrauen
   ========================================================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trust-item {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.trust-item::before {
  content: '';
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--icon-gradient);
}

.trust-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--card-heading);
}

.trust-item p {
  color: var(--card-text);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 42ch;
  margin: 0 auto;
}

/* ==========================================================================
   Ablauf
   ========================================================================== */

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.process-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-item:last-child {
  border-bottom: none;
}

.process-number {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 64px;
}

.process-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-item p {
  color: var(--color-text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 62ch;
}

@media (max-width: 600px) {
  .process-item {
    gap: 16px;
  }
  .process-number {
    width: 44px;
    font-size: 26px;
  }
}

/* ==========================================================================
   Produktseiten (Verkaufsseiten für einzelne Pakete)
   ========================================================================== */

.product-hero {
  padding-top: clamp(140px, 22vh, 200px);
  padding-bottom: clamp(48px, 8vh, 80px);
}

.price-badge-floating {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #1a1206;
  background: var(--gold-gradient);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.section-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
  color: var(--color-text-muted);
  font-size: 13.5px;
  max-width: 62ch;
}

.section-note a {
  color: var(--color-accent);
  font-weight: 700;
}

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

/* ==========================================================================
   Erklärvideo — Stil-Grid
   ========================================================================== */

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.style-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  padding-bottom: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

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

.style-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  margin-bottom: 18px;
}

.style-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  aspect-ratio: 8 / 3;
}

.style-card-title {
  font-size: 16.5px;
  margin: 0 22px 8px;
  color: var(--card-heading);
}

.style-card-text {
  color: var(--card-text);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 22px;
}

@media (max-width: 900px) {
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .style-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .style-grid {
    grid-template-columns: 1fr;
  }
  .style-card-wide {
    grid-column: span 1;
  }
  .style-card-media-split {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4 / 3;
  }
}
