:root {
  /* Google Business / Light Theme Colors */
  --color-bg-main: #ffffff;
  --color-bg-alt: #f8f9fa; /* Very light gray for alternate sections */
  --color-primary: #165a95; /* Logo Brand Blue */
  --color-primary-hover: #0b5795;
  
  /* User requested Dark Blue */
  --color-dark-blue: #0f2b4d; 
  --color-dark-blue-light: #173a5e;
  
  --color-accent: #e8f0fe; /* Very light blue for subtle backgrounds */
  --color-linkedin: #0a66c2;
  
  --color-text-main: #202124; /* Google dark gray text */
  --color-text-muted: #5f6368; /* Google secondary text */
  --color-text-light: #ffffff;
  
  /* Typography - GDPR Compliant System Fonts */
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-headings: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 3.5rem;

  /* Shadows (Google Material Style) */
  --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
  --shadow-md: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  --shadow-hover: 0 2px 6px 2px rgba(60,64,67,0.15), 0 1px 2px 0 rgba(60,64,67,0.3);
  
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background elements are removed in favor of clean white/gray sections */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark-blue);
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reusable Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-padding {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.bg-accent {
  background-color: var(--color-accent);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.8rem;
  border-radius: 24px; /* Pill shape */
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
  color: var(--color-text-light);
}

.btn-linkedin {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.btn-linkedin:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-light);
  box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: #dadce0;
}

.btn-outline:hover {
  background: var(--color-accent); /* Light blue hover */
  border-color: var(--color-primary);
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.1);
  z-index: 1000;
  transition: all var(--transition-fast);
  --header-height: 165px;
}

.site-header.shrink {
  --header-height: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
  height: 130px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.shrink .logo img {
  height: 60px;
}

/* Subpage Main Responsive Margin */
.subpage-main {
  margin-top: 205px;
  min-height: 70vh;
}

@media (max-width: 992px) {
  .subpage-main {
    margin-top: 135px !important;
  }
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links .btn-primary {
  color: white !important;
}

.nav-links .btn-primary:hover {
  color: white !important;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.linkedin-icon-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-linkedin);
  border-radius: 50%;
  color: white !important;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: serif;
}

.linkedin-icon-nav:hover {
  background: #004182;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-main);
}

/* Floating LinkedIn Button */
.floating-linkedin {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  background: var(--color-linkedin);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: serif;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.floating-linkedin:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white;
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding-top: 195px;
  padding-bottom: var(--spacing-xl);
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--color-bg-main);
  background-image: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.2) 100%), url('./assets/images/Christian_Albrecht_Speaker Krisenkommunikation.jpg');
  background-position: right 165px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero-content {
  max-width: 650px;
  width: 100%;
}

.hero-image-mobile {
  display: none;
}



@media (max-width: 992px) {
  .site-header {
    --header-height: 95px;
  }
  
  .logo img {
    height: 75px !important;
  }
  
  .site-header.shrink {
    --header-height: 75px;
  }
  
  .site-header.shrink .logo img {
    height: 55px !important;
  }

  .hero {
    background-image: none !important;
    background-color: var(--color-bg-main);
    text-align: center;
    min-height: auto;
    padding-top: 135px; /* Offset for mobile header (95px) + 40px spacing */
    padding-bottom: var(--spacing-lg);
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-mobile {
    display: block;
    margin: var(--spacing-md) auto 0 auto;
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
  }
  
  .hero-image-mobile img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center top;
  }
  
  .hero-title {
    font-size: clamp(1.15rem, 5.5vw, 2rem);
  }
}

.hero-brand-name {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--color-accent);
  color: var(--color-dark-blue);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--color-accent);
  color: var(--color-dark-blue);
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem; /* Reduced to leave space for subtitle badge underneath */
  color: var(--color-dark-blue);
  line-height: 1.15;
}

/* Typewriter Effect CSS */
.typewriter-text {
  color: var(--color-primary);
  border-right: 3px solid var(--color-primary);
  padding-right: 5px;
  animation: blink 0.75s step-end infinite;
  white-space: nowrap;
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--color-primary); }
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Cards / Bento Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.service-card {
  background: var(--color-bg-main);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid #dadce0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden; /* For hover gloss effect */
}

/* Hover Gloss Effect Background */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(26, 115, 232, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #d2e3fc;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
}

/* Stats Section (Bento Counters) */
.stats-card {
  background: var(--color-bg-main);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid #dadce0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
  font-family: var(--font-headings);
}

/* Target Groups */
.target-card {
  background: var(--color-bg-main);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-dark-blue);
  box-shadow: var(--shadow-sm);
}

/* Experience / References */
.experience-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  background: var(--color-bg-main);
  border: 1px solid #dadce0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.experience-item:hover {
  transform: translateX(5px);
  border-color: var(--color-primary);
}

.exp-year {
  font-weight: 700;
  color: var(--color-dark-blue);
  min-width: 120px;
  font-size: 1.1rem;
  padding-top: 5px;
  padding-left: 10px;
}

.exp-content h4 {
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
  color: var(--color-text-main);
}

.exp-content .company {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.photo-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.photo-wrapper img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--color-dark-blue);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md) 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: white;
}

/* Footer Signature */
.footer-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-sig-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.footer-sig-avatar img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

.footer-sig-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.footer-sig-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-sig-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

/* Contact Pre-Label */
.contact-pre-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Live-Chat-Kollaps Widget */
.chat-collapse-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: center;
}

/* Chat Panel */
.chat-panel {
  background: var(--color-bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(22, 90, 149, 0.12);
  overflow: hidden;
  min-height: 280px;
}

/* Chat Teaser Section Background */
.bg-chat-teaser {
  background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0d2240 60%, #112d50 100%);
}

.chat-panel-header {
  background: var(--color-dark-blue);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d058;
  box-shadow: 0 0 6px #34d058;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px #34d058; }
  50% { opacity: 0.6; box-shadow: 0 0 10px #34d058; }
}

.chat-panel-title {
  color: #c8d6e5;
  font-size: 0.85rem;
  font-weight: 500;
  flex: 1;
}

.chat-panel-live {
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: blink-live 1.4s ease-in-out infinite;
}

@keyframes blink-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.chat-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
}

/* Single chat bubble */
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.chat-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-msg.system-msg {
  margin-top: 6px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.chat-avatar.marketing { background: #4285f4; }
.chat-avatar.legal     { background: #9c5bd1; }
.chat-avatar.pr        { background: #f4511e; }
.chat-avatar.system    { background: #fff; border: 2px solid rgba(22,90,149,0.15); overflow: hidden; }

.chat-bubble-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.chat-sender {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-bubble {
  background: #f1f3f4;
  border-radius: 4px 14px 14px 14px;
  padding: 9px 14px;
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
  max-width: 280px;
}

.chat-msg.system-msg .chat-bubble {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  border-left: 4px solid #e8f0fe;
}

/* CTA Side Panel */
.chat-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.chat-cta-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7eb8f7;  /* light blue for dark bg */
}

.chat-cta-heading {
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.chat-cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.chat-cta-btn {
  align-self: flex-start;
}

/* Signature Block */
.chat-cta-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 90, 149, 0.12);
}

.signature-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.signature-avatar::after {
  content: 'CA';
}

.signature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signature-text strong {
  font-size: 0.95rem;
  color: var(--color-dark-blue);
  font-weight: 700;
}

.signature-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Responsive Chat */
@media (max-width: 768px) {
  .chat-collapse-wrapper {
    grid-template-columns: 1fr;
  }
  .chat-bubble {
    max-width: 100%;
  }
  /* Text panel appears above the chat on mobile */
  .chat-cta-order-first {
    order: -1;
  }
}

/* Scenario Switcher & Workshop Teasers */
.scenario-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.scenario-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.scenario-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.1rem 1.3rem;
  background: var(--color-bg-main);
  border: 1px solid #dadce0;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-headings);
}

.scenario-tab-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.scenario-tab-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tab-icon {
  font-size: 1.3rem;
}

.tab-text {
  line-height: 1.25;
}

.scenario-content-wrapper {
  background: var(--color-bg-main);
  border: 1px solid #dadce0;
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.scenario-card-content {
  display: none;
  opacity: 0;
  flex-direction: column;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scenario-card-content.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.4s ease-out forwards;
}

.scenario-meta {
  margin-bottom: var(--spacing-xs);
}

.scenario-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scenario-card-content h3 {
  font-size: 1.8rem;
  color: var(--color-dark-blue);
  margin-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: var(--spacing-xs);
}

.scenario-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.scenario-block {
  background: var(--color-bg-alt);
  border: 1px solid #dadce0;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition: border-color var(--transition-fast);
}

.scenario-block:hover {
  border-color: #c2e0ff;
}

.scenario-block h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.scenario-block.challenge h5 {
  color: #c5221f; /* Material dark red */
}

.scenario-block.action h5 {
  color: #137333; /* Material dark green */
}

.scenario-block p {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.scenario-workshop-teaser {
  background: var(--color-dark-blue);
  color: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.teaser-info {
  flex: 1;
}

.teaser-tag {
  display: inline-block;
  color: #8ab4f8; /* Soft blue text */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.scenario-workshop-teaser h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.scenario-workshop-teaser p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

.teaser-btn {
  flex-shrink: 0;
  background: white;
  color: var(--color-dark-blue) !important;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.teaser-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary) !important;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

@media (max-width: 992px) {
  .scenario-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .scenario-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .scenario-tab-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .scenario-content-wrapper {
    padding: var(--spacing-sm);
  }

  .scenario-card-content h3 {
    font-size: 1.4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .scenario-details-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .scenario-workshop-teaser {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: var(--spacing-sm);
    padding: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .scenario-workshop-teaser h4 {
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .teaser-btn {
    width: 100%;
    text-align: center;
  }
  
  .scenario-tab-btn {
    flex: 1 1 100%;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-sm);
    border-top: 1px solid #dadce0;
    align-items: center;
    z-index: 999;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .experience-item {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .floating-linkedin {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .hero-brand-name {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.15rem, 5.5vw, 2rem);
  }
}
