/* --- GRUNDEINSTELLUNGEN --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a2b47;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(0, 18, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 4px;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav a:hover {
    color: #fff;
}

/* --- NAV DROPDOWN --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(0, 18, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 0.6rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(16px);
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
    pointer-events: auto;
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: #fff;
    padding-left: 1.5rem;
}

/* --- HAMBURGER MENU (MOBILE) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    height: 2px;
    width: 24px;
    background: #fff;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    header {
        position: fixed;
    }

    .header-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: rgba(0, 12, 30, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav.active {
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        text-align: center;
    }

    nav ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    nav.active ul li:nth-child(4) { transition-delay: 0.25s; }

    nav ul li a {
        font-size: 1.3rem;
        letter-spacing: 3px;
        padding: 18px 24px;
        display: block;
    }

    /* Dropdown inline on mobile */
    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        pointer-events: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        border-left: 1px solid rgba(255,255,255,0.08);
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s ease,
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 4px;
    }

    .nav-dropdown-menu li {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-dropdown.open .nav-dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
    .nav-dropdown.open .nav-dropdown-menu li:nth-child(2) { transition-delay: 0.1s; }
    .nav-dropdown.open .nav-dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
    .nav-dropdown.open .nav-dropdown-menu li:nth-child(4) { transition-delay: 0.2s; }

    /* Chevron-Pfeil neben "Tools" */
    .nav-dropdown > a {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .nav-dropdown > a::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid rgba(255,255,255,0.35);
        border-bottom: 1.5px solid rgba(255,255,255,0.35);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-top: -2px;
    }

    .nav-dropdown.open > a::after {
        transform: rotate(-135deg);
        margin-top: 2px;
    }

    .nav-dropdown-menu a {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 8px 20px;
        color: rgba(255,255,255,0.25);
        text-align: left;
        transition: color 0.3s ease;
    }

    .nav-dropdown-menu a:hover {
        color: rgba(255,255,255,0.6);
        padding-left: 20px;
    }
}

/* --- HERO SECTION --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #001228;
    padding: 0 20px;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.5) 0%, rgba(96, 165, 250, 0.15) 40%, transparent 80%);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.15), 0 0 60px rgba(96, 165, 250, 0.05);
    z-index: 4;
}


/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

/* Tagline */
.hero-tagline {
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero title */
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 28px;
    text-transform: none;
}

.hero-title-line {
    display: block;
    overflow: hidden;
    padding-left: 4px;
    margin-left: -4px;
}

.hero-title-word {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    will-change: transform, opacity;
}

.hero-word {
    display: inline-block;
    position: relative;
}

.hero-word-bold {
    font-weight: 600;
}

.hero-word-large {
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: -3px;
    line-height: 1;
}

.hero-title-sub {
    margin-top: 0.3rem;
}

.hero-title-sub .hero-word {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
}


/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-btn {
    text-decoration: none;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 18px 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.hero-btn-primary::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover {
    color: #fff;
}

.hero-btn-primary:hover::after {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 18px 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.hero-btn-secondary::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover {
    color: rgba(255, 255, 255, 0.7);
}

.hero-btn-secondary:hover::after {
    transform: translateX(4px);
}


.btn {
    padding: 16px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2),
                0 2px 8px rgba(0,33,71,0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,33,71,0.3),
                0 6px 15px rgba(0,33,71,0.2);
}

.btn-secondary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2),
                0 2px 8px rgba(0,33,71,0.15);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,33,71,0.3),
                0 6px 15px rgba(0,33,71,0.2);
}

/* --- INTRO SECTION (Modern Split Layout) --- */
#intro {
    padding: 0;
    background-color: #001228;
    border-top: none;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

#intro::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 10% 50%, rgba(124,192,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
    z-index: 0;
}

#intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
    z-index: 1;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 120px 60px;
    position: relative;
}

.intro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-kicker::before {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
}

/* Statement Typography */
.intro-statement {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.15s;
}

.intro-word {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s ease;
    cursor: default;
    position: relative;
}

.intro-word:hover {
    transform: translateY(-4px);
}

.intro-word-accent {
    font-weight: 800;
    color: #fff;
    position: relative;
    transition: color 1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-word-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 3px;
    background: linear-gradient(90deg, rgba(100,180,255,0.7), rgba(160,210,255,0.9));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scroll-triggered: Erfolg gets bright white + subtle scale */
.intro-statement.intro-animate .intro-word-accent {
    color: #fff;
    transform: scale(1.06);
}

.intro-statement.intro-animate .intro-word-accent::after {
    transform: scaleX(0);
}

.intro-word-accent:hover {
    color: rgba(124,192,255,0.9);
}

.intro-divider {
    display: block;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 20px 0;
    opacity: 0;
    animation: dividerGrow 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes dividerGrow {
    0% { width: 0; opacity: 0; }
    100% { width: 50px; opacity: 1; }
}

.intro-word-muted {
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    transition: color 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered: "nicht die" fades out */
.intro-statement.intro-animate .intro-word-muted {
    color: rgba(255,255,255,0.3);
}

.intro-word-strike {
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    position: relative;
    transition: color 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-word-strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 55%;
    height: 2px;
    background: rgba(255,255,255,0.5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

/* Scroll-triggered: Provision fades */
.intro-statement.intro-animate .intro-word-strike {
    color: rgba(255,255,255,0.25);
}

.intro-statement.intro-animate .intro-word-strike::after {
    transform: scaleX(0);
}

.intro-word-strike:hover {
    color: rgba(255,255,255,0.2);
}

.intro-vertical-label {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: center;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.intro-right {
    display: flex;
    align-items: center;
    padding: 120px 60px 120px 80px;
}

.intro-right-inner {
    max-width: 480px;
}

.intro-description {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

/* Stats Row */
.intro-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

.intro-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}

.intro-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* CTA Link */
.intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

.intro-cta svg {
    transition: transform 0.3s ease;
}

.intro-cta:hover {
    color: #fff;
}

.intro-cta:hover svg {
    transform: translateX(6px);
}

.intro-scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
    z-index: 3;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 0.7; height: 80px; }
}

@keyframes underlineGrow {
    0% {
        transform: scaleX(0);
        opacity: 0.2;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated border property for wert-cards */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* --- WERTE SECTION (2-Column Layout) --- */
#werte {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

#werte .container {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.werte-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.werte-left {
    position: sticky;
    top: 120px;
}

.werte-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,33,71,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.werte-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
    color: #002147;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.werte-title em {
    font-style: italic;
    font-weight: 300;
}

.werte-title .title-light {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(0,33,71,0.35);
    letter-spacing: 0;
    margin-top: 0.3rem;
}

.werte-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(0,33,71,0.4);
    line-height: 1.7;
    max-width: 380px;
}

/* Werte List Layout */
.werte-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,33,71,0.08);
}

.werte-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,33,71,0.08);
    transition: transform 0.3s ease;
}

.werte-item:hover {
    transform: translateX(1rem);
}

.werte-item-num {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(0,33,71,0.2);
    letter-spacing: 0.1em;
    padding-top: 4px;
    flex-shrink: 0;
}

.werte-item-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #002147;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.werte-item-content p {
    font-size: 0.9rem;
    color: rgba(0,33,71,0.45);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    max-width: 520px;
}

@keyframes rotateBorder {
    to { --border-angle: 360deg; }
}

/* --- HERO FOTO SLIDER (zwischen Hero & Intro) --- */
#foto-slider-hero {
    padding: 0;
    overflow: hidden;
    background: #000d1e;
    position: relative;
}

#foto-slider-hero::before,
#foto-slider-hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

#foto-slider-hero::before {
    left: 0;
    background: linear-gradient(90deg, #000d1e 0%, transparent 100%);
}

#foto-slider-hero::after {
    right: 0;
    background: linear-gradient(270deg, #000d1e 0%, transparent 100%);
}

.slider-track-reverse {
    animation: sliderScrollReverse 35s linear infinite;
}

@keyframes sliderScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

#foto-slider-hero .slider-slide .slider-placeholder {
    background: linear-gradient(135deg, #0a1929 0%, #0f2035 100%);
    color: rgba(255,255,255,0.12);
}

#foto-slider-hero .slider-slide .slider-placeholder:hover {
    background: linear-gradient(135deg, #0f2035 0%, #142a42 100%);
    color: rgba(255,255,255,0.2);
}

/* --- FOTO SLIDER SECTION --- */
#foto-slider {
    padding: 40px 0;
    overflow: hidden;
    background: #fff;
    position: relative;
}

#foto-slider::before,
#foto-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

#foto-slider::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

#foto-slider::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.slider-track {
    display: flex;
    gap: 0;
    animation: sliderScroll 35s linear infinite;
    width: max-content;
    will-change: transform;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-slide {
    flex-shrink: 0;
    width: 420px;
    height: 280px;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-slide:hover img {
    transform: scale(1.03);
}

/* Platzhalter (werden durch echte Fotos ersetzt) */
.slider-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f2f5 0%, #e4e7eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(0,33,71,0.2);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-placeholder svg {
    opacity: 0.5;
}

.slider-placeholder span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slider-placeholder:hover {
    background: linear-gradient(135deg, #e8eaee 0%, #dde0e5 100%);
    color: rgba(0,33,71,0.35);
}

@keyframes sliderScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .slider-slide {
        width: 280px;
        height: 190px;
    }

    #foto-slider {
        padding: 24px 0;
    }

    #foto-slider::before,
    #foto-slider::after,
    #foto-slider-hero::before,
    #foto-slider-hero::after {
        width: 30px;
    }
}

/* --- REZENSIONEN SECTION (Dark Theme) --- */
#rezensionen {
    padding: 150px 0;
    background-color: #001228;
    position: relative;
    overflow: hidden;
}

#rezensionen::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 0;
}

#rezensionen .container {
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* --- REZENSIONEN (2-Column Layout) --- */
#rezensionen {
    padding: 120px 0;
    background-color: #001228;
    position: relative;
}

#rezensionen .container {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.rezensionen-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.rezensionen-left {
    position: sticky;
    top: 120px;
}

.rezensionen-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.rezensionen-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.rezensionen-title em {
    font-style: italic;
    font-weight: 300;
}

.rezensionen-title .title-light {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0;
    margin-top: 0.3rem;
}

.rezensionen-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 380px;
}

/* Rezensionen List */
.rezensionen-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.rezensionen-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease;
}

.rezensionen-item:hover {
    transform: translateX(1rem);
}

.rezensionen-item-quote {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    flex-shrink: 0;
    padding-top: 2px;
}

.rezensionen-item-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
    margin: 0 0 12px;
    max-width: 520px;
}

.rezensionen-item-author {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* --- CTA SECTION --- */
#cta {
    padding: 120px 20px;
    background-color: #fff;
    text-align: center;
}

#cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

#cta .btn-primary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2),
                0 2px 8px rgba(0,33,71,0.15);
}

#cta .btn-primary:hover {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,33,71,0.3),
                0 6px 15px rgba(0,33,71,0.2);
}

#cta .btn-secondary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2),
                0 2px 8px rgba(0,33,71,0.15);
}

#cta .btn-secondary:hover {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,33,71,0.3),
                0 6px 15px rgba(0,33,71,0.2);
}

/* --- FOOTER --- */
/* --- FOOTER (Clean Column Layout) --- */
footer {
    background-color: #fff;
    color: #002147;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #002147;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #002147;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links li {
    margin-bottom: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #002147;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #002147;
    transform: translateY(-2px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.copyright {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
}

.copyright p {
    margin: 0;
}

/* --- ANIMATIONEN (Apple-Style) --- */

/* Page-hero elements initial state (subpages only) */
#page-hero h1,
#page-hero .subtitle {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-hero h1.animate-in,
#page-hero .subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Fade up animation */
[data-reveal="fade-up"] {
    transform: translateY(60px);
}

/* Fade in animation */
[data-reveal="fade-in"] {
    transform: translateY(0);
}

/* Scale animation */
[data-reveal="scale"] {
    transform: scale(0.9);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* Slide from left */
[data-reveal="slide-left"] {
    transform: translateX(-60px);
}

[data-reveal="slide-left"].revealed {
    transform: translateX(0);
}

/* Slide from right */
[data-reveal="slide-right"] {
    transform: translateX(60px);
}

[data-reveal="slide-right"].revealed {
    transform: translateX(0);
}

/* Card hover effects - will be enhanced by JS */
.wert-box,
.rezension-box {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Button transitions for magnetic effect */
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Smooth header transitions */
header {
    will-change: transform;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Parallax smooth performance */
.hero-content {
    will-change: transform, opacity;
}

/* Custom cursor styles (uncomment in JS to enable) */
/*
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: rgba(255,255,255,0.8);
}
*/

/* Hamburger menu animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* --- LEISTUNGEN SEITE (Apple-Style) --- */

/* Page Hero */
#page-hero {
    background-color: #002147;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 140px 20px 100px;
}

#page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#page-hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

/* Leistungen Main Section */
#leistungen-main {
    padding: 120px 20px;
    background-color: #fff;
}

.service-box {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 40px;
    border-radius: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.service-box:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.service-box:hover {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-header {
    margin-bottom: 50px;
}

.service-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #002147;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
}

.service-content {
    padding: 0;
}

.service-description {
    font-size: 1.1rem;
    color: #2a3b57;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
}

.service-details {
    margin-bottom: 50px;
}

.service-details h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #002147;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #002147;
    font-size: 1.2rem;
    line-height: 1.5;
}

.service-list li:hover {
    color: #002147;
    transform: translateX(5px);
}

.service-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.service-badge {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #002147;
    border: 1.5px solid #002147;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
}

.service-btn:hover {
    background: #002147;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,33,71,0.15);
}

/* Leistungen Overview */
#leistungen-overview {
    padding: 120px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

#leistungen-overview h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #002147;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.overview-subtitle {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
}

/* Navigation aktiver Link */
nav a.active {
    color: #fff;
}

/* --- ÜBER MICH SEITE --- */

/* About Intro */
#about-intro {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
}

#about-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #002147;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
}

/* Video Section */
/* --- CONTACT SECTION --- */
#contact-main {
    padding: 150px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* --- IMPRESSUM SECTION --- */
#impressum-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

/* --- DATENSCHUTZ SECTION --- */
#datenschutz-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

/* --- INFORMATIVA PRECONTRATTUALE SECTION --- */
#informativa-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

.informativa-content {
    max-width: 900px;
    margin: 0 auto;
}

.informativa-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #002147;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.informativa-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333;
}

.informativa-text p {
    margin-bottom: 20px;
}

.informativa-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #002147;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.informativa-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #002147;
    margin-top: 30px;
    margin-bottom: 15px;
}

.informativa-text ul,
.informativa-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.informativa-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* --- COOKIE POLICY SECTION --- */
#cookie-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #002147;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.cookie-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333;
}

.cookie-text p {
    margin-bottom: 20px;
}

.cookie-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #002147;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.cookie-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #002147;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cookie-text ul,
.cookie-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.cookie-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* --- DISCLAIMER SECTION --- */
#disclaimer-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #002147;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.disclaimer-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333;
}

.disclaimer-text p {
    margin-bottom: 20px;
}

.disclaimer-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #002147;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.disclaimer-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #002147;
    margin-top: 30px;
    margin-bottom: 15px;
}

.disclaimer-text ul,
.disclaimer-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.disclaimer-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* --- ACF SECTION --- */
#acf-main {
    padding: 150px 20px;
    min-height: 70vh;
    background-color: #fff;
}

.acf-content {
    max-width: 900px;
    margin: 0 auto;
}

.acf-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #002147;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.acf-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333;
}

.acf-text p {
    margin-bottom: 20px;
}

.acf-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #002147;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.acf-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #002147;
    margin-top: 30px;
    margin-bottom: 15px;
}

.acf-text ul,
.acf-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.acf-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
}

.datenschutz-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #002147;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.datenschutz-text {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333;
}

.datenschutz-text p {
    margin-bottom: 20px;
}

.datenschutz-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #002147;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.datenschutz-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    color: #002147;
    margin-top: 30px;
    margin-bottom: 15px;
}

.datenschutz-text ul,
.datenschutz-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.datenschutz-text li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.impressum-content {
    max-width: 600px;
    margin: 0 auto;
}

.impressum-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #002147;
    margin-bottom: 48px;
    letter-spacing: 0.3px;
}

.impressum-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-item {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
    flex-shrink: 0;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.info-value a {
    color: #002147;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: #003366;
    text-decoration: underline;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06),
                0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002147, rgba(0,33,71,0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,33,71,0.12),
                0 8px 25px rgba(0,33,71,0.08);
    border-color: rgba(0,33,71,0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2);
    margin: 0;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,33,71,0.3);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.contact-value {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: #002147;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    word-break: break-word;
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
}

.contact-email .contact-value {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    white-space: nowrap;
}

.contact-card:hover .contact-value {
    color: #003366;
}

.contact-arrow {
    display: none;
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    color: #fff;
}

/* --- VIDEO SECTION (2-Column Layout) --- */
#video-section {
    padding: 140px 0 120px;
    background: #fff;
}

#video-section .container {
    max-width: 1200px;
    padding: 0 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: center;
}

.video-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,33,71,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.video-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
    color: #002147;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.video-title em {
    font-style: italic;
    font-weight: 300;
}

.video-title .title-light {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(0,33,71,0.35);
    letter-spacing: 0;
    margin-top: 0.3rem;
}

.video-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(0,33,71,0.4);
    line-height: 1.7;
    max-width: 420px;
}

.video-right {
    display: flex;
    justify-content: flex-end;
}

.video-container {
    width: 100%;
    max-width: 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #002147;
    aspect-ratio: 9 / 16;
    box-shadow: 0 20px 60px rgba(0,33,71,0.15),
                0 4px 16px rgba(0,33,71,0.08);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0,33,71,0.2),
                0 8px 24px rgba(0,33,71,0.1);
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003366 0%, #002147 100%);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #004080 0%, #003366 100%);
    color: rgba(255,255,255,0.7);
}

.video-placeholder svg {
    margin-bottom: 16px;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-placeholder:hover svg {
    opacity: 0.7;
    transform: scale(1.08);
}

.video-placeholder p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   ÜBER MICH — EXPERTISE SECTION (Clean Cards)
   ═══════════════════════════════════════════════════════════ */

/* --- ÜBER MICH — EXPERTISE (2-Column Layout, Dark) --- */
#ueber-expertise {
    padding: 120px 0;
    background: #001228;
    position: relative;
}

#ueber-expertise .container {
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.ueber-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.expertise-left {
    position: sticky;
    top: 120px;
}

.expertise-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.expertise-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.expertise-title em {
    font-style: italic;
    font-weight: 300;
}

.expertise-title .title-light {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0;
    margin-top: 0.3rem;
}

.expertise-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 380px;
}

/* Expertise List */
.expertise-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(1rem);
}

.expertise-item-num {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    padding-top: 4px;
    flex-shrink: 0;
}

.expertise-item-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.expertise-item-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════
   ÜBER MICH — CTA SECTION
   ═══════════════════════════════════════════════════════════ */

/* --- ÜBER MICH — CTA (Dark, Full-Width) --- */
#ueber-cta {
    padding: 120px 0;
    background: #fff;
}

#ueber-cta .container {
    max-width: 700px;
}

.ueber-cta-inner {
    position: relative;
}

.ueber-cta-inner h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: #002147;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.ueber-cta-inner h2 em {
    font-style: italic;
    font-weight: 300;
}

.ueber-cta-inner h2 .cta-light {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: rgba(0,33,71,0.35);
    letter-spacing: 0;
    margin-top: 0.3rem;
}

.ueber-cta-inner p {
    font-size: 1.05rem;
    color: rgba(0,33,71,0.4);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 480px;
}

.ueber-kicker {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,33,71,0.35);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.ueber-cta-buttons {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.ueber-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0,33,71,0.5);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ueber-cta-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.ueber-cta-link:hover {
    color: #002147;
}

.ueber-cta-link:hover::after {
    transform: translateX(4px);
}

.ueber-cta-link-muted {
    color: rgba(0,33,71,0.3);
}

.ueber-cta-link-muted:hover {
    color: rgba(0,33,71,0.6);
}

/* Keep old #expertise for backward compat (no longer used) */
#expertise {
    padding: 120px 0;
    background-color: #fff;
}

#expertise .container {
    padding: 0 40px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 80px;
}

.expertise-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #002147;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.expertise-header p {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    align-items: stretch;
}

.expertise-box {
    padding: 60px 50px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06),
                0 1px 3px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expertise-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #002147, rgba(0,33,71,0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-box:hover {
    background: #fff;
    border-color: rgba(0,33,71,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,33,71,0.12),
                0 8px 25px rgba(0,33,71,0.08);
}

.expertise-box:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    font-size: 3.5rem;
    font-weight: 200;
    color: #002147;
    margin-bottom: 30px;
    letter-spacing: 2px;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-box:hover .expertise-icon {
    opacity: 0.6;
    transform: scale(1.05);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,33,71,0.2);
    margin: 0 auto 25px;
}

.expertise-box:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,33,71,0.3);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.expertise-box h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #002147;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: color 0.3s ease;
}

.expertise-box:hover h3 {
    color: #002147;
}

.expertise-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Service content within expertise boxes */
.expertise-box .service-intro {
    font-size: 1.1rem;
    color: #2a3b57;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.7;
}

.expertise-box .service-tagline {
    font-size: 1rem;
    color: #002147;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.expertise-box .service-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: left;
}

/* Service Process Items */
.service-process {
    margin: 40px 0;
    padding: 35px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    background: transparent;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item:hover {
    transform: translateX(5px);
}

.process-label {
    font-weight: 600;
    color: #002147;
    margin-right: 10px;
    min-width: 100px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.process-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.expertise-box .service-details {
    text-align: left;
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.expertise-box .service-details h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #002147;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.expertise-box .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.expertise-box .service-list li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-box .service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #002147;
    font-size: 1.2rem;
    line-height: 1.5;
}

.expertise-box .service-list li:hover {
    color: #002147;
}

.expertise-box .service-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.12);
}

.expertise-box .service-badge {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.expertise-box .service-btn {
    padding: 16px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    border: none;
    background: linear-gradient(135deg, #002147 0%, #003366 100%);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,33,71,0.2),
                0 2px 8px rgba(0,33,71,0.15);
    position: relative;
    overflow: hidden;
}

.expertise-box .service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.expertise-box .service-btn:hover::before {
    left: 100%;
}

.expertise-box .service-btn:hover {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,33,71,0.3),
                0 6px 15px rgba(0,33,71,0.2);
}

/* --- RESPONSIVE ANPASSUNGEN --- */

/* Tablet */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .intro-left {
        padding: 100px 60px 40px;
    }

    .intro-right {
        padding: 20px 60px 80px;
    }

    .rezensionen-grid {
        gap: 4rem;
    }

    .werte-item {
        gap: 1.5rem;
    }

    .werte-grid {
        gap: 4rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    #hero {
        min-height: 100vh;
        padding: 0 20px;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .hero-word-large {
        font-size: clamp(3.2rem, 15vw, 5rem);
        letter-spacing: -2px;
    }

    .hero-title-sub .hero-word {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 2px;
        align-items: center;
        margin-top: 1.2rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .hero-btn-primary {
        justify-content: center;
    }

    #intro {
        min-height: auto;
    }

    #intro::before {
        opacity: 0.45;
    }

    #intro::after {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .intro-left {
        padding: 80px 30px 40px;
    }

    .intro-statement {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .intro-vertical-label {
        display: none;
    }

    .intro-right {
        padding: 20px 30px 80px;
    }

    .intro-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .intro-stats {
        gap: 20px;
        padding: 25px 0;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .intro-stat-divider {
        height: 25px;
    }

    .intro-scroll-line {
        display: none;
    }

    #werte,
    #rezensionen {
        padding: 100px 0;
    }

    #rezensionen .container {
        padding: 0 20px;
    }

    #cta {
        padding: 80px 20px;
    }

    .werte-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .werte-left {
        position: static;
    }

    .werte-item {
        padding: 1.8rem 0;
        gap: 1.2rem;
    }

    .werte-item-content h3 {
        font-size: 1.1rem;
    }

    #werte {
        padding: 80px 0;
    }

    .rezensionen-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rezensionen-left {
        position: static;
    }

    #rezensionen {
        padding: 80px 0;
    }

    .rezensionen-item {
        padding: 1.8rem 0;
        gap: 1.2rem;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.7rem;
    }

    #page-hero {
        min-height: 50vh;
        padding: 120px 20px 80px;
    }

    #leistungen-main {
        padding: 80px 20px;
    }

    .service-box {
        margin-bottom: 80px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-description {
        font-size: 1rem;
    margin-bottom: 40px;
}

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    #leistungen-overview {
        padding: 80px 20px;
    }

    /* Über Mich responsive */
    #about-intro {
        padding: 60px 20px;
    }

    #contact-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    #impressum-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .impressum-content h1 {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .info-item {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .info-label {
        min-width: unset;
    }

    .info-item {
        padding-bottom: 20px;
    }

    #datenschutz-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .datenschutz-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .datenschutz-text {
        font-size: 1rem;
    }

    #informativa-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .informativa-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .informativa-text {
        font-size: 1rem;
    }

    #cookie-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .cookie-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cookie-text {
        font-size: 1rem;
    }

    #disclaimer-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .disclaimer-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .disclaimer-text {
        font-size: 1rem;
    }

    #acf-main {
        padding: 120px 20px;
        min-height: 60vh;
    }

    .acf-content h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .acf-text {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-card {
        padding: 30px;
        gap: 18px;
        align-items: flex-start;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-info {
        gap: 8px;
    }

    .contact-label {
        font-size: 0.65rem;
    }

    .contact-value {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    #video-section {
        padding: 100px 0 50px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .video-kicker {
        margin-bottom: 0.8rem;
    }

    .video-title {
        margin-bottom: 1rem;
    }

    .video-sub {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .video-right {
        justify-content: center;
    }

    .video-container {
        max-width: 240px;
        border-radius: 14px;
    }

    /* Über Mich — Expertise */
    #ueber-expertise {
        padding: 80px 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .expertise-left {
        position: static;
    }

    .expertise-item {
        padding: 1.8rem 0;
        gap: 1.2rem;
    }

    .expertise-item-content h3 {
        font-size: 1.1rem;
    }

    /* Über Mich — CTA */
    #ueber-cta {
        padding: 80px 0;
    }

    .ueber-cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Keep old selectors for compat */
    #expertise {
        padding: 80px 0;
    }

    #expertise .container {
        padding: 0 20px;
    }

    .expertise-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 20px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .expertise-box .service-intro {
        font-size: 1rem;
    }

    .expertise-box .service-description {
        font-size: 0.95rem;
    }

    .expertise-box .service-tagline {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .service-process {
        margin: 30px 0;
        padding: 25px 0;
    }

    .process-item {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .process-label {
        min-width: auto;
        margin-bottom: 5px;
        margin-right: 0;
    }

    .expertise-box .service-details {
        margin: 25px 0;
        padding-top: 25px;
    }

    .expertise-box .service-footer {
        margin-top: 25px;
        padding-top: 25px;
    }

    .expertise-box .service-btn {
        width: 100%;
        padding: 14px 24px;
    }

    /* Footer responsive */
    footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
        padding: 4px 0;
        display: inline-block;
    }

    .copyright {
        padding-top: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
