/* ════ RESET & TOKENS ════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #26957C; --primary-hover: #1f7a65; --primary-light: #80AFA8;
  --primary-glow: rgba(38,149,124,0.12);
  --bg: #0d0d0d; --bg-2: #111111; --bg-3: #161616; --bg-card: #1a1a1a;
  --gradient-hero: linear-gradient(160deg, #0d0d0d 0%, #0a1a15 55%, #0d0d0d 100%);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(38,149,124,0.45);
  --text: #ffffff; --text-muted: rgba(255,255,255,0.5); --text-subtle: rgba(255,255,255,0.25);
  --font: 'Ubuntu', sans-serif;
  --radius: 6px; --radius-lg: 12px;
  --transition: all 0.25s ease;
  --max-w: 1280px;
  --max-w-prose: 720px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* SVG fill-rule fix für CELLONIC O */
.nav-wordmark path,
.essentials-wordmark path,
.footer-brand svg path {
  fill-rule: evenodd;
}

/* ════ BUTTONS ════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.875rem 1.75rem; font-family: var(--font); font-size: 0.9rem; font-weight: 500; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(38,149,124,0.25); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }

/* ════ HEADER ════ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,13,13,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.logo { display: flex; align-items: center; }
.logo-symbol { height: 38px; width: auto; flex-shrink: 0; display: block; }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-wordmark-link { display: flex; align-items: center; color: rgba(255,255,255,0.75); transition: var(--transition); }
.nav-wordmark-link:hover { color: var(--primary); }
.nav-wordmark { height: 10px; width: auto; flex-shrink: 0; display: block; }
.essentials-wordmark { height: 11px; width: auto; flex-shrink: 0; display: block; }
.nav a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.nav a:hover { color: var(--primary); }
/* ── PRODUKTE-DROPDOWN ── */
.nav-item.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { transition: transform 0.25s ease; opacity: 0.65; flex-shrink: 0; }
.nav-item.has-dropdown:hover .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-dd { position: absolute; top: 100%; left: 50%; min-width: 250px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.55rem; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(2px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 120; }
.nav-dd::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item.has-dropdown:hover .nav-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(9px); }
.nav-dd-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-subtle); padding: 0.35rem 0.7rem 0.55rem; }
.nav-dd-item { display: flex; flex-direction: column; gap: 2px; padding: 0.55rem 0.7rem; border-radius: var(--radius); text-transform: none; letter-spacing: normal; transition: var(--transition); }
.nav-dd-item:hover { background: var(--primary-glow); }
.nav-dd-title { font-size: 0.86rem; font-weight: 500; color: #fff; text-transform: none; letter-spacing: normal; transition: var(--transition); }
.nav-dd-item:hover .nav-dd-title { color: var(--primary); }
.nav-dd-sub { font-size: 0.72rem; color: var(--text-muted); text-transform: none; letter-spacing: normal; }
.nav-dd-item:hover .nav-dd-sub { color: var(--text-muted); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { position: relative; display: flex; align-items: center; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px 2px; color: rgba(255,255,255,0.6); font-family: inherit; }
.lang-current .nav-caret { transition: transform 0.25s ease; opacity: 0.6; }
.lang-switcher:hover .nav-caret, .lang-switcher.open .nav-caret { transform: rotate(180deg); opacity: 1; }
.flag { display: inline-flex; width: 20px; height: 14px; border-radius: 3px; overflow: hidden; line-height: 0; flex-shrink: 0; }
.flag svg { display: block; width: 20px; height: 14px; }
.lang-dd { position: absolute; top: 100%; right: 0; display: flex; flex-direction: column; gap: 2px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(2px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; z-index: 130; }
.lang-switcher:hover .lang-dd, .lang-switcher:focus-within .lang-dd, .lang-switcher.open .lang-dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(8px); }
.lang-opt { display: flex; align-items: center; justify-content: center; padding: 6px 14px; border-radius: var(--radius); text-decoration: none; opacity: 0.55; transition: var(--transition); }
.lang-opt .flag { width: 26px; height: 18px; }
.lang-opt:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.lang-opt.active { opacity: 1; }
.essentials-btn { display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(0,172,144,0.35); background: rgba(0,172,144,0.08); transition: all 0.2s ease; }
.essentials-btn:hover { border-color: rgba(0,172,144,0.7); background: rgba(0,172,144,0.15); }
.essentials-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #00ac90; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ════ PAGE-HERO (mit Hintergrundbild) ════ */
.page-hero { position: relative; padding: calc(72px + 2.5rem) 0 6rem; background: var(--gradient-hero); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.58) 100%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(38,149,124,0.4), transparent); z-index: 3; }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }

/* ════ INLINE-BILD im Story-Block ════ */
.story-inline-image { float: right; width: 240px; margin: 0.25rem 0 1rem 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.story-inline-image img { width: 100%; height: auto; display: block; }

/* ════ PRODUCT-SHOWCASE – Banner vor Timeline ════ */
.product-showcase { position: relative; overflow: hidden; }
.product-showcase img { width: 100%; height: auto; display: block; }
.product-showcase .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem; background: linear-gradient(180deg, transparent, rgba(13,13,13,0.85)); }
.product-showcase .caption .eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-light); display: block; margin-bottom: 0.3rem; }
.product-showcase .caption p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 640px; }

/* ════ STATS BAR ════ */
.stats-bar { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item { padding: 2.25rem 1rem; text-align: center; border-right: 1px solid var(--border); transition: var(--transition); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(38,149,124,0.05); }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--primary-light); line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ════ SECTIONS ════ */
.section { padding: 5rem 0; border-top: 1px solid var(--border); }
.section.alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ════ STORY TEXT (2-column) ════ */
.story-text { max-width: 720px; margin: 0 auto; }
.story-text p { color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 1.25rem; font-size: 1rem; }
.story-text p:last-child { margin-bottom: 0; }
.story-text p strong { color: #fff; font-weight: 500; }
.story-text .pull-quote { font-size: 1.4rem; line-height: 1.4; color: var(--primary-light); font-weight: 500; letter-spacing: -0.01em; padding: 2rem 0; margin: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; font-style: normal; }

/* ════ VALUES GRID ════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1080px; margin: 0 auto; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; transition: var(--transition); }
.value-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.value-card .value-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(38,149,124,0.1); border: 1px solid rgba(38,149,124,0.18); display: flex; align-items: center; justify-content: center; color: var(--primary-light); margin-bottom: 1.25rem; }
.value-card h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ════ TIMELINE ════ */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 130px; top: 0.5rem; bottom: 0.5rem; width: 1px; background: linear-gradient(180deg, transparent, var(--border) 5%, var(--border) 95%, transparent); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 3rem; margin-bottom: 2rem; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year { font-size: 1.1rem; font-weight: 500; color: var(--primary-light); text-align: right; padding-top: 0.1rem; padding-right: 0; }
.timeline-dot { position: absolute; left: 126px; top: 0.6rem; width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--bg); z-index: 2; }
.timeline-content h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ════ MARKETS (Europa) ════ */
.markets-band { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.markets-band .markets-head { text-align: center; margin-bottom: 2rem; }
.markets-band .markets-head .eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.markets-band .markets-head p { color: var(--text-muted); font-size: 0.95rem; }
.markets-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; max-width: 920px; margin: 0 auto; }
.market-chip { padding: 0.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 30px; font-size: 0.82rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.market-chip:hover { border-color: var(--border-hover); color: #fff; }

/* ════ CTA BAND ════ */
.cta-band { padding: 6rem 0; background: var(--gradient-hero); border-top: 1px solid var(--border); }
.cta-band .container { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
.cta-band h2 em { font-style: normal; color: var(--primary); }
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════ FOOTER ════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 1.75rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1.7fr 1fr; gap: 2.5rem; margin-bottom: 2.25rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); max-width: 220px; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.9rem; margin-top: 0.25rem; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: color 0.18s ease; cursor: pointer; }
.social-icon:hover { color: var(--primary); }
  .social-icon svg { width: auto; height: 19px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); }
.footer-col--wide ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem; }
.footer-brand-sub { margin-top: 1.5rem; color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.5; }
  .footer-brand-sub span { display: block; margin-bottom: 0.5rem; }
.footer-brand-sub img { display: block; height: 16px; width: auto; opacity: 0.8; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--primary); }

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .essentials-btn { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+1) { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container, .header-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .page-hero { padding: calc(72px + 2.5rem) 0 3rem; }
  .section, .cta-band { padding: 3.5rem 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 72px; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 1.5rem; }
  .timeline-dot { left: 68px; }
  .story-text .pull-quote { font-size: 1.15rem; }
  .story-inline-image { float: none; width: 100%; max-width: 360px; margin: 0 auto 1.5rem; }
  .product-showcase .caption { padding: 1rem 1.25rem; }
}
  .nav-dd.nav-dd--mega { width: min(660px, 94vw); padding: 0.7rem; left: 50%; transform: translateX(-50%) translateY(2px); }
  .nav-item.has-dropdown:hover .nav-dd.nav-dd--mega { transform: translateX(-50%) translateY(9px); }
  .nav-dd--mega .nav-dd-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px 6px; }
  .nav-dd--mega .nav-dd-item { flex-direction: row; align-items: flex-start; gap: 10px; }
  .nav-dd--mega .nav-dd-ico { flex: 0 0 auto; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(38,149,124,0.1); color: #fff; transition: background 0.18s ease; }
  .nav-dd--mega .nav-dd-ico svg { width: 16px; height: 16px; }
  .nav-dd--mega .nav-dd-ico .wg-ico { width: 19px; height: 19px; }
  .nav-dd--mega .nav-dd-item:hover .nav-dd-ico { background: rgba(38,149,124,0.22); }
  .nav-dd--mega .nav-dd-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .nav-dd--mega .nav-dd-item.full { grid-column: 1 / -1; border-top: 1px solid var(--border); margin-top: 5px; padding-top: 0.7rem; }
  @media (max-width: 640px) { .nav-dd.nav-dd--mega { width: min(300px, 92vw); } .nav-dd--mega .nav-dd-grid { grid-template-columns: 1fr; } }
  .info-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); color: var(--text-muted); transition: all 0.18s ease; }
  .info-btn:hover { color: var(--primary-light); border-color: rgba(38,149,124,0.5); background: rgba(38,149,124,0.08); }
  .info-btn svg { width: 17px; height: 17px; }
  /* ── Mobile-Navigation (Hamburger links + funktionierender Toggle) ── */
  @media (max-width: 768px) {
    /* 3-Zonen-Header: Hamburger links · Logo mittig · Warenkorb rechts */
    .header-inner { position: relative; }
    .header-inner .hamburger { order: -1; margin: 0; padding: 4px; }
    .header-inner .logo { display: none; }
    .header-inner .brand-c { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
    .header-inner .header-right { margin-left: auto; gap: 0.85rem; }
    .header-inner .header-right .info-btn { display: none; }
    .header-inner .header-right .lang-switcher { font-size: 0.72rem; }
    .header-inner .header-right .cart-btn {
      padding: 6px !important; background: transparent !important; border: none !important;
      box-shadow: none !important; color: #fff !important; position: relative; gap: 0 !important;
      min-width: 0; font-size: 0 !important;
    }
    .header-inner .header-right .cart-btn > span:not(.cart-count) { display: none !important; }
    .header-inner .header-right .cart-btn svg { width: 24px; height: 24px; }
    .header-inner .header-right .cart-btn .cart-count {
      position: absolute; top: -4px; right: -6px; background: var(--primary) !important; color: #fff !important;
      min-width: 16px; height: 16px; padding: 0 3px !important; font-size: 0.62rem !important;
      line-height: 16px !important; border-radius: 999px; box-shadow: 0 0 0 2px var(--bg, #0d0d0d);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .header-inner.menu-open .nav {
      display: flex; flex-direction: column; align-items: stretch; gap: 0;
      position: fixed; top: 72px; left: 0; right: 0;
      height: calc(100vh - 72px); overflow-y: auto; -webkit-overflow-scrolling: touch;
      background: #0d0d0d; border-bottom: 1px solid var(--border);
      padding: 0.5rem 1.5rem 1.75rem; z-index: 130;
    }
    .header-inner.menu-open .nav .nav-item.has-dropdown { display: block; width: 100%; position: static; }
    .header-inner.menu-open .nav .nav-dd-trigger,
    .header-inner.menu-open .nav > a {
      width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--border); justify-content: flex-start;
    }
    .header-inner.menu-open .nav .nav-caret { display: none; }
    /* Dropdowns auf Mobil immer ausgeklappt (Hover gibt es auf Touch nicht) */
    .header-inner.menu-open .nav .nav-dd {
      position: static; opacity: 1; visibility: visible; pointer-events: auto;
      transform: none !important; box-shadow: none; border: none; background: transparent;
      width: 100% !important; min-width: 0; padding: 0.25rem 0 0.5rem 0.25rem; display: block;
    }
    .header-inner.menu-open .nav .nav-dd--mega { width: 100% !important; padding-left: 0.25rem; }
    .header-inner.menu-open .nav .nav-dd--mega .nav-dd-grid { grid-template-columns: 1fr !important; }
    /* Sub-Navi vereinfacht: keine doppelten Labels, keine Untertitel, kompakt */
    .header-inner.menu-open .nav .nav-dd-label { display: none; }
    .header-inner.menu-open .nav .nav-dd-sub { display: none; }
    .header-inner.menu-open .nav .nav-dd-item { flex-direction: row; align-items: center; gap: 12px; padding: 0.7rem 0.25rem; }
    .header-inner.menu-open .nav .nav-dd-title { font-size: 0.95rem; }
    .header-inner.menu-open .nav .nav-dd-ico { width: 26px; height: 26px; }
    .header-inner.menu-open .nav .nav-dd-ico svg { width: 15px; height: 15px; }
  }
  /* Header: Wortmarke links, C-Logo rechts */
  .logo-wordmark { height: 26px; width: auto; display: block; }
  .brand-c { display: inline-flex; align-items: center; justify-content: center; }
  .brand-c-symbol { height: 36px; width: 36px; color: #fff; }
  .header-inner .header-right { gap: 1.1rem; }
  .b2b-hero { padding: 3.5rem 0 2.5rem; }
  .b2b-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
  .b2b-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; align-items: center; margin-top: 1.6rem; }
  .b2b-hero-actions .b2b-note { color: var(--text-muted); font-size: 0.85rem; }
  .b2b-hero-img { display: flex; justify-content: center; }
  .b2b-hero-img img { width: 100%; max-width: 420px; height: auto; }
  .b2b-values { padding: 1rem 0 3.5rem; }
  .b2b-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .b2b-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; }
  .b2b-card-ico { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(38,149,124,0.12); color: var(--primary-light); margin-bottom: 0.9rem; }
  .b2b-card-ico svg { width: 22px; height: 22px; }
  .b2b-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
  .b2b-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
  .b2b-cta { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; text-align: center; margin-bottom: 3.5rem; }
  .b2b-cta h2 { font-size: 1.6rem; margin: 0 0 0.6rem; }
  .b2b-cta h2 em { font-style: normal; color: var(--primary); }
  .b2b-cta p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 1.4rem; }
  @media (max-width: 860px) { .b2b-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; } .b2b-hero-img { order: -1; } .b2b-hero-img img { max-width: 300px; } .b2b-hero h1 { font-size: 2rem; } .b2b-values-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .b2b-values-grid { grid-template-columns: 1fr; } }

/* Mobile: long CTA labels must wrap, not overflow right (overrides .btn nowrap) */
@media (max-width: 600px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .b2b-cta .btn, .b2b-hero .btn { width: 100%; justify-content: center; }
}
