
/* === bundled: style.css === */
/* ============================================
   sales-coach.ai - Futuristic Design System
   Theme: Vectorbeams / Science-Fiction
   ============================================ */

:root {
  /* Typography - Local Fonts */
  --font-display: 'Rajdhani', 'Orbitron', sans-serif;
  --font-body: 'Montserrat', 'Open Sans', system-ui, -apple-system, sans-serif;
  
  /* Primary Colors */
  --viavendo-orange: #ff6f05;
  --viavendo-dark: #29383d;
  
  /* Secondary Colors */
  --orange-light: #ff8c37;
  --orange-deep: #e66405;
  --cyan-primary: #33b9cf;
  --cyan-bright: #00a8c3;
  --cyan-deep: #0097b0;
  --teal-primary: #349eb5;
  --teal-dark: #0186a2;
  --teal-deep: #017992;
  
  /* Neutrals */
  --grey-blue: #4a707c;
  --dark-teal: #1d4c5b;
  --dark-teal-deep: #1a4552;
  --grey-neutral: #546064;
  --grey-dark: #253337;
  
  /* UI Colors */
  --bg-primary: #0a1015;
  --bg-secondary: #121a1f;
  --bg-card: rgba(41, 56, 61, 0.4);
  --border-color: rgba(51, 185, 207, 0.2);
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  
  /* Effects */
  --glow-orange: 0 0 30px rgba(255, 111, 5, 0.4);
  --glow-cyan: 0 0 30px rgba(51, 185, 207, 0.4);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3, h4 { font-weight: 500; }

h1 { font-size: clamp(1.25rem, 3vw, 2.25rem); }
h2 { font-size: clamp(1.1rem, 2.6vw, 1.9rem); }
h3 { font-size: clamp(0.95rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--cyan-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--cyan-bright);
}

/* Utility Classes */
.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--viavendo-orange);
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--viavendo-orange), var(--cyan-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent {
  color: var(--viavendo-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--viavendo-orange), var(--orange-deep));
  color: white;
  border-color: var(--viavendo-orange);
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 111, 5, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: rgba(51, 185, 207, 0.1);
  border-color: var(--cyan-primary);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-icon {
  font-size: 0.8em;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 16, 21, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  display: block;
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(255, 111, 5, 0.18));
}

.brand-logo--color {
  height: 32px;
  filter: drop-shadow(0 0 22px rgba(51, 185, 207, 0.18));
}

.logo-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--viavendo-orange), var(--cyan-primary));
  box-shadow: var(--glow-orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.logo-text {
  font-family: 'Neuropol X', 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.nav-links a:not(.btn):hover {
  color: white;
}

.nav-links a.nav-login {
  color: var(--text-muted, rgba(255,255,255,0.4));
  font-size: 0.82rem;
  font-weight: 400;
  border-left: 1px solid var(--border-color, rgba(255,255,255,0.08));
  padding-left: 1.25rem;
  margin-left: 0.25rem;
}

.nav-links a.nav-login:hover {
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero Background Image */
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 16, 21, 0.95) 0%,
    rgba(10, 16, 21, 0.85) 40%,
    rgba(10, 16, 21, 0.4) 70%,
    rgba(10, 16, 21, 0.1) 100%
  );
  z-index: 1;
}

.vectorbeam {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  z-index: 2;
}

.vectorbeam-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, var(--viavendo-orange), transparent 70%);
}

.vectorbeam-2 {
  width: 800px;
  height: 800px;
  bottom: -300px;
  right: -200px;
  background: radial-gradient(circle, var(--cyan-primary), transparent 70%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(51, 185, 207, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 185, 207, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Holo-Coach Visualization */
.holo-coach {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-ring {
  position: absolute;
  border: 2px solid var(--cyan-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.holo-ring-1 {
  width: 300px;
  height: 300px;
  animation-direction: normal;
}

.holo-ring-2 {
  width: 350px;
  height: 350px;
  animation-direction: reverse;
  animation-duration: 25s;
  border-color: var(--viavendo-orange);
}

.holo-ring-3 {
  width: 400px;
  height: 400px;
  animation-duration: 30s;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.holo-core {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(51, 185, 207, 0.2), transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-cyan);
}

.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 60px;
}

.waveform span {
  width: 4px;
  background: linear-gradient(to top, var(--cyan-primary), var(--viavendo-orange));
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(1) { animation-delay: 0s; height: 20px; }
.waveform span:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.waveform span:nth-child(3) { animation-delay: 0.2s; height: 50px; }
.waveform span:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.waveform span:nth-child(5) { animation-delay: 0.4s; height: 55px; }
.waveform span:nth-child(6) { animation-delay: 0.5s; height: 45px; }
.waveform span:nth-child(7) { animation-delay: 0.6s; height: 35px; }
.waveform span:nth-child(8) { animation-delay: 0.7s; height: 50px; }
.waveform span:nth-child(9) { animation-delay: 0.8s; height: 30px; }
.waveform span:nth-child(10) { animation-delay: 0.9s; height: 20px; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* Sections */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features {
  background: var(--bg-secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-primary);
  box-shadow: var(--shadow-card);
}

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.1), rgba(51, 185, 207, 0.1));
  border-color: var(--viavendo-orange);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.2), rgba(51, 185, 207, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cyan-primary);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: white;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(51, 185, 207, 0.15);
  border: 1px solid rgba(51, 185, 207, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Skill Tree */
.skill-tree {
  background: var(--bg-primary);
}

/* Pricing */
.pricing {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-primary);
  box-shadow: var(--shadow-card);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.pricing-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-primary);
}

.pricing-card-highlight {
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.1), rgba(51, 185, 207, 0.1));
  border-color: var(--viavendo-orange);
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 111, 5, 0.18);
  border: 1px solid rgba(255, 111, 5, 0.45);
  color: var(--viavendo-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.skill-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.skill-node {
  position: relative;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.skill-node-active {
  border-color: var(--cyan-primary);
  box-shadow: var(--glow-cyan);
}

.skill-node-active .node-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-md);
  background: var(--cyan-primary);
  opacity: 0.2;
  filter: blur(10px);
  z-index: -1;
}

.skill-node-locked {
  opacity: 0.5;
}

.skill-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan-primary), var(--border-color));
}

.skill-branch {
  display: flex;
  gap: 2rem;
}

.lock-icon {
  margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--bg-secondary);
}

.cta-card {
  background: linear-gradient(135deg, #ff6f05, #e85d00);
  border: 1px solid rgba(255, 122, 47, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.cta-content {
  max-width: 420px;
  padding-top: 1rem;
}

.cta-section .cta-card .cta-content h2 {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff8f0;
}

@media (max-width: 768px) {
  .cta-section .cta-card .cta-content h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.85rem);
  }
}

.cta-content p {
  color: #fff8f0;
  margin-bottom: 1rem;
}

.cta-hint {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
}

.cta-hint a {
  color: #fff8f0;
  font-weight: 600;
}

.cta-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 248, 240, 0.75);
}
.cta-email svg {
  flex-shrink: 0;
  opacity: 0.85;
  color: #fff8f0;
}
.cta-email a {
  color: #fff8f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 248, 240, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.cta-email a:hover {
  color: #fff8f0;
  border-color: #1a2332;
}

.cta-cal-embed {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

#cal-inline-embed {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow-y: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-visual {
  flex-shrink: 0;
}

.orbit {
  position: relative;
  width: 200px;
  height: 200px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--viavendo-orange);
  border-radius: 50%;
  box-shadow: var(--glow-orange);
  animation: rotate 10s linear infinite;
  transform-origin: 8px 100px;
}

/* Footer */
.main-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .holo-coach {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
  }
}

/* ============================================
   Mobile Navigation
   ============================================ */

/* Hide mobile elements on desktop */
.nav-mobile-actions {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  /* Hide desktop nav */
  .nav-desktop {
    display: none;
  }

  /* Show mobile actions (CTA + Hamburger) */
  .nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  /* Smaller CTA button on mobile */
  .btn-mobile-cta {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
  }

  /* Hamburger Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 101;
    position: relative;
  }

  .hamburger:hover {
    border-color: var(--cyan-primary);
  }

  .hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
    transform-origin: center;
  }

  /* Hamburger → X animation */
  .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Overlay Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(10, 16, 21, 0.97);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 0;
    overflow-y: auto;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: color var(--transition-fast);
  }

  .mobile-menu a:hover,
  .mobile-menu a:active {
    color: white;
  }

  .btn-mobile-menu-cta {
    margin-top: 1.5rem;
    text-align: center;
    border-bottom: none;
    font-size: 1rem;
    color: white;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Rest of mobile styles */
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
    gap: 2rem;
  }

  .cta-content {
    max-width: 100%;
    padding-top: 0;
  }

  .cta-cal-embed {
    min-height: 360px;
  }

  #cal-inline-embed {
    min-height: 360px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-branch {
    flex-direction: column;
    gap: 1rem;
  }

  .pillar-grid,
  .trust-grid,
  .support-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
  }

  .demo-tiles {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    padding-left: 0;
  }

  .trust-microline {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* ============================================
   NEW SECTIONS – Landingpage Copy v1
   ============================================ */

/* Hero Benefits List */
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.benefit-icon {
  color: var(--cyan-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Trust Microline (Hero) */
.trust-microline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.trust-microline span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-microline span::before {
  content: '•';
  color: var(--cyan-primary);
}

.trust-microline span:first-child::before {
  display: none;
}

/* Problem / Reframe Section */
.problem-reframe {
  background: var(--bg-secondary);
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.reframe-box {
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.08), rgba(51, 185, 207, 0.08));
  border: 1px solid var(--viavendo-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.reframe-box p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* Challenger Insights Grid - Dashboard Style */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

@media (max-width: 1100px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.insight-card {
  background: linear-gradient(145deg, rgba(41, 56, 61, 0.6), rgba(26, 69, 82, 0.3));
  border: 1px solid rgba(51, 185, 207, 0.28);
  border-radius: var(--radius-lg);
  padding: 1rem 0.9rem;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Subtle scan-line effect */
.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(51, 185, 207, 0.03) 2px,
    rgba(51, 185, 207, 0.03) 4px
  );
  pointer-events: none;
}

/* Top glow bar */
.insight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--viavendo-orange), var(--cyan-primary), transparent);
  opacity: 0.6;
}

.insight-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--cyan-bright);
  box-shadow: 
    0 0 30px rgba(51, 185, 207, 0.3),
    0 0 60px rgba(51, 185, 207, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.insight-card:hover::after {
  opacity: 1;
  width: 80%;
}

/* Highlight card (center) */
.insight-card.insight-highlight {
  border-color: rgba(255, 111, 5, 0.5);
  background: linear-gradient(145deg, rgba(255, 111, 5, 0.15), rgba(41, 56, 61, 0.4));
}

.insight-card.insight-highlight::after {
  background: linear-gradient(90deg, transparent, var(--viavendo-orange), transparent);
  opacity: 0.8;
}

.insight-card.insight-highlight:hover {
  border-color: var(--viavendo-orange);
  box-shadow: 
    0 0 40px rgba(255, 111, 5, 0.35),
    0 0 80px rgba(255, 111, 5, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Stat number - big glowing display */
.insight-stat {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--viavendo-orange), var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 0 10px rgba(255, 111, 5, 0.35),
    0 0 16px rgba(51, 185, 207, 0.25);
  transition: all var(--transition-normal);
}

.insight-card:hover .insight-stat {
  text-shadow: 
    0 0 16px rgba(255, 111, 5, 0.45),
    0 0 22px rgba(51, 185, 207, 0.35);
  transform: scale(1.03);
}

.insight-card.insight-highlight .insight-stat {
  color: var(--viavendo-orange);
  text-shadow: 
    0 0 10px rgba(255, 111, 5, 0.8),
    0 0 30px rgba(255, 111, 5, 0.4),
    0 0 50px rgba(255, 111, 5, 0.2);
}

.insight-card.insight-highlight:hover .insight-stat {
  text-shadow: 
    0 0 15px rgba(255, 111, 5, 1),
    0 0 40px rgba(255, 111, 5, 0.6),
    0 0 70px rgba(255, 111, 5, 0.3);
}

.insight-text {
  font-size: clamp(0.86rem, 1.1vw, 0.92rem);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 0.35rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.insight-source {
  font-size: clamp(0.58rem, 0.9vw, 0.62rem);
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.insight-card.insight-highlight .insight-source {
  color: var(--viavendo-orange);
}

.insights-footnote {
  font-size: clamp(0.6rem, 0.85vw, 0.7rem);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 1.2rem;
  letter-spacing: 0.02em;
}

/* Pillars Section */
.pillars {
  background: var(--bg-primary);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-primary);
  box-shadow: var(--shadow-card);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.2), rgba(51, 185, 207, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  color: var(--cyan-primary);
}

.pillar-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.pillar-headline {
  font-weight: 600;
  color: var(--viavendo-orange);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(51, 185, 207, 0.12);
  border: 1px solid rgba(51, 185, 207, 0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-claim {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Pillar Screenshots */
.pillar-screenshot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  border: 1px solid rgba(51, 185, 207, 0.18);
  background: rgba(0, 168, 195, 0.04);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-screenshot:hover {
  border-color: rgba(51, 185, 207, 0.4);
  box-shadow: 0 0 16px rgba(51, 185, 207, 0.1);
}

.pillar-screenshot a {
  display: block;
  line-height: 0;
}

.pillar-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.02) contrast(1.01);
}

/* Device-Kompatibilität Section */
.devices-section {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
}

.devices-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.devices-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.devices-showcase {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  flex-wrap: nowrap;
  max-width: 900px;
  margin: 0 auto;
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.device:hover {
  transform: translateY(-4px);
}

.device img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
  display: block;
}

.device-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.device--desktop {
  max-width: 440px;
  flex-shrink: 0;
}

.device--tablet {
  max-width: 240px;
}

.device--mobile {
  max-width: 120px;
}

.devices-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.devices-hint svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .devices-showcase {
    gap: 1.5rem;
  }

  .device--desktop {
    max-width: 320px;
  }

  .device--tablet {
    max-width: 180px;
  }

  .device--mobile {
    max-width: 95px;
  }
}

@media (max-width: 480px) {
  .devices-showcase {
    gap: 1rem;
  }

  .device--desktop {
    max-width: 220px;
  }

  .device--tablet {
    max-width: 130px;
  }

  .device--mobile {
    max-width: 75px;
  }

  .devices-hint {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Agent Demo Section */
.agent-demo {
  background: var(--bg-secondary);
}

/* Vivi Section */
.vivi-section {
  background: var(--bg-primary);
}

.vivi-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
  margin-top: 2.25rem;
}

@media (max-width: 980px) {
  .vivi-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.75rem;
  }
}

.vivi-intro {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.vivi-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: radial-gradient(circle at 30% 30%, rgba(255, 111, 5, 0.35), rgba(51, 185, 207, 0.18) 55%, rgba(10, 16, 21, 0.9) 100%);
  box-shadow: 0 0 24px rgba(255, 111, 5, 0.15), 0 0 24px rgba(51, 185, 207, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.vivi-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vivi-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.vivi-subline {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.vivi-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vivi-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.vivi-bullets li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--cyan-primary);
  font-size: 0.7rem;
}

.vivi-chat-frame {
  background: var(--bg-card);
  border: 1px solid rgba(51, 185, 207, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.vivi-chat-frame iframe,
.vivi-chat-frame > div {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 980px) {
  .vivi-chat-frame {
    min-height: 480px;
  }

  .vivi-chat-frame iframe,
  .vivi-chat-frame > div {
    min-height: 480px;
  }

  .vivi-intro {
    flex-direction: column;
    text-align: center;
  }
}

.vivi-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.9rem;
}

.vivi-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vivi-note a {
  color: var(--cyan-primary);
}

/* Platform Gallery (replaces old demo tiles) */
.platform-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (max-width: 980px) {
  .platform-gallery {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.platform-gallery__hero {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.platform-gallery__hero:hover {
  border-color: var(--viavendo-orange);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.platform-gallery__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.platform-gallery__hero-caption {
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(51, 185, 207, 0.12);
}

.platform-gallery__cards {
  display: grid;
  gap: 0.9rem;
}

.screenshot-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  transition: all var(--transition-normal);
}

.screenshot-card:hover {
  border-color: var(--viavendo-orange);
  box-shadow: var(--glow-orange);
  transform: translateY(-2px);
}

.screenshot-card__thumb {
  width: 92px;
  height: 66px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(51, 185, 207, 0.18);
  flex: 0 0 auto;
}

.screenshot-card__meta {
  min-width: 0;
}

.screenshot-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.screenshot-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.gallery-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lightweight lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 21, 0.82);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-dialog {
  width: min(1100px, 100%);
  background: rgba(18, 26, 31, 0.92);
  border: 1px solid rgba(51, 185, 207, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(51, 185, 207, 0.14);
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.lightbox-close {
  appearance: none;
  border: 1px solid rgba(51, 185, 207, 0.25);
  background: rgba(51, 185, 207, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  border-color: var(--viavendo-orange);
  box-shadow: 0 0 20px rgba(255, 111, 5, 0.2);
}

.lightbox-body {
  padding: 1rem;
}

.lightbox-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.demo-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.demo-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.demo-tile:hover {
  border-color: var(--viavendo-orange);
  box-shadow: var(--glow-orange);
  transform: translateY(-3px);
}

.demo-tile-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.demo-tile h4 {
  margin-bottom: 0.4rem;
  color: white;
}

.demo-tile p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.guardrail-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.demo-cta {
  text-align: center;
}

/* Use Cases Section */
.usecases {
  background: var(--bg-primary);
}

/* ── Use Cases Grid ── */
.usecases .usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.usecases .usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.usecases .usecase-card:hover {
  border-color: rgba(51, 185, 207, 0.45);
  box-shadow: 0 0 20px rgba(51, 185, 207, 0.08);
}

.usecase-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(51, 185, 207, 0.12), rgba(0, 168, 195, 0.06));
  border: 1px solid rgba(51, 185, 207, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.usecase-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-primary);
}

.usecases .usecase-card h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.usecases .usecase-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* CTA-Card (letztes Element) */
.usecase-card--cta {
  border-color: rgba(51, 185, 207, 0.3);
  background: linear-gradient(135deg, rgba(0, 168, 195, 0.06) 0%, rgba(51, 185, 207, 0.03) 100%);
}

.usecase-card__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--cyan-primary);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.usecase-card__link:hover {
  color: white;
}

@media (max-width: 980px) {
  .usecases .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .usecases .usecase-grid {
    grid-template-columns: 1fr;
  }
}

/* How It Works / Steps */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--viavendo-orange);
  border: 2px solid var(--viavendo-orange);
  border-radius: 50%;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Support & Enablement */
.support-enablement {
  background: var(--bg-primary);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.support-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.18), rgba(51, 185, 207, 0.12));
  border: 1px solid rgba(51, 185, 207, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.support-icon svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-primary);
}

.support-icon--content svg {
  color: var(--viavendo-orange);
}

.support-card h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.support-card__head h3 {
  margin: 0;
}

.support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.support-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cyan-primary);
}

/* Trust Section */
.trust-section {
  background: var(--bg-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.trust-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 111, 5, 0.16), rgba(51, 185, 207, 0.12));
  border: 1px solid rgba(51, 185, 207, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-primary);
}

.trust-icon--rights svg {
  color: var(--viavendo-orange);
}

.trust-card h3 {
  margin-bottom: 0.5rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.trust-card__head h3 {
  margin: 0;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.employee-first-box {
  background: linear-gradient(135deg, rgba(51, 185, 207, 0.08), rgba(255, 111, 5, 0.08));
  border: 1px solid var(--cyan-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.employee-first-box h3 {
  color: var(--cyan-primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.employee-first-box p {
  margin: 0;
  color: var(--text-secondary);
}

.trust-cta {
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: white;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--cyan-primary);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz, AGB)
   ========================================================================== */

.legal-page {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.legal-page p,
.legal-page ul,
.legal-page li,
.legal-page address {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: normal;
}

.legal-page ul {
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page address {
  display: block;
  margin-bottom: 1.5rem;
}

.legal-page a {
  color: #00d4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  opacity: 0.8;
}

.legal-page strong {
  color: #fff;
  font-weight: 600;
}

.legal-intro {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Subpage Navigation - solid background */
.nav-solid,
body.subpage .main-nav {
  background: rgba(10, 15, 30, 0.98);
}

/* ==================================================================
   Content Pages (z.B. Über uns)
   ================================================================== */

.content-page {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.content-block {
  margin-top: 2rem;
}

.content-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.content-page p,
.content-page ul,
.content-page li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.content-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ==================================================================
   Blog
   ================================================================== */

.blog-page {
  padding: 8rem 0 4rem;
  min-height: 60vh;
}

.blog-empty {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(41, 56, 61, 0.35);
  border: 1px solid var(--border-color);
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  grid-column: span 12;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(41, 56, 61, 0.35);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card), 0 0 0 rgba(51, 185, 207, 0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(51, 185, 207, 0.45);
  box-shadow:
    var(--shadow-card),
    0 0 40px rgba(51, 185, 207, 0.18),
    0 0 70px rgba(51, 185, 207, 0.10);
}

.blog-card__meta,
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(51, 185, 207, 0.08);
  border: 1px solid rgba(51, 185, 207, 0.25);
  box-shadow: 0 0 18px rgba(51, 185, 207, 0.10);
}

.blog-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-card__title a {
  color: #fff;
}

.blog-card__title a:hover {
  color: var(--cyan-bright);
}

.blog-card__desc {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

.blog-tags {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 111, 5, 0.08);
  border: 1px solid rgba(255, 111, 5, 0.25);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 18px rgba(255, 111, 5, 0.10);
}

.blog-breadcrumb {
  margin-bottom: 1.5rem;
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-article {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: rgba(41, 56, 61, 0.35);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.blog-article__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-article__header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

/* Hero Image */
.blog-article__hero {
  margin: 1.5rem 0 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-article__hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.blog-article__content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.blog-article__content h3 {
  font-size: 1.15rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.blog-article__content p,
.blog-article__content ul,
.blog-article__content ol,
.blog-article__content li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.blog-article__content ul,
.blog-article__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-article__content pre {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 16, 21, 0.9);
  border: 1px solid rgba(51, 185, 207, 0.25);
  overflow: auto;
}

.blog-article__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

/* Blockquote (generisch) */
.blog-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--cyan-primary);
  border-radius: var(--radius-sm);
  background: rgba(51, 185, 207, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.blog-article__content blockquote p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.blog-article__content blockquote p:last-child {
  margin-bottom: 0;
}

/* Key Insight Box */
.blog-article__content blockquote.key-insight {
  border-left: 4px solid var(--viavendo-orange);
  background: rgba(255, 111, 5, 0.08);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  position: relative;
}

.blog-article__content blockquote.key-insight::before {
  content: '\1F511 Key Insight';
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--viavendo-orange);
  margin-bottom: 0.75rem;
}

.blog-article__content blockquote.key-insight p {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* Product Box (sales-coach.ai) */
.blog-article__content blockquote.product-box {
  border-left: 4px solid var(--teal-primary);
  background: rgba(52, 158, 181, 0.08);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: var(--radius-sm);
}

.blog-article__content blockquote.product-box::before {
  content: '';
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 0.75rem;
}

.blog-article__content blockquote.product-box p {
  color: rgba(255, 255, 255, 0.88);
}

.blog-article__content blockquote.product-box a {
  color: var(--viavendo-orange);
  font-weight: 600;
}

.blog-article__content blockquote.product-box a:hover {
  color: var(--orange-light);
}

@media (min-width: 768px) {
  .blog-card {
    grid-column: span 6;
  }
}

@media (min-width: 1100px) {
  .blog-card {
    grid-column: span 4;
  }
}

/* Related Articles (below blog post) */
.blog-related {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.blog-related h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.blog-related__card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(41, 56, 61, 0.35);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-related__card:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 185, 207, 0.45);
  box-shadow: 0 0 30px rgba(51, 185, 207, 0.12);
}

.blog-related__card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.blog-related__card h3 a {
  color: #fff;
  text-decoration: none;
}

.blog-related__card h3 a:hover {
  color: var(--accent-blue);
}

.blog-related__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.blog-related__all {
  margin-top: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .blog-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================
   SECTION BACKGROUND TEXTURES
   Overlay-Ansatz mit hoher Opacity (Bilder selbst
   sind fast so dunkel wie der BG). Radial-Mask
   hält den Content-Bereich frei, Textur zeigt
   sich nur an den Rändern → subtile Tiefe.
   ============================================ */

/* Trust Section: Feine Linien-Textur an den Rändern */
.trust-section {
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg-texture-dark-1.png') center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, black 100%);
}
.trust-section > * {
  position: relative;
  z-index: 1;
}

/* CTA Section: Textur an den Rändern */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/bg-texture-dark-3.png') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, transparent 25%, black 100%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, transparent 25%, black 100%);
}
.cta-section > * {
  position: relative;
  z-index: 1;
}


/* === bundled: cookie-consent.css === */
/**
 * Cookie Consent Banner – sales-coach.ai
 * DSGVO + TTDSG §25 konform
 * Consent Mode v2 für Google (GTM/Ads/Analytics)
 */

/* ───── Overlay ───── */
.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  pointer-events: none;
}
.cookie-banner-overlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s 0s;
}

/* ───── Banner ───── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark, #0a1015);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.4s ease, visibility 0s 0.4s;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.cookie-banner.visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s ease, visibility 0s 0s;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cookie-banner__text a {
  color: var(--accent, #ff7a2f);
  text-decoration: underline;
}

/* ───── Toggle-Gruppen ───── */
.cookie-banner__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent, #ff7a2f);
  width: 1rem;
  height: 1rem;
}
.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
}
.cookie-category label {
  cursor: pointer;
  user-select: none;
}
.cookie-category .cookie-required {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ───── Buttons ───── */
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn--accept-all {
  background: var(--accent, #ff7a2f);
  color: #fff;
}
.cookie-btn--accept-all:hover {
  background: #e86b25;
}

.cookie-btn--save {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn--save:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-btn--reject:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ───── Responsive ───── */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 1rem;
  }
  .cookie-banner__categories {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}


/* === bundled: fonts.css === */
/* ============================================
   sales-coach.ai - Local Font Definitions
   ============================================ */

/* Neuropol X - Headline/Display Font */
@font-face {
  font-family: 'Neuropol X';
  src: url('fonts/neuropol x rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuropol X';
  src: url('fonts/neuropol x rg.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neuropol X';
  src: url('fonts/neuropol x rg.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Orbitron - Fallback Display Font */
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/orbitron-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/orbitron-bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/orbitron-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Roboto - Body Font */
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-regular.woff2') format('woff2'),
       url('fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-medium.woff2') format('woff2'),
       url('fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-bold.woff2') format('woff2'),
       url('fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Montserrat - Alternative Body Font */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Rajdhani - Display/Headline Font */
@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rajdhani';
  src: url('fonts/Rajdhani-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Oswald - Accent Font */
@font-face {
  font-family: 'Oswald';
  src: url('fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('fonts/Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

