/* ===== SCROLL UNLOCK – OVERRIDE ===== */
html, body {
    overflow: auto !important;
    height: auto !important;
}
.content-wrapper {
    overflow: visible !important;
    height: auto !important;
}
.fp-container {
    transform: none !important;
    height: auto !important;
}
/* ====================================== */

:root {
            --color-primary: #9333EA;
            --color-secondary: #C026D3;
            --color-accent: #EC4899;
            --color-bg: #FFFFFF;
            --color-surface: #FAF5FF;
            --color-text: #1E293B;
            --color-muted: #64748B;
            --color-border: #E9D5FF;
            --font-main: 'Outfit', sans-serif;
            --font-secondary: 'Raleway', sans-serif;
        }

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

        body {
            font-family: var(--font-main);
            background: var(--color-bg);
            color: var(--color-text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Background animations removed in v1.1 */

        /* Content Wrapper to ensure proper z-index */
        .content-wrapper {
            position: relative;
            z-index: 1;
            background: transparent;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(120deg, #1a0040 0%, #4a0080 35%, #c0197a 70%, #e8106a 100%);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 40px rgba(180, 50, 200, 0.4), 0 4px 30px rgba(0,0,0,0.4);
        }

        .nav-inner {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            width: calc(100% - 4rem);
            margin: 0.9rem 2rem;
            padding: 0.75rem 2rem;
            border: 1.5px solid rgba(180, 100, 255, 0.7);
            border-radius: 18px;
            box-shadow:
                0 0 10px rgba(160, 80, 255, 0.6),
                0 0 25px rgba(160, 80, 255, 0.3),
                inset 0 0 20px rgba(100, 0, 180, 0.15);
            backdrop-filter: blur(10px);
            background: rgba(30, 0, 60, 0.25);
        }

        .nav-left {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .nav-center {
            display: flex;
            justify-content: center;
        }

        .nav-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.5rem;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #e0aaff, #ff80d5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 8px rgba(200, 100, 255, 0.8));
        }

        .nav-items {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-items a {
            color: rgba(240, 200, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s;
            text-shadow: 0 0 10px rgba(200, 120, 255, 0.5);
        }

        .nav-items a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: linear-gradient(90deg, #b060ff, #ff60c8);
            box-shadow: 0 0 8px rgba(180, 80, 255, 0.8);
            transition: width 0.3s;
        }

        .nav-items a:hover {
            color: #ffffff;
            text-shadow: 0 0 14px rgba(220, 150, 255, 0.9);
        }

        .nav-items a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.6), rgba(192, 38, 211, 0.6));
            border: 1.5px solid rgba(200, 120, 255, 0.7);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 15px rgba(147, 51, 234, 0.5), 0 4px 20px rgba(0,0,0,0.3);
            text-shadow: 0 0 8px rgba(255, 200, 255, 0.6);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(180, 80, 255, 0.8), 0 0 50px rgba(180, 80, 255, 0.3);
            border-color: rgba(220, 150, 255, 0.9);
        }


        /* Nav Dropdown */
        .nav-dropdown-wrapper {
            position: relative;
        }

        .nav-dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 2px;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .yinyang-icon {
            display: block;
            filter: drop-shadow(0 0 8px rgba(180, 80, 255, 0.7));
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-dropdown-trigger:hover .yinyang-icon {
            filter: drop-shadow(0 0 16px rgba(220, 100, 255, 1));
            transform: rotate(180deg);
        }

        .nav-menu-label {
            color: rgba(240, 200, 255, 0.9);
            font-family: var(--font-main);
            font-size: 0.95rem;
            font-weight: 500;
            text-shadow: 0 0 10px rgba(200, 120, 255, 0.5);
            transition: all 0.3s;
            letter-spacing: 0.03em;
        }

        .nav-dropdown-trigger:hover .nav-menu-label {
            color: #fff;
            text-shadow: 0 0 14px rgba(220, 150, 255, 0.9);
        }

        .nav-dropdown-wrapper.open .yinyang-icon {
            transform: rotate(180deg);
            filter: drop-shadow(0 0 18px rgba(255, 100, 220, 1));
        }

        .nav-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            min-width: 200px;
            background: linear-gradient(135deg, rgba(20, 0, 50, 0.95), rgba(60, 0, 100, 0.95));
            border: 1.5px solid rgba(180, 100, 255, 0.5);
            border-radius: 14px;
            box-shadow:
                0 0 20px rgba(160, 80, 255, 0.4),
                0 10px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
            overflow: hidden;
            opacity: 0;
            transform: translateY(-8px);
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 999;
        }

        .nav-dropdown-wrapper.open .nav-dropdown {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .nav-dropdown-item {
            display: block;
            padding: 0.9rem 1.5rem;
            color: rgba(230, 190, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(180, 100, 255, 0.15);
            text-shadow: 0 0 8px rgba(200, 120, 255, 0.3);
        }

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

        .nav-dropdown-item:hover {
            background: rgba(147, 51, 234, 0.25);
            color: #fff;
            text-shadow: 0 0 12px rgba(220, 150, 255, 0.9);
            padding-left: 2rem;
        }

        /* WordPress menu support */
        .nav-dropdown .menu-item {
            list-style: none;
        }

        .nav-dropdown .menu-item a {
            display: block;
            padding: 0.9rem 1.5rem;
            color: rgba(230, 190, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(180, 100, 255, 0.15);
            text-shadow: 0 0 8px rgba(200, 120, 255, 0.3);
        }

        .nav-dropdown .menu-item:last-child a {
            border-bottom: none;
        }

        .nav-dropdown .menu-item a:hover {
            background: rgba(147, 51, 234, 0.25);
            color: #fff;
            text-shadow: 0 0 12px rgba(220, 150, 255, 0.9);
            padding-left: 2rem;
        }

        /* Language Switcher */
        .language-switcher {
            display: flex;
            gap: 0.5rem;
            background: rgba(80, 0, 140, 0.3);
            padding: 0.3rem;
            border-radius: 50px;
            border: 1px solid rgba(180, 100, 255, 0.4);
        }

        .lang-btn {
            padding: 0.5rem 1rem;
            background: transparent;
            border: none;
            border-radius: 50px;
            color: rgba(220, 180, 255, 0.7);
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: var(--font-main);
        }

        .lang-btn:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(200, 120, 255, 0.8);
        }

        .lang-btn.active {
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.7), rgba(192, 38, 211, 0.7));
            color: white;
            box-shadow: 0 0 12px rgba(147, 51, 234, 0.5);
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 3rem;
            position: relative;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            text-align: center;
        }

        .hero-title {
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--color-text), var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
            font-weight: 300;
            font-family: var(--font-secondary);
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
        }

        .btn-gradient {
            padding: 0.9rem 2.2rem;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.35);
            text-decoration: none;
            display: inline-block;
        }

        .btn-gradient:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(147, 51, 234, 0.5);
        }

        .btn-outline {
            padding: 0.9rem 2.2rem;
            background: white;
            border: 2px solid var(--color-border);
            border-radius: 50px;
            color: var(--color-text);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .btn-outline:hover {
            border-color: var(--color-primary);
            background: rgba(147, 51, 234, 0.08);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-test {
            padding: 0.9rem 2.2rem;
            background: white;
            border: 2px solid var(--color-accent);
            border-radius: 50px;
            color: var(--color-accent);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
            font-family: var(--font-main);
        }

        .btn-test:hover {
            background: var(--color-accent);
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
        }

        /* Floating Cards */
        .floating-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
        }

        .stat-card {
            background: white;
            backdrop-filter: blur(20px);
            border: 1px solid var(--color-border);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            width: 280px;
            flex-shrink: 0;
        }

        .stat-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            border-color: var(--color-primary);
            box-shadow: 0 25px 50px rgba(147, 51, 234, 0.25);
            background: linear-gradient(135deg, #FFFFFF, #FAF5FF);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--color-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Services Section */
        .services {
            padding: 4rem 3rem 3rem;
            position: relative;
            background: transparent;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, var(--color-text), var(--color-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--color-muted);
            margin-bottom: 2.5rem;
            font-family: var(--font-secondary);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        /* service-card replaced by flip-card */


        /* card-hover-overlay replaced by flip-card-back */
        .card-hover-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.7), rgba(192, 38, 211, 0.7));
            border: 1.5px solid rgba(200, 120, 255, 0.8);
            border-radius: 50px;
            color: white;
            font-family: var(--font-main);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
            text-shadow: 0 0 8px rgba(255, 200, 255, 0.6);
        }

        .card-hover-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 0 25px rgba(180, 80, 255, 0.8), 0 0 50px rgba(180, 80, 255, 0.3);
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.9), rgba(192, 38, 211, 0.9));
        }


        /* Flip Cards */
        .flip-card {
            perspective: 1200px;
            height: 280px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            inset: 0;
            border-radius: 25px;
            padding: 3rem;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .flip-card-front {
            background: white;
            border: 1px solid var(--color-border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .flip-card-front .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .flip-card-front h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 0.75rem;
        }

        .flip-card-front p {
            color: var(--color-muted);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .flip-card-back {
            background: linear-gradient(135deg, #1a0040, #4a0080 50%, #c0197a);
            border: 1.5px solid rgba(180, 100, 255, 0.6);
            box-shadow:
                0 0 20px rgba(160, 80, 255, 0.4),
                0 10px 40px rgba(0, 0, 0, 0.3);
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            text-align: center;
        }

        .flip-back-icon {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            font-size: 2.2rem;
            filter: drop-shadow(0 0 10px rgba(255, 150, 255, 0.6));
            transform: scaleX(-1);
            opacity: 0.5;
            display: inline-block;
        }

        .flip-back-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: #f0d0ff;
            text-shadow: 0 0 15px rgba(200, 100, 255, 0.7);
            line-height: 1.4;
        }


        /* ===== SMOOTH SCROLL ===== */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        html, body {
            overflow-x: hidden;
            height: auto;
        }

        .content-wrapper {
            height: auto;
            overflow: visible;
            position: relative;
        }

        .fp-container {
            height: auto;
        }

        .fp-section {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
        }

        /* Scroll indicator dots */
        .fp-dots {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 2000;
        }

        .fp-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(180, 100, 255, 0.35);
            border: 1.5px solid rgba(180, 100, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .fp-dot.active {
            background: rgba(180, 100, 255, 0.9);
            box-shadow: 0 0 10px rgba(180, 80, 255, 0.8);
            transform: scale(1.3);
        }

        .fp-dot:hover {
            background: rgba(220, 120, 255, 0.7);
            transform: scale(1.2);
        }

        /* Section sizing */
        .hero {
            padding: 7rem 2rem 4rem;
            width: 100%;
        }

        .services {
            padding: 4rem 2rem 3rem;
            width: 100%;
            overflow: visible;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        .services .section-title {
            font-size: 2.2rem;
            margin-bottom: 0.3rem;
        }

        .services .section-subtitle {
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .services .services-grid {
            gap: 1rem;
            width: 100%;
        }

        .services .flip-card {
            height: 200px;
        }

        .services .flip-card-front,
        .services .flip-card-back {
            padding: 1.5rem;
        }

        .services .flip-card-front .service-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .services .flip-card-front h3 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .services .flip-card-front p {
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .services .flip-back-icon {
            font-size: 1.8rem;
        }

        .services .flip-back-question {
            font-size: 0.95rem;
        }

        .services .card-hover-btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
        }

        .parallax-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 3rem;
        }

        .cta-section {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
        }

        footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 2rem;
        }

        /* Parallax Section */
        .parallax-section {
            padding: 4rem 3rem;
            position: relative;
            background: transparent;
        }

        .parallax-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .parallax-image {
            aspect-ratio: 1/1;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
        }

        .parallax-image:hover {
            transform: scale(1.05) rotate(3deg);
            box-shadow: 0 40px 100px rgba(147, 51, 234, 0.4);
        }

        .parallax-image::before {
            content: 'Ihr Profilfoto';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            color: white;
            font-weight: 600;
        }

        .parallax-text h2 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: #1E293B;
        }

        .parallax-text p {
            font-size: 0.95rem;
            color: #1E293B;
            margin-bottom: 0.9rem;
            line-height: 1.7;
        }

        .credentials-list {
            list-style: none;
            margin-top: 1.5rem;
            background: rgba(30, 0, 60, 0.4);
            padding: 1.5rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(180, 100, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .credentials-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            padding-left: 2rem;
            transition: all 0.3s;
            color: #1E293B;
            font-size: 0.95rem;
        }

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

        .credentials-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #c060ff;
            font-weight: bold;
            transition: all 0.3s;
        }

        .credentials-list li:hover {
            padding-left: 2.5rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(200, 120, 255, 0.6);
        }

        .credentials-list li:hover::before {
            left: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 3rem;
            text-align: center;
            position: relative;
            background: transparent;
        }

        .cta-box {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            backdrop-filter: blur(30px);
            border: 2px solid var(--color-border);
            border-radius: 40px;
            padding: 3rem 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 20px 60px rgba(147, 51, 234, 0.2);
        }

        .cta-box:hover {
            transform: scale(1.02);
            border-color: var(--color-primary);
            box-shadow: 0 40px 100px rgba(147, 51, 234, 0.35);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                        rgba(147, 51, 234, 0.05), 
                        rgba(236, 72, 153, 0.05));
            opacity: 0;
            transition: opacity 0.6s;
        }

        .cta-box:hover::before {
            opacity: 1;
        }

        .cta-box h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            color: var(--color-text);
        }

        .cta-box p {
            font-size: 1.1rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
            font-family: var(--font-secondary);
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: var(--color-surface);
            border-top: 1px solid var(--color-border);
            padding: 3rem;
            text-align: center;
            position: relative;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
        }

        .footer-links a {
            color: var(--color-muted);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--color-primary);
            transform: translateY(-2px);
        }

        /* Scroll Animations */
        /* data-scroll only hides hero elements; fp-sections show immediately */
        .hero [data-scroll] {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero [data-scroll].visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* All other data-scroll elements always visible */
        [data-scroll]:not(.hero [data-scroll]) {
            opacity: 1;
            transform: none;
        }

        /* 3D Tilt Effect */
        .tilt-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        /* Test Modal */
        .test-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            overflow-y: auto;
            animation: fadeIn 0.3s;
        }

        .test-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .test-modal-content {
            background: white;
            border-radius: 30px;
            max-width: 700px;
            width: 100%;
            padding: 3rem;
            position: relative;
            animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
        }

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

        .test-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--color-surface);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--color-muted);
        }

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

        .test-header h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--color-text);
        }

        .test-header p {
            color: var(--color-muted);
            margin-bottom: 2rem;
        }

        .test-progress {
            width: 100%;
            height: 8px;
            background: var(--color-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .test-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            width: 10%;
            transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .test-progress-text {
            text-align: right;
            color: var(--color-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .test-body {
            min-height: 300px;
        }

        .test-question {
            display: none;
            animation: fadeIn 0.4s;
        }

        .test-question.active {
            display: block;
        }

        .test-question h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--color-text);
            line-height: 1.5;
        }

        .test-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .test-option {
            padding: 1.5rem;
            background: var(--color-surface);
            border: 2px solid var(--color-border);
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .test-option:hover {
            border-color: var(--color-primary);
            background: rgba(147, 51, 234, 0.08);
            transform: translateX(10px);
        }

        .test-option.selected {
            border-color: var(--color-primary);
            background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(236, 72, 153, 0.12));
            font-weight: 600;
        }

        .test-navigation {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: space-between;
        }

        .test-nav-btn {
            padding: 1rem 2rem;
            border: 2px solid var(--color-border);
            background: white;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-family: var(--font-main);
        }

        .test-nav-btn:hover:not(:disabled) {
            border-color: var(--color-primary);
            background: rgba(147, 51, 234, 0.08);
        }

        .test-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .test-nav-btn.primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            color: white;
            border: none;
        }

        .test-nav-btn.primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(147, 51, 234, 0.35);
        }

        .test-result {
            text-align: center;
            padding: 2rem 0;
        }

        .result-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .test-result h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .test-result p {
            font-size: 1.1rem;
            color: var(--color-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .result-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Particle Effect on Cursor */
        .cursor-particle {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            pointer-events: none;
            opacity: 0;
            z-index: 9999;
            animation: particleFade 1s ease-out forwards;
        }

        @keyframes particleFade {
            0% {
                opacity: 0.8;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(0) translateY(-50px);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 4rem;
            }

            .floating-cards {
                justify-content: center;
            }

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

            .parallax-content {
                grid-template-columns: 1fr;
            }

            .nav-items {
                display: none;
            }
        }
/* ── Tatyana: Hero Motto ───────────────────────────────────── */
.hero-motto {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--color-primary);
    background: rgba(147, 51, 234, 0.05);
    border-radius: 0 16px 16px 0;
    text-align: left;
}

/* ── Tatyana: Honorar-Box responsive ──────────────────────── */
@media (max-width: 768px) {
    .cta-box > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    .hero-motto {
        font-size: 0.95rem;
    }
}

/* ── Kompakte Sektion-Trennungen ──────────────────────────────────────────── */
.fp-section + .fp-section {
    border-top: 1px solid rgba(233, 213, 255, 0.5);
}

/* ── Stat-cards kompakter ─────────────────────────────────────────────────── */
.floating-cards {
    gap: 1.2rem !important;
    justify-content: center !important;
}
.stat-card {
    padding: 1.4rem !important;
}
.stat-number {
    font-size: 2.2rem !important;
    margin-bottom: 0.3rem !important;
}

/* ── Credentials list kompakter ──────────────────────────────────────────── */
.credentials-list {
    margin-top: 1rem !important;
}
.credentials-list li {
    padding: 0.45rem 0 0.45rem 2rem !important;
    font-size: 0.9rem !important;
}

/* ── Services grid: etwas größere Karten auf Desktop ─────────────────────── */
.services-grid {
    max-width: 1200px !important;
}
.flip-card {
    height: 230px !important;
}

/* ── Responsive: Tablet ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title        { font-size: 3.5rem !important; }
    .floating-cards    { flex-wrap: wrap !important; }
    .services-grid     { grid-template-columns: 1fr 1fr !important; }
    .parallax-content  { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .parallax-image    { aspect-ratio: 4/3 !important; max-height: 300px !important; }
}

/* ── Responsive: Mobile ───────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero              { padding: 5rem 1.2rem 2.5rem !important; }
    .hero-title        { font-size: 2.4rem !important; }
    .hero-subtitle     { font-size: 1rem !important; }
    .hero-motto        { font-size: 0.88rem !important; padding: 0.8rem 1rem !important; }
    .floating-cards    { gap: 0.8rem !important; }
    .stat-card         { width: calc(50% - 0.4rem) !important; flex-shrink: 1 !important; }
    .stat-card         { padding: 1rem !important; }
    .stat-number       { font-size: 1.6rem !important; }
    .services          { padding: 3rem 1rem 2rem !important; }
    .services-grid     { grid-template-columns: 1fr !important; }
    .parallax-section  { padding: 3rem 1.2rem !important; }
    .cta-section       { padding: 3rem 1rem !important; }
    .cta-box           { padding: 2rem 1.2rem !important; border-radius: 20px !important; }
    .cta-box h2        { font-size: 1.8rem !important; }
    .hero-buttons      { gap: 0.8rem !important; }
    .btn-gradient, .btn-outline, .btn-test { padding: 0.8rem 1.5rem !important; font-size: 0.95rem !important; }
    /* Honorar grid: stacked on mobile */
    .cta-box > div[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Cookie Consent Banner ─────────────────────────────────────────────── */
#psyflow-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1a0040 0%, #3b0080 50%, #6b0080 100%);
    border-top: 2px solid rgba(147,51,234,0.5);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -8px 32px rgba(147,51,234,0.25);
    animation: cookieBannerSlideUp 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes cookieBannerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
#psyflow-cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(240,200,255,0.9);
    line-height: 1.6;
    flex: 1;
    min-width: 220px;
}
#psyflow-cookie-banner a {
    color: #ec4899;
    text-decoration: underline;
    text-underline-offset: 2px;
}
#psyflow-cookie-banner a:hover { color: #f472b6; }
#psyflow-cookie-accept {
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(147,51,234,0.4);
}
#psyflow-cookie-accept:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 32px rgba(147,51,234,0.55);
}
#psyflow-cookie-banner.psyflow-cookie-hide {
    animation: cookieBannerSlideDown 0.35s cubic-bezier(0.4,0,1,1) forwards;
}
@keyframes cookieBannerSlideDown {
    to { transform: translateY(110%); opacity: 0; }
}
@media (max-width: 600px) {
    #psyflow-cookie-banner { flex-direction: column; align-items: stretch; padding: 1.2rem 1.2rem 1.5rem; }
    #psyflow-cookie-accept { width: 100%; text-align: center; }
}
