/* Reset & Base */
:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(222.2 84% 4.9%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(222.2 84% 4.9%);
  --popover: hsl(0 0% 100%);
  --popover-foreground: hsl(222.2 84% 4.9%);
  --primary: hsl(222.2 47.4% 11.2%);
  --primary-foreground: hsl(210 40% 98%);
  --secondary: hsl(210 40% 96.1%);
  --secondary-foreground: hsl(222.2 47.4% 11.2%);
  --muted: hsl(210 40% 96.1%);
  --muted-foreground: hsl(215.4 16.3% 46.9%);
  --accent: hsl(210 40% 96.1%);
  --accent-foreground: hsl(222.2 47.4% 11.2%);
  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(210 40% 98%);
  --border: hsl(214.3 31.8% 91.4%);
  --input: hsl(214.3 31.8% 91.4%);
  --ring: hsl(222.2 84% 4.9%);
  --radius: 0.5rem;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-card-bg: #ffffff;
  --color-border: #e5e7eb;
  --color-text: #374151;
  --color-text-muted: #6b7280;
  --color-heading: #111827;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--secondary);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--foreground);
}

/* h1 in HWZ-Blau */
h1 {
  color: var(--color-primary);
}

/* Auskommentierte Fontgrößendefinitionen
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
*/

p { margin-bottom: 1rem; }

/* Layout */
.container {
  width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--background);
}

/* Navigation */
.nav-menu {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px; /* Feste Höhe für konsistente Ausrichtung */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
}

.nav-brand img {
    height: 24px;
    width: auto;
}

.nav-mobile-trigger {
    display: none;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.nav-mobile-trigger .close-icon {
    display: none;
}

.nav-menu[data-state="open"] .nav-mobile-trigger .menu-icon {
    display: none;
}

.nav-menu[data-state="open"] .nav-mobile-trigger .close-icon {
    display: block;
}

.nav-content {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* Language Switcher Styles */
.lang-switcher {
    margin-left: 1rem;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--secondary);
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.current-lang {
    display: inline-block;
    min-width: 1.5rem;
    text-align: center;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.lang-option.active {
    background-color: var(--accent);
    font-weight: 600;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-trigger .chevron-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.nav-trigger[aria-expanded="true"] .chevron-icon {
    transform: rotate(-180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.nav-dropdown:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language dropdown positioning */
.lang-switcher .nav-dropdown {
    right: 0;
    left: auto;
    min-width: 150px;
}

.nav-dropdown-content {
    padding: 0.5rem;
}

.nav-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-foreground);
    padding: 0.5rem;
    margin: 0;
}

.nav-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s;
    border-radius: var(--radius);
}

.nav-link:hover {
    background-color: var(--accent);
}

.nav-link.active {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.session-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    .nav-mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        height: 48px; /* Feste Höhe für konsistente Ausrichtung */
    }
    
    .nav-brand {
        margin: 0;
        padding: 0;
        font-size: 0.9rem; /* Kleinere Schriftgröße auf Mobilgeräten */
    }
    
    .nav-brand img {
        height: 20px; /* Etwas kleineres Logo auf Mobilgeräten */
    }

    .nav-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        border-top: 1px solid var(--border);
        padding: 1rem;
        z-index: 100;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-content:not([hidden]) {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Mobile language switcher */
    .lang-switcher {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 0.5rem;
        border-top: 1px solid var(--border);
        padding-top: 0.5rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        margin-top: 0;
        background: transparent;
    }

    .nav-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-trigger::after {
        content: '▾';
        margin-left: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem;
    }
}

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.tag {
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

.date {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.card-content h3 {
  /* font-size: 1.25rem; */
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.card-content p {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  padding: 0.5rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.card-link:hover {
  color: var(--color-primary-dark);
}

.card-link .icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Header */
.site-header {
  padding: 6rem 1rem;
  text-align: center;
  background: var(--secondary);
  margin-bottom: 2rem;
    position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Mobile Navigation */
.nav-mobile-trigger {
  display: none;
}

@media (max-width: 768px) {
  .nav-mobile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav-mobile-trigger span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: all 0.2s;
  }

  .nav-mobile-trigger span:before,
  .nav-mobile-trigger span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: all 0.2s;
  }

  .nav-mobile-trigger span:before {
    transform: translateY(-6px);
  }

  .nav-mobile-trigger span:after {
    transform: translateY(6px);
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list[data-state="open"] {
    display: flex;
  }

  .nav-content {
    position: static;
    transform: none;
    width: 100%;
    min-width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .nav-content::before {
    display: none;
  }

  .nav-content[data-state="open"] {
    transform: none;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-trigger::after {
    content: '▾';
    margin-left: 0.5rem;
  }
}

/* Utilities */
.text-muted {
  color: var(--muted-foreground);
}

.rounded {
  border-radius: var(--radius);
}

.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.border {
  border: 1px solid var(--border);
}

.bg-muted {
  background: var(--muted);
}

.p-4 {
  padding: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 1rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  opacity: 0.5;
}

.breadcrumb-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--foreground);
}

.breadcrumb-current {
  color: var(--foreground);
  font-weight: 500;
}

/* Metriken */
.kpi-grid {
    display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  margin: 1rem 0;
}

.stock-info {
  background: var(--background);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  text-align: center;
}

.stock-info h3 {
  margin-top: 0;
  /* font-size: 1.25rem; */
  text-align: center;
  margin-bottom: 1rem;
}

.stock-chart {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: var(--background);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.metric-card:hover {
  transform: translateY(-2px);
}

.metric-card h3 {
  /* font-size: 0.875rem; */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.metric-value {
  font-size: 2rem;
    font-weight: 600;
  margin: 0.5rem 0;
}

.metric-change {
    font-size: 1rem;
  margin-top: 0.5rem;
}

.metric-change.positive {
  color: #10b981;
}

.metric-change.negative {
  color: #ef4444;
}

/* Tabellen */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  background: var(--background);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
    overflow: hidden;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

th, td {
  padding: 0.5rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--foreground);
  font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    margin-bottom: 1rem;
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  }

  td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid var(--border);
}

  td:last-child {
    border-bottom: none;
}

  td:before {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-label);
    font-weight: 500;
    color: var(--muted-foreground);
  }
}

/* Listen */
ul, ol {
  margin: 1rem 0;
  padding-left: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Links */
a {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  text-underline-offset: 2px;
}

/* Footer */
footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: auto;
  padding: 1rem;
  text-align: center;
  color: var(--muted-foreground);
  background: var(--background);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  z-index: 10;
}

/* Übersichtsseite */
.site-header .header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.site-header .video-background {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.site-header .video-background iframe {
  width: 100vw;
  height: 56.25vw; /* Entspricht 16:9 Seitenverhältnis */
  min-height: 100%;
  min-width: 177.77vh; /* Entspricht 16:9 Seitenverhältnis */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.site-header .subtitle {
  color: rgba(255,255,255,0.9);
}

.subtitle {
  font-size: 1.25rem;
  color: var(--foreground);
  margin: 1rem 0;
}

.header-description {
    font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
}

.featured-cases {
  margin: 1rem 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.case-study-card {
    position: relative;
  display: flex;
  flex-direction: column;
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: var(--foreground);
}

.case-study-card h3 {
  color: var(--foreground);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.case-study-card h3::after {
  content: '';
    position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: var(--foreground);
  transition: width 0.3s ease;
}

.case-study-card:hover h3::after {
  width: 3rem;
}

.case-study-card p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

.case-description {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tags {
    display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--background);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.case-study-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--foreground);
    color: white;
    text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.case-study-link:hover {
  background: var(--foreground);
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  background: var(--background);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.footer-content {
  color: var(--foreground);
  font-size: 0.875rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .site-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    min-height: 200px;
  }

  .site-header .video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
  }

  .header-description {
    font-size: 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .case-study-card {
    padding: 1.5rem;
  }

  .nav-container {
    height: auto;
    padding: 1rem;
        flex-direction: column;
    }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-trigger {
    width: 100%;
    justify-content: center;
}

  .breadcrumbs {
    margin: 1rem 0;
    flex-wrap: wrap;
  }

  .container {
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    border-radius: 0;
    box-shadow: none;
    background-color: #ffffff;
  }

  .metric-card, .stock-info, .case-study-card {
    background: var(--background);
  }

  .metric-card h3, .stock-info h3 {
    color: var(--foreground);
  }

  .case-description, p, li {
    color: var(--foreground);
  }

  table {
    background: var(--background);
  }

  th, td {
    color: var(--foreground);
  }

  .breadcrumb-link, .breadcrumb-current {
    color: var(--foreground);
  }

  body {
    background: var(--background);
    padding: 1rem;
  }

  .site-header {
    background: rgba(0, 0, 0, 0.3);
  }

  .site-header::after {
    background: rgba(0, 0, 0, 0.5);
  }

  .site-header .header-content {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu::before {
        display: none;
    }

  .mega-menu-title {
    padding: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
  }

  .mega-menu-link {
    padding: 0.5rem;
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
    --radius: 0.875rem;
  }

  body {
    padding: 1rem;
  }

  h1 {
    font-size: 1.75rem;
}

.kpi-grid {
        grid-template-columns: 1fr;
    }

  .stock-info {
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.metrics-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .stock-chart {
    margin: 1rem calc(1rem * -1);
    width: calc(100% + 1rem * 2);
    padding: 1rem;
  }

  section {
    padding: 1rem;
    margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
  body {
    max-width: none;
    padding: 2cm;
    background: none;
  }

  .metric-card, .stock-info, header, footer, table {
    background: none;
    box-shadow: none;
    border: 1px solid #000;
  }
}

/* Customer Journey Analysis Styles */
.customer-journey-analysis {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.customer-journey-analysis h2 {
  color: #333;
  margin-bottom: 1.5rem;
  /* font-size: 2rem; */
}

.framework-description {
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #007bff;
}

.zmot-section,
.fmot-section,
.smot-section,
.next-steps {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.customer-journey-analysis h3 {
  color: #007bff;
  margin-bottom: 1rem;
  /* font-size: 1.5rem; */
}

.customer-journey-analysis h4 {
  color: #495057;
  margin: 1.5rem 0 1rem;
  font-size: 1.2rem;
}

.customer-journey-analysis ul,
.customer-journey-analysis ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.customer-journey-analysis li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.customer-journey-analysis ul ul {
  margin-top: 0.5rem;
}

.next-steps ol {
  counter-reset: steps;
}

.next-steps ol li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
}

.next-steps ol li:before {
  counter-increment: steps;
  content: counter(steps);
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.next-steps strong {
    color: #495057;
}

/* Video Section Styles */
.video-section {
    margin: 2rem 0;
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.video-container iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 250px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border);
}

.mega-menu-day {
    margin-bottom: 1.5rem;
}

.mega-menu-day:last-child {
    margin-bottom: 0;
}

.mega-menu-title {
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-item {
    margin: 0.5rem 0;
}

.session-label {
    color: var(--primary-color);
    font-weight: 500;
    margin-right: 0.5rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mega-menu-link:hover {
    background: rgba(30, 58, 138, 0.05);
    color: #1e3a8a;
}

.mega-menu-link.active {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0.5rem;
        margin-top: 0.5rem;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu-title {
        padding: 0.5rem;
        margin: 0;
        font-size: 0.9rem;
    }

    .mega-menu-link {
        padding: 0.5rem;
        justify-content: center;
    }
}

/* Session Banner */
.session-banner {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.session-banner .session-tag {
    font-weight: 500;
}

.session-banner .session-date {
    opacity: 0.9;
}

/* Quick Facts Section */
.quick-facts {
    margin-bottom: 2rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.fact-card {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.fact-card h3 {
    /* font-size: 0.875rem; */
    color: var(--text-color);
    opacity: 0.8;
    margin: 0 0 0.5rem 0;
}

.fact-card p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.section-title {
    color: var(--foreground);
    margin-bottom: 1rem;
    /* font-size: 1.25rem; */
    font-weight: 500;
}

.section-content {
    color: var(--foreground);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.comparison-table td {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
}

.comparison-table tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

/* Conclusion Section */
.conclusion {
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.conclusion .section-title,
.conclusion h2,
.conclusion h3 {
    color: white;
    margin-bottom: 1rem;
}

.conclusion .section-content {
    color: white;
    opacity: 0.9;
}

.fazit {
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.fazit h2,
.fazit h3,
.fazit .section-title {
    color: white;
    margin-bottom: 1rem;
}

.fazit p,
.fazit ul,
.fazit li {
    color: white;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-section {
        padding: 1.5rem;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    background: var(--glass-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.video-card h3 {
    padding: 1rem;
    margin: 0;
    /* font-size: 1.1rem; */
    color: var(--text-color);
    border-bottom: 1px solid var(--glass-border);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-control:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-control .play-icon,
.video-control .pause-icon {
    font-size: 1.5rem;
}

.video-control .pause-icon {
    display: none;
}

.video-control.playing .play-icon {
    display: none;
}

.video-control.playing .pause-icon {
    display: block;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.site-header h1,
.site-header h2,
.site-header h3,
.site-header .subtitle {
  color: white;
}

.fazit {
  background: var(--foreground);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fazit p, 
.fazit li,
.fazit a {
  color: white;
  margin-bottom: 1rem;
}

.fazit h2, 
.fazit h3, 
.fazit h4 {
  color: white;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
} 