.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent, #3B82F6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 0;
    outline: none;
}
*:focus-visible {
    outline: 2px solid var(--accent, #3B82F6);
    outline-offset: 2px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent, #3B82F6);
    outline-offset: 2px;
}
.gpu-accelerated {
    will-change: transform, opacity;
    transform: translateZ(0);
}
.animated-gradient {
    position: relative;
    background: linear-gradient(to right, #3B82F6, #8B5CF6, #EC4899, #8B5CF6, #3B82F6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    will-change: background-position;
}
body.subpage .animated-gradient {
    background: linear-gradient(to right, var(--accent), var(--accent2), var(--accent3), var(--accent2), var(--accent));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
.btn-animated {
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s;
    overflow: hidden;
}
.btn-shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shimmer 5s infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0% {
        left: -150%;
    }
    50%,
    100% {
        left: 150%;
    }
}
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
html {
    overflow-x: hidden;
    overscroll-behavior: none;
}
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-y: none;
    background-color: var(--bg);
    color: var(--text-main);
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    cursor: default;
}
:root {
    --bg: #020617;
    --surface: #0f172a;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shine: rgba(255, 255, 255, 0.05);
    --accent: #3B82F6;
    --accent-hover: #2563eb;
    --accent2: #8B5CF6;
    --accent3: #EC4899;
    --accent4: #06b6d4;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.08);
    --c-blue: #3B82F6;
    --c-purple: #8B5CF6;
    --c-pink: #EC4899;
    --c-green: #22c55e;
    --c-orange: #f97316;
    --c-yellow: #eab308;
    --c-teal: #14b8a6;
    --c-red: #ef4444;
    --c-indigo: #6366f1;
    --c-cyan: #06b6d4;
    --mega-menu-hover: #3B82F6;
}
::selection {
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.9);
    color: white;
    text-shadow: none;
}
::-moz-selection {
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.9);
    color: white;
}
header,
section,
footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}
.icon {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-lg {
    width: 32px;
    height: 32px;
}
.icon-sm {
    width: 16px;
    height: 16px;
}
html {
    --cursor-x: 50vw;
    --cursor-y: 50vh;
}
#global-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(var(--accent-rgb, 59, 130, 246), 0.12), transparent 60%);
    transform: translate(calc(var(--cursor-x) - 500px), calc(var(--cursor-y) - 500px));
    pointer-events: none;
    z-index: 5;
    transition: transform 0.1s linear;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.items-end {
    align-items: flex-end;
}
.items-start {
    align-items: flex-start;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-12 {
    gap: 3rem;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.hidden {
    display: none !important;
}
.md-hidden {
    display: block;
}
.md-flex {
    display: none;
}
.md-block {
    display: none;
}
.grid {
    display: grid;
    gap: 1.5rem;
}
@media(max-width: 768px) {
    .modal-overlay .grid {
        gap: 0;
    }
}
.grid-cols-1 {
    grid-template-columns: 1fr;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.95);
}
.breadcrumb a {
    color: rgba(226, 232, 240, 0.95);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: white;
}
.breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    flex-shrink: 0;
}
@media(min-width: 768px) {
    .md-flex-row {
        flex-direction: row;
    }
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .md-w-auto {
        width: auto;
    }
    .md-w-1-3 {
        width: 35%;
    }
    .md-w-2-3 {
        width: 65%;
    }
    .md-w-1-2 {
        width: 50%;
    }
    .md-text-5xl {
        font-size: 3rem;
    }
    .md-text-6xl {
        font-size: 3.75rem;
    }
    .md-text-8xl {
        font-size: 6rem;
    }
    .md-gap-16 {
        gap: 4rem;
    }
    .md-gap-24 {
        gap: 6rem;
    }
    .md-text-align-left {
        text-align: left !important;
    }
    .md-margin-top-0 {
        margin-top: 0 !important;
    }
    .md-block {
        display: block !important;
    }
}
@media(min-width: 1160px) {
    .md-flex {
        display: flex !important;
    }
    .md-hidden {
        display: none !important;
    }
}
.nav-btn-text {
    display: none !important;
}
.nav-btn-icon {
    display: inline-flex !important;
}
@media(min-width: 1160px) {
    .nav-btn-text {
        display: inline-flex !important;
    }
    .nav-btn-icon {
        display: none !important;
    }
}
@media(min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-wrap: balance;
}
h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}
@media(min-width: 768px) {
    h2 {
        font-size: 3rem;
    }
}
h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
p {
    color: var(--text-muted);
    margin-bottom: 0;
}
.icon-sm {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
@media(max-width: 767px) {
    nav .btn-glass .icon,
    nav .btn-shimmer .icon {
        width: 32px;
        height: 32px;
    }
}
.icon path,
.icon line,
.icon polyline,
.icon polygon,
.icon circle,
.icon rect,
.icon-sm path,
.icon-sm line,
.icon-sm polyline,
.icon-sm polygon,
.icon-sm circle,
.icon-sm rect {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.uppercase {
    text-transform: uppercase;
}
.tracking-widest {
    letter-spacing: 0.1em;
}
.text-sm {
    font-size: 0.95rem;
}
.text-xs {
    font-size: 0.75rem;
}
.font-bold {
    font-weight: 700;
}
.tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid;
    align-self: flex-start;
}
.tag-geo {
    color: var(--c-cyan);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}
.tag-alert {
    color: var(--c-pink);
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.1);
}
.section-padding {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header-lg {
    margin-bottom: 4rem;
}
.section-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.section-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.15);
    color: var(--accent);
}
.section-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 99px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb, 59, 130, 246), 0.25);
}
.section-badge-bg {
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.15);
}
.section-subline,
.module-subline {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--text-muted);
    line-height: 1.7;
    text-wrap: balance;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.text-gradient {
    background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.animated-logo-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899, #8B5CF6, #3B82F6);
    background-size: 300% 300%;
    animation: logo-shift-glow 8s ease infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.45);
    will-change: background-position;
}
@keyframes logo-shift-glow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 25%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 75%;
    }
    100% {
        background-position: 0% 50%;
    }
}
body.subpage .animated-logo-box {
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3), var(--accent2), var(--accent));
    background-size: 300% 300%;
    animation: logo-shift-glow-regional 8s ease infinite;
}
@keyframes logo-shift-glow-regional {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 25%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 75%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-lead-glow {
    position: relative;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #020617 !important;
    overflow: hidden;
    border: 1px solid white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-lead-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-300%) skewX(-20deg);
    animation: lead-shimmer 3s infinite;
    will-change: transform;
    pointer-events: none;
}
.btn-lead-glow:hover {
    transform: scale(1.05);
    background: var(--accent) !important;
    color: white !important;
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(var(--accent-rgb, 59, 130, 246), 0.6);
}
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-300%) skewX(-20deg);
    animation: lead-shimmer 5s infinite;
    will-change: transform;
    pointer-events: none;
}
@keyframes lead-shimmer {
    0% {
        transform: translateX(-300%) skewX(-20deg);
    }
    50%,
    100% {
        transform: translateX(300%) skewX(-20deg);
    }
}
.btn-primary {
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.85);
    border: 1px solid rgba(var(--accent-rgb, 59, 130, 246), 0.55);
    color: var(--accent-contrast, white);
    box-shadow: 0 0 20px rgba(var(--accent-rgb, 59, 130, 246), 0.30), inset 0 0 10px rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 0 40px rgba(var(--accent-rgb, 59, 130, 246), 0.55);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.glass-tab-container {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    padding: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.tab-bg-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 0;
}
.industry-tabs .tab-bg-slider {
    width: calc((100% - 8px) / 3);
}
.tab-btn {
    flex: 1;
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    white-space: nowrap;
}
.tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}
.tab-btn.active {
    color: white;
}
#tab-content-wrapper {
    position: relative;
    overflow: hidden;
}
#tab-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
#tab-slider>.industry-wrapper {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
}
.kikom-dach-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 55;
    font-size: 0.92rem;
}
body.has-dach-banner nav {
    top: var(--dach-banner-h, 0px);
}
body.has-dach-banner #mobile-menu {
    top: calc(80px + var(--dach-banner-h, 0px));
    max-height: calc(100vh - 80px - var(--dach-banner-h, 0px));
}
body.has-dach-banner .mega-dropdown {
    top: calc(90px + var(--dach-banner-h, 0px)) !important;
}
body.has-dach-banner.subpage .landing-hero {
    padding-top: calc(9rem + var(--dach-banner-h, 0px));
}
body.has-dach-banner #hero-stage {
    top: var(--dach-banner-h, 0px);
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    height: 80px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, top 0.3s ease;
}
nav.scrolled {
    background: rgba(2, 6, 23, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
@media(max-width: 1159px) {
    nav,
    nav.scrolled {
        --nav-scroll-progress: 0;
        transition: none;
        background: rgba(2, 6, 23, calc(0.7 * var(--nav-scroll-progress))) !important;
        backdrop-filter: blur(calc(12px * var(--nav-scroll-progress))) !important;
        -webkit-backdrop-filter: blur(calc(12px * var(--nav-scroll-progress))) !important;
        border-bottom: 1px solid rgba(255, 255, 255, calc(0.06 * var(--nav-scroll-progress))) !important;
    }
}
#mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 60;
}
#mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.01em;
    text-align: left;
    transition: color 0.2s;
}
.mobile-accordion-toggle:hover,
.mobile-accordion.open .mobile-accordion-toggle {
    color: white;
}
.mobile-accordion-caret {
    transition: transform 0.3s ease;
    opacity: 0.5;
    margin-left: auto;
    flex-shrink: 0;
}
.mobile-accordion.open .mobile-accordion-caret {
    transform: rotate(180deg);
    opacity: 1;
}
.mobile-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}
.mobile-accordion.open .mobile-accordion-body {
    max-height: 2000px;
    padding-bottom: 1rem;
}
.mobile-section-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    transition: background 0.2s;
}
.mobile-section-link:hover {
    background: rgba(var(--accent-rgb), 0.15);
}
.mobile-group-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0.75rem 0 0.5rem;
    padding-left: 0.125rem;
}
.mobile-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.mobile-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s;
}
.mobile-tile:hover,
.mobile-tile:active {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}
.mobile-tile-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mobile-tile-icon svg,
.mobile-tile-icon .mega-link-icon {
    width: 22px;
    height: 22px;
}
.mobile-tile-label {
    font-size: 0.75rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.mobile-promo-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    margin-top: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s;
}
.mobile-promo-banner:hover {
    border-color: rgba(255, 255, 255, 0.2);
}
.mobile-direct-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0.25rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}
.mobile-direct-link:hover,
.mobile-direct-link.active {
    color: white;
}
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-lang-active {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}
.mobile-lang-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}
.mobile-lang-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.mobile-lang-link:hover {
    color: white;
}
@media(min-width: 1160px) {
    #mobile-menu {
        display: none !important;
    }
}
body.subpage nav {
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
body.subpage.force-home-nav nav {
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.subpage.nav-scrolled nav,
body.subpage.force-home-nav.nav-scrolled nav {
    background: rgba(2, 6, 23, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
}
.nav-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    padding: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
}
.nav-link {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}
@media (min-width: 1100px) {
    .nav-link {
        padding: 0.5rem 1.1rem;
        font-size: 0.74rem;
        letter-spacing: 0.05em;
    }
}
.nav-link.active {
    color: white;
}
.nav-link:hover {
    color: white;
}
.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}
.brand-dot {
    color: var(--accent);
}
.brand-suffix {
    color: var(--accent);
    font-weight: 800;
    font-size: 1em;
    display: inline-block;
    max-width: 10ch;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: baseline;
}
@media(max-width: 767px) {
    .brand-suffix.brand-suffix-hide-mobile {
        display: none;
    }
}
@media(max-width: 420px) {
    .brand-suffix {
        max-width: 7ch;
    }
}
.nav-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
}
#hero-stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
#hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(2, 6, 23, 0.5) 0%,
            rgba(2, 6, 23, 0.2) 25%,
            rgba(2, 6, 23, 0.6) 50%,
            rgba(2, 6, 23, 0.2) 75%,
            rgba(2, 6, 23, 0.8) 100%);
    pointer-events: none;
}
.hero-shimmer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(59, 130, 246, 0.15) 45%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(139, 92, 246, 0.15) 55%,
            transparent 70%);
    background-size: 100% 100%;
    mix-blend-mode: overlay;
    animation: hero-shimmer-flow 8s ease-in-out infinite;
    will-change: transform, opacity;
    pointer-events: none;
}
@keyframes hero-shimmer-flow {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}
.hero-overlay {
    display: none;
}
#hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: contrast(1.15) brightness(1) saturate(1.1) blur(0px);
    will-change: filter;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.mk-intro-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: start;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mk-intro-portrait {
    display: flex;
}
.mk-intro-portrait img {
    width: 140px;
    height: 140px;
    border-radius: 1.25rem;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    opacity: 1;
    transform: none;
    max-width: 140px;
    display: block;
}
.mk-intro-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}
.mk-intro-point {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mk-intro-point strong {
    color: white;
}
.mk-intro-book {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mk-intro-book img {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    opacity: 1;
    transform: none;
    max-width: 64px;
    display: block;
}
.mk-intro-book-title {
    color: white;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
.mk-intro-book-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.mk-intro-cta {
    margin-top: 1.25rem;
}
@media(max-width: 768px) {
    .mk-intro-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.25rem;
        text-align: left;
    }
    .mk-intro-portrait {
        justify-content: flex-start;
    }
    .mk-intro-portrait img {
        width: 110px;
        height: 110px;
        border-radius: 999px;
    }
    .mk-intro-book {
        grid-template-columns: 64px 1fr;
        grid-template-rows: auto auto;
    }
    .mk-intro-book a {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.benefit-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.benefit-card h4 {
    margin-bottom: 0.5rem;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.3;
}
.benefit-card p {
    hyphens: auto;
    word-break: break-word;
}
@media(max-width: 767px) {
    .benefit-card {
        padding: 1.5rem;
    }
    .benefit-card h4 {
        font-size: 1.1rem;
    }
}
.related-pages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media(min-width: 768px) {
    .related-pages {
        grid-template-columns: repeat(4, 1fr);
    }
}
.related-page-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.related-page-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.related-page-card h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.3;
}
.related-page-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    hyphens: auto;
    word-break: break-word;
}
@media(max-width: 767px) {
    .related-page-card {
        padding: 1.25rem;
    }
    .related-page-card h4 {
        font-size: 0.85rem;
    }
    .related-page-card p {
        font-size: 0.75rem;
    }
}
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 0;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-question>svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-answer a,
.faq-answer a:visited,
.faq-answer a:hover,
.faq-answer a:focus {
    color: white;
    text-decoration: none;
}
#geo-context details {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.75rem;
}
#geo-context summary {
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s;
}
#geo-context summary:hover {
    color: #94a3b8;
}
#geo-context summary::-webkit-details-marker {
    display: none;
}
#geo-context p {
    margin-top: 0.5rem;
    line-height: 1.4;
}
.border-green {
    border-left-color: var(--c-green);
}
.border-cyan {
    border-left-color: var(--c-cyan);
}
body.subpage img {
    max-width: 100%;
    height: auto;
}
body.subpage section {
    background: transparent;
    position: relative;
    z-index: 2;
}
body.subpage .landing-hero {
    padding: 9rem 0 5.5rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    position: relative;
    z-index: 2;
}
body.subpage .landing-hero .container {
    position: relative;
}
body.subpage .landing-hero-content {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
body.subpage .landing-hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.75rem);
    letter-spacing: -0.03em;
    line-height: 1.02;
}
body.subpage .landing-hero h1 .animated-gradient {
    text-shadow: 0 0 40px rgba(var(--accent-rgb, 59, 130, 246), 0.25);
}
body.subpage .landing-hero .subline,
body.subpage .subline {
    margin: 0 auto;
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 860px;
    color: rgba(148, 163, 184, 0.98);
    text-wrap: balance;
}
body.subpage .landing-hero .subline+.flex,
body.subpage .landing-hero .subline+.flex.flex-col {
    margin-top: 3rem !important;
}
@media(min-width: 768px) {
    body.subpage .landing-hero {
        padding: 10rem 0 6.25rem;
    }
    body.subpage .landing-hero .subline,
    body.subpage .subline {
        font-size: 1.25rem;
    }
}
body.subpage .landing-stats {
    position: relative;
}
body.subpage .stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
@media(min-width: 768px) {
    body.subpage .stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 1.75rem 2rem;
        gap: 1.5rem;
    }
}
body.subpage .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    hyphens: auto;
    word-break: break-word;
    max-width: 100%;
}
body.subpage .stat-label {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    line-height: 1.3;
    hyphens: auto;
    word-break: break-word;
    max-width: 100%;
}
@media(min-width: 768px) {
    body.subpage .stat-number {
        font-size: 1.75rem;
        font-weight: 900;
    }
    body.subpage .stat-label {
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.08em;
    }
}
@media(min-width: 1024px) {
    body.subpage .stat-number {
        font-size: 2rem;
    }
}
body.subpage .mk-intro-card {
    grid-template-columns: 140px minmax(0, 1fr);
}
body.subpage .mk-intro-body {
    min-width: 0;
}
body.subpage .mk-intro-portrait img {
    width: 140px !important;
    height: 140px !important;
    max-width: 140px !important;
}
body.subpage .mk-intro-book img {
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}
body.subpage .mk-intro-book {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem;
}
body.subpage .mk-intro-book-body {
    width: 100%;
}
body.subpage .mk-intro-book a {
    width: 100%;
    justify-content: center;
}
@media(min-width: 768px) and (max-width: 1023px) {
    body.subpage .mk-intro-book {
        grid-column: 1 / -1;
    }
}
body.subpage .mk-intro-section {
    position: relative;
}
body.subpage .mk-intro-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
@media(min-width: 1024px) {
    body.subpage .mk-intro-card {
        grid-template-columns: 140px minmax(0, 1fr) 360px;
        align-items: start;
    }
    body.subpage .mk-intro-book {
        grid-column: 3;
        align-self: start;
        margin-top: 0;
    }
}
body.subpage .mk-intro-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
}
body.subpage .mk-intro-portrait {
    align-items: flex-start;
    justify-content: flex-start;
}
body.subpage .mk-intro-portrait img {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
body.subpage .mk-intro-body h3 {
    font-size: 1.65rem;
    letter-spacing: -0.02em;
}
body.subpage .mk-intro-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(148, 163, 184, 0.98);
}
body.subpage .mk-intro-points {
    margin-top: 1.25rem;
}
body.subpage .mk-intro-point {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body.subpage .mk-intro-book {
    margin-top: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
body.subpage .mk-intro-book-title {
    font-size: 1rem;
}
body.subpage .mk-intro-book-desc {
    font-size: 0.95rem;
}
body.subpage .mk-intro-book a {
    border: 1px solid rgba(255, 255, 255, 0.14);
}
@media(max-width: 768px) {
    body.subpage .mk-intro-portrait img {
        width: 110px !important;
        height: 110px !important;
    }
    body.subpage .mk-intro-book img {
        width: 64px !important;
        height: 64px !important;
    }
    body.subpage .landing-hero {
        padding: 8.5rem 0 5rem;
        text-align: left;
    }
    body.subpage .landing-hero-content {
        margin-left: 0;
        margin-right: 0;
    }
    body.subpage .landing-hero .subline,
    body.subpage .subline {
        margin-left: 0;
        margin-right: 0;
    }
}
body.subpage .cta-section {
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    background: #0f172a;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
body.subpage .cta-section h2,
body.subpage .cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}
@media (min-width: 1024px) {
    body.subpage .cta-section {
        padding: 4rem 5rem;
    }
}
body.subpage .feature-card-premium {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid var(--glass-border);
    border-left: 4px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .feature-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}
body.subpage .problem-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.3;
}
body.subpage .problem-title .icon,
body.subpage .problem-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
body.subpage .feature-card-premium .problem-content {
    margin-left: calc(32px + 0.75rem);
}
body.subpage .feature-card-premium .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    hyphens: auto;
    word-break: break-word;
}
body.subpage .result-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-size: 0.95rem;
    hyphens: auto;
    word-break: break-word;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .result-box svg {
    width: 18px;
    height: 18px;
    color: var(--c-green);
}
body.subpage .spotlight-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .spotlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
}
body.subpage .spotlight-card .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 1rem;
}
body.subpage .spotlight-card .icon-box .icon,
body.subpage .spotlight-card .icon-box svg {
    width: 22px;
    height: 22px;
}
body.subpage .spotlight-card h3 {
    margin-bottom: 0.5rem;
}
body.subpage .spotlight-card p {
    color: var(--text-muted);
    line-height: 1.7;
}
body.subpage .spotlight-card.theme-blue {
    border-color: rgba(59, 130, 246, 0.28);
}
body.subpage .spotlight-card.theme-blue .icon-box {
    border-color: rgba(59, 130, 246, 0.30);
    color: var(--c-blue);
    background: rgba(59, 130, 246, 0.08);
}
body.subpage .spotlight-card.theme-cyan {
    border-color: rgba(6, 182, 212, 0.28);
}
body.subpage .spotlight-card.theme-cyan .icon-box {
    border-color: rgba(6, 182, 212, 0.30);
    color: var(--c-cyan);
    background: rgba(6, 182, 212, 0.08);
}
body.subpage .spotlight-card.theme-purple {
    border-color: rgba(139, 92, 246, 0.28);
}
body.subpage .spotlight-card.theme-purple .icon-box {
    border-color: rgba(139, 92, 246, 0.30);
    color: var(--c-purple);
    background: rgba(139, 92, 246, 0.08);
}
body.subpage .spotlight-card.theme-green {
    border-color: rgba(34, 197, 94, 0.28);
}
body.subpage .spotlight-card.theme-green .icon-box {
    border-color: rgba(34, 197, 94, 0.30);
    color: var(--c-green);
    background: rgba(34, 197, 94, 0.08);
}
body.subpage .spotlight-card.theme-blue,
body.subpage .spotlight-card.theme-cyan,
body.subpage .spotlight-card.theme-purple {
    border-color: rgba(var(--accent-rgb, 59, 130, 246), 0.28);
}
body.subpage .spotlight-card.theme-blue .icon-box,
body.subpage .spotlight-card.theme-cyan .icon-box,
body.subpage .spotlight-card.theme-purple .icon-box {
    border-color: rgba(var(--accent-rgb, 59, 130, 246), 0.30);
    color: var(--accent);
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.08);
}
body.subpage section.workshop-section {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #030814 0%, #0f172a 100%) !important;
    border-bottom: 1px solid var(--border);
}
body.subpage .workshop-card {
    background: radial-gradient(circle at top right, rgba(var(--accent-rgb, 59, 130, 246), 0.10), #0f172a);
    border: 1px solid rgba(var(--accent-rgb, 59, 130, 246), 0.30);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb, 59, 130, 246), 0.80), transparent);
}
body.subpage .workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
body.subpage .workshop-badge {
    display: inline-block;
    background: rgba(var(--accent-rgb, 59, 130, 246), 0.15);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb, 59, 130, 246), 0.30);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
body.subpage .workshop-headline {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
body.subpage .workshop-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 90%;
}
body.subpage .workshop-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
body.subpage .workshop-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}
body.subpage .workshop-list li svg {
    color: var(--c-green);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
body.subpage .workshop-offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .workshop-offer-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
body.subpage .workshop-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
body.subpage .workshop-price span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}
body.subpage .workshop-offer-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
body.subpage .workshop-result-card {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body.subpage .workshop-result-title {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
body.subpage .workshop-result-text {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #cbd5e1;
}
@media(max-width: 767px) {
    body.subpage section.workshop-section {
        padding: 4rem 1rem;
    }
    body.subpage .workshop-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
    body.subpage .workshop-grid {
        gap: 2rem;
    }
    body.subpage .workshop-headline {
        font-size: 1.75rem;
    }
    body.subpage .workshop-paragraph {
        max-width: 100%;
    }
    body.subpage .workshop-offer-card {
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    body.subpage .workshop-price {
        font-size: 2rem;
    }
    body.subpage .workshop-result-card {
        padding: 1rem;
    }
}
@media(min-width: 1024px) {
    body.subpage .workshop-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }
    body.subpage .workshop-list {
        grid-template-columns: 1fr 1fr;
    }
}
body.subpage .landing-usecases-scroller {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}
body.subpage .landing-usecases-scroller::-webkit-scrollbar {
    display: none;
}
body.subpage .landing-usecases-scroller .swipe-item {
    flex: 0 0 320px;
    scroll-snap-align: start;
}
@media(min-width: 768px) {
    body.subpage .landing-usecases-scroller {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }
    body.subpage .landing-usecases-scroller .swipe-item {
        flex: initial;
    }
}
.process-steps {
    display: grid;
    gap: 1.25rem;
}
@media(min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .process-steps.items-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media(min-width: 1024px) {
    .process-steps.items-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .process-steps.items-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .process-steps.items-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .process-steps.items-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .process-steps.items-7 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .process-steps.items-8 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.process-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--step-accent, var(--accent));
}
.process-icon .icon,
.process-icon svg {
    width: 24px;
    height: 24px;
}
.process-step h4 {
    color: var(--step-accent, white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.process-step p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}
body.subpage .process-steps {
    display: grid;
    gap: 1.25rem;
}
@media(min-width: 768px) {
    body.subpage .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    body.subpage .process-steps.items-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
body.subpage .process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.75rem;
    text-align: center;
}
body.subpage .process-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 0.85rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--step-accent, var(--accent));
}
body.subpage .process-icon .icon,
body.subpage .process-icon svg {
    width: 22px;
    height: 22px;
}
body.subpage .process-step h4 {
    color: var(--step-accent, white);
    margin-bottom: 0.5rem;
}
body.subpage .process-step p {
    color: var(--text-muted);
    line-height: 1.7;
}
body.subpage .border-blue {
    border-left-color: var(--c-blue);
}
body.subpage .border-purple {
    border-left-color: var(--c-purple);
}
body.subpage .border-teal {
    border-left-color: var(--c-teal);
}
body.subpage .border-orange {
    border-left-color: var(--c-orange);
}
body.subpage .border-pink {
    border-left-color: var(--c-pink);
}
body.subpage .border-green {
    border-left-color: var(--c-green);
}
body.subpage .border-indigo {
    border-left-color: var(--c-indigo);
}
body.subpage .border-yellow {
    border-left-color: var(--c-yellow);
}
body.subpage .border-red {
    border-left-color: var(--c-red);
}
body.subpage .border-cyan {
    border-left-color: var(--c-cyan);
}
body.subpage .border-blue,
body.subpage .border-purple,
body.subpage .border-teal,
body.subpage .border-orange,
body.subpage .border-pink,
body.subpage .border-indigo,
body.subpage .border-yellow,
body.subpage .border-red,
body.subpage .border-cyan {
    border-left-color: var(--accent);
}
body.subpage footer {
    background: #020617;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}
body.subpage .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media(min-width: 768px) {
    body.subpage .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        align-items: start;
    }
}
body.subpage .footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
body.subpage .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    line-height: 1.35;
}
body.subpage .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
body.subpage .footer-links a:hover {
    color: white;
}
body.subpage .footer-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1.5rem;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
body.subpage .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}
body.subpage .footer-bottom p {
    color: #64748b;
    text-wrap: balance;
}
@media(min-width: 768px) {
    body.subpage .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.mk-profile-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .mk-profile-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 5rem;
    }
}
.mk-portrait-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    margin: 0 auto;
}
.mk-portrait-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, #2563eb, #8b5cf6);
    border-radius: 1.5rem;
    filter: blur(24px);
    opacity: 0.4;
    transition: opacity 0.7s;
}
.group:hover .mk-portrait-blob {
    opacity: 0.6;
}
.mk-portrait-frame {
    position: relative;
    width: 100%;
    height: 100%;
}
.mk-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: grayscale(100%);
    transform: scale(1.05);
    transition: all 0.7s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mk-portrait-container:hover .mk-portrait-img {
    filter: grayscale(0%);
    transform: scale(1);
}
@media (min-width: 992px) {
    .mk-portrait-container {
        max-width: 400px;
    }
}
.mk-cta-button {
    margin-bottom: 2rem;
}
.book-promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.book-cover-mockup {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.book-cover-img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 600px) {
    .book-promo-card {
        flex-direction: column;
        text-align: center;
    }
}
.mega-nav-container {
    display: none;
}
@media (min-width: 1160px) {
    .mega-nav-container {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
        margin: 0;
    }
}
.mega-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body:not(.subpage) .mega-nav-item,
.mega-nav-item-home {
    position: static;
    display: inline-flex;
    align-items: center;
}
body:not(.subpage) .mega-nav-item-home {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.mega-nav-item-home:hover>.mega-dropdown,
.mega-nav-item-home>.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-nav-item-home>.nav-link {
    position: relative;
    z-index: 1;
}
body:not(.subpage) .mega-nav-item-home::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 20px;
    background: transparent;
}
.mega-nav-link {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.mega-nav-link .caret-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
    opacity: 0.7;
}
.mega-nav-link:hover,
body:not(.subpage) .mega-nav-item:hover>.mega-nav-link,
.mega-nav-item.mobile-open>.mega-nav-link {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}
body:not(.subpage) .mega-nav-item:hover>.mega-nav-link .caret-icon,
.mega-nav-item.mobile-open>.mega-nav-link .caret-icon {
    transform: rotate(180deg);
}
.mega-dropdown {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100vw - 2rem);
    max-width: 1100px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    z-index: 100;
    box-sizing: border-box;
}
body:not(.subpage) .mega-nav-item:hover>.mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-grid {
    display: grid;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}
.mega-grid-branchen {
    display: flex !important;
    gap: 1.5rem;
    padding: 0.5rem 0;
    align-items: stretch !important;
}
.mega-grid-branchen .branchen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
}
.mega-grid-branchen .mega-group-title {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}
.mega-grid-branchen .mega-feature-card {
    width: 280px;
    flex-shrink: 0;
}
.mega-grid-industries {
    display: flex !important;
    gap: 1.5rem;
    padding: 0.5rem 0;
    align-items: stretch !important;
}
.mega-grid-industries .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
}
.mega-grid-industries .mega-group-title {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}
.mega-grid-industries .mega-feature-card {
    width: 280px;
    flex-shrink: 0;
}
.mega-grid-services {
    display: flex !important;
    gap: 1rem;
    padding: 0.5rem 0;
    align-items: stretch !important;
    min-height: 500px !important;
}
.mega-grid-services .mega-services-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
    flex: 1;
}
.mega-grid-services .mega-feature-card {
    width: 280px !important;
    flex-shrink: 0 !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
}
.mega-group-title {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin: 1.5rem 0 0.75rem 0;
    padding-bottom: 0.5rem;
    font-weight: 700;
    grid-column: 1 / -1;
    opacity: 0.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mega-group-title:first-child {
    margin-top: 0;
}
.mega-link-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.6rem 0.75rem;
    border-radius: 0.625rem;
    transition: background 0.2s, border-color 0.2s;
    gap: 0.75rem;
    border: 1px solid transparent;
    min-width: 0;
    overflow: hidden;
}
.mega-link-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border);
}
.mega-link-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    flex-shrink: 0;
    transition: transform 0.2s;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: inherit;
}
.mega-link-item:hover .mega-link-icon {
    transform: scale(1.1);
}
.mega-link-text {
    min-width: 0;
    overflow: hidden;
}
.mega-link-text h4 {
    color: #e5e7eb;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mega-link-item:hover .mega-link-text h4 {
    color: var(--mega-menu-hover);
}
.mega-link-text p {
    color: #6b7280;
    font-size: 0.65rem;
    line-height: 1.3;
    margin: 2px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mega-feature-card {
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.03));
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100% !important;
    min-height: 100% !important;
}
.mega-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}
.mega-feature-card>* {
    position: relative;
    z-index: 1;
}
.mega-feature-card:hover::before {
    opacity: 1;
}
.mega-feature-badge {
    background: var(--accent);
    color: var(--accent-contrast, white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    align-self: flex-start;
    letter-spacing: 0.05em;
}
.mega-feature-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
    line-height: 1.3;
}
.mega-feature-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}
.mega-feature-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 6px;
}
.mega-feature-btn .icon {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}
.mega-feature-btn:hover .icon {
    transform: translateX(4px);
}
.mega-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}
.mega-mobile-toggle .icon {
    width: 24px;
    height: 24px;
}
.mega-mobile-menu {
    display: none;
}
@media (max-width: 1199px) {
    .mega-nav-container {
        display: none;
    }
    .mega-mobile-toggle {
        display: block;
    }
    .mega-mobile-menu {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        overflow-y: auto;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mega-mobile-menu.open {
        transform: translateX(0);
    }
    .mega-mobile-menu .mega-nav-item {
        display: block;
        height: auto;
        border-bottom: 1px solid var(--glass-border);
    }
    .mega-mobile-menu .mega-nav-link {
        padding: 1rem 0;
        font-size: 1rem;
        justify-content: space-between;
        width: 100%;
        text-transform: none;
        letter-spacing: 0;
    }
    .mega-mobile-menu .mega-nav-link .caret-icon {
        transform: rotate(-90deg);
    }
    .mega-mobile-menu .mega-nav-item.mobile-open .mega-nav-link .caret-icon {
        transform: rotate(0deg);
    }
    .mega-mobile-menu .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        backdrop-filter: none;
    }
    .mega-mobile-menu .mega-nav-item.mobile-open .mega-dropdown {
        height: auto;
        padding-bottom: 1rem;
    }
    .mega-mobile-menu .mega-grid,
    .mega-mobile-menu .mega-grid-services,
    .mega-mobile-menu .mega-services-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0;
    }
    .mega-mobile-menu .mega-grid-branchen {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0;
    }
    .mega-mobile-menu .mega-grid-branchen .mega-feature-card {
        grid-row: auto;
        grid-column: auto;
        display: block;
    }
    .mega-mobile-menu .mega-link-item {
        padding: 0.75rem 0;
    }
    .mega-mobile-menu .mega-group-title {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .mega-mobile-menu .mega-mobile-cta {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid var(--glass-border);
    }
}
@media (max-width: 767px) {
    .mega-mobile-menu {
        padding: 1rem;
    }
}
.focus-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.focus-grid::-webkit-scrollbar {
    display: none;
}
.focus-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: auto;
    scroll-snap-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.focus-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.5), #0B101B);
}
@media(min-width: 768px) {
    .focus-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
    }
    .focus-card {
        min-width: auto;
    }
    #focus-dots {
        display: none;
    }
}
@media(min-width: 1280px) {
    .focus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.focus-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid;
    align-self: flex-start;
}
.tag-geo {
    color: var(--c-cyan);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}
.tag-llm {
    color: var(--c-purple);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}
.tag-lp {
    color: var(--c-pink);
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.1);
}
.tag-training {
    color: var(--c-orange);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.1);
}
.focus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.focus-card p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.feature-list {
    list-style: none;
    color: white;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}
.price-box {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 -2.5rem -2.5rem -2.5rem;
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.3s;
}
.focus-card:hover .price-box {
    background: rgba(255, 255, 255, 0.06);
}
.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-value span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}
.btn-focus {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-focus:hover {
    background: white;
    color: black;
    border-color: white;
}
.mosaic-container {
    display: grid;
    grid-template-rows: repeat(2, 224px);
    grid-auto-flow: column;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
    padding-left: 0;
    list-style: none;
}
.mosaic-container::-webkit-scrollbar {
    display: none;
}
.mosaic-item {
    position: relative;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: 0.4s;
    overflow: hidden;
    scroll-snap-align: start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mosaic-item .icon,
.mosaic-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
a.mosaic-item,
a.mosaic-item:hover,
a.mosaic-item:visited {
    text-decoration: none;
    color: inherit;
}
.mosaic-item h3 {
    margin-bottom: 0;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}
.mosaic-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.mosaic-item:hover::before {
    opacity: 1;
}
.mosaic-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
}
.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    padding: 1.5rem;
    z-index: 20;
    gap: 1rem;
}
.mosaic-overlay h4 {
    margin-bottom: 0;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}
.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
    transform: translateY(0);
}
@media(min-width: 768px) {
    .mosaic-container {
        grid-auto-columns: 224px;
    }
}
@media(max-width: 767px) {
    .mosaic-container {
        grid-template-rows: repeat(2, 192px);
        grid-auto-columns: 48vw;
        gap: 0.6rem;
        padding: 0 1rem 1rem 1rem;
    }
    .mosaic-item {
        padding: 0.85rem;
    }
    .mosaic-overlay {
        padding: 0.85rem;
    }
    .mosaic-overlay p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    .mosaic-item.touch-active .mosaic-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}
@media(min-width: 1024px) {
    .mosaic-container.mosaic-grid-expanded {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: auto;
        grid-auto-flow: row;
        overflow-x: visible;
        scroll-snap-type: none;
    }
    .mosaic-container.mosaic-grid-expanded .mosaic-item {
        height: 180px;
    }
    .mosaic-container.mosaic-grid-expanded .mosaic-overlay {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .mosaic-container.mosaic-grid-expanded .mosaic-overlay p {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .mosaic-expanded .scroll-arrow {
        display: none;
    }
    .scroll-nav-container.mosaic-dots-expanded {
        display: none;
    }
}
@media (max-width: 1023px) {
    .scroll-nav-container.mosaic-dots-expanded {
        display: flex;
    }
}
.scroll-wrapper {
    position: relative;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
.scroll-arrow.arrow-left {
    left: -24px;
}
.scroll-arrow.arrow-right {
    right: -24px;
}
@media(max-width: 1024px) {
    .scroll-arrow {
        display: none;
    }
}
.scroll-nav-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 8px;
}
.scroll-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
}
.scroll-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}
.news-scroller {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 2rem 5%;
    align-items: flex-start;
    height: 450px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.news-scroller::-webkit-scrollbar {
    display: none;
}
.signal-card {
    flex: 0 0 auto;
    height: 400px;
    perspective: 1000px;
    scroll-snap-align: center;
}
.signal-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.signal-card:hover .signal-inner {
    transform: rotateY(180deg);
}
.signal-front {
    position: relative;
    width: auto;
    min-width: 240px;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(30, 41, 59, 0.4);
    display: flex;
    flex-direction: column;
}
.signal-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
}
.signal-image-container {
    flex: 0 0 280px;
    height: 280px;
    width: auto;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    display: flex;
    justify-content: center;
}
.signal-image-container img {
    height: 100%;
    width: auto;
    max-width: none;
    transition: transform 0.5s ease;
}
.signal-card:hover .signal-image-container img {
    transform: scale(1.05);
}
.signal-content {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    flex-grow: 1;
}
.image-credit {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(2px);
}
.spotlight-card {
    position: relative;
    background: #0f172a;
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 2px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}
.spotlight-card:hover::before {
    opacity: 1;
}
.spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}
.theme-blue:hover {
    border-top-color: var(--c-blue);
}
.theme-pink:hover {
    border-top-color: var(--c-pink);
}
.theme-purple:hover {
    border-top-color: var(--c-purple);
}
.theme-green:hover {
    border-top-color: var(--c-green);
}
.theme-yellow:hover {
    border-top-color: var(--c-yellow);
}
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-blue .icon-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    color: var(--c-blue);
    border-color: rgba(59, 130, 246, 0.2);
}
.theme-pink .icon-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), transparent);
    color: var(--c-pink);
    border-color: rgba(236, 72, 153, 0.2);
}
.theme-purple .icon-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    color: var(--c-purple);
    border-color: rgba(139, 92, 246, 0.2);
}
.theme-green .icon-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
    color: var(--c-green);
    border-color: rgba(34, 197, 94, 0.2);
}
.theme-yellow .icon-box {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), transparent);
    color: var(--c-yellow);
    border-color: rgba(234, 179, 8, 0.2);
}
.spotlight-card:hover .icon-box {
    transform: scale(1.1);
}
.spotlight-card p {
    font-size: 0.95rem;
}
.feature-card-premium {
    background: #0f172a;
    border-radius: 1.5rem;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 4px solid transparent;
    overflow: hidden;
}
.feature-card-premium:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
    padding-left: 3.5rem;
}
.border-blue {
    border-left-color: var(--c-blue);
}
.border-purple {
    border-left-color: var(--c-purple);
}
.border-orange {
    border-left-color: var(--c-orange);
}
.border-teal {
    border-left-color: var(--c-teal);
}
.border-indigo {
    border-left-color: var(--c-indigo);
}
.border-pink {
    border-left-color: var(--c-pink);
}
.feature-card-premium .problem-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.3;
}
.feature-card-premium .problem-title .icon,
.feature-card-premium .problem-title svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.feature-card-premium .problem-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.feature-card-premium .problem-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent, var(--c-cyan));
    stroke: var(--accent, var(--c-cyan));
}
.feature-card-premium .problem-icon .icon,
.feature-card-premium .problem-icon svg {
    width: 32px;
    height: 32px;
}
.feature-card-premium .problem-title-text {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    hyphens: auto;
    word-break: break-word;
    line-height: 1.3;
}
.feature-card-premium .problem-content {
    margin-left: calc(32px + 0.75rem);
}
.feature-card-premium .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    hyphens: auto;
    word-break: break-word;
    font-weight: normal;
}
.feature-card-premium .result-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--c-green);
    font-weight: 700;
    font-size: 0.95rem;
    hyphens: auto;
    word-break: break-word;
}
.feature-card-premium .result-box svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    flex-shrink: 0;
}
@media(min-width: 1024px) {
    .industry-wrapper {
        height: 500px;
    }
    .industry-text-col {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .feature-card-premium {
        height: auto;
        flex: 1;
    }
}
@media(max-width: 767px) {
    .feature-card-premium {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
    }
    .feature-card-premium:hover {
        padding-left: 1.75rem;
    }
    .feature-card-premium .problem-title {
        gap: 0.5rem;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    .feature-card-premium .problem-title .icon,
    .feature-card-premium .problem-title svg {
        width: 24px;
        height: 24px;
    }
    .feature-card-premium .problem-header {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .feature-card-premium .problem-icon {
        width: 24px;
        height: 24px;
    }
    .feature-card-premium .problem-icon .icon,
    .feature-card-premium .problem-icon svg {
        width: 24px;
        height: 24px;
    }
    .feature-card-premium .problem-title-text {
        font-size: 0.95rem;
    }
    .feature-card-premium .problem-content {
        margin-left: calc(24px + 0.5rem);
    }
    .feature-card-premium .desc {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    .feature-card-premium .result-box {
        font-size: 0.8rem;
    }
    .feature-card-premium .result-box svg {
        width: 16px;
        height: 16px;
    }
}
.img-card {
    height: 500px;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 3s ease;
}
.img-card:hover img {
    transform: scale(1.05);
}
.floating-panel {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    z-index: 20;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}
.portrait-container {
    position: relative;
}
.portrait-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, #2563eb, #8b5cf6);
    border-radius: 1.5rem;
    filter: blur(24px);
    opacity: 0.4;
    transition: opacity 0.7s;
}
.group:hover .portrait-blob {
    opacity: 0.6;
}
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    filter: grayscale(100%);
    transform: scale(1.05);
    transition: all 0.7s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.portrait-container:hover .portrait-img {
    filter: grayscale(0%);
    transform: scale(1);
}
.focus-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.focus-grid::-webkit-scrollbar {
    display: none;
}
.focus-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: auto;
    scroll-snap-align: center;
}
.focus-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.5), #0B101B);
}
@media(min-width: 768px) {
    .focus-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
    }
    .focus-card {
        min-width: auto;
    }
    #focus-dots {
        display: none;
    }
}
@media(min-width: 1280px) {
    .focus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.focus-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid;
    align-self: flex-start;
}
.tag-geo {
    color: var(--c-cyan);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}
.tag-llm {
    color: var(--c-purple);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}
.tag-lp {
    color: var(--c-pink);
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.1);
}
.tag-training {
    color: var(--c-orange);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.1);
}
.focus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.focus-card p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.feature-list {
    list-style: none;
    color: white;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}
.price-box {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 -2.5rem -2.5rem -2.5rem;
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: background 0.3s;
}
.focus-card:hover .price-box {
    background: rgba(255, 255, 255, 0.06);
}
.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-value span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}
.btn-focus {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-focus:hover {
    background: white;
    color: black;
    border-color: white;
}
.workshop-section {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #030814 0%, #0f172a 100%);
    border-bottom: 1px solid var(--glass-border);
}
.workshop-card {
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), #0f172a);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent);
}
.workshop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.workshop-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.workshop-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}
.workshop-list li svg {
    color: var(--c-green);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.workshop-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.workshop-price span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}
.workshop-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: var(--c-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
@media(max-width: 767px) {
    .workshop-section {
        padding: 4rem 1rem;
    }
    .workshop-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }
    .workshop-grid {
        gap: 2rem;
    }
    .workshop-card h2 {
        font-size: 1.75rem;
    }
    .workshop-card>.workshop-grid>div:last-child {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .workshop-price {
        font-size: 2rem;
    }
    .workshop-card>.workshop-grid>div:last-child>div {
        padding: 1rem !important;
    }
}
@media(min-width: 1024px) {
    .workshop-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }
    .workshop-list {
        grid-template-columns: 1fr 1fr;
    }
}
.btn-lead-glow {
    position: relative;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #020617 !important;
    overflow: hidden;
    border: 1px solid white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-lead-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-300%) skewX(-20deg);
    animation: lead-shimmer 3s infinite;
    will-change: transform;
    pointer-events: none;
}
.btn-lead-glow:hover {
    transform: scale(1.05);
    background: #3B82F6 !important;
    color: white !important;
    border-color: #3B82F6;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
}
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: translateX(-300%) skewX(-20deg);
    animation: lead-shimmer 5s infinite;
    will-change: transform;
    pointer-events: none;
}
@keyframes lead-shimmer {
    0% {
        transform: translateX(-300%) skewX(-20deg);
    }
    20% {
        transform: translateX(300%) skewX(-20deg);
    }
    100% {
        transform: translateX(300%) skewX(-20deg);
    }
}
body.subpage .author-section .author-content,
body.subpage .author-section .author-content h2,
body.subpage .author-section .author-content p,
body.subpage section.author-section .author-content,
body.subpage section.author-section .author-content h2,
body.subpage section.author-section .author-content p {
    text-align: left !important;
}
.spotlight-card,
.mosaic-item,
.focus-card,
.btn-magnetic {
    will-change: transform, opacity;
    transform: translateZ(0);
}
#hero-image {
    will-change: filter, transform;
}
.hero-footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
    max-width: 900px;
}
@media (min-width: 1024px) {
    .hero-footer {
        margin-top: 10rem !important;
    }
}
body:not(.subpage) footer {
    background: #020617;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}
body:not(.subpage) .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
body:not(.subpage) .footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
body:not(.subpage) .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
body:not(.subpage) .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
body:not(.subpage) .footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}
body:not(.subpage) .footer-cta-box {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
body:not(.subpage) .footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}
@media(min-width: 768px) {
    body:not(.subpage) .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
    body:not(.subpage) .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .glass-tab-container.industry-tabs {
        min-width: 380px;
    }
}
img {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
img.loaded {
    opacity: 1;
    transform: translateY(0);
}
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) var(--bg);
}
h1,
h2,
h3,
h4,
p,
span,
a {
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
select {
    appearance: none;
    cursor: pointer;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.animate-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}
.readable-hero-text {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
[class*="-card"] h3,
[class*="-card"] h4,
[class*="-card"] p,
[class*="-title"],
[class*="-desc"],
[class*="-description"],
.card-title,
.card-description,
.card-features,
.agency-service-card h4,
.agency-service-card p,
.spotlight-card h3,
.spotlight-card p,
.focus-card h3,
.focus-card p,
.signal-front h3,
.signal-front p,
.signal-back p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}
@media(max-width: 768px) {
    h1,
    h2,
    h3,
    h4 {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}
@media(max-width: 768px) {
    body:not(.subpage) header {
        min-height: 100svh !important;
        padding-top: 0 !important;
        justify-content: flex-start !important;
        padding-bottom: 0;
    }
    body:not(.subpage) .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100svh;
        margin: 0;
        padding-top: 10vh !important;
    }
    body:not(.subpage) header h1 {
        font-size: 3.5rem !important;
        line-height: 1.05 !important;
        margin-bottom: 1rem !important;
    }
    body:not(.subpage) header p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
        padding: 0 10px;
    }
    .header-btns {
        gap: 0.75rem !important;
    }
    .header-btns .btn {
        padding: 0.75rem 1rem;
    }
    .hero-footer {
        margin-top: 0 !important;
        padding-top: 2rem;
        padding-bottom: 4rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        opacity: 0.9;
    }
    .hero-footer p.text-center {
        font-size: 0.65rem !important;
        margin-bottom: 0.75rem !important;
        opacity: 0.7;
    }
    .hero-footer .flex-col {
        flex-direction: row !important;
        display: grid !important;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px 4px !important;
        padding: 0 10px;
    }
    .hero-footer .flex-col>* {
        grid-column: span 2;
    }
    .hero-footer .flex-col> :nth-child(4) {
        grid-column: 2 / span 2;
    }
    .hero-footer .flex-col> :nth-child(5) {
        grid-column: 4 / span 2;
    }
    .hero-footer .flex.items-center {
        justify-content: center;
        font-size: 0.7rem !important;
        white-space: nowrap;
    }
    .hero-footer svg {
        width: 14px;
        height: 14px;
    }
    #branchen .img-card {
        display: none !important;
    }
    #branchen #tab-content-wrapper {
        min-height: auto !important;
    }
    .glass-tab-container.industry-tabs {
        width: 100% !important;
        max-width: 100%;
    }
    .tab-btn {
        padding: 0.75rem 2px !important;
        font-size: 0.8rem !important;
    }
}
