:root {
  --crimson:   #891C12;
  --crimson-l: #b02418;
  --gold:      #A67746;
  --gold-l:    #c49260;
  --teal:      #021C23;
  --teal-700:  #052e39;
  --teal-500:  #0a4a5c;
  --ink:       #12191c;
  --slate:     #4a5e68;
  --muted:     #7a8e96;
  --line:      #e4eaec;
  --bg:        #ffffff;
  --bg-alt:    #f7f4f0;
  --bg-warm:   #fdf9f5;
  --font:      'Inter', system-ui, sans-serif;
  --display:   'Sora', 'Inter', sans-serif;
  --r:         12px;
  --r-lg:      20px;
  --shadow-sm: 0 1px 4px rgba(2,28,35,.06), 0 4px 12px rgba(2,28,35,.06);
  --shadow-md: 0 4px 16px rgba(2,28,35,.10), 0 12px 32px rgba(2,28,35,.08);
  --shadow-lg: 0 8px 32px rgba(2,28,35,.14), 0 24px 56px rgba(2,28,35,.10);
  --brand:     linear-gradient(135deg, var(--crimson), var(--gold));
  --section:   96px 0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 20px;
}
.label::before { content: ''; width: 20px; height: 2px; background: var(--crimson); border-radius: 2px; display: inline-block; }
.section-title { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; color: var(--teal); }
.section-sub { margin-top: 14px; font-size: 1.05rem; color: var(--slate); max-width: 540px; line-height: 1.7; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: var(--display); font-size: 15px; font-weight: 600; border-radius: 50px; border: none; transition: all .22s ease; white-space: nowrap; cursor: pointer; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-crimson { background: var(--crimson); color: #fff; box-shadow: 0 4px 16px rgba(137,28,18,.3); }
.btn-crimson:hover { background: var(--crimson-l); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.75); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(166,119,70,.3); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--crimson); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--teal); transform: translateY(-2px); }

/* COOKIE MODAL */
.cookie-overlay { position: fixed; inset: 0; z-index: 9500; background: rgba(2,28,35,.76); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.cookie-overlay.visible { opacity: 1; pointer-events: all; }
.cookie-modal { background: #fff; border-radius: 18px; box-shadow: 0 24px 64px rgba(2,28,35,.3); width: 100%; max-width: 420px; overflow: hidden; font-family: var(--font); }
.cookie-overview { padding: 32px 28px 26px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.cookie-icon-wrap { background: var(--bg-alt); border-radius: 18px; padding: 5px; display: inline-flex; }
.cookie-icon { background: linear-gradient(135deg,var(--crimson) 0%,#c0392b 100%); border-radius: 13px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(137,28,18,.3); }
.cookie-icon svg { width: 28px; height: 28px; }
.cookie-title { font-family: var(--display); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.3; }
.cookie-desc { font-size: 14px; color: var(--slate); line-height: 1.65; margin: 0; }
.cookie-policy-link { font-size: 13px; font-weight: 500; color: var(--crimson); text-decoration: underline; text-underline-offset: 3px; }
.cookie-policy-link:hover { opacity: .75; }
.cookie-btns { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.ck-btn { width: 100%; padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: opacity .15s, background .15s, border-color .15s; font-family: var(--font); }
.ck-btn--primary { background: var(--crimson); color: #fff; }
.ck-btn--primary:hover { opacity: .88; }
.ck-btn--outline { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.ck-btn--outline:hover { background: var(--bg-alt); border-color: var(--muted); }
.ck-btn--ghost { background: none; border: none; color: var(--muted); font-weight: 500; }
.ck-btn--ghost:hover { background: var(--bg-alt); color: var(--ink); }
.cookie-manage { display: none; flex-direction: column; }
.cookie-manage.active { display: flex; }
.cookie-manage__head { display: flex; align-items: center; gap: 12px; padding: 18px 20px 16px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.cookie-manage__back { background: var(--bg-alt); border: none; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--slate); flex-shrink: 0; transition: background .12s; }
.cookie-manage__back:hover { background: var(--line); }
.cookie-manage__head-title { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0; }
.cookie-manage__body { overflow-y: auto; max-height: 52vh; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.cookie-manage__intro { font-size: 13px; color: var(--slate); line-height: 1.65; margin: 0 0 2px; }
.cookie-cat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; transition: background .15s, border-color .15s; }
.cookie-cat.active { background: var(--bg-alt); border-color: rgba(137,28,18,.22); }
.cookie-cat__row { display: flex; align-items: flex-start; gap: 12px; }
.cookie-cat__icon { background: var(--line); border-radius: 10px; width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cookie-cat.active .cookie-cat__icon { background: var(--crimson); }
.cookie-cat__icon svg { width: 16px; height: 16px; stroke: var(--slate); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
.cookie-cat.active .cookie-cat__icon svg { stroke: #fff; }
.cookie-cat__info { flex: 1; min-width: 0; }
.cookie-cat__header { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.cookie-cat__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.cookie-cat__always { font-size: 11px; font-weight: 700; color: var(--crimson); background: rgba(137,28,18,.1); border-radius: 100px; padding: 2px 10px; text-transform: uppercase; letter-spacing: .04em; flex-shrink: 0; }
.cookie-cat__desc { font-size: 12px; color: var(--slate); line-height: 1.6; margin: 0; }
.ck-toggle { position: relative; width: 44px; height: 24px; border: none; border-radius: 100px; cursor: pointer; background: #D1D5DB; transition: background .2s; flex-shrink: 0; outline: none; }
.ck-toggle.on { background: var(--crimson); }
.ck-toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.18); transition: left .2s; }
.ck-toggle.on::after { left: 22px; }
.cookie-manage__foot { border-top: 1px solid var(--line); padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.cookie-manage__foot-row { display: flex; gap: 8px; }
.cookie-manage__foot .ck-btn { font-size: 13px; padding: 10px 16px; }
.footer__cookie-settings { background: none; border: none; cursor: pointer; font-size: inherit; color: inherit; padding: 0; text-decoration: underline; text-underline-offset: 2px; font-family: inherit; }
.footer__cookie-settings:hover { opacity: .7; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 24px; height: 84px; }
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 84px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav__links a { padding: 7px 13px; font-size: 14px; font-weight: 500; color: var(--slate); border-radius: 8px; transition: all .15s; display: block; }
.nav__links a:hover { color: var(--teal); background: var(--bg-alt); }
.nav__links a.active { color: var(--teal); font-weight: 600; }
/* dropdown trigger chevron */
.nav__drop-trigger { display: flex; align-items: center; gap: 10px; }
.nav__drop-trigger::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-1px); flex-shrink: 0; transition: transform .22s; opacity: .7; margin-left: 8px; }
li:hover > .nav__drop-trigger::after { transform: rotate(-135deg) translateY(1px); }
/* dropdown panel — top: 100% so li hover area is contiguous; invisible padding-top bridges to nav bottom */
.nav__dropdown { position: absolute; top: 100%; left: -8px; min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 8px; padding-top: 14px; opacity: 0; pointer-events: none; transform: translateY(6px); transition: opacity .22s .12s, transform .22s .12s; z-index: 200; }
/* invisible bridge: extend li hit-area downward so mouse travel from trigger to panel doesn't break hover */
.nav__links > li { position: relative; }
.nav__links > li::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
li:hover > .nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); transition: opacity .16s, transform .16s; }
.nav__drop-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: var(--r); color: var(--ink); transition: background .15s; }
.nav__drop-item:hover { background: var(--bg-alt); }
.nav__drop-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(137,28,18,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__drop-icon svg { width: 16px; height: 16px; }
.nav__drop-label { font-size: 14px; font-weight: 600; color: var(--teal); margin-bottom: 2px; }
.nav__drop-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.lang-dropdown { position: relative; margin-left: 16px; border-left: 1px solid var(--line); padding-left: 16px; }
.lang-dropdown__trigger { display: flex; align-items: center; gap: 6px; padding: 5px 10px; font-size: 13px; font-weight: 600; color: var(--teal); border-radius: 6px; border: none; background: transparent; cursor: pointer; font-family: var(--font); transition: background .15s; white-space: nowrap; }
.lang-dropdown__trigger:hover { background: var(--bg-alt); }
.lang-dropdown__chevron { width: 10px; height: 10px; transition: transform .2s; flex-shrink: 0; }
.lang-dropdown.open .lang-dropdown__chevron { transform: rotate(180deg); }
.lang-dropdown__menu { position: absolute; top: calc(100% + 6px); right: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-md); padding: 4px; min-width: 110px; opacity: 0; pointer-events: none; transform: translateY(4px); transition: opacity .18s, transform .18s; z-index: 500; }
.lang-dropdown.open .lang-dropdown__menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option { display: flex; align-items: center; gap: 8px; width: 100%; padding: 7px 10px; font-size: 13px; font-weight: 600; color: var(--slate); border: none; background: transparent; cursor: pointer; border-radius: 6px; font-family: var(--font); transition: background .12s; white-space: nowrap; text-align: left; }
.lang-option:hover { background: var(--bg-alt); color: var(--teal); }
.lang-option.active { color: var(--teal); }
.nav__cta { margin-left: 12px; flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; border-radius: 8px; transition: background .15s; flex-shrink: 0; }
.nav__hamburger:hover { background: var(--bg-alt); }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__drawer { position: fixed; inset: 0; z-index: 99; background: #fff; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; padding: 96px 28px 48px; display: flex; flex-direction: column; }
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-links { list-style: none; }
.nav__drawer-links > li > a { display: block; font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--teal); padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: color .15s; }
.nav__drawer-links > li:last-child > a { border-bottom: none; }
.nav__drawer-links > li > a:hover { color: var(--crimson); }
/* Accordion trigger row */
.nav__drawer-acc-trigger { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.nav__drawer-acc-trigger > a { flex: 1; font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--teal); padding: 15px 0; text-decoration: none; transition: color .15s; }
.nav__drawer-acc-trigger > a:hover { color: var(--crimson); }
.nav__drawer-acc-btn { background: none; border: none; cursor: pointer; padding: 10px 4px; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: color .15s; }
.nav__drawer-acc-btn svg { width: 14px; height: 14px; transition: transform .25s; stroke: currentColor; }
.nav__drawer-acc-btn:hover { color: var(--teal); }
.nav__drawer-accordion.open > .nav__drawer-acc-trigger .nav__drawer-acc-btn svg { transform: rotate(180deg); }
/* Accordion panel (hidden by default) */
.nav__drawer-acc-panel { display: none; }
.nav__drawer-accordion.open > .nav__drawer-acc-panel { display: block; }
/* Level 1 sub-list (Outsourcing-Beratung, Business Transformation) */
.nav__drawer-sub { list-style: none; padding: 6px 0 4px 0; }
.nav__drawer-sub > li > .nav__drawer-acc-trigger { border-bottom: 1px solid var(--line); }
.nav__drawer-sub > li:last-child > .nav__drawer-acc-trigger { border-bottom: none; }
.nav__drawer-sub .nav__drawer-acc-trigger > a { font-family: var(--font); font-size: 0.925rem; font-weight: 600; color: var(--teal); padding: 11px 0; }
.nav__drawer-sub .nav__drawer-acc-btn { padding: 8px 4px; }
/* Level 2 sub-list (size pages) */
.nav__drawer-sub2 { list-style: none; padding: 4px 0 6px 14px; border-left: 2px solid var(--line); margin: 2px 0 4px; }
.nav__drawer-sub2 a { font-size: 13px; font-weight: 500; color: var(--slate); padding: 6px 8px; text-decoration: none; border-radius: 6px; display: block; transition: color .15s, background .15s; }
.nav__drawer-sub2 a:hover { color: var(--teal); background: var(--bg-alt); }
.nav__drawer-cta { margin-top: 28px; }
.nav__drawer-cta .btn { width: 100%; text-align: center; display: block; }

/* PAGE HERO (interior pages) */
.page-hero { background: var(--teal); padding: 80px 0 96px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 0% 50%, rgba(137,28,18,.22), transparent), radial-gradient(ellipse 60% 80% at 85% 50%, rgba(10,74,92,.55), transparent); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.012); pointer-events: none; }
.page-hero .label { color: var(--gold-l); }
.page-hero .label::before { background: var(--gold-l); }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.4); transition: color .15s; }
.page-hero__breadcrumb a:hover { color: var(--gold-l); }
.page-hero__breadcrumb-sep { color: rgba(255,255,255,.2); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.08; margin-bottom: 16px; }
.page-hero__sub { font-size: 1.08rem; color: rgba(255,255,255,.62); max-width: 560px; line-height: 1.7; }
/* stat pills inside page heroes */
.page-hero__stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.page-hero__stat { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; font-size: 13px; color: rgba(255,255,255,.75); backdrop-filter: blur(8px); }
.page-hero__stat strong { color: #fff; font-family: var(--display); font-weight: 700; }

/* HERO (home) */
.hero { position: relative; overflow: hidden; background: var(--teal); min-height: 700px; display: flex; align-items: center; padding: 100px 0 80px; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; display: block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes blink   { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 50px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 28px; backdrop-filter: blur(8px); animation: fadeUp .7s ease both .1s; }
.hero__tag-dot { width: 8px; height: 8px; background: var(--gold-l); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.hero__h1 { font-family: var(--display); font-size: clamp(2.6rem, 4.8vw, 4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.06; color: #fff; margin-bottom: 20px; animation: fadeUp .7s ease both .22s; }
.hero__h1 em { font-style: normal; background: linear-gradient(90deg, var(--gold-l), #e8c48a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.68); max-width: 480px; line-height: 1.7; margin-bottom: 36px; animation: fadeUp .7s ease both .34s; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; animation: fadeUp .7s ease both .46s; }
.hero__bullets { display: flex; flex-direction: column; gap: 12px; animation: fadeUp .7s ease both .58s; }
.hero__bullet { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.hero__check { width: 20px; height: 20px; flex-shrink: 0; background: rgba(166,119,70,.2); border: 1px solid rgba(166,119,70,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero__check svg { width: 10px; height: 10px; }
.hero__card-col { display: flex; justify-content: center; position: relative; animation: fadeIn .9s ease both .3s; isolation: isolate; }
.hero__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); padding: 28px; backdrop-filter: blur(24px); width: 100%; max-width: 380px; box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.hero__card-top { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero__card-logo img { height: 72px; width: auto; }
.hero__card-label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.hero__stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r); padding: 14px; }
.hero__stat-n { font-family: var(--display); font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero__stat-n span { color: var(--gold-l); }
.hero__stat-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); }
.hero__status { display: flex; align-items: center; gap: 8px; background: rgba(166,119,70,.12); border: 1px solid rgba(166,119,70,.28); border-radius: 50px; padding: 8px 14px; font-size: 13px; color: var(--gold-l); font-weight: 500; }
.hero__status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 2.2s infinite; }
.badge { position: absolute; background: #fff; border-radius: var(--r); padding: 11px 15px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--teal); white-space: nowrap; }
.badge-1 { top: -16px; right: -16px; animation: floatY 4.5s ease-in-out infinite; z-index: 3; }
.badge-2 { bottom: -24px; left: 35%; right: auto; animation: floatY2 4.5s ease-in-out 2.2s infinite; z-index: 3; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes floatY2 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-9px)} }
.badge-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-icon--crimson { background: rgba(137,28,18,.08); }
.badge-icon--gold    { background: rgba(166,119,70,.1); }
.badge-icon svg { width: 14px; height: 14px; }

/* MARQUEE */
.marquee { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; overflow: hidden; white-space: nowrap; user-select: none; }
.marquee__track { display: inline-flex; align-items: center; gap: 20px; animation: marquee 30s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; gap: 20px; font-size: 12px; font-weight: 700; color: var(--slate); letter-spacing: .08em; text-transform: uppercase; }
.marquee__sep { color: var(--gold); font-size: 14px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SPLIT PORTFOLIO */
.portfolio { padding: 0; }
.portfolio__split { display: grid; grid-template-columns: 1fr 1fr; }
.portfolio__pane { position: relative; overflow: hidden; min-height: 480px; }
.portfolio__pane img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); transition: filter .5s ease, transform .5s ease; position: absolute; inset: 0; }
.portfolio__pane:hover img { filter: brightness(.38); transform: scale(1.04); }
.portfolio__pane-content { position: relative; z-index: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.portfolio__tag { display: inline-block; padding: 5px 14px; background: rgba(137,28,18,.85); color: #fff; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; width: fit-content; }
.portfolio__pane-title { font-family: var(--display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 12px; letter-spacing: -.02em; }
.portfolio__pane-desc { font-size: .95rem; color: rgba(255,255,255,.68); line-height: 1.65; margin-bottom: 24px; max-width: 340px; }
.portfolio__pane-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--gold-l); transition: gap .2s; }
.portfolio__pane-link:hover { gap: 12px; }
.portfolio__divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(255,255,255,.12); z-index: 2; pointer-events: none; }

/* PROCESS STEPS */
.steps-section { background: var(--bg); padding-top: 56px; }
.steps-header { text-align: center; margin-bottom: 72px; }
.steps-header .section-sub { margin: 14px auto 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps::before { content: ''; position: absolute; top: 35px; left: calc(100% / 6); right: calc(100% / 6); height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold)); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 28px; }
.step__bubble { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--crimson), var(--crimson-l)); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; margin-bottom: 28px; flex-shrink: 0; box-shadow: 0 4px 20px rgba(137,28,18,.28), 0 0 0 6px #fff, 0 0 0 8px rgba(137,28,18,.08); }
.step__n { font-family: var(--display); font-size: 1.3rem; font-weight: 800; color: #fff; }
.step__title { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.step__desc { font-size: .9rem; color: var(--slate); line-height: 1.7; }

/* DIVISION OVERVIEW CARDS */
.leistungen { background: var(--bg-alt); }
.leistungen__header { margin-bottom: 48px; }
.divov { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.divov__card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); transition: all .25s ease; position: relative; overflow: hidden; }
.divov__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.divov__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(137,28,18,.2); }
.divov__card:hover::before { transform: scaleX(1); }
.divov__tag { display: inline-block; padding: 4px 12px; background: rgba(137,28,18,.07); color: var(--crimson); border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; width: fit-content; }
.divov__title { font-family: var(--display); font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 800; color: var(--teal); line-height: 1.15; margin-bottom: 6px; letter-spacing: -.02em; }
.divov__tagline { font-size: .95rem; font-weight: 600; color: var(--crimson); margin-bottom: 12px; }
.divov__desc { font-size: .9rem; color: var(--slate); line-height: 1.7; margin-bottom: 24px; }
.divov__caps-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.divov__caps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; margin-bottom: 28px; }
.divov__caps li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--teal); }
.divov__caps-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }
.divov__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--crimson); transition: gap .2s; }
.divov__card:hover .divov__more { gap: 10px; }

/* COMPANY SIZE TABS */
.size-tabs__eyebrow { font-family: var(--display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.size-tabs__nav { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 32px; }
.size-tab { padding: 12px 26px; font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--muted); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.size-tab.active { color: var(--teal); border-bottom-color: var(--crimson); }
.size-tab:hover:not(.active) { color: var(--slate); }
.size-panel { display: none; }
.size-panel.active { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.size-pane { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.size-pane--dark { background: var(--teal); border-color: var(--teal); }
.size-pane__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 8px; }
.size-pane--dark .size-pane__label { color: rgba(255,255,255,.45); }
.size-pane__title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.size-pane--dark .size-pane__title { color: #fff; }
.size-pane__desc { font-size: .88rem; color: var(--slate); line-height: 1.65; }
.size-pane--dark .size-pane__desc { color: rgba(255,255,255,.62); }
.size-pane__list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.size-pane__list li { display: flex; align-items: flex-start; gap: 9px; font-size: .87rem; color: var(--teal); line-height: 1.4; }
.size-pane--dark .size-pane__list li { color: rgba(255,255,255,.78); }
.size-pane__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; margin-top: 5px; }
.size-pane--dark .size-pane__dot { background: var(--gold-l); }

/* DIVISION DETAIL PAGE */
.division-intro { background: var(--bg); }
.division__top { display: grid; grid-template-columns: 1fr 240px; gap: 56px; align-items: start; margin-bottom: 64px; }
.division__tagline { font-size: 1.1rem; font-weight: 600; color: var(--crimson); margin-bottom: 16px; }
.division__text { font-size: 1rem; color: var(--slate); line-height: 1.8; }
.lead-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.lead-card__photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--line); margin-bottom: 4px; }
.lead-card__hint { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.lead-card__name { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--teal); }
.lead-card__role { font-size: 11px; color: var(--crimson); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.division__caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.div-cap { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; transition: all .2s; }
.div-cap:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.div-cap__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(137,28,18,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.div-cap__icon svg { width: 20px; height: 20px; }
.div-cap__title { font-family: var(--display); font-size: .95rem; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.div-cap__desc { font-size: .86rem; color: var(--slate); line-height: 1.65; }

/* WHY LUMORIA */
.why { background: var(--bg-alt); }
.why__header { margin-bottom: 56px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: all .22s ease; }
.why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(137,28,18,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why__icon svg { width: 22px; height: 22px; }
.why__title { font-family: var(--display); font-size: .98rem; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.why__desc { font-size: .87rem; color: var(--slate); line-height: 1.65; }

/* TEAM */
.team { background: var(--bg-warm); }
.team__header { margin-bottom: 48px; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team__card { display: flex; gap: 22px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.team__card:hover { box-shadow: var(--shadow-md); }
.team__photo { width: 78px; height: 78px; object-fit: cover; border-radius: 50%; flex-shrink: 0; border: 3px solid var(--line); }
.team__name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--teal); margin-bottom: 2px; }
.team__role { font-size: 12px; color: var(--crimson); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.team__bio { font-size: .88rem; color: var(--slate); line-height: 1.65; }

/* KNOWLEDGE */
.knowledge { background: var(--teal); }
.knowledge__header { text-align: center; margin-bottom: 48px; }
.knowledge__header .section-title { color: #fff; }
.knowledge__header .section-sub { color: rgba(255,255,255,.55); margin: 14px auto 0; }
.know__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.know__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.know__card { border-radius: var(--r-lg); overflow: hidden; cursor: pointer; position: relative; transition: all .25s ease; }
.know__card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.35); }
.know__card--featured .know__img { height: 360px; }
.know__img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s ease; }
.know__card:hover .know__img { transform: scale(1.06); }
.know__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,28,35,.93) 40%, rgba(2,28,35,.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.know__type { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 6px; }
.know__title { font-family: var(--display); font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.know__card--featured .know__title { font-size: 1.2rem; }
.know__meta { font-size: 11px; color: rgba(255,255,255,.45); }
.knowledge__footer { text-align: center; margin-top: 40px; }

/* Homepage blog: 2+1 asymmetric layout */
.know__duo { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: stretch; }
.know__stack { display: flex; flex-direction: column; gap: 20px; }
.know__card--hero { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: all .25s ease; }
.know__card--hero .know__img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; object-position: center top; display: block; transition: transform .4s ease; }
.know__card--hero:hover .know__img { transform: scale(1.04); }
.know__card--hero:hover { box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.know__title--hero { font-size: 1.35rem; line-height: 1.35; }
.know__card--sm { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; flex: 1; transition: all .25s ease; }
.know__card--sm .know__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .4s ease; }
.know__card--sm:hover .know__img { transform: scale(1.05); }
.know__card--sm:hover { box-shadow: 0 16px 44px rgba(0,0,0,.4); }
.know__card--hero .know__overlay,
.know__card--sm .know__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,18,24,.95) 30%, rgba(2,18,24,.1) 75%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }

/* Blog listing page: 2-column card grid */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 52px rgba(0,0,0,.38); border-color: rgba(212,175,96,.4); }
.blog-card__img-wrap { overflow: hidden; height: 260px; flex-shrink: 0; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .45s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.06); }
.blog-card__body { padding: 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-l); }
.blog-card__title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.4; }
.blog-card__preview { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; margin-top: auto; border-top: 1px solid rgba(255,255,255,.08); }
.blog-card__date { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .04em; }
.blog-card__link { font-size: .82rem; font-weight: 700; color: var(--gold-l); text-decoration: none; white-space: nowrap; letter-spacing: .02em; transition: color .2s; }
.blog-card:hover .blog-card__link { color: #fff; }
/* Featured card: spans both columns, horizontal layout */
.blog-card--featured { grid-column: 1 / -1; flex-direction: row; }
.blog-card--featured .blog-card__img-wrap { width: 420px; height: 340px; flex-shrink: 0; }
.blog-card--featured .blog-card__body { padding: 36px 40px; }
.blog-card--featured .blog-card__title { font-size: 1.45rem; }
.blog-card--featured .blog-card__preview { -webkit-line-clamp: 4; }

/* CTA */
.cta { background: var(--brand); position: relative; overflow: hidden; padding: 96px 0; text-align: center; }
.cta__orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.cta__orb-1 { width: 400px; height: 400px; background: #fff; opacity: .14; top: -120px; left: -60px; }
.cta__orb-2 { width: 300px; height: 300px; background: var(--teal); opacity: .2; bottom: -80px; right: -40px; }
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 14px; }
.cta__sub { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__chips { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cta__chip { padding: 5px 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; font-size: 13px; color: rgba(255,255,255,.8); }

/* FOOTER */
.footer { background: var(--teal-700); color: rgba(255,255,255,.7); }
.footer__main { padding: 72px 0 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 72px; width: auto; }
.footer__tagline { font-size: .9rem; line-height: 1.65; max-width: 260px; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .2s; }
.footer__social svg { width: 16px; height: 16px; display: block; }
.footer__social:hover { background: rgba(255,255,255,.14); color: #fff; }
.footer__col-title { font-family: var(--display); font-size: 12px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__links a:hover { color: var(--gold-l); }
.footer__bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.35); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.65); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__ctas { justify-content: center; }
  .hero__card-col { max-width: 400px; margin: 0 auto; }
  .know__grid { grid-template-columns: 1fr; }
  .know__row { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portfolio__split { grid-template-columns: 1fr; }
  .portfolio__pane { min-height: 420px; }
  .portfolio__divider { display: none; }
  .division__caps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .divov { grid-template-columns: 1fr; }
  .size-panel.active { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .steps { gap: 40px; }
  .division__top { grid-template-columns: 1fr; }
  .division__top > * { min-width: 0; }
  .lead-card { flex-direction: row; text-align: left; max-width: 100%; align-items: center; }
  .lead-card__photo { flex-shrink: 0; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .team__grid, .division__caps-grid { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .lang-dropdown { margin-left: auto; border-left: none; padding-left: 0; }
  .badge { display: none; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  h1, h2, h3 { word-break: break-word; overflow-wrap: anywhere; }
  .divov__caps li { overflow-wrap: anywhere; }
  .lead-card { flex-direction: column; align-items: center; text-align: center; }
  .size-tabs__nav { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .size-tabs__nav::-webkit-scrollbar { display: none; }
  .size-tab { padding: 12px 18px; font-size: 13px; }
  .know__duo { grid-template-columns: 1fr; }
  .know__card--hero .know__img { min-height: 280px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { flex-direction: column; }
  .blog-card--featured .blog-card__img-wrap { width: 100%; min-height: 220px; }
  .blog-card--featured .blog-card__body { padding: 22px 22px 24px; }
  .blog-card--featured .blog-card__title { font-size: 1.15rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .know__duo { grid-template-columns: 1fr 280px; }
  .blog-card--featured .blog-card__img-wrap { width: 320px; }
}
@media (max-width: 480px) {
  .know__row { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
}

/* MEGA MENU */
.nav__mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 540px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 20px; display: flex; gap: 0; opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(6px); transition: opacity .22s .12s, transform .22s .12s; z-index: 200; }
li:hover > .nav__mega { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); transition: opacity .16s, transform .16s; }
.nav__mega-col { flex: 1; padding: 4px 16px; }
.nav__mega-section { display: flex; align-items: flex-start; gap: 12px; padding: 10px 8px; border-radius: var(--r); text-decoration: none; transition: background .16s; margin-bottom: 8px; }
.nav__mega-section:hover { background: var(--bg-alt); }
.nav__mega-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav__mega-icon--crimson { background: rgba(137,28,18,.08); color: var(--crimson); }
.nav__mega-icon--gold { background: rgba(166,119,70,.1); color: var(--gold); }
.nav__mega-icon svg { width: 16px; height: 16px; }
.nav__mega-title { font-size: 14px; font-weight: 700; color: var(--teal); margin-bottom: 2px; }
.nav__mega-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.nav__mega-links { display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }
.nav__mega-link { font-size: 13px; color: var(--muted); padding: 6px 8px; border-radius: 6px; text-decoration: none; transition: color .15s, background .15s; }
.nav__mega-link:hover { color: var(--teal); background: var(--bg-alt); }
.nav__mega-divider { width: 1px; background: var(--line); margin: 8px 0; flex-shrink: 0; }

/* CHALLENGE SECTION */
.challenge { padding: var(--section); }
.challenge__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.challenge__text { display: flex; flex-direction: column; }
.challenge__list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.challenge__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); }
.challenge__list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: rgba(137,28,18,.08); border: 1.5px solid var(--crimson); flex-shrink: 0; margin-top: 2px; }
.challenge__visual { background: var(--bg-alt); border-radius: var(--r-lg); padding: 36px 32px; border-left: 3px solid var(--gold); }
.challenge__quote { font-size: 1.05rem; font-style: italic; color: var(--teal); line-height: 1.7; margin-bottom: 16px; }
.challenge__quote-attr { font-size: 13px; color: var(--muted); }

/* SOLUTION SECTION */
.solution { background: var(--bg-alt); padding: var(--section); }
.solution__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.solution__step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; }
.solution__num { font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--line); margin-bottom: 14px; }
.solution__step h3 { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.solution__step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* OUTCOMES SECTION */
.outcomes { padding: var(--section); }
.outcomes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.outcomes__item { text-align: center; padding: 36px 24px; background: var(--teal); border-radius: var(--r-lg); }
.outcomes__metric { font-family: var(--display); font-size: 2.8rem; font-weight: 800; color: var(--gold-l); margin-bottom: 8px; }
.outcomes__label { font-size: 14px; color: rgba(255,255,255,.75); }

/* SIZE NAV SECTION */
.size-nav { background: var(--bg-alt); padding: var(--section); }
.size-nav__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.size-nav__card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; text-decoration: none; transition: all .22s ease; }
.size-nav__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.size-nav__num { font-family: var(--display); font-size: 2.5rem; font-weight: 800; color: var(--line); line-height: 1; margin-bottom: 16px; }
.size-nav__title { font-size: 1.1rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.size-nav__desc { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.size-nav__link { font-size: 13px; font-weight: 600; color: var(--gold); }

/* SECTION LABEL */
.section-label { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 20px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--crimson); border-radius: 2px; display: inline-block; }

/* CONTACT FORM */
.contact-section { padding: var(--section); }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { background: var(--teal); border-radius: var(--r-lg); padding: 36px 32px; color: #fff; }
.contact-info__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 16px; }
.contact-info__title { font-family: var(--display); font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.contact-info__email { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gold-l); font-weight: 600; text-decoration: none; margin-top: 24px; }
.contact-info__note { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 20px; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--teal); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1.5px solid var(--line); border-radius: var(--r); font-size: 15px; font-family: var(--font); color: var(--ink); background: #fff; transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-honeypot { display: none; }
.form-submit { margin-top: 8px; }

/* BLOG ARTICLE PAGE */
.article { padding: 72px 0 96px; background: var(--teal); }
.article__wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article__back { margin-bottom: 32px; }
.article__back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gold-l); text-decoration: none; transition: color .2s; }
.article__back-link:hover { color: #fff; }
.article__back-link svg { transition: transform .2s; }
.article__back-link:hover svg { transform: translateX(-3px); }
.article__hero-img { width: 100%; height: 420px; object-fit: cover; object-position: center top; border-radius: var(--r-lg); margin-bottom: 40px; display: block; }
.article__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.article__meta-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); }
.article__meta-dot { color: rgba(255,255,255,.2); font-size: 13px; }
.article__meta-date { font-size: 13px; color: rgba(255,255,255,.4); }
.article__title { font-family: var(--display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 32px; }
.article__content h2 { font-family: var(--display); font-size: 1.45rem; font-weight: 700; color: #fff; margin: 2.2em 0 .75em; line-height: 1.3; }
.article__content h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: #fff; margin: 1.8em 0 .5em; line-height: 1.35; }
.article__content p { font-size: 1.02rem; color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 1.4em; }
.article__content ul, .article__content ol { margin: 0 0 1.4em 1.6em; color: rgba(255,255,255,.75); }
.article__content li { margin-bottom: .5em; font-size: 1.02rem; line-height: 1.75; }
.article__content strong { color: #fff; font-weight: 600; }
.article__content blockquote { border-left: 3px solid var(--gold-l); padding: 16px 24px; margin: 2em 0; background: rgba(212,175,96,.06); border-radius: 0 8px 8px 0; }
.article__content blockquote p { color: rgba(255,255,255,.85); font-style: italic; margin-bottom: 0; }
.article__sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.article__author-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 28px 24px; }
.article__author-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; display: block; }
.article__author-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 8px; }
.article__author-name { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1rem; }
.article__author-role { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; margin-bottom: 16px; }
.article__cta-card { background: linear-gradient(135deg, rgba(137,28,18,.5), rgba(10,74,92,.5)); border: 1px solid rgba(212,175,96,.2); border-radius: 16px; padding: 28px 24px; }
.article__cta-card-title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.article__cta-card-text { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 18px; }

/* POTENZIALANALYSE WIZARD */
.wizard-section { padding: 64px 0 96px; background: var(--teal); }
.wizard-wrap { max-width: 780px; margin: 0 auto; }
.wizard-progress { display: flex; align-items: flex-start; margin-bottom: 56px; }
.wizard-progress__item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; }
.wizard-progress__dot { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: var(--display); color: rgba(255,255,255,.3); transition: all .3s ease; }
.wizard-progress__dot.active { border-color: var(--gold-l); color: var(--gold-l); box-shadow: 0 0 0 4px rgba(212,175,96,.12); }
.wizard-progress__dot.done { background: var(--gold-l); border-color: var(--gold-l); color: var(--teal); }
.wizard-progress__label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.28); transition: color .3s; white-space: nowrap; }
.wizard-progress__label.active { color: var(--gold-l); }
.wizard-progress__line { flex: 1; height: 1px; background: rgba(255,255,255,.1); margin: 19px 14px 0; transition: background .3s; }
.wizard-progress__line.done { background: var(--gold-l); }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wizard-hd { margin-bottom: 44px; }
.wizard-hd h2 { font-family: var(--display); font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.wizard-hd p { font-size: .97rem; color: rgba(255,255,255,.52); line-height: 1.7; }
.wq { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.wq:last-of-type { border-bottom: none; }
.wq__num { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 6px; }
.wq__label { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.55; margin-bottom: 16px; }
.wq__opts { display: flex; flex-direction: column; gap: 9px; }
.wq__opt { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 11px; cursor: pointer; transition: all .18s; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.45; background: rgba(255,255,255,.03); user-select: none; }
.wq__opt:hover { border-color: rgba(212,175,96,.4); background: rgba(212,175,96,.05); color: #fff; }
.wq__opt.sel { border-color: var(--gold-l); background: rgba(212,175,96,.1); color: #fff; }
.wq__opt-box { width: 17px; height: 17px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,.22); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .18s; }
.wq__opt.sel .wq__opt-box { background: var(--gold-l); border-color: var(--gold-l); }
.wq__opt-tick { width: 9px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg) translateY(-1px); display: none; }
.wq__opt.sel .wq__opt-tick { display: block; }
.wq__radios { display: flex; flex-wrap: wrap; gap: 10px; }
.wq__radio { padding: 11px 20px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 10px; cursor: pointer; font-size: 14px; color: rgba(255,255,255,.65); transition: all .18s; user-select: none; }
.wq__radio:hover { border-color: rgba(212,175,96,.4); color: var(--gold-l); }
.wq__radio.sel { border-color: var(--gold-l); background: rgba(212,175,96,.12); color: var(--gold-l); font-weight: 600; }
.wq__textarea { width: 100%; box-sizing: border-box; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.04); color: #fff; font-size: 14px; font-family: var(--font); resize: vertical; min-height: 90px; outline: none; transition: border-color .18s; }
.wq__textarea:focus { border-color: rgba(212,175,96,.55); }
.wq__textarea::placeholder { color: rgba(255,255,255,.28); }
.wq__textinput { width: 100%; box-sizing: border-box; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.04); color: #fff; font-size: 14px; font-family: var(--font); outline: none; transition: border-color .18s; }
.wq__textinput:focus { border-color: rgba(212,175,96,.55); }
.wq__textinput::placeholder { color: rgba(255,255,255,.28); }
.wq__comment { margin-top: 12px; }
.wizard-nav { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.wizard-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.wizard-contact-field { display: flex; flex-direction: column; gap: 6px; }
.wizard-contact-field.full { grid-column: 1 / -1; }
.wizard-contact-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); }
.wizard-contact-field label .req { color: var(--gold-l); }
.wizard-contact-field input { width: 100%; box-sizing: border-box; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.04); color: #fff; font-size: 14px; font-family: var(--font); outline: none; transition: border-color .18s; }
.wizard-contact-field input:focus { border-color: rgba(212,175,96,.55); }
.wizard-contact-field input::placeholder { color: rgba(255,255,255,.28); }
.wizard-success { text-align: center; padding: 80px 24px; max-width: 560px; margin: 0 auto; }
.wizard-success__icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(212,175,96,.1); border: 2px solid var(--gold-l); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.wizard-success__title { font-family: var(--display); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.wizard-success__text { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.8; }
.wizard-error { padding: 14px 18px; border: 1px solid rgba(137,28,18,.5); background: rgba(137,28,18,.15); border-radius: 10px; font-size: 14px; color: rgba(255,200,190,1); margin-top: 16px; display: none; }
.wizard-error.visible { display: block; }

/* WIZARD MODAL */
.wz-modal { display: none; position: fixed; inset: 0; z-index: 1800; background: rgba(2,12,18,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 16px; }
.wz-modal.open { display: flex; align-items: flex-start; justify-content: center; }
.wz-modal__box { background: var(--teal); border-radius: 20px; width: 100%; max-width: 900px; margin: auto; position: relative; padding: 52px 56px 64px; }
.wz-modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.12); cursor: pointer; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: all .18s; }
.wz-modal__close:hover { background: rgba(255,255,255,.18); color: #fff; }
/* In modal: hide page success button, show modal close button */
.wz-modal__box .wz-suc-page { display: none !important; }
.wz-modal__box .wz-suc-modal { display: inline-block !important; }
/* Default: page shows page button, hides modal close */
.wz-suc-modal { display: none; }

/* RESPONSIVE - new sections */
@media (max-width: 900px) {
  .solution__grid { grid-template-columns: repeat(2, 1fr); }
  .size-nav__grid { grid-template-columns: 1fr; }
  .challenge__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .article__wrap { grid-template-columns: 1fr; }
  .article__sidebar { position: static; }
}
@media (max-width: 768px) {
  .outcomes__grid { grid-template-columns: 1fr; }
  .solution__grid { grid-template-columns: 1fr; }
  .nav__mega { min-width: 300px; flex-direction: column; }
  .cookie-overview { padding: 24px 20px 20px; gap: 14px; }
  .cookie-manage__body { max-height: 40vh; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .article__hero-img { height: 240px; }
}
@media (max-width: 700px) {
  .wz-modal__box { padding: 40px 20px 48px; border-radius: 14px; }
  .wizard-wrap { padding: 0; }
  .wizard-section { padding: 40px 0 56px; }
  .wizard-progress__label { font-size: 9px; letter-spacing: .03em; white-space: nowrap; }
  .wizard-progress__line { margin: 19px 6px 0; }
  .wizard-contact-grid { grid-template-columns: 1fr; }
  .wizard-nav { flex-direction: column-reverse; gap: 10px; }
  .wizard-nav .btn { width: 100%; text-align: center; justify-content: center; }
  .wizard-hd h2 { font-size: 1.35rem; }
  .wq__radios { gap: 8px; }
}

