/* ============================================
   COCKTAILBLASTER - PREMIUM B2B CSS v2
   Gekapselt unter .cb2026
   ============================================
   Ziel: Nur auf Homepage mit Wrapper-Klasse wirken
   Nicht global, nicht Theme-übergreifend
   ============================================ */

/* === WRAPPER: Alle Styles gekapselt === */
.cb2026 {
  /* --- CSS-VARIABLEN (nur lokal) --- */
  --cb-bg-primary: #0A0C10;
  --cb-bg-secondary: #232323;
  --cb-bg-card: #1A1A1A;
  --cb-accent: #FF214F;
  --cb-accent-hover: #E61A45;
  --cb-text-primary: #FFFFFF;
  --cb-text-secondary: #94A3B8;
  --cb-text-muted: #6B7280;
  --cb-border: #2D2D2D;
  --cb-border-light: #3D3D3D;
  --cb-gradient-hero: linear-gradient(135deg, rgba(255,33,79,0.1) 0%, rgba(10,12,16,0) 50%);
  --cb-gradient-glow: radial-gradient(circle, rgba(255,33,79,0.15) 0%, transparent 70%);
  --cb-font-primary: 'Inter', 'Poppins', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cb-radius-sm: 4px;
  --cb-radius-md: 8px;
  --cb-radius-lg: 12px;
  --cb-radius-full: 9999px;
  --cb-shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --cb-shadow-glow: 0 0 20px rgba(255, 33, 79, 0.3);

  /* --- Basis-Styles für den Wrapper --- */
  background: var(--cb-bg-primary);
  color: var(--cb-text-primary);
  font-family: var(--cb-font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === RESET nur innerhalb .cb2026 === */
.cb2026 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === NAVIGATION === */
.cb2026 .nav-main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0 none transparent !important;
  padding: 1rem 2rem;
}

.cb2026 .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb2026 .nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cb-text-primary);
}

.cb2026 .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.cb2026 .nav-links a {
  color: var(--cb-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cb2026 .nav-links a:hover {
  color: var(--cb-accent);
}

.cb2026 .nav-cta {
  background: var(--cb-accent);
  color: var(--cb-text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--cb-radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cb2026 .nav-cta:hover {
  background: var(--cb-accent-hover);
}

/* === HERO === */
.cb2026 .hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

.cb2026 .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--cb-gradient-glow);
  border-radius: 50%;
  pointer-events: none;
}

.cb2026 .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cb2026 .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--cb-text-primary);
}

.cb2026 .hero-content .highlight {
  color: var(--cb-accent);
}

.cb2026 .hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--cb-text-secondary);
  margin-bottom: 2rem;
}

.cb2026 .hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cb2026 .btn-primary {
  background: var(--cb-accent);
  color: var(--cb-text-primary);
  padding: 1rem 2rem;
  border-radius: var(--cb-radius-md);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cb2026 .btn-primary:hover {
  background: var(--cb-accent-hover);
  box-shadow: var(--cb-shadow-glow);
  transform: translateY(-2px);
}

.cb2026 .btn-secondary {
  background: transparent;
  color: var(--cb-text-primary);
  padding: 1rem 2rem;
  border-radius: var(--cb-radius-md);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--cb-border-light);
  transition: all 0.3s ease;
}

.cb2026 .btn-secondary:hover {
  border-color: var(--cb-accent);
  color: var(--cb-accent);
}

.cb2026 .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--cb-radius-full);
  font-size: 0.875rem;
  color: var(--cb-text-secondary);
}

.cb2026 .hero-visual {
  position: relative;
}

.cb2026 .hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* === FEATURES === */
.cb2026 .features {
  padding: 6rem 2rem;
  background: var(--cb-bg-secondary);
}

.cb2026 .features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.cb2026 .feature-card {
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cb2026 .feature-card:hover {
  border-color: var(--cb-accent);
  transform: translateY(-5px);
  box-shadow: var(--cb-shadow-glow);
}

.cb2026 .feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(255, 33, 79, 0.1);
  border-radius: var(--cb-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cb-accent);
}

.cb2026 .feature-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--cb-text-primary);
}

.cb2026 .feature-card p {
  font-size: 0.875rem;
  color: var(--cb-text-secondary);
}

/* === PRODUKTE === */
.cb2026 .products {
  padding: 6rem 2rem;
}

.cb2026 .products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cb2026 .product-card {
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cb2026 .product-card:hover {
  border-color: var(--cb-accent);
  transform: translateY(-5px);
}

.cb2026 .product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cb2026 .product-info {
  padding: 2rem;
}

.cb2026 .product-info h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--cb-text-primary);
}

.cb2026 .product-info p {
  font-size: 0.875rem;
  color: var(--cb-text-secondary);
  margin-bottom: 1rem;
}

/* === KUNDEN-LOGOS === */
.cb2026 .clients {
  padding: 4rem 2rem;
  background: var(--cb-bg-secondary);
  text-align: center;
}

.cb2026 .clients h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--cb-text-primary);
}

.cb2026 .logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.6;
}

.cb2026 .logo-strip img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.cb2026 .logo-strip img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* === ROI-RECHNER === */
.cb2026 .roi-calculator {
  padding: 6rem 2rem;
  background: var(--cb-bg-primary);
}

.cb2026 .calculator-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cb-bg-card);
  border: 1px solid var(--cb-border);
  border-radius: var(--cb-radius-lg);
  padding: 4rem;
}

.cb2026 .calculator-result {
  background: rgba(255, 33, 79, 0.1);
  border: 1px solid var(--cb-accent);
  border-radius: var(--cb-radius-md);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cb2026 .calculator-result .value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--cb-accent);
}

/* === FOOTER === */
.cb2026 .footer {
  background: var(--cb-bg-secondary);
  border-top: 1px solid var(--cb-border);
  padding: 6rem 2rem 4rem;
}

.cb2026 .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.cb2026 .footer-brand h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--cb-text-primary);
}

.cb2026 .footer-brand p {
  color: var(--cb-text-secondary);
  margin-bottom: 2rem;
}

.cb2026 .footer-links h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--cb-text-primary);
}

.cb2026 .footer-links ul {
  list-style: none;
}

.cb2026 .footer-links a {
  color: var(--cb-text-secondary);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}

.cb2026 .footer-links a:hover {
  color: var(--cb-accent);
}

.cb2026 .footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--cb-border);
  display: flex;
  justify-content: space-between;
  color: var(--cb-text-muted);
  font-size: 0.875rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .cb2026 .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cb2026 .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cb2026 .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cb2026 .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cb2026 .nav-links {
    display: none;
  }
  .cb2026 .features-grid {
    grid-template-columns: 1fr;
  }
  .cb2026 .products-grid {
    grid-template-columns: 1fr;
  }
  .cb2026 .hero-ctas {
    flex-direction: column;
  }
  .cb2026 .footer-container {
    grid-template-columns: 1fr;
  }
}

/* === UTILITIES === */
.cb2026 .text-accent { color: var(--cb-accent); }
.cb2026 .text-muted { color: var(--cb-text-muted); }
.cb2026 .bg-dark { background: var(--cb-bg-primary); }
.cb2026 .bg-card { background: var(--cb-bg-card); }
.cb2026 .glass {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--cb-border);
}

/* ===== LEGAL PAGE PREMIUM STYLES ===== */

/* Legal Shell */
.legal-shell {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #0A0A0F 0%, #111111 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Legal Hero */
.legal-hero {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0F 0%, #1A1A1F 50%, #0A0A0F 100%);
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px !important;
    opacity: 0.35;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 33, 79, 0.18) 18%,
        rgba(255, 33, 79, 0.45) 50%,
        rgba(255, 33, 79, 0.18) 82%,
        transparent 100%
    ) !important;
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.legal-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Jump Navigation */
.legal-jumpnav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #FF214F, #FF4757);
    color: #FFFFFF !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 33, 79, 0.3);
}

.jump-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 33, 79, 0.4);
}

.jump-icon {
    font-size: 1.2rem;
}

/* Legal Cards */
.legal-card {
    background: linear-gradient(145deg, #1A1A1F 0%, #232328 100%);
    border: 1px solid rgba(255, 33, 79, 0.15);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.legal-card:hover {
    border-color: rgba(255, 33, 79, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.legal-card-header {
    padding: 2rem 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF214F, #FF4757);
    border-radius: 12px;
}

.legal-card-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.legal-card-body {
    padding: 2rem 2.5rem;
}

/* Legal Text */
.legal-text {
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF214F;
    display: inline-block;
}

.legal-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F3F4F6;
    margin: 1.5rem 0 0.75rem;
}

.legal-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #E5E7EB;
    margin: 1.25rem 0 0.5rem;
}

.legal-text p {
    margin-bottom: 1rem;
    text-align: left;
}

.legal-text a {
    color: #FF214F;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-text a:hover {
    border-bottom-color: #FF214F;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Legal Divider */
.legal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 33, 79, 0.3), transparent);
}

.divider-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Section Cards */
.legal-section-card {
    position: relative;
}

.legal-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF214F, #FF6B6B, #FF214F);
    opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 4rem 1rem 3rem;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-jumpnav {
        flex-direction: column;
        align-items: center;
    }
    
    .jump-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .legal-card-header,
    .legal-card-body {
        padding: 1.5rem;
    }
    
    .legal-card-header h2 {
        font-size: 1.5rem;
    }
    
    .legal-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .legal-text {
        font-size: 0.9rem;
    }
    
    .legal-divider {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .divider-line {
        width: 60px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
.jump-btn:focus,
.legal-text a:focus {
    outline: 2px solid #FF214F;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .nav-main,
    .legal-hero,
    .legal-jumpnav,
    footer {
        display: none;
    }
    
    .legal-card {
        border: 1px solid #333;
        box-shadow: none;
    }
    
    .legal-text {
        color: #000;
    }
}

/* ===== FOOTER FIXES ===== */
.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF214F;
}

/* ===== BLOCKSATZ ENTFERNT ===== */
.legal-text,
.legal-card,
.legal-section-card {
    text-align: left !important;
}

.legal-text p {
    text-align: left !important;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #0A0A0F 0%, #1A1A1F 50%, #0A0A0F 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF214F, #FF6B6B, #FF214F);
}

.countdown-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-header {
    margin-bottom: 2.5rem;
}

.countdown-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FF214F, #FF4757);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.countdown-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.countdown-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9CA3AF;
    font-weight: 300;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(145deg, #1A1A1F 0%, #232328 100%);
    border: 1px solid rgba(255, 33, 79, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(255, 33, 79, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    color: #FF214F;
    font-weight: 700;
    line-height: 1;
}

.countdown-cta {
    margin-top: 2rem;
}

.countdown-ended {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FF214F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .countdown-section {
        padding: 3rem 1rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* ===== FOOTER FIX - EXPLIZIT DUNKEL ===== */

/* ===== FOOTER FIX - EXPLIZIT DUNKEL ===== */
.cb2026 footer {
    background: #0A0A0F !important;
    background-color: #0A0A0F !important;
    border-top: 1px solid rgba(255, 33, 79, 0.2) !important;
    padding: 3rem 2rem !important;
    margin: 0 !important;
    min-height: 144px !important;  /* ← GLEICHE HÖHE WIE STARTSEITE */
}

.cb2026 .footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
}

.cb2026 footer p {
    color: #6B7280 !important;
    font-size: 0.875rem !important;
    margin: 0.5rem 0 !important;
    display: block !important;
    text-align: center !important;
}


/* === CB2026 MOBILE HAMBURGER NAV === */
.cb2026 .nav-main.cb-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(10, 12, 16, 0.96);
    border-bottom: 0 none transparent !important;
    box-shadow: none !important;
    backdrop-filter: blur(14px);
}

/* Kein ::after Pseudo-Element mehr */
.cb2026 .nav-main.cb-nav .nav-container {
    width: 100%;
    max-width: 1200px;
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.cb2026 .nav-main.cb-nav .nav-logo {
    flex: 0 0 auto;
    color: var(--cb-text-primary);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
}
.cb2026 .nav-main.cb-nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.cb2026 .nav-main.cb-nav .nav-links a {
    color: var(--cb-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}
.cb2026 .nav-main.cb-nav .nav-links a:hover {
    color: var(--cb-accent);
}
.cb2026 .nav-main.cb-nav .nav-cta-desktop {
    flex: 0 0 auto;
    white-space: nowrap;
}
.cb2026 .nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cb-text-primary);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.cb2026 .nav-toggle:hover {
    border-color: var(--cb-accent);
    background: rgba(255, 33, 79, 0.12);
}
.cb2026 .nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--cb-text-primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.cb2026 .nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.cb2026 .nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.cb2026 .nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.cb2026 .nav-mobile-panel {
    width: min(92vw, 420px);
    margin: 0.5rem auto 1rem;
    padding: 0.85rem;
    background:
        linear-gradient(145deg, rgba(18, 18, 24, 0.98), rgba(8, 10, 14, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
    border-radius: 20px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 33, 79, 0.05),
        0 0 28px rgba(255, 33, 79, 0.10);
    overflow: hidden;
}

.cb2026 .nav-mobile-panel::before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: 0.65rem;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 33, 79, 0.45),
        transparent
    );
}

.cb2026 .nav-mobile-panel[hidden] {
    display: none !important;
}

.cb2026 .nav-mobile-panel a {
    display: block;
    padding: 0.95rem 1rem;
    color: var(--cb-text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.cb2026 .nav-mobile-panel a:hover {
    background: rgba(255, 33, 79, 0.10);
    color: var(--cb-accent);
    transform: translateX(2px);
}

.cb2026 .nav-mobile-panel .nav-mobile-cta {
    margin-top: 0.8rem;
    text-align: center;
    background: linear-gradient(135deg, var(--cb-accent), var(--cb-accent-hover));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 33, 79, 0.22);
}

.cb2026 .nav-mobile-panel .nav-mobile-cta:hover {
    background: linear-gradient(135deg, var(--cb-accent-hover), var(--cb-accent));
    color: #ffffff;
    transform: translateY(-1px);
}
@media (max-width: 900px) {
    .cb2026 .nav-main.cb-nav {
        padding: 0.85rem 1rem;
    }
    .cb2026 .nav-main.cb-nav .nav-container {
        min-height: 60px;
        gap: 0.75rem;
    }
    .cb2026 .nav-main.cb-nav .nav-logo {
        font-size: clamp(1.1rem, 5.2vw, 1.6rem);
        max-width: calc(100vw - 92px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cb2026 .nav-main.cb-nav .nav-links,
    .cb2026 .nav-main.cb-nav .nav-cta-desktop {
        display: none !important;
    }
    .cb2026 .nav-toggle {
        display: inline-flex;
    }
}
@media (max-width: 390px) {
    .cb2026 .nav-main.cb-nav .nav-logo {
        font-size: 1.05rem;
        max-width: calc(100vw - 86px);
    }
    .cb2026 .nav-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }
}

/* WordPress Inline-Stylesheet Override */
html :where([style*="border-bottom-width"]) {
    border-bottom-style: none !important;
}
