/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[4]!./assets/styles/pages/home-redesign/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
:root {
  --bc-primary: #415dcf;
  --bc-primary-light: rgba(65, 93, 207, 0.1);
  --bc-primary-glow: rgba(65, 93, 207, 0.25);
  --bc-bg-white: #ffffff;
  --bc-bg-light: #f8f9fc;
  --bc-text-dark: #0b0f19;
  --bc-text-body: #33354d;
  --bc-text-muted: #5e6379;
  --bc-border: rgba(0, 0, 0, 0.08);
  --bc-border-hover: rgba(0, 0, 0, 0.15);
  --bc-success: #35AD74;
  --bc-font-sans: 'Figtree', sans-serif;
  --bc-font-mono: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
  --bc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.page-home-redesign {
  background-color: var(--bc-bg-white);
  color: var(--bc-text-body);
  font-family: var(--bc-font-sans);
  overflow-x: hidden;
  line-height: 1.7;
}

.page-home-redesign h1,
.page-home-redesign h2,
.page-home-redesign h3,
.page-home-redesign h4,
.page-home-redesign h5,
.page-home-redesign h6 {
  color: var(--bc-text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(to right, var(--bc-primary), #0dcaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-light {
  background-color: var(--bc-bg-light);
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--bc-text-muted);
  max-width: 540px;
}

/* Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--bc-ease), transform 0.8s var(--bc-ease);
}

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

/* Boxicons spin animation (boxicons CSS does not ship .bx-spin; provide locally) */
.bx-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Buttons */
.btn-bc-primary {
  background-color: var(--bc-primary);
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 14px var(--bc-primary-glow);
  transition: all 0.3s var(--bc-ease);
  text-decoration: none;
  display: inline-block;
}

.btn-bc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--bc-primary-glow);
  color: #fff;
}

.btn-bc-outline {
  background: transparent;
  color: var(--bc-text-body);
  border: 1px solid var(--bc-border);
  padding: 0.875rem 2rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-bc-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--bc-border-hover);
  color: var(--bc-text-dark);
}

.btn-bc-white {
  background: #fff;
  color: var(--bc-primary);
  padding: 1rem 2.5rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-bc-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--bc-primary);
}

/* Badge */
.badge-bc {
  background: var(--bc-primary-light);
  color: var(--bc-primary);
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Rounded icon-only badge (in addition to .badge-bc) */
.bc-icon-badge {
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Cards */
.bento-card {
  background: var(--bc-bg-white);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--bc-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card .card-icon {
  font-size: 2rem;
  color: var(--bc-primary);
  margin-bottom: 1rem;
}

/* Fix: Ensure hover overrides reveal animation */
.bento-card:hover {
  border-color: var(--bc-primary-glow);
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px -10px rgba(65, 93, 207, 0.15);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--bc-text-body);
}

.feature-list li i {
  color: var(--bc-success);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* FAQ ACCORDION */
.faq-item {
  border-bottom: 1px solid var(--bc-border);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--bc-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--bc-text-muted);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}

/* Privacy Badges */
.privacy-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--bc-text-dark);
  background: var(--bc-bg-light);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--bc-border);
}

.privacy-badge i {
  font-size: 1.5rem;
  color: var(--bc-success);
}

/* HERO SECTION */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(65, 93, 207, 0.03) 0%, rgba(13, 202, 240, 0.03) 100%);
}

.hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .hero-h1 {
    font-size: 2.25rem;
  }
}
/* Bavaria Dot Map */
.bavaria-map {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 0.9;
  margin: 0 auto;
}

/* The container that gets masked by the Bavaria shape */
.bavaria-dots-container {
  position: absolute;
  inset: 0;
  /* Standard & WebKit Masking */
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  /* Ensure alpha channel is used */
  -webkit-mask-origin: content-box;
  mask-origin: content-box;
}

.bavaria-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(65, 93, 207, 0.45);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.bavaria-dot:hover {
  background: var(--bc-primary);
  transform: scale(1.4);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 0 8px var(--bc-primary-glow);
}

.bavaria-city {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--bc-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 0 0 6px rgba(65, 93, 207, 0.2);
  animation: dot-appear 0.6s ease forwards 1s;
  opacity: 0;
}

.bavaria-city::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--bc-primary);
  opacity: 0.3;
  animation: pulse-ring-subtle 4s infinite;
}

.city-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@keyframes dot-appear {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes pulse-ring-subtle {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* =========================================================
   HERO — KI family (v0 design intent, BS5 translation)

   Design language:
   - Dark canvas (#0b0f19) with stacked radial gradients
   - Faint dot/line grid masked by a soft radial vignette
   - Two-column: copy left, animated node-graph right
   - Eyebrow chip with pulsing status dot
   - Gradient-clipped display H1 (primary → light primary)
   - Trust strip: 3-up, white, sharp divider lines
   - Honors prefers-reduced-motion
   ========================================================= */
.bc-hero-ki {
  color: #33354d;
  position: relative;
  isolation: isolate;
  background-color: #0b0f19;
  background-image: radial-gradient(120% 80% at 78% 18%, rgba(65, 93, 207, 0.22), transparent 60%), radial-gradient(90% 60% at 20% 90%, rgba(65, 93, 207, 0.1), transparent 55%);
  padding: clamp(64px, 8vw, 104px) 0 0;
}

.bc-hero-ki__grid {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ===== Copy column ===== */
.bc-hero-ki__row {
  padding-bottom: clamp(48px, 6vw, 88px);
}

.bc-hero-ki__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-hero-ki__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aab4ee;
  background: rgba(65, 93, 207, 0.12);
  border: 1px solid rgba(65, 93, 207, 0.35);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  align-self: flex-start;
  max-width: max-content;
}

.bc-hero-ki__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7d93f0;
  box-shadow: 0 0 0 4px rgba(125, 147, 240, 0.18);
  animation: bc-ki-blink 2.4s ease-in-out infinite;
}

.bc-hero-ki__h1 {
  font-family: var(--bc-font-sans, "Figtree", sans-serif);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #f4f6fd;
  margin: 22px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}

.bc-hero-ki__grad {
  background: linear-gradient(100deg, var(--bc-primary, #415dcf) 0%, #7d93f0 55%, #aab8f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bc-hero-ki__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #9397ad;
  max-width: 36rem;
  margin: 22px 0 0;
}

.bc-hero-ki__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.bc-hero-ki__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s var(--bc-ease, ease), box-shadow 0.2s var(--bc-ease, ease);
}

.bc-hero-ki__btn svg,
.bc-hero-ki__btn em {
  transition: transform 0.2s var(--bc-ease, ease);
}

.bc-hero-ki__btn--primary {
  background: var(--bc-primary, #415dcf);
  color: #fff;
  border: 1px solid var(--bc-primary, #415dcf);
  box-shadow: 0 10px 30px -8px rgba(65, 93, 207, 0.25);
}
.bc-hero-ki__btn--primary:hover, .bc-hero-ki__btn--primary:focus-visible {
  color: #fff;
  background: #3850b3;
  border-color: #3850b3;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -8px rgba(65, 93, 207, 0.45);
}
.bc-hero-ki__btn--primary:hover svg, .bc-hero-ki__btn--primary:focus-visible svg {
  transform: translateX(3px);
}

.bc-hero-ki__btn--secondary {
  background: transparent;
  color: #d7ddf3;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.bc-hero-ki__btn--secondary:hover, .bc-hero-ki__btn--secondary:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* ===== Visualization (right column) ===== */
.bc-hero-ki__viz-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-hero-ki__viz {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1;
}

.bc-hero-ki__viz-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: bc-ki-float 9s ease-in-out infinite;
}

.bc-hero-ki__edge {
  stroke: rgba(125, 147, 240, 0.35);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 4 6;
  animation: bc-ki-dash 6s linear infinite;
}

.bc-hero-ki__pulse {
  stroke: #7d93f0;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 8 220;
  filter: drop-shadow(0 0 4px rgba(125, 147, 240, 0.8));
  animation: bc-ki-travel 4s linear infinite;
}

.bc-hero-ki__node {
  fill: #aab8f5;
  filter: drop-shadow(0 0 6px rgba(65, 93, 207, 0.25));
}

.bc-hero-ki__node-ring {
  fill: none;
  stroke: rgba(125, 147, 240, 0.5);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: bc-ki-pulse 3.2s ease-out infinite;
}

.bc-hero-ki__hub {
  fill: var(--bc-primary, #415dcf);
  filter: drop-shadow(0 0 14px rgba(65, 93, 207, 0.9));
}

.bc-hero-ki__hub-glow {
  fill: var(--bc-primary, #415dcf);
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
  animation: bc-ki-breathe 4s ease-in-out infinite;
}

/* stagger delays */
.bc-hero-ki__n1 {
  animation-delay: 0s;
}

.bc-hero-ki__n2 {
  animation-delay: 0.5s;
}

.bc-hero-ki__n3 {
  animation-delay: 1s;
}

.bc-hero-ki__n4 {
  animation-delay: 1.5s;
}

.bc-hero-ki__n5 {
  animation-delay: 2s;
}

.bc-hero-ki__n6 {
  animation-delay: 2.5s;
}

.bc-hero-ki__e2 {
  animation-delay: 1.3s;
}

.bc-hero-ki__e3 {
  animation-delay: 2.1s;
}

.bc-hero-ki__e4 {
  animation-delay: 0.7s;
}

/* ===== Trust strip ===== */
.bc-hero-ki__trust {
  background: #ffffff;
  border-top: 1px solid #eceef3;
}

.bc-hero-ki__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px clamp(20px, 3vw, 36px);
  border-right: 1px solid #eceef3;
}
.bc-hero-ki__trust-item:last-child {
  border-right: none;
}

.bc-hero-ki__trust-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(65, 93, 207, 0.08);
  color: var(--bc-primary, #415dcf);
  font-size: 22px;
}

.bc-hero-ki__trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.bc-hero-ki__trust-label {
  font-size: 14px;
  font-weight: 800;
  color: #33354d;
}

.bc-hero-ki__trust-sub {
  font-size: 12.5px;
  color: #9397ad;
  margin-top: 3px;
  line-height: 1.4;
}

/* ===== Mobile tweaks ===== */
@media (max-width: 767.98px) {
  .bc-hero-ki {
    padding-top: 48px;
  }
  .bc-hero-ki__h1 {
    font-size: 2.25rem;
    max-width: 100%;
  }
  .bc-hero-ki__lead {
    font-size: 1rem;
  }
  .bc-hero-ki__cta {
    flex-direction: column;
  }
  .bc-hero-ki__btn {
    justify-content: center;
  }
  .bc-hero-ki__trust-item {
    border-right: none;
    border-bottom: 1px solid #eceef3;
    padding: 16px 20px;
  }
  .bc-hero-ki__trust-item:last-child {
    border-bottom: none;
  }
}
/* ===== Accessibility — respect reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .bc-hero-ki__viz-svg,
  .bc-hero-ki__node-ring,
  .bc-hero-ki__hub-glow,
  .bc-hero-ki__edge,
  .bc-hero-ki__pulse,
  .bc-hero-ki__dot {
    animation: none !important;
  }
}
/* ===== Keyframes (namespaced to avoid collisions) ===== */
@keyframes bc-ki-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bc-ki-dash {
  to {
    stroke-dashoffset: -100;
  }
}
@keyframes bc-ki-travel {
  to {
    stroke-dashoffset: -228;
  }
}
@keyframes bc-ki-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.6);
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@keyframes bc-ki-breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.16;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.28;
  }
}
@keyframes bc-ki-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero-ai {
  --hero-bg: #f7f8fc;
  --hero-fg: #0d1226;
  --hero-muted: #4a5168;
  --hero-eyebrow-bg: rgba(65, 93, 207, 0.08);
  --hero-eyebrow-fg: #3850b8;
  --hero-badge-bg: #ffffff;
  --hero-badge-border: rgba(13, 18, 38, 0.08);
  --hero-badge-fg: #2b3147;
  --hero-mesh-1: rgba(65, 93, 207, 0.18);
  --hero-mesh-2: rgba(142, 160, 230, 0.20);
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 11.25rem);
  background-color: var(--hero-bg);
  color: var(--hero-fg);
}
.hero-ai__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(42rem 32rem at 78% 18%, var(--hero-mesh-1), transparent 60%), radial-gradient(34rem 30rem at 8% 92%, var(--hero-mesh-2), transparent 55%);
}
.hero-ai .container {
  z-index: 1;
}
.hero-ai__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background-color: var(--hero-eyebrow-bg);
  color: var(--hero-eyebrow-fg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-ai__eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #415dcf;
  box-shadow: 0 0 0 0.25rem rgba(65, 93, 207, 0.18);
}
.hero-ai__title {
  margin-top: 1.5rem;
  max-width: 16ch;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-ai__subtitle {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--hero-muted);
  text-wrap: pretty;
}
.hero-ai__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}
.hero-ai__cta-primary.btn-primary {
  --bs-btn-bg: #415dcf;
  --bs-btn-border-color: #415dcf;
  --bs-btn-hover-bg: #3850b8;
  --bs-btn-hover-border-color: #3850b8;
  --bs-btn-active-bg: #3850b8;
  --bs-btn-active-border-color:#3850b8;
  --bs-btn-focus-shadow-rgb: 65, 93, 207;
  font-weight: 600;
  box-shadow: 0 0.75rem 1.5rem -0.5rem rgba(65, 93, 207, 0.55);
}
.hero-ai__cta-secondary {
  font-weight: 600;
}
.hero-ai__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
.hero-ai__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.625rem;
  background-color: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-border);
  color: var(--hero-badge-fg);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}
.hero-ai__badge-icon {
  color: #415dcf;
  flex: 0 0 auto;
}
.hero-ai__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-ai__visual-glow {
  position: absolute;
  inset: 10% 5% auto auto;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 93, 207, 0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-ai__illustration {
  position: relative;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 1.5rem 2.5rem rgba(13, 18, 38, 0.18));
}
@media (max-width: 991.98px) {
  .hero-ai {
    text-align: center;
  }
  .hero-ai__title, .hero-ai__subtitle {
    margin-inline: auto;
  }
  .hero-ai__actions, .hero-ai__trust {
    justify-content: center;
  }
  .hero-ai__visual {
    margin-top: 2.5rem;
  }
}
[data-bs-theme=dark] .hero-ai {
  --hero-bg: #0a0e1f;
  --hero-fg: #f4f6fd;
  --hero-muted: #a3abc4;
  --hero-eyebrow-bg: rgba(142, 160, 230, 0.12);
  --hero-eyebrow-fg: #8ea0e6;
  --hero-badge-bg: rgba(255, 255, 255, 0.04);
  --hero-badge-border: rgba(255, 255, 255, 0.10);
  --hero-badge-fg: #d7dcec;
  --hero-mesh-1: rgba(65, 93, 207, 0.30);
  --hero-mesh-2: rgba(142, 160, 230, 0.16);
}

/* =========================================================
   HERO — Webentwicklung / Webdesign

   Design language:
   - Dark canvas (#0b0f19) with stacked radial gradients
   - Two-column: copy left, abstract browser/code illustration right
   - Eyebrow chip with rating + faint grid overlay
   - Trust pills row below the CTAs
   - Honors prefers-reduced-motion
   ========================================================= */
.bc-hero-we {
  color: #33354d;
  position: relative;
  isolation: isolate;
  background-color: #0b0f19;
  background-image: radial-gradient(120% 80% at 78% 18%, rgba(65, 93, 207, 0.22), transparent 60%), radial-gradient(90% 60% at 20% 90%, rgba(65, 93, 207, 0.1), transparent 55%);
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.bc-hero-we__grid {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.bc-hero-we__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow chip with star rating */
.bc-hero-we__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #cdd5ee;
  background: rgba(65, 93, 207, 0.12);
  border: 1px solid rgba(65, 93, 207, 0.35);
  border-radius: 999px;
  padding: 7px 14px 7px 12px;
  align-self: flex-start;
  max-width: max-content;
}

.bc-hero-we__eyebrow-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-size: 13px;
  line-height: 1;
}

.bc-hero-we__h1 {
  font-family: var(--bc-font-sans, "Figtree", sans-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #f4f6fd;
  margin: 22px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}

.bc-hero-we__h1-accent {
  color: #7d93f0;
}

.bc-hero-we__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #9397ad;
  max-width: 38rem;
  margin: 22px 0 0;
}

.bc-hero-we__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bc-hero-we__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s var(--bc-ease, ease), box-shadow 0.2s var(--bc-ease, ease), background-color 0.2s var(--bc-ease, ease), border-color 0.2s var(--bc-ease, ease), color 0.2s var(--bc-ease, ease);
}

.bc-hero-we__btn svg,
.bc-hero-we__btn em {
  transition: transform 0.2s var(--bc-ease, ease);
}

.bc-hero-we__btn--primary {
  background: var(--bc-primary, #415dcf);
  color: #fff;
  border: 1px solid var(--bc-primary, #415dcf);
  box-shadow: 0 10px 30px -8px rgba(65, 93, 207, 0.25);
}
.bc-hero-we__btn--primary:hover, .bc-hero-we__btn--primary:focus-visible {
  color: #fff;
  background: #3850b3;
  border-color: #3850b3;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -8px rgba(65, 93, 207, 0.45);
}
.bc-hero-we__btn--primary:hover svg, .bc-hero-we__btn--primary:focus-visible svg {
  transform: translateX(3px);
}

.bc-hero-we__btn--secondary {
  background: transparent;
  color: #d7ddf3;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.bc-hero-we__btn--secondary:hover, .bc-hero-we__btn--secondary:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Trust pill row beneath CTAs */
.bc-hero-we__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bc-hero-we__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d7ddf3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.bc-hero-we__trust-pill-check {
  color: #34d399;
  font-size: 14px;
}

/* Right column — abstract illustration */
.bc-hero-we__viz-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-hero-we__viz {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 5/4;
}

.bc-hero-we__viz-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: bc-we-float 9s ease-in-out infinite;
}

/* Subtle fade-in on hero children */
.bc-hero-we__copy > *,
.bc-hero-we__viz-wrap {
  opacity: 0;
  transform: translateY(12px);
  animation: bc-we-fade-in 0.7s var(--bc-ease, ease) 0.1s forwards;
}

.bc-hero-we__viz-wrap {
  animation-delay: 0.25s;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .bc-hero-we__h1 {
    font-size: 2.1rem;
    max-width: 100%;
  }
  .bc-hero-we__lead {
    font-size: 1rem;
  }
  .bc-hero-we__cta {
    flex-direction: column;
  }
  .bc-hero-we__btn {
    justify-content: center;
  }
  .bc-hero-we__viz {
    max-width: 100%;
  }
}
/* Accessibility — respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bc-hero-we__viz-svg,
  .bc-hero-we__copy > *,
  .bc-hero-we__viz-wrap {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* Keyframes (namespaced) */
@keyframes bc-we-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bc-we-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* AI SECTION (Redesigned) */
.ai-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Brain Element */
.ai-brain-container {
  position: relative;
  z-index: 10;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes brain-hover {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}
/* Central Brain Circle (Bento-Style Card) */
.ai-brain-circle {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  z-index: 10;
  position: relative;
  animation: brain-hover 6s ease-in-out infinite;
}

.ai-brain-circle i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--bc-primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(65, 93, 207, 0.2));
}

/* Connections SVG */
.ai-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Strictly behind the brain circle */
  pointer-events: none;
}

.connection-line {
  stroke: var(--bc-primary);
  stroke-width: 0.5px;
  stroke-dasharray: 4 4;
  opacity: 0.4;
  animation: flow-line 1s linear infinite;
}

@keyframes flow-line {
  to {
    stroke-dashoffset: -8;
  }
}
/* Floating Service Cards */
.floating-tool {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: float-tool 8s ease-in-out infinite;
  max-width: 200px;
  min-width: 160px;
}

.floating-tool:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(65, 93, 207, 0.15);
  z-index: 20;
  background: #fff;
  border-color: var(--bc-primary);
}

.floating-tool .icon-box {
  width: 32px;
  height: 32px;
  background: rgba(65, 93, 207, 0.1);
  color: var(--bc-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.floating-tool .meta {
  display: flex;
  flex-direction: column;
}

.floating-tool .label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--bc-text-dark);
  line-height: 1.3;
}

/* Positioning */
.tool-training {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.tool-automation {
  top: 20%;
  left: -5%;
  animation-delay: 2s;
}

.tool-rag {
  bottom: 15%;
  right: 0;
  animation-delay: 4s;
}

.tool-knowledge {
  bottom: 15%;
  left: 5%;
  animation-delay: 6s;
}

@keyframes float-tool {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .ai-visual {
    transform: scale(0.8);
    margin-top: 2rem;
  }
  .floating-tool {
    padding: 0.5rem 0.75rem;
  }
  .floating-tool .label {
    font-size: 0.75rem;
  }
  .tool-automation {
    left: 0;
  }
}
/* ==========================================================================
   AI-Agentur Page — v0 design translation (BS5)

   Used on: /dienstleistungen/ai-agentur-und-ai-agents
   Source: v0 chat d0fTVL1VH3N (Nov 2025)
   Adapts v0 Bootstrap-friendly components; uses existing CSS variables
   where they line up with v0 intent.
   ========================================================================== */
/* --- Featured-snippet definition block (40-55 word answer) --- */
.bc-def {
  position: relative;
  padding-left: 1.25rem;
  border-left: 4px solid var(--bc-primary);
  background: var(--bc-primary-light);
  border-radius: 0 12px 12px 0;
  padding-block: 1.5rem;
  padding-right: 1.5rem;
}

.bc-def__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--bc-primary);
  margin-bottom: 0.5rem;
}

.bc-def__lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--bc-text-dark);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.bc-def__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bc-text-body);
  margin-bottom: 0;
}

/* --- v0 Case study card (3-up, dark section) --- */
.bc-case-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bc-case-card:hover {
  border-color: rgba(65, 93, 207, 0.4);
  transform: translateY(-3px);
}

.bc-case-card__industry {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-primary);
  background: rgba(65, 93, 207, 0.14);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.bc-case-card__metric {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.bc-case-card__metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.bc-case-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.bc-case-card__body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- v0 Comparison table (3 columns: Typische AI-Agentur | Bytes | In-House) --- */
.bc-compare-v0 {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.9375rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bc-border);
}
.bc-compare-v0 th, .bc-compare-v0 td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--bc-border);
}
.bc-compare-v0 thead th {
  background: var(--bc-bg-light);
  font-weight: 700;
  color: var(--bc-text-dark);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--bc-border);
}
.bc-compare-v0 tbody tr:last-child th,
.bc-compare-v0 tbody tr:last-child td {
  border-bottom: none;
}
.bc-compare-v0 .bc-compare-v0__label {
  font-weight: 600;
  color: var(--bc-text-dark);
  background: var(--bc-bg-light);
  width: 32%;
}
.bc-compare-v0 .bc-compare-v0__col-bytes {
  background: rgba(65, 93, 207, 0.06);
  color: var(--bc-text-dark);
  font-weight: 500;
  position: relative;
}
.bc-compare-v0 .bc-compare-v0__col-bytes::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--bc-primary);
}
.bc-compare-v0 thead .bc-compare-v0__col-bytes {
  background: rgba(65, 93, 207, 0.1);
  color: var(--bc-primary);
}
.bc-compare-v0 thead .bc-compare-v0__col-bytes::before {
  top: 0;
  bottom: 0;
}

/* --- v0 3-up stat row --- */
.bc-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-block: 2rem;
}

.bc-stat {
  text-align: center;
}
.bc-stat__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bc-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.bc-stat__label {
  display: block;
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* --- v0 Trust strip (inline badges under hero) --- */
.bc-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-block: 1.25rem;
  border-block: 1px solid var(--bc-border);
  margin-top: 2rem;
}

.bc-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-text-dark);
}
.bc-trust-strip__item::before {
  content: "✓";
  color: var(--bc-primary);
  font-weight: 700;
}

/* --- v0 Service accordion item (matches the v0 dark compare look) --- */
.bc-service-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0.75rem;
}
.bc-service-row:hover {
  border-color: rgba(65, 93, 207, 0.4);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.bc-service-row__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bc-primary-light);
  color: var(--bc-primary);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.bc-service-row__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin-bottom: 0.25rem;
}
.bc-service-row__body {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  line-height: 1.55;
  margin-bottom: 0;
}
.bc-service-row__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-primary);
  text-decoration: none;
  white-space: nowrap;
}
.bc-service-row__cta:hover {
  text-decoration: underline;
}

/* --- v0 inline accent line under section eyebrow --- */
.bc-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--bc-primary);
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

/* --- Mobile refinements --- */
@media (max-width: 767.98px) {
  .bc-stat-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bc-case-card {
    padding: 1.5rem 1.25rem;
  }
  .bc-service-row {
    grid-template-columns: 48px 1fr;
  }
  .bc-service-row__cta {
    grid-column: 2;
    margin-top: 0.25rem;
  }
}
/* ==========================================================================
   Home-Page SEO Banner — KI-Agentur (v0 design, Nov 2025)
   Target keywords: ai agentur, ki agentur augsburg, ki agentur münchen,
                    ki agenten, workflow-automatisierung, mittelstand
   Goal: cross-link from / to /dienstleistungen/ai-agentur-und-ai-agents
         (which ranks #26 for "ai agentur" with 1451 imp / 0 clicks).
   ========================================================================== */
.bc-seo-banner-ki {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bc-bg-light) 0%, #eef1f9 100%);
  overflow: hidden;
}

.bc-seo-banner-ki::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(65, 93, 207, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bc-seo-banner-ki .container {
  position: relative;
  z-index: 1;
}

/* --- Eyebrow --- */
.bc-seo-banner-ki__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--bc-primary);
  background: var(--bc-primary-light);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* --- Title --- */
.bc-seo-banner-ki__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bc-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.bc-seo-banner-ki__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--bc-primary) 0%, #7e93e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 991.98px) {
  .bc-seo-banner-ki__title {
    font-size: 2rem;
  }
}
@media (max-width: 575.98px) {
  .bc-seo-banner-ki__title {
    font-size: 1.625rem;
  }
}
/* --- Body copy --- */
.bc-seo-banner-ki__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bc-text-body);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

/* --- Feature pills (icon + label) --- */
.bc-seo-banner-ki__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.bc-seo-banner-ki__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--bc-border);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-text-dark);
  transition: all 0.25s var(--bc-ease);
}

.bc-seo-banner-ki__pill i {
  font-size: 1.25rem;
  color: var(--bc-primary);
}

.bc-seo-banner-ki__pill:hover {
  border-color: var(--bc-primary);
  background: var(--bc-primary-light);
  transform: translateY(-2px);
}

/* --- CTA row --- */
.bc-seo-banner-ki__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.bc-seo-banner-ki__secondary {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s var(--bc-ease);
}

.bc-seo-banner-ki__secondary:hover {
  gap: 0.7rem;
  color: var(--bc-primary);
  text-decoration: underline;
}

/* --- Trust line --- */
.bc-seo-banner-ki__trust {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bc-border);
  letter-spacing: 0.02em;
}

.bc-seo-banner-ki__trust i {
  color: var(--bc-primary);
  margin-right: 0.3rem;
}

/* --- Neural network illustration --- */
.bc-seo-banner-ki__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.bc-seo-banner-ki__neural {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(65, 93, 207, 0.12));
}

@media (max-width: 991.98px) {
  .bc-seo-banner-ki__visual {
    min-height: 280px;
    margin-bottom: 1.5rem;
  }
}
@keyframes bc-neural-pulse {
  0% {
    r: 10px;
    opacity: 0.7;
  }
  100% {
    r: 28px;
    opacity: 0;
  }
}
@keyframes bc-neural-glow {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}
.bc-seo-banner-ki__pulse-1 {
  animation: bc-neural-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bc-seo-banner-ki__pulse-2 {
  animation: bc-neural-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) 0.7s infinite;
}

.bc-seo-banner-ki__glow {
  animation: bc-neural-glow 3s ease-in-out infinite;
}

/* --- Mobile reorder: visual on top, text below --- */
@media (max-width: 991.98px) {
  .bc-seo-banner-ki__visual-col {
    order: -1;
  }
}
/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .bc-seo-banner-ki__pulse-1,
  .bc-seo-banner-ki__pulse-2,
  .bc-seo-banner-ki__glow {
    animation: none;
  }
}
/* ==========================================================================
   Sylius Landing Page — v0 design translation (BS5)

   Used on: /dienstleistungen/ecommerce/high-performance-shops-mit-sylius
   Source: v0 chat vhP0W74kDvF (Nov 2025)

   Naming convention follows the v0 spec (.bc-hero, .bc-trust, .bc-snippet,
   .bc-services, .bc-card, .bc-branchen, .bc-comparison, .bc-proof,
   .bc-pricing, .bc-warum, .bc-faq, .bc-cta-final, .bc-breadcrumb).

   Tokens: re-uses --bc-primary / --bc-bg-light / --bc-border from
   _variables.scss. Adds section-specific tokens locally (dark canvas,
   spacing scale, card radius).
   ========================================================================== */
.bc-hero,
.bc-trust,
.bc-snippet,
.bc-services,
.bc-branchen,
.bc-comparison,
.bc-proof,
.bc-pricing,
.bc-warum,
.bc-faq,
.bc-cta-final,
.bc-breadcrumb {
  font-family: var(--bc-font-sans);
  color: var(--bc-text-body);
  line-height: 1.65;
}
.bc-hero *,
.bc-hero *::before,
.bc-hero *::after,
.bc-trust *,
.bc-trust *::before,
.bc-trust *::after,
.bc-snippet *,
.bc-snippet *::before,
.bc-snippet *::after,
.bc-services *,
.bc-services *::before,
.bc-services *::after,
.bc-branchen *,
.bc-branchen *::before,
.bc-branchen *::after,
.bc-comparison *,
.bc-comparison *::before,
.bc-comparison *::after,
.bc-proof *,
.bc-proof *::before,
.bc-proof *::after,
.bc-pricing *,
.bc-pricing *::before,
.bc-pricing *::after,
.bc-warum *,
.bc-warum *::before,
.bc-warum *::after,
.bc-faq *,
.bc-faq *::before,
.bc-faq *::after,
.bc-cta-final *,
.bc-cta-final *::before,
.bc-cta-final *::after,
.bc-breadcrumb *,
.bc-breadcrumb *::before,
.bc-breadcrumb *::after {
  box-sizing: border-box;
}

.bc-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-primary);
  margin-bottom: 0.75rem;
}
.bc-eyebrow--light {
  color: rgba(255, 255, 255, 0.65);
}

.bc-section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--bc-text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.bc-section-desc {
  font-size: 1.0625rem;
  color: var(--bc-text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.bc-section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bc-link {
  color: var(--bc-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bc-link:hover {
  opacity: 0.8;
}

.bc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-primary);
  color: #ffffff !important;
  border: 2px solid var(--bc-primary);
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--bc-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.bc-btn-primary:hover, .bc-btn-primary:focus-visible {
  background: #324cb3;
  border-color: #324cb3;
  box-shadow: 0 4px 16px rgba(65, 93, 207, 0.35);
  transform: translateY(-1px);
  outline: none;
}
.bc-btn-primary--lg {
  padding: 0.9375rem 2.5rem;
  font-size: 1.0625rem;
}

.bc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--bc-text-dark) !important;
  border: 2px solid var(--bc-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--bc-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.bc-btn-ghost:hover, .bc-btn-ghost:focus-visible {
  border-color: var(--bc-primary);
  color: var(--bc-primary) !important;
  outline: none;
}

.bc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--bc-primary) !important;
  border: 2px solid var(--bc-primary);
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--bc-font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bc-btn-outline:hover, .bc-btn-outline:focus-visible {
  background: var(--bc-primary);
  color: #ffffff !important;
  outline: none;
}

.bc-breadcrumb {
  background: var(--bc-bg-light);
  border-bottom: 1px solid var(--bc-border);
  padding: 0.75rem 0;
}
.bc-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
}
.bc-breadcrumb__list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--bc-border);
}
.bc-breadcrumb a {
  color: var(--bc-text-muted);
  text-decoration: none;
}
.bc-breadcrumb a:hover {
  color: var(--bc-primary);
}

.bc-hero {
  background: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-hero > .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.bc-hero__inner {
  flex: 1 1 min(480px, 100%);
  min-width: 0;
}
.bc-hero__heading {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--bc-text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}
.bc-hero__subhead {
  font-size: 1.0625rem;
  color: var(--bc-text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.bc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.bc-hero__visual {
  flex: 1 1 320px;
  max-width: 420px;
}
@media (max-width: 767.98px) {
  .bc-hero__visual {
    display: none;
  }
}
.bc-hero__grid-card {
  background: var(--bc-bg-light);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.bc-hero__grid-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.bc-hero__grid-dots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.bc-hero__dot {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bc-border);
  transition: background 0.4s, transform 0.4s;
}
.bc-hero__dot--1, .bc-hero__dot--2, .bc-hero__dot--5, .bc-hero__dot--6, .bc-hero__dot--9, .bc-hero__dot--10 {
  background: rgba(65, 93, 207, 0.2);
}
.bc-hero__dot--1, .bc-hero__dot--6, .bc-hero__dot--9 {
  background: var(--bc-primary);
  transform: scale(1.15);
}
.bc-hero__grid-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.bc-hero__stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bc-text-dark);
}
.bc-hero__stat-desc {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
}

.bc-trust {
  background: var(--bc-bg-light);
  border-top: 1px solid var(--bc-border);
  border-bottom: 1px solid var(--bc-border);
  padding: 2rem 0;
}
.bc-trust__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
.bc-trust__divider {
  width: 1px;
  height: 2rem;
  background: var(--bc-border);
}
@media (max-width: 575.98px) {
  .bc-trust__divider {
    display: none;
  }
}
.bc-trust__icon {
  color: var(--bc-primary);
  flex-shrink: 0;
}
.bc-trust__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  display: block;
}
.bc-trust__label {
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
  display: block;
}

.bc-snippet {
  background: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bc-snippet__inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 860px;
}
.bc-snippet__accent {
  flex-shrink: 0;
  width: 4px;
  min-height: 160px;
  border-radius: 4px;
  background: var(--bc-primary);
  margin-top: 0.25rem;
}
.bc-snippet__content {
  flex: 1;
}
.bc-snippet__lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bc-text-dark);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.bc-snippet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.bc-snippet__tags li {
  background: var(--bc-primary-light);
  color: var(--bc-primary);
  border: 1px solid rgba(65, 93, 207, 0.2);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
}

.bc-services {
  background: var(--bc-bg-light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bc-card {
  background: #ffffff;
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}
.bc-card:hover {
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.07);
  transform: translateY(-2px);
  border-color: rgba(65, 93, 207, 0.3);
}
.bc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bc-primary-light);
  border-radius: 0.5rem;
  color: var(--bc-primary);
  margin-bottom: 1.25rem;
}
.bc-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin-bottom: 0.625rem;
  margin-top: 0;
}
.bc-card__text {
  font-size: 0.9375rem;
  color: var(--bc-text-muted);
  margin: 0;
}

.bc-branchen {
  background: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bc-kpi-card {
  background: var(--bc-bg-light);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  border-top: 4px solid var(--bc-primary);
  padding: 1.75rem 1.5rem;
  height: 100%;
}
.bc-kpi-card__sector {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bc-primary);
  margin: 0 0 0.5rem;
}
.bc-kpi-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  line-height: 1;
  margin: 0 0 0.25rem;
}
.bc-kpi-card__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-text-body);
  margin: 0 0 0.75rem;
}
.bc-kpi-card__desc {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin: 0;
}

.bc-comparison {
  background: var(--bc-bg-light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
  border: 1px solid var(--bc-border);
  box-shadow: 0 2px 16px rgba(17, 24, 39, 0.05);
}
.bc-comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #ffffff;
  min-width: 620px;
}
.bc-comparison__table thead tr {
  background: #111827;
}
.bc-comparison__th {
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.bc-comparison__th--criterion {
  width: 26%;
  color: rgba(255, 255, 255, 0.55);
}
.bc-comparison__th--sylius {
  color: #ffffff;
  background: var(--bc-primary);
  position: relative;
  text-align: left;
}
.bc-comparison__sylius-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.6rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.bc-comparison__td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bc-border);
  vertical-align: top;
  color: var(--bc-text-body);
}
tr:last-child .bc-comparison__td {
  border-bottom: 0;
}
.bc-comparison__td--criterion {
  font-weight: 600;
  color: var(--bc-text-dark);
}
.bc-comparison__td--sylius {
  background: var(--bc-primary-light);
  color: var(--bc-text-dark);
  font-weight: 500;
}
.bc-comparison__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bc-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}
.bc-comparison__footnote {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  text-align: center;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.bc-proof {
  background: #111827;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-proof__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.bc-proof__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.bc-proof__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: bc-pulse 2s ease-in-out infinite;
}
.bc-proof__heading {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.bc-proof__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.bc-proof__kpis {
  text-align: center;
}
.bc-proof__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bc-proof__kpi-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.bc-proof__kpi-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bc-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bc-proof__kpi-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 22ch;
  text-align: center;
}

@keyframes bc-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.bc-pricing {
  background: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bc-pricing-card {
  background: var(--bc-bg-light);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bc-pricing-card--featured {
  background: #ffffff;
  border-color: var(--bc-primary);
  box-shadow: 0 8px 40px rgba(65, 93, 207, 0.15);
}
.bc-pricing-card--featured .bc-pricing-card__tier {
  color: var(--bc-primary);
}
.bc-pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--bc-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.bc-pricing-card__tier {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-text-muted);
  margin: 0 0 0.5rem;
}
.bc-pricing-card__price {
  font-size: 1.75rem;
  color: var(--bc-text-dark);
  margin: 0 0 0.375rem;
  line-height: 1.1;
}
.bc-pricing-card__price strong {
  font-weight: 800;
}
.bc-pricing-card__scope {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin: 0 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bc-border);
}
.bc-pricing-card__features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.bc-pricing-card__features li {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  padding: 0.5rem 0;
  border-bottom: 1px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.bc-pricing-card__features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-primary);
  flex-shrink: 0;
}

.bc-warum {
  background: var(--bc-bg-light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-warum__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  counter-reset: warum-counter;
}
.bc-warum__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--bc-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bc-warum__item:hover {
  border-color: rgba(65, 93, 207, 0.3);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.06);
}
.bc-warum__item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin-bottom: 0.375rem;
}
.bc-warum__item p {
  font-size: 0.9375rem;
  color: var(--bc-text-muted);
  margin: 0;
}
.bc-warum__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bc-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  opacity: 0.9;
}

.bc-faq {
  background: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-faq__accordion {
  max-width: 760px;
  margin: 0 auto;
}
.bc-faq__item {
  border-bottom: 1px solid var(--bc-border);
}
.bc-faq__item:first-child {
  border-top: 1px solid var(--bc-border);
}
.bc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--bc-font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--bc-text-dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.bc-faq__question:hover {
  color: var(--bc-primary);
}
.bc-faq__question[aria-expanded=true] {
  color: var(--bc-primary);
}
.bc-faq__question[aria-expanded=true] .bc-faq__icon::after {
  transform: rotate(45deg);
}
.bc-faq__question[aria-expanded=true] .bc-faq__icon::before {
  opacity: 0;
}
.bc-faq__question:focus-visible {
  outline: 2px solid var(--bc-primary);
  outline-offset: 2px;
  border-radius: 2px;
}
.bc-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.bc-faq__icon::before, .bc-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bc-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.bc-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.bc-faq__answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--bc-text-muted);
  animation: bc-fade-in 0.2s ease;
  overflow: hidden;
}
.bc-faq__answer p:last-child {
  margin-bottom: 0;
}

@keyframes bc-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bc-faq__answer:not([hidden]) {
  display: block;
}

.bc-cta-final {
  background: #111827;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-cta-final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.bc-cta-final__heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.bc-cta-final__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.bc-cta-final__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.bc-plus {
  background: #ffffff;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bc-plus__intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .bc-plus__intro {
    flex-direction: row;
    align-items: flex-start;
  }
}
.bc-plus__intro-text {
  flex: 1;
}
.bc-plus__intro-text .bc-section-desc strong {
  color: var(--bc-text-dark);
}
.bc-plus__license-callout {
  flex: 0 0 100%;
  background: var(--bc-primary-light);
  border-left: 4px solid var(--bc-primary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem 1.75rem;
  color: var(--bc-text-dark);
}
@media (min-width: 992px) {
  .bc-plus__license-callout {
    flex: 0 0 38%;
  }
}
.bc-plus__license-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-primary);
  margin: 0 0 0.75rem;
}
.bc-plus__license-note {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(65, 93, 207, 0.25);
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
  line-height: 1.5;
}
.bc-plus__features-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}
.bc-plus__features-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin: 0;
}
.bc-plus__grid {
  margin-bottom: 3rem;
}
.bc-plus__versions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .bc-plus__versions {
    grid-template-columns: 1fr 1fr;
  }
}
.bc-plus__closing {
  text-align: center;
  font-size: 1rem;
  color: var(--bc-text-body);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bc-border);
}

.bc-plus-card {
  background: var(--bc-bg-light);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bc-plus-card:hover {
  border-color: rgba(65, 93, 207, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}
.bc-plus-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bc-primary-light);
  color: var(--bc-primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.bc-plus-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.bc-plus-card__text {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}
.bc-plus-card__tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-primary);
  background: rgba(65, 93, 207, 0.12);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.bc-plus-version {
  background: var(--bc-bg-light);
  border: 1px solid var(--bc-border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.bc-plus-version--plus {
  background: #ffffff;
  border-color: var(--bc-primary);
  box-shadow: 0 8px 32px rgba(65, 93, 207, 0.12);
  position: relative;
}
.bc-plus-version--plus .bc-plus-version__name {
  color: var(--bc-primary);
}
.bc-plus-version__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--bc-text-dark);
  margin: 0 0 0.25rem;
}
.bc-plus-version__name span {
  font-weight: 400;
  color: var(--bc-text-muted);
}
.bc-plus-version__name strong {
  font-weight: 800;
}
.bc-plus-version__license {
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bc-border);
}
.bc-plus-version__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.bc-plus-version__bullets li {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.bc-plus-version__bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-primary);
  flex-shrink: 0;
}
.bc-plus-version__suitable {
  font-size: 0.8125rem;
  color: var(--bc-text-muted);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px dashed var(--bc-border);
}

/* MANAGED IT (BENTO GRID) */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-span-2 {
    grid-column: span 2;
  }
  .bento-span-row-2 {
    grid-row: span 2;
  }
  .bento-span-3 {
    grid-column: span 3;
  }
}
/* Terminal */
.terminal-window {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 1.25rem;
  font-family: "JetBrains Mono", "Fira Code", var(--bc-font-mono);
  color: #f0f0f0;
  font-size: 0.8rem;
  height: 100%;
  min-height: 220px;
  max-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.terminal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: monospace;
}

.cmd-line {
  display: flex;
  gap: 0.5rem;
  color: #a9b7c6;
  line-height: 1.4;
}

.cmd-prompt {
  color: #98c379;
}

.cmd-text {
  color: #e06c75;
}

.cmd-output {
  color: #abb2bf;
  margin-bottom: 0.5rem;
  display: block;
}

.typing-cursor::after {
  content: "▋";
  animation: blink 1s infinite;
  color: #528bff;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Support Chat */
.support-chat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  justify-content: flex-end;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  max-width: 90%;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  animation: bubble-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bubble-user {
  background: var(--bc-bg-light);
  color: var(--bc-text-body);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.bubble-agent {
  background: var(--bc-primary);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

@keyframes bubble-pop {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Micro Charts */
.chart-container {
  position: relative;
  height: 60px;
  width: 100%;
  margin-top: auto;
  border-bottom: 1px solid var(--bc-border);
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-path {
  fill: none;
  stroke: var(--bc-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.chart-area {
  fill: var(--bc-primary-light);
  stroke: none;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bc-text-dark);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-trend {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bc-primary-light);
  color: var(--bc-primary);
}

/* Scalability Visual */
.scale-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
  margin-top: auto;
  padding-bottom: 5px;
}

.scale-bar {
  flex: 1;
  background: var(--bc-primary);
  opacity: 0.3;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease, opacity 0.5s ease;
  will-change: height, opacity;
}

.scale-bar.active {
  opacity: 1;
}

.scale-bar:hover {
  opacity: 0.8;
}

/* ==========================================================================
   IT-Dienstleister München Page — v0 "München Service Atlas" translation (BS5)

   Used on: /thema/it-dienstleister-muenchen
   Source: v0 chat eqyHtWQeWb5 (Jun 2026)
   Class prefix: ms- (München Service)

   Design tokens (from v0 SCSS):
     $primary: #415dcf
     $dark-text: #111827
     $body-text: #374151
     $light-bg: #f5f6fa
   ========================================================================== */
.ms-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--bc-primary);
  background: var(--bc-primary-light);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.ms-h1 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bc-text-dark);
  margin-bottom: 1.25rem;
}

.ms-h2 {
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--bc-text-dark);
  margin-bottom: 1rem;
}

.ms-sub {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--bc-text-body);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.ms-btn--primary {
  background: var(--bc-primary);
  color: #fff;
}
.ms-btn--primary:hover {
  background: #334bb9;
  color: #fff;
  transform: translateY(-1px);
}

.ms-btn--ghost {
  background: transparent;
  color: var(--bc-text-dark);
  border: 1.5px solid var(--bc-border);
}
.ms-btn--ghost:hover {
  border-color: var(--bc-primary);
  color: var(--bc-primary);
}

/* --- HERO --- */
.ms-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--bc-bg-light) 0%, #ffffff 100%);
}

.ms-hero__title {
  margin-top: 0.5rem;
}

.ms-hero__sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--bc-text-body);
  margin-bottom: 2rem;
}

.ms-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.ms-hero__visual {
  position: relative;
  aspect-ratio: 600/220;
  background: linear-gradient(180deg, #e9ecf6 0%, #f5f6fa 100%);
  border-radius: 16px;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--bc-border);
}

.ms-skyline {
  width: 100%;
  height: 100%;
  display: block;
}

.ms-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transform: translate(-50%, -50%);
}

.ms-pin__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bc-primary);
  box-shadow: 0 0 0 4px rgba(65, 93, 207, 0.2);
  animation: ms-pin-pulse 2.4s ease-in-out infinite;
}

@keyframes ms-pin-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(65, 93, 207, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(65, 93, 207, 0.05);
  }
}
.ms-pin__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-text-dark);
  background: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--bc-border);
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.05);
  white-space: nowrap;
}

/* --- TRUST STRIP --- */
.ms-trust {
  background: #fff;
  border-top: 1px solid var(--bc-border);
  border-bottom: 1px solid var(--bc-border);
  padding-block: 1.25rem;
}

.ms-trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.ms-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-text-dark);
}
.ms-trust__item em {
  font-size: 1.25rem;
  color: var(--bc-primary);
}

/* --- SNIPPET --- */
.ms-snippet__lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--bc-text-body);
  margin-bottom: 0;
}
.ms-snippet__lead strong {
  color: var(--bc-text-dark);
}

.ms-snippet__card {
  background: var(--bc-primary-light);
  border: 1px solid rgba(65, 93, 207, 0.18);
  border-radius: 14px;
  padding: 1.75rem;
}
.ms-snippet__card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bc-primary);
  margin-bottom: 1rem;
}
.ms-snippet__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}
.ms-snippet__card li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bc-text-dark);
  background: #fff;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--bc-border);
}

/* --- SERVICE MAP (district chips) --- */
.ms-servicemap__ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.ms-district {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ms-district:hover {
  border-color: var(--bc-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.ms-district__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.ms-district__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text-dark);
}

.ms-district__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-primary);
  background: var(--bc-primary-light);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.ms-district__cap {
  font-size: 0.875rem;
  color: var(--bc-text-body);
  line-height: 1.45;
}

/* --- BRANCHEN (case studies) --- */
.ms-case {
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.2s ease;
}
.ms-case:hover {
  border-color: var(--bc-primary);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.ms-case__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-primary);
  background: var(--bc-primary-light);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ms-case__client {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin-bottom: 0.75rem;
}

.ms-case__outcome {
  font-size: 1rem;
  color: var(--bc-text-body);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.ms-case__strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--bc-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.ms-case__story {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --- COVERAGE RADAR --- */
.ms-radar-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.ms-radar {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}

.ms-radar__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(65, 93, 207, 0.35);
  border-radius: 50%;
}

.ms-radar__ring--1 {
  width: 100%;
  height: 100%;
}

.ms-radar__ring--2 {
  width: 66%;
  height: 66%;
}

.ms-radar__ring--3 {
  width: 33%;
  height: 33%;
  border-style: solid;
  border-color: rgba(65, 93, 207, 0.5);
}

.ms-radar__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bc-primary);
  box-shadow: 0 0 0 6px rgba(65, 93, 207, 0.15);
  z-index: 3;
}

.ms-radar__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bc-primary);
  background: #fff;
  padding: 0 0.35rem;
  z-index: 4;
}

.ms-radar__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bc-text-dark);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ms-radar__dot::after {
  content: attr(data-name);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--bc-text-body);
  white-space: nowrap;
}

.ms-table-scroll {
  overflow-x: auto;
}

.ms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--bc-border);
}
.ms-table th, .ms-table td {
  padding: 0.875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--bc-border);
  vertical-align: middle;
}
.ms-table thead th {
  background: var(--bc-bg-light);
  font-weight: 700;
  color: var(--bc-text-dark);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ms-table tbody tr:last-child td {
  border-bottom: none;
}
.ms-table tbody tr:hover td {
  background: var(--bc-primary-light);
}

/* --- SLA TIERS --- */
.ms-tier {
  position: relative;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.ms-tier:hover {
  border-color: var(--bc-primary);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.ms-tier--featured {
  border-color: var(--bc-primary);
  border-width: 2px;
  box-shadow: 0 16px 36px rgba(65, 93, 207, 0.15);
  transform: translateY(-4px);
}
.ms-tier--featured:hover {
  transform: translateY(-6px);
}

.ms-tier__chip {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bc-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.ms-tier__name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-primary);
  margin-bottom: 0.75rem;
}

.ms-tier__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bc-text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.ms-tier__price small {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bc-text-muted);
}

.ms-tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}
.ms-tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  padding-block: 0.45rem;
  border-bottom: 1px solid var(--bc-border);
}
.ms-tier__list li:last-child {
  border-bottom: none;
}
.ms-tier__list li em {
  color: var(--bc-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* --- PROOF (dark case study) --- */
.ms-proof__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
}

.ms-proof__client {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.ms-proof__kpi {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--bc-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.ms-proof__kpi-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.ms-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(65, 93, 207, 0.18);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(65, 93, 207, 0.4);
}
.ms-proof__badge em {
  font-size: 1rem;
}

.ms-proof__narrative {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ms-proof__quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #fff;
  padding-left: 1.25rem;
  border-left: 3px solid var(--bc-primary);
  margin: 0;
}

/* --- WARUM BYTES --- */
.ms-reason {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  height: 100%;
}
.ms-reason:hover {
  border-color: var(--bc-primary);
  transform: translateY(-2px);
}
.ms-reason h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  margin-bottom: 0.4rem;
}
.ms-reason p {
  font-size: 0.9375rem;
  color: var(--bc-text-body);
  line-height: 1.55;
  margin-bottom: 0;
}

.ms-reason__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bc-primary-light);
  color: var(--bc-primary);
  display: grid;
  place-items: center;
  font-size: 1.375rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
  .ms-radar-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ms-tier--featured {
    transform: none;
    order: -1;
  }
}
@media (max-width: 767.98px) {
  .ms-hero__visual {
    aspect-ratio: 600/320;
  }
  .ms-pin__label {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }
  .ms-servicemap__ribbon {
    grid-template-columns: 1fr;
  }
  .ms-trust__row {
    gap: 1rem;
  }
}
/* CYBERSECURITY THREAT MONITOR */
.threat-monitor-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(65, 93, 207, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.radar-circle {
  position: absolute;
  border: 1px solid rgba(65, 93, 207, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(65, 93, 207, 0.05);
}

.radar-1 {
  width: 30%;
  height: 30%;
}

.radar-2 {
  width: 60%;
  height: 60%;
}

.radar-3 {
  width: 90%;
  height: 90%;
  border-color: rgba(65, 93, 207, 0.1);
}

.radar-scan {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(65, 93, 207, 0.15), transparent 45deg);
  border-radius: 50%;
  animation: radar-spin 4s linear infinite;
  mask-image: radial-gradient(circle, transparent 10%, black 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 10%, black 100%);
}

.security-shield-center {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(65, 93, 207, 0.15);
  border: 1px solid rgba(65, 93, 207, 0.2);
  position: relative;
}

.shield-icon {
  font-size: 3rem;
  color: var(--bc-primary);
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 4px 6px rgba(65, 93, 207, 0.3));
}

.status-badge {
  position: absolute;
  bottom: -15px;
  background: var(--bc-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(65, 93, 207, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.orbit-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: var(--bc-text-muted);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  animation: float-orbit 6s ease-in-out infinite;
}

.orbit-1 {
  top: 15%;
  right: 20%;
  animation-delay: 0s;
}

.orbit-2 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.orbit-3 {
  top: 40%;
  left: 10%;
  animation-delay: 4s;
}

.cyber-card {
  transition: all 0.3s ease;
  /* Border inherited from .bento-card */
}

.cyber-card:hover {
  border-color: var(--bc-primary);
  background: rgba(65, 93, 207, 0.02);
}

.cyber-card:hover .card-icon {
  transform: scale(1.1);
}

@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes float-orbit {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* M365 Interactive Stack - Wide Horizontal Layout */
.m365-stack {
  position: relative;
  min-height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  overflow: visible;
  padding: 1rem;
}

.m365-image-wrapper {
  position: absolute;
  width: 45%;
  /* Smaller individual width to allow spreading */
  max-width: 380px;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform-origin: center bottom;
}

@media (max-width: 991px) {
  .m365-image-wrapper {
    width: 70%;
  }
  /* Larger on mobile */
  .m365-stack {
    min-height: 350px;
  }
}
.m365-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Base state: Stacked with slight offset */
.stack-01 {
  transform: translate(calc(0px + var(--parallax-x, 0px)), 10px) scale(0.9);
  z-index: 1;
  opacity: 0.9;
}

.stack-02 {
  transform: translate(calc(0px + var(--parallax-x, 0px)), 5px) scale(0.95);
  z-index: 2;
  opacity: 0.95;
}

.stack-03 {
  transform: translate(calc(0px + var(--parallax-x, 0px)), 0px) scale(1);
  z-index: 3;
}

.stack-04 {
  transform: translate(calc(0px + var(--parallax-x, 0px)), -5px) scale(1.05);
  z-index: 4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Hover state: Wide Horizontal Spread (Cover Flow style) */
.m365-stack:hover .stack-01 {
  transform: translate(calc(-35% + var(--parallax-x, 0px)), 0px) rotate(-8deg) scale(0.95);
  z-index: 4;
}

.m365-stack:hover .stack-02 {
  transform: translate(calc(-12% + var(--parallax-x, 0px)), -10px) rotate(-3deg) scale(1);
  z-index: 5;
}

.m365-stack:hover .stack-03 {
  transform: translate(calc(12% + var(--parallax-x, 0px)), -10px) rotate(3deg) scale(1);
  z-index: 5;
}

.m365-stack:hover .stack-04 {
  transform: translate(calc(35% + var(--parallax-x, 0px)), 0px) rotate(8deg) scale(0.95);
  z-index: 4;
}

/* Mobile Hover: Vertical stack or less spread */
@media (max-width: 991px) {
  .m365-stack:hover .stack-01 {
    transform: translate(-20px, -40px) rotate(-5deg);
    z-index: 1;
  }
  .m365-stack:hover .stack-02 {
    transform: translate(-10px, -20px) rotate(-2deg);
    z-index: 2;
  }
  .m365-stack:hover .stack-03 {
    transform: translate(10px, 20px) rotate(2deg);
    z-index: 3;
  }
  .m365-stack:hover .stack-04 {
    transform: translate(20px, 40px) rotate(5deg);
    z-index: 4;
  }
}
/* M365 Feature Cards */
.m365-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.m365-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.m365-feature-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.m365-feature-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Brand Specifics */
.card-exchange {
  border-left-color: #0078D4;
}

.card-exchange .card-icon {
  color: #0078D4;
}

.card-exchange:hover {
  background: linear-gradient(145deg, #fff, #f3f9fd);
}

.card-teams {
  border-left-color: #6264A7;
}

.card-teams .card-icon {
  color: #6264A7;
}

.card-teams:hover {
  background: linear-gradient(145deg, #fff, #f5f5fc);
}

.card-sharepoint {
  border-left-color: #03787C;
}

.card-sharepoint .card-icon {
  color: #03787C;
}

.card-sharepoint:hover {
  background: linear-gradient(145deg, #fff, #eef9f9);
}

/* M365 Bento Specifics */
.m365-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 991px) {
  .m365-grid {
    grid-template-columns: 1fr;
  }
  .m365-stack {
    height: 300px;
  }
}
/* BLOG SECTION */
.blog-section {
  padding: 8rem 0;
}

.blog-card {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bc-bg-white);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  transition: all 0.4s var(--bc-ease);
  text-decoration: none;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--bc-primary);
  box-shadow: 0 12px 30px rgba(65, 93, 207, 0.1);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bc-bg-light);
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--bc-ease);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bc-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--bc-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-primary);
  margin-top: auto;
}

.blog-card-footer i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-footer i {
  transform: translateX(4px);
}

/* Swiper pagination needs a larger click/touch target for a11y (24x24 minimum) */
.blog-section .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  position: relative;
  background: transparent;
  opacity: 1;
}

.blog-section .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-text-muted);
  transition: background 0.2s ease;
}

.blog-section .swiper-pagination-bullet-active::before {
  background: var(--bc-primary);
}

/* CTA SECTION */
.cta-section {
  background: var(--bc-primary);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: #fff;
}

/* FOOTER */
.footer-section {
  background: var(--bc-bg-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--bc-border);
}

.footer-section h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--bc-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--bc-primary);
}

.footer-bottom {
  border-top: 1px solid var(--bc-border);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--bc-text-muted);
  font-size: 0.875rem;
}
