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

:root {
    --primary-color: #0a1630;
    --accent-color: #ffe536;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #999999;
    --gray-dark: #333333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 22, 48, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 6px;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    transition: var(--transition);
    color: var(--primary-color);
}

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1f42 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* New: Left-Aligned Full-Width Hero Content */
.hero-content-centered {
    color: var(--white);
    max-width: 100%;
    margin: 0 0 0 0;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    text-align: left;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-highlight {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2.8rem;
    display: inline-block;
}

.hero-content-centered .hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--accent-color);
    margin: 30px 0 0 0;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-content-centered .hero-subtitle {
    max-width: 900px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
}

.hero-value-props {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 70px;
    padding: 0;
}

.hero-content-centered .hero-value-props {
    align-items: flex-start;
    gap: 16px;
}

.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.05rem;
    line-height: 1.5;
}

.hero-content-centered .value-prop {
    justify-content: flex-start;
    text-align: left;
    max-width: 700px;
}

.value-prop svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
    min-width: 24px;
    min-height: 24px;
}

.value-prop strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
}

.value-prop span {
    color: rgba(255, 255, 255, 0.98);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.hero-content-centered .hero-buttons {
    justify-content: flex-start;
}

/* Enhanced CTA Button */
.btn-enhanced {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 32px;
}

.btn-enhanced .cta-main {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-enhanced .cta-sub {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 229, 54, 0.4);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 229, 54, 0.1);
    border-color: var(--accent-color);
    transform: translateX(3px);
}

.btn-secondary svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Hero Graphic - Legacy (not used in centered layout) */
.hero-graphic {
    display: none;
    /* Hidden in new full-width centered design */
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 229, 54, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-image {
    max-width: 100%;
    max-height: 650px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.18));
}

.graphic-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), #ffd700);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* ============================================
   PROBLEM-LÖSUNG SECTION
   ============================================ */
#problem-loesung {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#problem-loesung::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(60px);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.stage-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.problem-card .stage-label {
    color: #ff6b6b;
    background: rgba(220, 38, 38, 0.2);
}

.solution-card .stage-label {
    color: var(--accent-color);
    background: rgba(255, 229, 54, 0.2);
}

.pain-points-list,
.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.pain-points-list li,
.outcomes-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.pain-points-list li strong,
.outcomes-list li strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.pain-points-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.problem-card .pain-points-list li::before {
    color: #ff6b6b;
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.solution-card .outcomes-list li::before {
    color: var(--accent-color);
}

.problem-card {
    background: linear-gradient(135deg, #2d1b1b 0%, #1a0f0f 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.6);
}

.problem-card h3 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.problem-card p,
.problem-card .pain-points-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: linear-gradient(135deg, #0a1630 0%, #0d1f42 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255, 229, 54, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 229, 54, 0.4);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 229, 54, 0.15) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 229, 54, 0.5);
    border-color: var(--accent-color);
}

.solution-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.solution-card p,
.solution-card .outcomes-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.problem-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(185, 28, 28, 0.3) 100%);
    color: #ff6b6b;
    border: 3px solid rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.solution-icon {
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.3) 0%, rgba(255, 215, 0, 0.3) 100%);
    color: var(--accent-color);
    border: 3px solid rgba(255, 229, 54, 0.6);
    box-shadow: 0 0 30px rgba(255, 229, 54, 0.4);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 229, 54, 0.6);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-mid);
}

/* ============================================
   LEISTUNGEN SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    margin-top: auto;
}

.service-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-service-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
    width: auto;
}

.btn-service-cta:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
#expertise {
    background: var(--primary-color);
    color: var(--white);
}

#expertise .section-header {
    position: relative;
}

#expertise .section-header h2,
#expertise .section-subtitle {
    color: var(--white);
}

#expertise .section-subtitle {
    opacity: 0.9;
}

/* Microsoft Partner Badge - Oben rechts als Siegel */
.microsoft-partner-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.12) 0%, rgba(255, 229, 54, 0.06) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    transition: var(--transition);
}

.microsoft-partner-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 229, 54, 0.25);
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.18) 0%, rgba(255, 229, 54, 0.1) 100%);
}

.microsoft-partner-badge svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.microsoft-partner-badge .badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* Main Expertise Areas */
.expertise-main-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.expertise-area {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
}

.expertise-area:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.area-header {
    text-align: center;
    margin-bottom: 25px;
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.azure-icon {
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
}

.entra-icon {
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
}

.defender-icon {
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
}

.area-icon svg {
    color: var(--accent-color);
}

.area-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.area-subtitle {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
}

.area-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.expertise-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    opacity: 0.9;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.area-certs {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cert-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.area-certs img,
.cert-images img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: var(--transition);
}

.area-certs img:hover,
.cert-images img:hover {
    transform: scale(1.2);
}

.business-impact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 229, 54, 0.15);
    border-left: 3px solid var(--accent-color);
    border-radius: 6px;
    margin-bottom: 20px;
}

.business-impact svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
}

.business-impact span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.business-impact strong {
    color: rgba(255, 255, 255, 1);
}

/* Unsere Lösungen */
.solutions-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.05) 0%, rgba(10, 22, 48, 0.02) 100%);
    border-radius: 16px;
    margin-bottom: 50px;
}

.solutions-section h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.solutions-intro {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-style: italic;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.solutions-section .solution-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solutions-section .solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solutions-section .solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.solutions-section .solution-card:hover::before {
    transform: scaleX(1);
}

.solutions-section .solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ffd700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.solutions-section .solution-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
}

.solutions-section .solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), #0a3d62);
}

.solutions-section .solution-card:hover .solution-icon svg {
    stroke: var(--accent-color);
}

.solutions-section .solution-card h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solutions-section .solution-card>p {
    color: var(--white);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solutions-section .solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.solutions-section .solution-benefits li {
    color: var(--white);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
    opacity: 0.8;
}

.solutions-section .solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.solutions-section .solution-cert {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.solutions-section .solution-cert img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Value Proposition */
.expertise-value {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
    border-top: 2px solid rgba(255, 229, 54, 0.3);
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.value-item h5 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* ============================================
   REFERENZEN SECTION
   ============================================ */
#referenzen {
    background: var(--gray-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1f42 100%);
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(10, 22, 48, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(255, 229, 54, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 22, 48, 0.4);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.clients-section {
    text-align: center;
}

.clients-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 180px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.client-logo img {
    width: 100%;
    height: auto;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.client-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Reference Projects Section */
.reference-projects-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(10, 22, 48, 0.1);
}

.reference-projects-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.reference-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-mid);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.project-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

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

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-industry,
.project-duration {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    border: 1px solid rgba(10, 22, 48, 0.1);
    transition: all 0.3s ease;
}

.project-industry {
    background: rgba(10, 22, 48, 0.08);
    color: var(--primary-color);
}

.project-duration {
    background: rgba(255, 229, 54, 0.2);
    color: var(--primary-color);
}

.project-card:hover .project-industry,
.project-card:hover .project-duration {
    transform: translateY(-2px);
}

.project-card:hover .project-industry {
    background: rgba(10, 22, 48, 0.12);
}

.project-card:hover .project-duration {
    background: rgba(255, 229, 54, 0.3);
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(10, 22, 48, 0.05), rgba(255, 229, 54, 0.15));
    color: var(--primary-color);
    border: 1px solid rgba(10, 22, 48, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: linear-gradient(135deg, rgba(10, 22, 48, 0.08), rgba(255, 229, 54, 0.25));
    transform: translateY(-2px);
}

.project-results {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.result-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.15), rgba(255, 229, 54, 0.05));
    border: 1px solid rgba(255, 229, 54, 0.3);
    border-radius: 8px;
    flex: 1;
    min-width: 80px;
    transition: all 0.3s ease;
}

.project-card:hover .result-badge {
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.25), rgba(255, 229, 54, 0.1));
    border-color: rgba(255, 229, 54, 0.5);
    transform: translateY(-2px);
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    text-align: center;
}

.result-label {
    font-size: 0.7rem;
    color: var(--gray-mid);
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
    line-height: 1.2;
}

.project-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-preview {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.btn-read-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-read-more:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header {
    padding: 50px 50px 30px;
    border-bottom: 2px solid var(--gray-light);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0d1f42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.modal-icon svg {
    width: 36px;
    height: 36px;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;  /* Zurück auf 20px */
    margin-bottom: 25px;  /* Zurück auf 25px */
    align-items: flex-start;
}

/* Tags container - above title, left-aligned */
.modal-tags-container {
    display: flex;
    gap: 8px;  /* Kleiner für kompaktere Tags */
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

/* Modal tag styling - smaller size */
.modal-tag {
    background: rgba(255, 247, 230, 1);
    color: var(--primary-color);
    padding: 4px 10px;  /* Noch kleiner: 4px 10px */
    border-radius: 12px;  /* Kleiner: 12px */
    font-size: 0.75rem;  /* Kleiner: 0.75rem */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(10, 22, 48, 0.1);
}

/* Results badges container - above title, left-aligned */
.modal-results-container {
    display: flex;
    gap: 10px;  /* Kleiner für kompaktere Badges */
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

/* Results badge in modal - smaller size */
.modal-result-badge {
    background: rgba(255, 247, 230, 1);
    color: var(--primary-color);
    padding: 10px 16px;  /* Kleiner: 10px 16px */
    border-radius: 8px;  /* Kleiner: 8px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;  /* Kleiner: 3px */
    min-width: 110px;  /* Kleiner: 110px */
    border: 1px solid rgba(10, 22, 48, 0.1);
}

.modal-result-value {
    font-size: 1.1rem;  /* Kleiner: 1.1rem */
    font-weight: 700;
    color: var(--primary-color);
}

.modal-result-label {
    font-size: 0.7rem;  /* Kleiner: 0.7rem */
    font-weight: 500;
    color: rgba(10, 22, 48, 0.7);
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0;
}

.modal-body {
    padding: 40px 50px 50px;
}

.modal-body h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-body ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: var(--gray-dark);
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-body strong {
    color: var(--primary-color);
}

.modal-highlight {
    background: rgba(255, 229, 54, 0.15);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
}

.modal-highlight p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Technology Tags in Modal */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(10, 22, 48, 0.08), rgba(255, 229, 54, 0.2));
    color: var(--primary-color);
    border: 1px solid rgba(10, 22, 48, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.tech-tag:hover {
    background: linear-gradient(135deg, rgba(10, 22, 48, 0.12), rgba(255, 229, 54, 0.3));
    transform: translateY(-2px);
}

/* ============================================
   ÜBER UNS SECTION
   ============================================ */
#ueber-uns {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1d3a 100%);
    color: #ffffff;
}

#ueber-uns h2,
#ueber-uns h3,
#ueber-uns h4 {
    color: #ffffff;
}

#ueber-uns .about-text {
    color: rgba(255, 255, 255, 0.9);
}

#ueber-uns .about-text strong {
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.values h3 {
    margin-bottom: 20px;
}

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

.values-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.values-list svg {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Persons Section */
.contact-persons-section {
    margin-top: 80px;
    text-align: center;
}

.contact-persons-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-persons-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-persons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-person-card {
    background: var(--white);
    padding: 40px 30px 35px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.contact-person-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-person-image-link {
    display: block;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.contact-person-image-link:hover {
    transform: scale(1.05);
}

.contact-person-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-person-image-link:hover .contact-person-image {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(10, 22, 48, 0.2);
}

.contact-person-info {
    text-align: center;
    width: 100%;
}

.contact-person-info h4 {
    color: var(--primary-color) !important;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-person-role {
    color: var(--gray-mid);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 12px 24px;
}

.btn-contact svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   KONTAKT SECTION
   ============================================ */
#kontakt {
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info>p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--gray-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-methods h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-method-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-method-card.primary-contact {
    background: linear-gradient(135deg, rgba(255, 229, 54, 0.1) 0%, rgba(255, 229, 54, 0.05) 100%);
    border-color: var(--accent-color);
}

.method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
}

.contact-method-card.primary-contact .method-icon {
    background: var(--accent-color);
}

.method-icon svg {
    color: var(--white);
}

.contact-method-card.primary-contact .method-icon svg {
    color: var(--primary-color);
}

.method-content {
    flex: 1;
}

.method-content h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.method-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 6px;
    transition: var(--transition);
}

.method-value:hover {
    color: var(--accent-color);
}

.method-note {
    font-size: 0.9rem;
    color: var(--gray-mid);
    margin: 0;
}

@media (max-width: 968px) {
    .contact-method-card {
        padding: 20px;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-value {
        font-size: 1.1rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    line-height: 1.5;
    text-decoration: none;
}

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

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--gray-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 12px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-bar .container {
    padding: 0 20px;
}

.btn-mobile-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: block;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 229, 54, 0.4);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
#social-proof {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1f4a 100%);
    padding: 40px 0;
    margin-top: -2px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 229, 54, 0.2);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.trust-badge svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.badge-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.client-logos-compact {
    text-align: center;
}

.client-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 500;
}

.logos-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo-small {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo-small:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logos-slider {
        gap: 30px;
    }

    .client-logo-small {
        height: 28px;
    }

    /* Microsoft Partner Badge - Mobile */
    .microsoft-partner-badge {
        position: static;
        margin: 25px auto 0;
        padding: 12px 18px;
    }

    .microsoft-partner-badge svg {
        width: 36px;
        height: 36px;
    }

    .microsoft-partner-badge .badge-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-centered {
        max-width: 700px;
        padding: 0 20px;
    }

    .hero-graphic {
        display: none;
    }

    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-card,
    .solution-card {
        padding: 35px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .services-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .expertise-main-areas,
    .expertise-value {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solutions-section .solution-card {
        padding: 2rem;
    }

    .solutions-section {
        padding: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

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

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-persons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content-centered {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }

    .hero-content-centered .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-highlight {
        font-size: 1.55rem;
        display: block;
    }

    .hero-content-centered .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-value-props {
        gap: 10px;
        margin-bottom: 30px;
    }

    .value-prop {
        font-size: 0.9rem;
        line-height: 1.4;
        gap: 10px;
    }

    .hero-content-centered .value-prop {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .value-prop svg {
        min-width: 20px;
        min-height: 20px;
        flex-shrink: 0;
    }

    .hero-graphic {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-persons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-persons-section {
        margin-top: 60px;
    }

    .contact-person-card {
        padding: 35px 25px 30px;
    }

    .modal-content {
        max-height: 95vh;
        margin: 10px;
    }

    .modal-header,
    .modal-body {
        padding: 30px 25px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    /* Footer - Mobile Optimierung */
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-links a {
        display: block;
        padding: 8px 0;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (iPhone 12 Pro, etc.)
   ============================================ */
@media (max-width: 480px) {
    /* Hero Section - Optimiert für kleine Smartphones */
    .hero-content-centered .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-highlight {
        font-size: 1.45rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content-centered .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-content-centered .value-prop {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .value-prop strong {
        display: inline;
    }

    /* CTA Buttons - Kleinere Schrift und Padding */
    .btn-enhanced {
        padding: 16px 20px;
        width: 100%;
        max-width: 100%;
    }

    .btn-enhanced .cta-main {
        font-size: 0.95rem;
    }

    .btn-enhanced .cta-sub {
        font-size: 0.75rem;
    }

    /* Secondary Button */
    .btn-secondary {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    /* Hero Buttons Container */
    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Hero Padding - Mehr Platz auf kleinen Screens */
    .hero-content-centered {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 20px;
    }

    #hero {
        padding-top: 90px;
        min-height: 85vh;
    }

    /* Allgemeine Überschriften */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Problem-Lösung Cards */
    .problem-card h3,
    .solution-card h3 {
        font-size: 1.3rem;
    }

    .pain-points-list li,
    .outcomes-list li {
        font-size: 0.95rem;
    }

    /* Section Padding */
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER (DSGVO-konform)
   ============================================ */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 48, 0.85);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-consent-overlay.show {
    display: block;
    opacity: 1;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 30px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
    color: var(--gray-dark);
}

.cookie-consent-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-text a:hover {
    color: var(--accent-color);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.cookie-btn-accept:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 22, 48, 0.2);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--gray-dark);
    border-color: var(--gray-mid);
}

.cookie-btn-decline:hover {
    background: var(--gray-light);
    border-color: var(--gray-dark);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-btn-settings:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.cookie-settings-modal.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-settings-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-settings-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cookie-settings-header p {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.cookie-settings-body {
    padding: 20px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.cookie-category-description {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-mid);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-settings-modal {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 0;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}