/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #ffe600;
    --accent-hover: #ffd000;
    --dark: #1a1a24;
    --text: #2e2e38;
    --text-light: #6c6c7a;
    --light-bg: #f6f6fa;
    --lighter-bg: #eaeaf2;
    --border: #c4c4cd;
    --white: #ffffff;
    --header-h: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
    scroll-margin-top: var(--header-h);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 56px;
    max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 230, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    transition: gap var(--transition);
}

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}

.link-arrow:hover {
    gap: 10px;
    color: var(--text);
}

.link-arrow-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.link-arrow-light::after {
    content: '\2192';
    transition: transform var(--transition);
}

.link-arrow-light:hover { gap: 10px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-cookie-settings {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--white);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--lighter-bg);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-item > a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 4px;
    transition: all var(--transition);
}

.nav-item > a:hover {
    background: var(--light-bg);
    color: var(--dark);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 480px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    padding: 32px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dropdown-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.dropdown-col a {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--lighter-bg);
}

.dropdown-col a:last-child {
    border-bottom: none;
}

.dropdown-col a:hover {
    color: var(--dark);
    padding-left: 4px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
    border-radius: 50%;
    transition: background var(--transition);
}

.search-btn:hover {
    background: var(--light-bg);
}

.my-account-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 20px;
    border: 2px solid var(--dark);
    border-radius: 4px;
    transition: all var(--transition);
}

.my-account-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    padding: 6px 14px;
    border: 2px solid var(--border);
    border-radius: 4px;
    transition: all var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lang-switch:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 2000;
    padding: 0 40px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-overlay-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-family: inherit;
    color: var(--dark);
    padding: 8px 0;
    background: transparent;
}

.search-input::placeholder {
    color: var(--border);
}

.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
}

/* ===== HERO ===== */
.hero {
    margin-top: var(--header-h);
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-carousel {
    height: 100%;
    position: relative;
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,36,0.85) 0%, rgba(26,26,36,0.4) 100%);
}

.hero-content {
    position: absolute;
    bottom: 140px;
    left: 80px;
    max-width: 640px;
    color: var(--white);
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-nav {
    position: absolute;
    bottom: 48px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.hero-arrow {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== PERSPECTIVES ===== */
.perspectives {
    background: var(--white);
}

.perspective-carousel {
    position: relative;
}

.perspective-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.perspective-track::-webkit-scrollbar { display: none; }

.perspective-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--white);
    border: 1px solid var(--lighter-bg);
    overflow: hidden;
    transition: all var(--transition);
    flex-shrink: 0;
}

.perspective-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.perspective-img {
    height: 200px;
    overflow: hidden;
}

.perspective-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.perspective-body {
    padding: 24px;
}

.perspective-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.perspective-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--dark);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
}

.carousel-arrow:hover {
    border-color: var(--dark);
    color: var(--dark);
}

/* ===== SERVICES ===== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-bottom-color: var(--accent);
}

.service-icon {
    margin-bottom: 24px;
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ===== SOLUTIONS ===== */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.solution-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 4px;
}

.solution-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    min-height: 580px;
}

.solution-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,36,0.9) 0%, rgba(26,26,36,0.1) 60%);
}

.solution-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--white);
    z-index: 2;
}

.solution-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.solution-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.solution-large .solution-content h3 {
    font-size: 1.8rem;
}

.solution-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 16px;
}

/* ===== CASE STUDIES ===== */
.case-studies {
    background: var(--light-bg);
}

.cases-carousel {
    position: relative;
}

.cases-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.cases-track::-webkit-scrollbar { display: none; }

.case-card {
    min-width: 380px;
    max-width: 380px;
    background: var(--white);
    overflow: hidden;
    flex-shrink: 0;
    transition: all var(--transition);
}

.case-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.case-img {
    height: 220px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.case-body {
    padding: 28px;
}

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-hover);
    background: var(--dark);
    padding: 4px 12px;
    margin-bottom: 14px;
}

.case-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.case-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== STUDIES ===== */
.studies {
    background: var(--white);
}

.studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.study-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--lighter-bg);
    transition: all var(--transition);
}

.study-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: var(--border);
}

.study-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.study-body {
    flex: 1;
}

.study-date {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.study-body h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--dark);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--dark);
    padding: 80px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p {
    color: var(--border);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    min-width: 300px;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: var(--border);
}

.newsletter-input:focus {
    border-color: var(--accent);
}

.newsletter-form .btn-primary {
    border: none;
    white-space: nowrap;
}

/* ===== KARRIERE ===== */
.karriere {
    background: var(--white);
}

.karriere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.karriere-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.karriere-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.karriere-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

.karriere-img {
    overflow: hidden;
    border-radius: 4px;
}

.karriere-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* ===== PRESSE ===== */
.presse {
    background: var(--light-bg);
}

.presse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.presse-card {
    background: var(--white);
    padding: 32px;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.presse-card:hover {
    border-left-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.presse-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 12px;
}

.presse-card h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--border);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--border);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all var(--transition);
    padding: 0;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.footer-social a:hover svg {
    fill: var(--dark);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--border);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-large {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 400px;
    }
    .studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .container { padding: 0 24px; }
    .section { padding: 72px 0; }
    .section-title { font-size: 2rem; }

    .main-nav { display: none; }

    .main-nav.active {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        padding: 24px;
        overflow-y: auto;
    }

    .main-nav.active .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .main-nav.active .nav-item > a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--lighter-bg);
    }

    .main-nav.active .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        padding: 16px 0;
        display: none;
    }

    .main-nav.active .has-dropdown:hover .dropdown {
        display: block;
    }

    .mobile-toggle { display: flex; }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .my-account-btn { display: none; }

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 120px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-nav {
        left: 24px;
    }

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

    .karriere-img { order: -1; }

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

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-input { min-width: 100%; }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solution-large {
        grid-column: auto;
        min-height: 320px;
    }
    .studies-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .karriere-stats {
        flex-wrap: wrap;
    }
    .hero {
        min-height: 500px;
        height: 70vh;
    }
    .hero-content h1 { font-size: 1.8rem; }
    .case-card {
        min-width: 280px;
        max-width: 280px;
    }
    .perspective-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 60px 0 48px;
    margin-top: var(--header-h);
    overflow: hidden;
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,36,0.85) 0%, rgba(26,26,36,0.6) 100%);
    z-index: 1;
}

.subpage-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    list-style: none;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb [aria-current="page"] {
    color: var(--white);
}

.subpage-hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.subpage-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 12px;
}

.subpage-hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.6;
}

/* ===== SUBPAGE CONTENT ===== */
.subpage-content {
    padding: 0;
}

.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--light-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.content-main h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 28px 0 10px;
}

.content-main p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--text);
}

.content-main ul, .content-main ol {
    margin: 0 0 20px 20px;
    line-height: 1.75;
    color: var(--text);
}

.content-main li {
    margin-bottom: 6px;
}

.content-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.sidebar-card {
    background: var(--light-bg);
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sidebar-download {
    background: var(--dark);
    color: var(--white);
}

.sidebar-download h4 {
    color: var(--white);
}

.sidebar-download p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.fact-list {
    list-style: none;
}

.fact-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list strong {
    display: block;
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--lighter-bg);
    transition: box-shadow var(--transition);
}

.step-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.step-num {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CASE META ===== */
.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.case-meta-item {
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
    max-width: 780px;
}

.article-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.article-lead {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 36px 0 12px;
}

.article-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 28px 0 10px;
}

.article-body p {
    margin-bottom: 16px;
    line-height: 1.75;
    color: var(--text);
}

.article-contact {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--lighter-bg);
}

.article-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    margin-bottom: 8px;
}

.article-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== STUDY META ===== */
.study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lighter-bg);
}

.study-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.key-findings {
    list-style: none;
    margin: 20px 0 0;
}

.key-findings li {
    padding: 14px 0 14px 24px;
    border-bottom: 1px solid var(--lighter-bg);
    position: relative;
    line-height: 1.6;
    color: var(--text);
}

.key-findings li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--accent);
}

/* ===== RELATED CARDS ===== */
.related-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.related-card {
    border: 1px solid var(--lighter-bg);
    border-radius: 8px;
    padding: 24px;
    transition: box-shadow var(--transition);
}

.related-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.related-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ===== SUBPAGE CTA ===== */
.subpage-cta {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
}

.subpage-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.subpage-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 560px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dark);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== CAREERS ===== */
.job-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--lighter-bg);
    border-radius: 8px;
    transition: all var(--transition);
}

.job-card:hover {
    border-color: var(--dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.job-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.job-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.job-card .link-arrow {
    white-space: nowrap;
}

/* ===== LOCATIONS ===== */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

.location-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.location-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.location-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 4px;
}

.location-card .link-arrow {
    margin-top: 16px;
}

/* ===== SUBPAGE RESPONSIVE ===== */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .content-sidebar {
        position: static;
        order: -1;
    }
    .subpage-hero h1 {
        font-size: 2rem;
    }
    .subpage-hero {
        min-height: 260px;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .subpage-hero h1 {
        font-size: 1.6rem;
    }
    .content-section {
        padding: 48px 0;
    }
    .subpage-cta {
        padding: 48px 0;
    }
    .subpage-cta h2 {
        font-size: 1.5rem;
    }
}
