/*
Theme Name: VortexKey
Theme URI: https://vortexkey.de
Author: VortexKey Team
Author URI: https://vortexkey.de
Description: Premium Dual-Paar-Coaching Theme mit Human Design & Nervensystem-Ansatz. Inklusive Audio-Review-System, 6 gleichrangige Themenfelder, und vollstaendiger SEO-Optimierung.
Version: 2.4.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vortexkey
Tags: coaching, beratung, premium, responsive, seo-optimiert
*/

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  --gold: #b8942e;
  --gold-light: #d4a849;
  --gold-dark: #8a6f20;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  --charcoal: #1a1a2e;
  --text: #2d2a26;
  --text-light: #6b6560;
  --text-muted: #9b9590;
  --border: #d9d3c9;
  --white: #ffffff;
  --whatsapp: #25d366;
  --transition: all 0.3s ease;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════
   WORDPRESS DEFAULT FIXES
   ═══════════════════════════════════════════ */
.wp-block-post-content { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════ */
.vk-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.vk-container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.vk-section { padding: 80px 0; }
.vk-flex { display: flex; }
.vk-flex-col { flex-direction: column; }
.vk-items-center { align-items: center; }
.vk-justify-center { justify-content: center; }
.vk-text-center { text-align: center; }
.vk-grid { display: grid; }
.vk-gap-4 { gap: 16px; }
.vk-gap-6 { gap: 24px; }
.vk-gap-8 { gap: 32px; }

/* ═══════════════════════════════════════════
   NOTIFICATION BAR
   ═══════════════════════════════════════════ */
.vk-notification-bar {
  background: var(--charcoal);
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.vk-notification-bar span { opacity: 0.7; }

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════ */
.vk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.vk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.vk-logo { display: flex; align-items: center; gap: 10px; }
.vk-logo img { width: 36px; height: 36px; object-fit: contain; }
.vk-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
}
.vk-nav { display: flex; align-items: center; gap: 32px; }
.vk-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.vk-nav a:hover { color: var(--gold); }
.vk-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.vk-nav a:hover::after { width: 100%; }

.vk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.vk-cta-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.vk-cta-btn::after { display: none !important; }

/* Mobile Menu Toggle */
.vk-menu-toggle { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.vk-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.vk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}
.vk-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.vk-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 600px 500px at 50% 45%, rgba(184,148,46,0.06) 0%, transparent 70%);
}
.vk-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.vk-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  background: rgba(184,148,46,0.08);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.vk-trust-badge {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.vk-hero h1 {
  margin-bottom: 20px;
  color: var(--charcoal);
}
.vk-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.vk-hero-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.vk-hero-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  border: 4px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
}
.vk-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.vk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
}
.vk-btn-primary {
  background: var(--charcoal);
  color: #fff;
}
.vk-btn-primary:hover { background: #2a2a3e; transform: translateY(-2px); }
.vk-btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.vk-btn-whatsapp:hover { background: #1faa52; transform: translateY(-2px); }
.vk-btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.vk-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════
   FUNNELS
   ═══════════════════════════════════════════ */
.vk-funnels { background: var(--white); }
.vk-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vk-funnel-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.vk-funnel-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.vk-funnel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184,148,46,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.vk-funnel-icon svg { width: 20px; height: 20px; color: var(--gold); }
.vk-funnel-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.vk-funnel-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
}
.vk-funnel-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vk-funnel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.3s;
}
.vk-funnel-card:hover .vk-funnel-cta { gap: 10px; }
.vk-funnel-badge {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  background: rgba(184,148,46,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.vk-funnel-card--lead { border-color: var(--gold); }
@media (max-width: 900px) {
  .vk-funnel-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   3 PILLARS
   ═══════════════════════════════════════════ */
.vk-pillars { background: var(--cream); }
.vk-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vk-pillar {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.vk-pillar:hover { box-shadow: var(--shadow); }
.vk-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,148,46,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.vk-pillar-icon svg { width: 28px; height: 28px; color: var(--gold); }
.vk-pillar h3 { margin-bottom: 12px; color: var(--charcoal); }
.vk-pillar p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   EMPATHY
   ═══════════════════════════════════════════ */
.vk-empathy { background: var(--white); }
.vk-empathy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.5;
  margin-bottom: 24px;
}
.vk-empathy p { color: var(--text-light); font-size: 14px; }

/* ═══════════════════════════════════════════
   DUO PROFILES
   ═══════════════════════════════════════════ */
.vk-duo { background: var(--cream); }
.vk-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.vk-profile { text-align: center; }
.vk-profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.vk-profile h3 { font-size: 1.5rem; margin-bottom: 4px; }
.vk-profile-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.vk-profile p { font-size: 13px; color: var(--text-light); line-height: 1.7; max-width: 360px; margin: 0 auto 16px; }
.vk-profile quote {
  display: block;
  font-style: italic;
  font-size: 13px;
  color: var(--gold-dark);
  max-width: 360px;
  margin: 0 auto 16px;
}
.vk-profile-cta {
  font-size: 12px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vk-profile-cta:hover { color: var(--gold-dark); }

.vk-duo-statement {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}
.vk-duo-statement svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin: 0 auto 12px;
}
.vk-duo-statement p { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; }
.vk-duo-statement span { font-size: 12px; color: var(--text-muted); margin-top: 8px; display: block; }

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.vk-process { background: var(--white); }
.vk-process-steps { max-width: 700px; margin: 0 auto; }
.vk-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.vk-step:last-child { border-bottom: none; }
.vk-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  min-width: 48px;
}
.vk-step h3 { margin-bottom: 8px; color: var(--charcoal); }
.vk-step p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.vk-testimonials { background: var(--cream); }
.vk-testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vk-testimonial {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.vk-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.vk-testimonial blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.vk-testimonial-author { display: flex; align-items: center; gap: 12px; }
.vk-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.vk-testimonial-name { font-size: 13px; font-weight: 500; }
.vk-testimonial-meta { font-size: 11px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   OFFERS
   ═══════════════════════════════════════════ */
.vk-offers { background: var(--white); }
.vk-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vk-offer {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.vk-offer:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.vk-offer-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.vk-offer h3 { margin-bottom: 12px; color: var(--charcoal); }
.vk-offer p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.vk-faq { background: var(--cream); }
.vk-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 8px;
  overflow: hidden;
}
.vk-faq-item[open] { border-color: var(--gold); }
.vk-faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  list-style: none;
}
.vk-faq-item summary::-webkit-details-marker { display: none; }
.vk-faq-item summary::after {
  content: '+';
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s;
}
.vk-faq-item[open] summary::after { content: '−'; }
.vk-faq-item > div {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.vk-final-cta {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 100px 24px;
}
.vk-final-cta h2 { margin-bottom: 16px; }
.vk-final-cta h2 em { color: var(--gold-light); font-style: italic; }
.vk-final-cta > p { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 40px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.vk-footer {
  background: #111118;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 24px;
}
.vk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.vk-footer-brand img { width: 32px; height: 32px; margin-bottom: 12px; }
.vk-footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.vk-footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  font-weight: 500;
}
.vk-footer a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  transition: var(--transition);
}
.vk-footer a:hover { color: var(--gold); }
.vk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   AUDIO REVIEWS
   ═══════════════════════════════════════════ */
.vk-audio-reviews { background: var(--white); }
.vk-audio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  background: var(--cream);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vk-audio-card:hover { border-color: var(--gold); }
.vk-audio-card.is-open {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.vk-audio-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.vk-audio-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.vk-audio-meta h4 { font-size: 16px; margin-bottom: 2px; }
.vk-audio-meta span { font-size: 12px; color: var(--text-muted); }
.vk-audio-stars { color: var(--gold); font-size: 12px; }
.vk-audio-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  max-height: 72px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}
.vk-audio-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--cream));
  transition: opacity 0.3s;
}
.vk-audio-card.is-open .vk-audio-text {
  max-height: 1000px;
}
.vk-audio-card.is-open .vk-audio-text::after {
  opacity: 0;
}
.vk-audio-player {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  align-items: center;
  gap: 16px;
}
.vk-audio-card.is-open .vk-audio-player {
  display: flex;
}
.vk-audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.vk-audio-play-btn:hover { background: var(--gold-dark); transform: scale(1.05); }
.vk-audio-waveform {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.vk-audio-bar {
  width: 3px;
  background: var(--border);
  border-radius: 2px;
  transition: height 0.3s, background 0.3s;
}
.vk-audio-bar.is-playing {
  background: var(--gold);
  animation: audioWave 0.8s ease-in-out infinite alternate;
}
@keyframes audioWave {
  0% { height: 20%; }
  100% { height: 100%; }
}
.vk-audio-time {
  font-size: 12px;
  color: var(--text-muted);
  min-width: 40px;
  text-align: right;
}
.vk-audio-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   TL;DR BOX
   ═══════════════════════════════════════════ */
.vk-tldr {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(184,148,46,0.06);
  border-left: 3px solid var(--gold);
}
.vk-tldr-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 6px;
}
.vk-tldr p { font-size: 12px; color: var(--text); line-height: 1.7; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.vk-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.vk-whatsapp-float:hover { transform: scale(1.1); }
.vk-whatsapp-float svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.vk-section-header { text-align: center; margin-bottom: 56px; }
.vk-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.vk-section-header h2 { color: var(--charcoal); }
.vk-section-header p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vk-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .vk-testimonial-carousel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vk-menu-toggle { display: flex; }
  .vk-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); gap: 16px; }
  .vk-nav.is-open { display: flex; }
  .vk-funnel-grid { grid-template-columns: 1fr; }
  .vk-pillar-grid { grid-template-columns: 1fr; }
  .vk-duo-grid { grid-template-columns: 1fr; }
  .vk-testimonial-carousel { grid-template-columns: 1fr; }
  .vk-offer-grid { grid-template-columns: 1fr; }
  .vk-footer-grid { grid-template-columns: 1fr 1fr; }
  .vk-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .vk-footer-grid { grid-template-columns: 1fr; }
  .vk-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   ROUND AVATAR BUTTONS (Kristina + Oliver)
   ═══════════════════════════════════════════ */
.vk-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
}
.vk-avatar-btn:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.vk-avatar-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.vk-avatar-btn span {
  font-weight: 500;
}
.vk-avatar-btn.vk-avatar-oliver:hover {
  border-color: var(--gold-dark);
}
.vk-avatar-btn.vk-avatar-kristina:hover {
  border-color: var(--gold);
}

/* Larger avatar for profile sections */
.vk-avatar-lg {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream-dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.vk-avatar-lg:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .vk-avatar-lg {
    width: 176px;
    height: 176px;
  }
}

/* ═══════════════════════════════════════════
   DROPDOWN-NAVIGATION  (VortexKey 2.1)
   ═══════════════════════════════════════════ */
.vk-has-dropdown { position: relative; display: inline-flex; align-items: center; }
.vk-drop-toggle {
  background: none; border: 0; padding: 0; margin: 0;
  font-family: var(--font-body); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light); cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.vk-drop-toggle:hover { color: var(--gold); }
.vk-caret { font-size: 9px; line-height: 1; transition: transform 0.25s ease; }
.vk-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 300;
}
.vk-dropdown-wide { min-width: 300px; }
.vk-has-dropdown:hover .vk-dropdown,
.vk-has-dropdown:focus-within .vk-dropdown,
.vk-has-dropdown.is-open .vk-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.vk-has-dropdown:hover .vk-caret,
.vk-has-dropdown.is-open .vk-caret { transform: rotate(180deg); }
.vk-dropdown a {
  padding: 10px 14px; border-radius: 8px; font-size: 13px; letter-spacing: 0.02em;
  text-transform: none; color: var(--text-light); white-space: nowrap;
}
.vk-dropdown a::after { display: none !important; }
.vk-dropdown a:hover { background: var(--cream); color: var(--gold-dark); }

/* Verschachteltes Themen-Untermenü (Beziehung & Trennung) */
.vk-has-subdrop { position: relative; }
.vk-subdrop-head { display: flex; align-items: center; }
.vk-subdrop-link {
  flex: 1; padding: 10px 14px; border-radius: 8px; font-size: 13px;
  letter-spacing: 0.02em; color: var(--text-light); white-space: nowrap;
}
.vk-subdrop-link::after { display: none !important; }
.vk-subdrop-link:hover { background: var(--cream); color: var(--gold-dark); }
.vk-subdrop-toggle {
  background: none; border: 0; cursor: pointer; color: var(--gold);
  padding: 8px 10px; display: inline-flex; align-items: center; flex-shrink: 0;
}
.vk-subcaret { font-size: 10px; line-height: 1; display: inline-block; transition: transform 0.2s ease; }
.vk-subdropdown {
  position: absolute; left: 100%; top: -11px; margin-left: 4px;
  min-width: 240px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 320;
}
.vk-has-subdrop:hover .vk-subdropdown,
.vk-has-subdrop:focus-within .vk-subdropdown,
.vk-has-subdrop.is-open .vk-subdropdown {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.vk-has-subdrop:hover .vk-subcaret,
.vk-has-subdrop.is-open .vk-subcaret { transform: rotate(90deg); }
.vk-subdropdown a {
  padding: 9px 14px; border-radius: 8px; font-size: 13px; letter-spacing: 0.02em;
  color: var(--text-light); white-space: nowrap;
}
.vk-subdropdown a::after { display: none !important; }
.vk-subdropdown a:hover { background: var(--cream); color: var(--gold-dark); }

/* Mobile: Dropdowns als Akkordeon */
@media (max-width: 768px) {
  .vk-has-dropdown { display: block; width: 100%; }
  .vk-drop-toggle { width: 100%; justify-content: space-between; padding: 6px 0; font-size: 13px; }
  .vk-dropdown, .vk-dropdown-wide {
    position: static; transform: none; min-width: 0; width: 100%;
    opacity: 1; visibility: visible; display: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--border);
    border-radius: 0; margin: 2px 0 8px 6px; padding: 0 0 0 12px; background: transparent;
  }
  .vk-has-dropdown.is-open .vk-dropdown { display: flex; transform: none; }
  .vk-dropdown a { padding: 8px 4px; white-space: normal; }
  /* Verschachteltes Untermenü mobil: eingerückt aufklappen */
  .vk-subdrop-head { display: flex; align-items: center; justify-content: space-between; }
  .vk-subdrop-link { flex: 1; white-space: normal; padding: 8px 4px; }
  .vk-subdrop-toggle { display: inline-flex; }
  .vk-subdropdown {
    position: static; left: auto; top: auto; margin: 2px 0 6px 12px;
    min-width: 0; width: 100%; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: 0; border-left: 2px solid var(--border);
    border-radius: 0; padding: 0 0 0 10px; background: transparent;
  }
  .vk-has-subdrop.is-open .vk-subdropdown { display: flex; }
  .vk-subdropdown a { padding: 8px 4px; white-space: normal; }
}

/* ═══════════════════════════════════════════
   Alt-Snippet-Bereinigung
   Die per DB-Custom-Code injizierte #vk-awareness-bar dupliziert
   die Theme-eigene .vk-notification-bar -> ausblenden (nur eine Leiste).
   ═══════════════════════════════════════════ */
#vk-awareness-bar { display: none !important; }
html body.vk-bar-open { padding-top: 0 !important; }

/* ═══════════════════════════════════════════
   BILDER-KARUSSELL (Startseite) — auto-scroll
   ═══════════════════════════════════════════ */
.vk-gallery { overflow: hidden; }
.vk-gallery-viewport {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.vk-gallery-track {
  display: flex; width: max-content;
  animation: vk-gallery-scroll 60s linear infinite;
}
.vk-gallery-viewport:hover .vk-gallery-track { animation-play-state: paused; }
.vk-gallery-item {
  flex: 0 0 auto; width: 400px; height: 270px; margin: 0 20px 0 0;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--cream-dark);
}
.vk-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.vk-gallery-item:hover img { transform: scale(1.05); }
@keyframes vk-gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .vk-gallery-item { width: 280px; height: 195px; margin-right: 14px; }
  .vk-gallery-track { animation-duration: 45s; }
}
@media (prefers-reduced-motion: reduce) {
  .vk-gallery-track { animation: none; }
  .vk-gallery-viewport { overflow-x: auto; }
}

/* ═══════════════════════════════════════════
   DSGVO-CONSENT-BANNER
   ═══════════════════════════════════════════ */
.vk-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999; }
.vk-consent[hidden] { display: none; }
.vk-consent-inner {
  max-width: 1100px; margin: 0 auto; background: var(--charcoal); color: #fff;
  border: 1px solid rgba(212,168,73,0.35); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.vk-consent-text { flex: 1 1 300px; margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.vk-consent-text a { color: var(--gold-light); text-decoration: underline; }
.vk-consent-buttons { flex: 0 0 auto; display: flex; gap: 12px; }
.vk-consent-btn {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: var(--transition); white-space: nowrap;
}
.vk-consent-decline { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.vk-consent-decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.vk-consent-accept { background: var(--gold); color: #fff; }
.vk-consent-accept:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (max-width: 600px) {
  .vk-consent { left: 10px; right: 10px; bottom: 10px; }
  .vk-consent-inner { padding: 16px; gap: 14px; }
  .vk-consent-buttons { width: 100%; }
  .vk-consent-btn { flex: 1; }
}
