/* ====================================================
   PYSTORE – MAIN CSS
   Dark Modern SaaS Theme
   ==================================================== */

:root {
  /* Obsidian-Basis – warm getöntes Schwarz für Luxus-Wirkung */
  --bg-base:       #0a0a0f;
  --bg-surface:    #101017;
  --bg-card:       #16161f;
  --bg-card-hover: #1e1e29;
  --border:        rgba(255,255,255,0.08);
  --border-glow:   rgba(203,163,90,0.30);

  /* Marke: Champagner-Gold (Primär) + warmes Platin (Sekundär) */
  --primary:       #cba35a;
  --primary-hover: #b78d44;
  --primary-glow:  rgba(203,163,90,0.25);
  --secondary:     #e6cd97;
  --accent:        #f5c451;   /* helleres Gold für Highlights/„Empfohlen" */
  --accent-hover:  #e3ad32;
  --accent-glow:   rgba(245,196,81,0.28);

  --text-base:     #ece8e1;
  --text-muted:    #968f7d;   /* aufgehellt für ausreichenden Kontrast (WCAG AA) */
  --text-subtle:   #b8af9d;

  --gradient-primary: linear-gradient(135deg, #b78d44 0%, #e6cd97 100%);
  --gradient-gold:    linear-gradient(135deg, #f5c451 0%, #d99b27 100%);
  --gradient-hero:    linear-gradient(160deg, #101017 0%, #0a0a0f 100%);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.55);
  --shadow-glow:  0 0 40px rgba(203,163,90,0.2);

  --font-display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --nav-h:         110px;
}

/* ===== BASE ===== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;   /* prevent horizontal scroll caused by AOS / decorative elements */
  max-width: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-base);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: 110px; /* announcement (42px) + navbar (68px) – JS overrides dynamically */
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .page-title, .projects-compact-title,
.stat-number, .option-title, .cta-title, .brand-text,
.about-name, .navbar-brand {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold-Akzent-Text (Marken-Highlight) */
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== UTILITIES ===== */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.pb-6 { padding-bottom: 5rem !important; }
.pt-6 { padding-top: 5rem !important; }

/* ===== NAV WRAPPER ===== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #18130a 0%, #2a2113 55%, #3a2c16 100%);
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(203,163,90,0.18);
}

.announcement-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -100%;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: ann-shimmer 4s ease infinite;
  pointer-events: none;
}

@keyframes ann-shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.ann-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.ann-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.ann-text strong { color: white; }

.ann-cta {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  padding: 2px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.ann-cta:hover {
  background: rgba(255,255,255,0.28);
  color: white;
}

.ann-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.2s;
}

.ann-close:hover { color: white; }

/* ===== NAVBAR ===== */
#mainNavbar {
  background: rgba(4, 4, 12, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 0.65rem 0;
  height: 68px;
}

#mainNavbar.scrolled {
  background: rgba(4, 4, 12, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.45);
  border-bottom-color: rgba(203,163,90,0.25);
}

/* Vertical divider between links and CTA */
.nav-vdivider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 4px;
}

.brand-logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-base);
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--text-subtle) !important;
  font-weight: 500;
  padding: 0.4rem 0.75rem !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-base) !important;
  background: rgba(255,255,255,0.05);
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}

body:has(.mobile-bottom-nav) main,
body:has(.mobile-bottom-nav) footer {
  margin-bottom: 70px;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.mobile-nav-item i { font-size: 1.3rem; }

.mobile-nav-item.active { color: var(--primary); }

.mobile-nav-item:hover { color: var(--text-base); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #0a0a0f;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--primary-glow);
  background: var(--gradient-primary);
  color: #0a0a0f;
  border: none;
}

.btn-purple {
  background: var(--gradient-gold);
  border: none;
  color: #0a0e1a;
  font-weight: 700;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-purple:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #0a0e1a;
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-secondary {
  border-color: var(--border);
  color: var(--text-subtle);
  border-radius: 10px;
  font-weight: 500;
}

.btn-outline-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: var(--text-base);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-base);
  border-radius: 10px;
  font-weight: 600;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-base);
  border-color: rgba(255,255,255,0.3);
}

.btn-light {
  background: white;
  color: #1a1a2e;
  font-weight: 700;
  border: none;
  border-radius: 10px;
}

.btn-light:hover {
  background: #f0f0ff;
  color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  /* exakt sichtbarer Bereich unter der Navbar -> komplette Section ohne Scrollen sichtbar */
  min-height: calc(100svh - var(--nav-h, 110px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203,163,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,163,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(203,163,90,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(203,163,90,0.1) 0%, transparent 70%);
  bottom: 0;
  left: 0;
}

/* ===== HERO BANNER (Hintergrundbild) ===== */
.hero-has-banner { background: var(--bg-base); }

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;   /* Licht-Portal rechts im Blick behalten */
  opacity: 0.92;
}

/* Veil: links abdunkeln für Text-Lesbarkeit, sanft nach unten ausblenden */
.hero-banner-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg-base) 0%, rgba(8,8,16,0.82) 28%, rgba(8,8,16,0.35) 55%, transparent 72%),
    linear-gradient(180deg, rgba(8,8,16,0.55) 0%, transparent 22%, transparent 72%, var(--bg-base) 100%);
}

.hero-has-banner .hero-bg-grid { z-index: 1; opacity: 0.5; }
.hero-has-banner .container { position: relative; z-index: 2; }

/* ===== HERO ROBOT (Spline) ===== */
.hero-robot-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-robot-stage:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 6px;
  border-radius: var(--radius-xl);
}

/* Sprechblase (erscheint beim Anklicken) */
.hero-robot-bubble {
  position: absolute;
  top: 4%;
  left: -4%;
  z-index: 5;
  max-width: 240px;
  background: rgba(14,20,36,0.95);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-base);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.hero-robot-bubble.show { opacity: 1; transform: translateY(0) scale(1); }

.hero-robot-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 26px;
  width: 13px;
  height: 13px;
  background: rgba(14,20,36,0.95);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

/* Fallback, falls die Spline-Szene nicht lädt */
.hero-robot-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 7.5rem;
  color: var(--primary);
  filter: drop-shadow(0 0 34px var(--primary-glow));
}

.hero-robot-fallback.show {
  display: flex;
  animation: robot-float 4.5s ease-in-out infinite;
}

/* Leichter SVG-Roboter (ersetzt das schwere 3D auf Mobile / als Fallback) */
.hero-robot-fallback .hero-robot-svg {
  width: 82%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}
.hero-robot-svg .bot-eye { animation: bot-blink 4.2s ease-in-out infinite; transform-origin: center; }
.hero-robot-svg .bot-antenna { animation: bot-antenna 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes bot-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.1); }
}
@keyframes bot-antenna {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-robot-svg .bot-eye,
  .hero-robot-svg .bot-antenna { animation: none; }
}

@keyframes robot-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Klick-Hinweis */
.hero-robot-hint {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-subtle);
  background: rgba(14,20,36,0.82);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-robot-hint.show { opacity: 1; animation: hint-pulse 2.2s ease-in-out infinite; }

@keyframes hint-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-robot-fallback.show,
  .hero-robot-hint.show { animation: none; }
}

/* Pulsierendes Licht hinter dem Roboter */
.hero-robot-glow {
  position: absolute;
  inset: 8% 6% 10% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(203,163,90,0.42) 0%, rgba(203,163,90,0.18) 38%, transparent 68%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
  animation: robot-glow-pulse 5s ease-in-out infinite;
}

@keyframes robot-glow-pulse {
  0%, 100% { opacity: 0.75; transform: scale(0.97); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

.hero-robot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: transparent !important;
  border-radius: var(--radius-xl);
}

/* Fallback-Abdeckung für das Spline-Wasserzeichen (unten rechts) */
.hero-robot-watermark-cover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 44px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(8,8,16,0) 40%, var(--bg-base) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-robot-glow { animation: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: #e3caa0;
  font-weight: 500;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: white;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--text-subtle);
  max-width: 520px;
  line-height: 1.7;
}

/* Auf flachen Laptop-Viewports zusätzlich verdichten */
@media (min-width: 992px) and (max-height: 760px) {
  .hero-title { font-size: clamp(2rem, 3.4vw, 2.8rem); }
  .hero-subtitle { font-size: 1rem; line-height: 1.6; }
  .hero-robot-stage { max-width: 440px; }
  .hero-scroll-indicator { display: none; }
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--text-subtle);
  font-weight: 500;
}

/* ===== HERO CODE CARD ===== */
.hero-code-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(203,163,90,0.1);
}

.code-card-header {
  background: rgba(255,255,255,0.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

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

.hero-code {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-subtle);
  margin: 0;
  white-space: pre;
}

.hero-code .kw    { color: #7dd3fc; }
.hero-code .cls   { color: #67e8f9; }
.hero-code .fn    { color: #86efac; }
.hero-code .num   { color: #fbbf24; }
.hero-code .bool  { color: #f472b6; }
.hero-code .comment { color: #475569; font-style: italic; }

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: bounce-down 2s ease infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS ===== */
.stats-section { border-bottom: 1px solid var(--border); }

.stat-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-badge {
  display: inline-block;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.25);
  color: #e3caa0;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== OPTION CARDS ===== */
.option-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.option-card-info:hover {
  border-color: rgba(203,163,90,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(203,163,90,0.1);
}

.option-card-shop:hover {
  border-color: rgba(203,163,90,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(203,163,90,0.1);
}

.option-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.option-card-info .option-card-glow {
  background: radial-gradient(circle, rgba(203,163,90,0.15) 0%, transparent 70%);
}

.option-card-shop .option-card-glow {
  background: radial-gradient(circle, rgba(203,163,90,0.2) 0%, transparent 70%);
}

.option-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #0a0a0f;
}

.option-badge {
  display: inline-block;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.25);
  color: #dcc188;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.option-badge-purple {
  background: rgba(203,163,90,0.1);
  border-color: rgba(203,163,90,0.25);
  color: #e3caa0;
}

.option-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.option-desc {
  color: var(--text-subtle);
  font-size: 0.95rem;
  line-height: 1.7;
}

.option-features {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-subtle);
}

.option-features li i {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== PRICE BOX ===== */
.option-price-box {
  background: rgba(203,163,90,0.08);
  border: 1px solid rgba(203,163,90,0.2);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.option-price-box-purple {
  background: rgba(203,163,90,0.08);
  border-color: rgba(203,163,90,0.2);
}

.option-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.option-price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203,163,90,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(203,163,90,0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(203,163,90,0.12);
  border: 1px solid rgba(203,163,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(203,163,90,0.2);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-subtle);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SKILLS ===== */
.tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  color: var(--text-subtle);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.tech-card:hover {
  background: rgba(203,163,90,0.08);
  border-color: rgba(203,163,90,0.25);
  color: var(--text-base);
}

.skill-bar-item { margin-bottom: 0.5rem; }

.skill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-base);
}

.skill-percent {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.skill-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== PROJECTS PAGE ===== */
.projects-page-wrap {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.projects-compact-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.projects-compact-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.projects-compact-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.filter-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(203,163,90,0.3);
}

/* ===== PROJECT CARDS ===== */
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203,163,90,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(203,163,90,0.08);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background:
    radial-gradient(circle at 50% 0%, rgba(203,163,90,0.10) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* Logos/Previews vollständig zeigen, nicht beschneiden */
  padding: 1.75rem;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img img { transform: scale(1.04); }

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,16,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-img-overlay { opacity: 1; }

.project-overlay-links {
  display: flex;
  gap: 12px;
}

.project-overlay-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s;
}

.project-overlay-links a:hover { background: var(--primary); }

.project-img-placeholder {
  height: 200px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

/* Category colour gradients */
.project-img-placeholder { background: linear-gradient(135deg,#1e3a5f 0%,#0f172a 100%); color: rgba(14,165,233,0.5); }
.project-img-placeholder.cat-web       { background: linear-gradient(135deg,#1e3a5f 0%,#0c1a3a 100%); color: rgba(14,165,233,0.6); }
.project-img-placeholder.cat-bot       { background: linear-gradient(135deg,#172554 0%,#070d1a 100%); color: rgba(56,189,248,0.6); }
.project-img-placeholder.cat-api       { background: linear-gradient(135deg,#064e3b 0%,#021a14 100%); color: rgba(16,185,129,0.6); }
.project-img-placeholder.cat-shop      { background: linear-gradient(135deg,#7c2d12 0%,#2a0d04 100%); color: rgba(249,115,22,0.6); }
.project-img-placeholder.cat-dashboard { background: linear-gradient(135deg,#4c1d95 0%,#1a0835 100%); color: rgba(236,72,153,0.6); }
.project-img-placeholder.cat-other     { background: linear-gradient(135deg,#1e293b 0%,#0a0f1a 100%); color: rgba(100,116,139,0.6); }

/* Subtle grid overlay on placeholder */
.project-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.project-placeholder-links {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-placeholder-links { opacity: 1; }

.project-placeholder-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 1rem;
  text-decoration: none;
}

.project-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(203,163,90,0.1);
  border-radius: 6px;
  padding: 2px 8px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-base);
}

.project-desc {
  color: var(--text-subtle);
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
}

.project-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0.75rem;
}

.tech-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(203,163,90,0.12) 0%, rgba(203,163,90,0.08) 100%);
  border: 1px solid rgba(203,163,90,0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(203,163,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  color: var(--text-subtle);
  font-size: 1rem;
  margin: 0;
}

/* ===== FILTER BAR ===== */
.filter-bar { gap: 8px; }

.filter-btn {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.875rem;
  color: var(--text-subtle);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: rgba(203,163,90,0.08);
  border-color: rgba(203,163,90,0.25);
  color: var(--text-base);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
}

.page-header-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(203,163,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== PAGE HEADER – BANNER VARIANTE (gleiche Optik wie Hero) ===== */
.page-header--banner {
  padding: 8rem 0 4.5rem;
  background: var(--bg-base);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0.5;
}

.page-header-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 85% at 50% 28%, transparent 0%, rgba(8,8,16,0.45) 58%, var(--bg-base) 100%),
    linear-gradient(180deg, rgba(8,8,16,0.55) 0%, transparent 38%, var(--bg-base) 100%);
}

.page-header--banner .page-header-glow { z-index: 1; }
.page-header--banner .container { position: relative; z-index: 2; }

/* Filter-Leiste auf der Projekte-Seite (mittig unter dem Banner) */
.projects-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}

.page-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-avatar-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-avatar {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(203,163,90,0.15) 0%, rgba(203,163,90,0.1) 100%);
  border: 2px solid rgba(203,163,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(203,163,90,0.5);
  box-shadow: 0 0 80px rgba(203,163,90,0.15);
}

.about-status-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: rgba(8,8,16,0.9);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-name {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-role-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.25);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.9rem;
  color: #e3caa0;
  font-weight: 600;
}

.about-text {
  color: var(--text-subtle);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== FOCUS / WHY CARDS ===== */
.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s, border-color 0.3s;
}

.focus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203,163,90,0.25);
}

.focus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.focus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.focus-card p {
  color: var(--text-subtle);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203,163,90,0.25);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ===== HONEYPOT (spam protection) ===== */
.hp-wrap { position: absolute; left: -9999px; top: -9999px; visibility: hidden; overflow: hidden; width: 0; height: 0; }
.hp-field { position: absolute; left: -9999px; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #dcc188;
  flex-shrink: 0;
}

.contact-info-icon-discord { background: rgba(88,101,242,0.1); border-color: rgba(88,101,242,0.2); color: #7289da; }
.contact-info-icon-telegram { background: rgba(0,136,204,0.1); border-color: rgba(0,136,204,0.2); color: #0088cc; }
.contact-info-icon-github   { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text-subtle); }

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text-base);
  font-weight: 500;
  text-decoration: none;
}

.contact-info-value:hover { color: var(--primary); }

.contact-availability {
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  padding: 1rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-control {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  color: var(--text-base) !important;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(203,163,90,0.4) !important;
  box-shadow: 0 0 0 3px rgba(203,163,90,0.1) !important;
  color: var(--text-base) !important;
}

.form-control::placeholder { color: var(--text-muted); }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-base);
  margin-bottom: 6px;
}

.invalid-feedback {
  color: #f87171;
  font-size: 0.8rem;
}

/* ===== EMPTY STATE ===== */
.empty-state { padding: 4rem 0; }

.empty-icon {
  font-size: 4rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border); }

.footer-top { padding: 4rem 0; }

.footer-heading {
  color: var(--text-base);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-base); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: center; }
.footer-contact a { color: var(--text-subtle); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }

.footer-social {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
}
.footer-social:hover { color: var(--primary); transform: translateY(-2px); }

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

/* Bootstrap-Primary an die Gold-Marke angleichen */
.text-primary { color: var(--primary) !important; }

/* ---- Footer: Träger-/Partnerbetrieb wvm tech ---- */
.footer-owner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(203,163,90,0.06);
}
.footer-owner-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-owner-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-partner {
  color: var(--primary);
  font-weight: 600;
}

/* ===== ALERTS ===== */
.alert-success {
  background: rgba(74,222,128,0.1) !important;
  border-color: rgba(74,222,128,0.25) !important;
  color: #4ade80 !important;
}

.alert-error, .alert-danger {
  background: rgba(248,113,113,0.1) !important;
  border-color: rgba(248,113,113,0.25) !important;
  color: #f87171 !important;
}

.alert-info {
  background: rgba(96,165,250,0.1) !important;
  border-color: rgba(96,165,250,0.25) !important;
  color: #dcc188 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(8,8,16,0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.5rem;
  }
  .py-6 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  .hero-title { font-size: 2.5rem; }
  .option-card { padding: 1.75rem; }
  .cta-card { padding: 2rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 2rem; }
  .contact-form-card,
  .contact-info-card { padding: 1.5rem; }
  .announcement-bar { padding: 7px 40px 7px 12px; }
  .announcement-inner { justify-content: flex-start; }
  .ann-text { font-size: 0.78rem; }
}

/* ===== DESKTOP FLOATING ACTION BUTTON ===== */
.desktop-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white !important;
  text-decoration: none;
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(203,163,90,0.45), 0 2px 10px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.95);
}

.desktop-fab.fab-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.desktop-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(203,163,90,0.55), 0 2px 12px rgba(0,0,0,0.4);
}

/* ===== PROCESS / HOW IT WORKS SECTION ===== */
.process-section { background: var(--bg-surface); }

.process-step {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.process-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 1rem;
  font-family: 'Consolas', monospace;
  text-transform: uppercase;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(203,163,90,0.1);
  border: 1px solid rgba(203,163,90,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.process-step:hover .process-icon {
  background: rgba(203,163,90,0.18);
  border-color: rgba(203,163,90,0.45);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(203,163,90,0.18);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-base);
}

.process-step p {
  color: var(--text-subtle);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 240px;
  margin: 0 auto;
}

.process-connector {
  position: absolute;
  top: calc(1.65rem + 36px);
  left: calc(50% + 46px);
  right: calc(-50% + 46px);
  height: 1px;
  background: linear-gradient(90deg, rgba(203,163,90,0.5) 0%, rgba(203,163,90,0.2) 100%);
}

/* ===== HERO TRUST STRIP ===== */
.hero-trust {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.trust-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-item i { color: #4ade80; font-size: 0.9rem; }

.trust-sep {
  color: var(--border);
  font-size: 1rem;
}

/* ===== IMPROVED OPTION CARDS: Featured badge ===== */
.option-featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #0a0e1a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.option-card-featured {
  border-color: rgba(245,196,81,0.45) !important;
  box-shadow: 0 0 0 1px rgba(245,196,81,0.22), var(--shadow-card) !important;
}

/* ===== MOBILE BOTTOM NAV – improved ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1025;
  background: rgba(4, 4, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(203,163,90,0.15);
  padding: 0.4rem 0;
  padding-bottom: calc(0.4rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

body:has(.mobile-bottom-nav) main,
body:has(.mobile-bottom-nav) footer {
  margin-bottom: 72px;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0;
  transition: color 0.2s;
  position: relative;
}

.mobile-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 0 0 2px 2px;
  transition: width 0.2s ease;
}

.mobile-nav-item.active::before { width: 24px; }

.mobile-nav-item i { font-size: 1.35rem; }
.mobile-nav-item.active { color: var(--primary); }
.mobile-nav-item:hover { color: var(--text-base); }

/* ===== STAT CARD IMPROVEMENT ===== */
.stat-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
  border-color: rgba(203,163,90,0.2);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .desktop-fab { bottom: 1.5rem; right: 1.5rem; padding: 0.65rem 1.2rem; font-size: 0.85rem; }
  .process-connector { display: none; }
  .process-step { padding: 0; }
}

/* ============================================================
   SECTION-RHYTHMUS & MARKEN-BÄNDER (Taste)
   ============================================================ */

/* Getönte Fläche für Kapitel-Rhythmus + feine Hairline */
.section-tint {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- Dunkles Marken-Band (visueller Anker) ---- */
.brand-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(203,163,90,0.05) 0%, transparent 32%),
    var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brand-band-glow {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(203,163,90,0.13) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.brand-band-text {
  color: var(--text-subtle);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 1rem;
}
.brand-band-text strong { color: var(--text-base); font-weight: 600; }

/* ---- Trust-Feature-Grid ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-feature {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.4rem 1.6rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.3rem;
  bottom: 1.3rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--primary);
  opacity: 0.85;
}
.trust-feature-gold::before { background: var(--accent); }

.trust-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(203,163,90,0.30);
}
.trust-feature-gold:hover { border-color: rgba(245,196,81,0.40); }

.trust-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(203,163,90,0.12);
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.trust-feature-gold .trust-feature-icon {
  background: rgba(245,196,81,0.14);
  color: var(--accent);
}

.trust-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-base);
}
.trust-feature p {
  color: var(--text-subtle);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

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

/* ---- Projekt-Card: Akzentkante oben beim Hover (statt Glow-Stapel) ---- */
.project-card { position: relative; }
.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 4;
}
.project-card:hover::before { transform: scaleX(1); }

/* ============================================================
   PREISRECHNER
   ============================================================ */
.calc-panel {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

.calc-group-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.calc-step {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: #0a0a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.calc-group-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.calc-option {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-subtle);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.calc-option i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.calc-option-title { font-weight: 700; color: var(--text-base); font-size: 0.92rem; }
.calc-option-sub   { font-size: 0.76rem; color: var(--text-muted); }

.calc-option:hover { border-color: rgba(203,163,90,0.4); transform: translateY(-2px); }

.calc-option.is-active {
  border-color: var(--primary);
  background: rgba(203,163,90,0.08);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.calc-stepper { display: flex; align-items: center; gap: 12px; }

.calc-stepper-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-base);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.calc-stepper-btn:hover { border-color: var(--primary); color: var(--primary); }

.calc-stepper-val { min-width: 96px; text-align: center; font-weight: 600; color: var(--text-base); }
.calc-stepper-note { font-size: 0.8rem; color: var(--text-muted); }

.calc-checks { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }

.calc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-subtle);
  user-select: none;
}

.calc-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.calc-check input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.calc-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.calc-check input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.calc-check em { color: var(--accent); font-style: normal; font-weight: 600; }

.calc-summary {
  position: sticky;
  top: calc(var(--nav-h, 110px) + 16px);
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-card), 0 0 50px rgba(203,163,90,0.08);
}

.calc-summary-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-summary-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0.2rem 0 0.6rem;
}
.calc-summary-price span { color: var(--secondary); }

.calc-summary-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

.calc-breakdown {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--border);
}
.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-subtle);
}
.calc-breakdown li span:last-child { color: var(--text-base); font-weight: 600; white-space: nowrap; }

/* Fair-Deckel / Ersparnis-Zeile */
.calc-row-cap span { color: var(--accent) !important; font-weight: 700; }
.calc-row-cap { border-bottom: none !important; }

.calc-summary-alt {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
}
.calc-summary-alt:hover { color: var(--secondary); }

@media (min-width: 576px) {
  .calc-checks { grid-template-columns: 1fr 1fr; }
  .calc-check-wide { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .calc-options { grid-template-columns: repeat(4, 1fr); }
  .calc-options-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
  .calc-summary { position: static; }
}

/* ============================================================
   HERO – MOBILE: Roboter sichtbar + Banner-Framing (rechte Gold-Seite)
   ============================================================ */
@media (max-width: 991.98px) {
  /* Hero darf auf Mobile mitwachsen, statt auf volle Höhe zu zwingen */
  .hero-section { min-height: auto; padding-top: 1.25rem; padding-bottom: 2.75rem; }

  /* Banner so verschieben, dass die goldene Skulptur (rechts) im Bild bleibt,
     und dezenter abdunkeln, damit der 3D-Roboter davor wirkt */
  .hero-banner img { object-position: 84% center; opacity: 0.55; }

  /* Roboter unter dem Text, mittig, kompakter */
  .hero-robot-col { margin-top: 1.75rem; }
  .hero-robot-stage { max-width: 320px; aspect-ratio: 1 / 1; }
  .hero-robot-glow { filter: blur(28px); }
  .hero-robot-bubble { max-width: 210px; font-size: 0.82rem; padding: 10px 13px; }
  .hero-robot-hint { font-size: 0.72rem; }

  .hero-scroll-indicator { display: none; }
}

@media (max-width: 575.98px) {
  .hero-robot-stage { max-width: 250px; }
  .hero-banner img { object-position: 86% center; opacity: 0.42; }
}

/* ============================================================
   TEAM / KÖPFE (Florin = Chef, Bastian = Entwickler & Co-Founder)
   ============================================================ */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(203,163,90,0.08);
}

.team-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.team-photo {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 3px rgba(203,163,90,0.12);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a0a0f;
  background: var(--gradient-gold);
}

.team-role {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 0.5rem;
}
.team-role-chef {
  color: #0a0a0f;
  background: var(--gradient-gold);
  border-color: transparent;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.2rem;
  color: var(--text-base);
}
.team-company { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.4; }
.team-company strong { color: var(--text-subtle); }

.team-desc {
  color: var(--text-subtle);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  flex: 1;
}

.team-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.team-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.team-contact i { color: var(--primary); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }
.team-contact a { color: var(--text-subtle); text-decoration: none; transition: color 0.2s; word-break: break-word; }
.team-contact a:hover { color: var(--primary); }

/* WVM IT Partner-/Trägerbetrieb-Streifen */
.wvm-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.wvm-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}
.wvm-strip-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

@media (max-width: 400px) {
  .team-head { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================================
   FAQ / SEO-Sektion
   ============================================================ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: var(--border-glow); }
.faq-item:hover { border-color: rgba(203,163,90,0.25); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\F4FE'; /* bootstrap-icons plus */
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.35rem 1.2rem;
}
.faq-answer p {
  margin: 0;
  color: var(--text-subtle);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer a { color: var(--primary); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }
.faq-answer strong { color: var(--text-base); font-weight: 600; }

/* ---- Städte-Übersicht ---- */
.staedte-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  height: 100%;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.staedte-link:hover {
  border-color: var(--border-glow);
  color: var(--text-base);
  background: rgba(203,163,90,0.06);
  transform: translateY(-2px);
}
.staedte-link i { color: var(--primary); flex-shrink: 0; }
