/* CSS Variables */
:root {
    --color-primary: #9DD567;
    --color-primary-dark: #0000C2;
    --color-neutral-50: #F8FAFC;
    --color-neutral-100: #F1F5F9;
    --color-neutral-200: #E2E8F0;
    --color-neutral-300: #CBD5E1;
    --color-neutral-400: #94A3B8;
    --color-neutral-500: #64748B;
    --color-neutral-600: #475569;
    --color-neutral-700: #334155;
    --color-neutral-800: #1E293B;
    --color-neutral-900: #0F172A;
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* Bagua Colors */
    --bagua-wealth: #9333ea;
    --bagua-fame: #dc2626;
    --bagua-partner: #ec4899;
    --bagua-family: #9DD567;
    --bagua-taichi: #eab308;
    --bagua-children: #CBD5E1;
    --bagua-knowledge: #3b82f6;
    --bagua-career: #000000;
    --bagua-helpful: #94A3B8;
    
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-white);
    color: var(--color-neutral-900);
    line-height: 1.6;
    min-height: 100vh;
}

/* Ensure all images have no border-radius */
img {
    border-radius: 0 !important;
}

/* Remove underlines from all links globally */
a,
a:-webkit-any-link,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--color-neutral-900);
    z-index: 50;
    height: 40px;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.top-bar-accent {
    color: var(--color-primary);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    color: var(--color-white);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--color-primary);
}

/* Header */
.main-header {
    position: fixed;
    top: 40px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 1px solid var(--color-neutral-200);
    animation: fadeIn 1s ease-out;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-button {
    display: flex;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    color: inherit;
}

.logo-button:hover {
    opacity: 0.7;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--color-neutral-900);
}

.main-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-neutral-600);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--color-neutral-900);
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-neutral-900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-link:hover .nav-underline {
    transform: scaleX(1);
}

.nav-chevron {
    transition: transform 0.3s;
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Megamenu Styles */
.megamenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 48px);
    max-width: 300px;
    background-color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
    transform: translateX(-50%) translateY(-10px);
    z-index: 100;
    padding: 40px 0;
}

.megamenu-architektur {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    padding-top: 16px;
    width: 320px;
    max-width: 320px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-neutral-200);
    overflow: hidden;
    padding: 0;
}

.megamenu-architektur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-item:hover .megamenu,
.megamenu.active,
.megamenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-item:hover .megamenu-architektur,
.megamenu-architektur.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.megamenu-architektur:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Projekte Megamenu Styles */
.megamenu-projekte {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: 320px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-neutral-200);
    overflow: hidden;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
    transform: translateX(-50%) translateY(-10px);
    padding: 0;
}

.nav-item:hover .megamenu-projekte,
.megamenu-projekte.active,
.megamenu-projekte:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.megamenu-projekte-content {
    padding: 24px;
}

.megamenu-projekte-header {
    margin-bottom: 16px;
}

.megamenu-projekte-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
}

.megamenu-projekte-gradient-line {
    height: 1px;
    width: 48px;
    background: linear-gradient(to right, #9DD567, #0000C2);
}

.megamenu-projekte-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu-projekte-button {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    display: block;
    color: inherit;
}

.megamenu-projekte-button:hover {
    background-color: var(--color-neutral-50);
}

.megamenu-projekte-button-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
    transition: color 0.3s ease-in-out;
}

.megamenu-projekte-button:hover .megamenu-projekte-button-title {
    color: #0000C2;
}

.megamenu-projekte-button-subtitle {
    font-size: 12px;
    color: var(--color-neutral-600);
    font-weight: 300;
}

.megamenu-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.megamenu-architektur .megamenu-container {
    padding: 24px;
}

.megamenu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.megamenu-header {
    margin-bottom: 16px;
}

.megamenu-main-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.megamenu-title-underline {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, #9DD567, #0000C2);
    border-radius: 0;
}

.megamenu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu-button {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    display: block;
    color: inherit;
}

.megamenu-button:hover {
    background-color: var(--color-neutral-50);
}

.megamenu-button-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
    transition: color 0.3s ease-in-out;
}

.megamenu-button:hover .megamenu-button-title {
    color: #1e40af;
}

.megamenu-button-subtitle {
    font-size: 12px;
    font-weight: 300;
    color: var(--color-neutral-600);
    line-height: 1.4;
}

@media (max-width: 1023px) {
    .megamenu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--color-neutral-200);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: block;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
    
    .megamenu.active {
        max-height: 1000px !important;
        padding: 16px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        display: block !important;
    }
    
    .nav-item:hover .megamenu {
        transform: none;
    }
    
    .megamenu-grid {
        gap: 20px;
    }
    
    .megamenu-buttons {
        gap: 12px;
    }
    
    .megamenu-architektur {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }
    
    .megamenu-architektur .megamenu-container {
        padding: 16px;
    }
    
    .megamenu-projekte {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--color-neutral-200);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: block;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }
    
    .megamenu-projekte.active {
        max-height: 1000px !important;
        padding: 16px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        display: block !important;
    }
    
    .megamenu-projekte-content {
        padding: 16px;
    }
    
    .megamenu-container {
        padding: 0 16px;
    }
}

.megamenu-col {
    display: flex;
    flex-direction: column;
}

.megamenu-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.megamenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.megamenu-link {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-neutral-600);
    text-decoration: none;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    padding: 4px 0;
    position: relative;
}

.megamenu-link::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.megamenu-link:hover {
    color: var(--color-neutral-900);
    transform: translateX(8px);
}

.megamenu-link:hover::before {
    opacity: 1;
}

.contact-button {
    display: inline-block;
    background-color: var(--color-neutral-900);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: background-color 0.3s;
    text-decoration: none;
}

.contact-button:hover {
    background-color: var(--color-neutral-800);
}

.mobile-menu-toggle {
    display: block;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-neutral-900);
    transition: background-color 0.3s;
    border-radius: 8px;
    position: relative;
}

.mobile-menu-toggle:hover {
    background-color: var(--color-neutral-100);
}

.mobile-menu-icon {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.mobile-menu-icon-hamburger {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-toggle.menu-open .mobile-menu-icon-hamburger {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.menu-open .mobile-menu-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding: 80px 0 40px;
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-bg-1 {
    background-image: url('https://images.pexels.com/photos/1029599/pexels-photo-1029599.jpeg?auto=compress&cs=tinysrgb&w=1920');
    animation: bgSlide1 20s ease-in-out infinite;
    z-index: 1;
    opacity: 1;
}

.hero-bg-2 {
    background-image: url('https://images.pexels.com/photos/7233337/pexels-photo-7233337.jpeg?auto=compress&cs=tinysrgb&w=1920');
    animation: bgSlide2 20s ease-in-out infinite;
    z-index: 2;
    opacity: 0;
}

.hero-bg-3 {
    background-image: url('https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg?auto=compress&cs=tinysrgb&w=1920');
    animation: bgSlide3 20s ease-in-out infinite;
    z-index: 3;
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9), rgba(157, 213, 103, 0.3));
    z-index: 4;
}

.hero-float-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 5;
}

.float-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.float-orb-1 {
    top: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background-color: rgba(157, 213, 103, 0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.float-orb-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background-color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.float-orb-3 {
    top: 50%;
    left: 25%;
    width: 256px;
    height: 256px;
    background-color: rgba(157, 213, 103, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 16px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        min-height: calc(100vh - 120px);
        padding: 0;
    }
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 1;
    visibility: visible;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseSlow 3s ease-in-out infinite;
    border-radius: 0;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 16px;
    }
}

.hero-badge-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 60px;
        margin-bottom: 24px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 72px;
        margin-bottom: 24px;
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 36rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
        margin-bottom: 32px;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: rgba(157, 213, 103, 0.9);
    box-shadow: 0 10px 15px -3px rgba(157, 213, 103, 0.5);
    transform: translateY(-4px) scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-size: 16px;
    transition: all 0.3s;
}

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

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@media (min-width: 1024px) {
    .hero-cards {
        margin-top: 0;
    }
}

.hero-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s;
}

.hero-card:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(157, 213, 103, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-card:hover .hero-card-gradient {
    opacity: 1;
}

.hero-card-content {
    position: relative;
    padding: 24px;
}

.hero-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.5s;
}

.hero-card-icon svg {
    color: var(--color-primary-dark);
}

.hero-card:hover .hero-card-icon {
    transform: rotate(12deg);
}

.hero-card-arrow {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.hero-card:hover .hero-card-arrow {
    color: var(--color-white);
    transform: translateX(8px);
}

.hero-card-title {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.hero-card:hover .hero-card-title {
    color: var(--color-primary);
}

.hero-card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
}

.bagua-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 12px;
}

.bagua-item {
    background-color: rgba(147, 51, 234, 0.5);
    backdrop-filter: blur(8px);
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 8px;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.2;
}

.bagua-wealth {
    background-color: rgba(147, 51, 234, 0.5);
}

.bagua-fame {
    background-color: rgba(220, 38, 38, 0.5);
}

.bagua-partner {
    background-color: rgba(236, 72, 153, 0.5);
}

.bagua-family {
    background-color: rgba(157, 213, 103, 0.6);
}

.bagua-taichi {
    background-color: rgba(234, 179, 8, 0.6);
}

.bagua-children {
    background-color: rgba(203, 213, 225, 0.6);
}

.bagua-knowledge {
    background-color: rgba(59, 130, 246, 0.5);
}

.bagua-career {
    background-color: rgba(0, 0, 0, 0.5);
}

.bagua-helpful {
    background-color: rgba(148, 163, 184, 0.5);
}

.hero-card-bar {
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.hero-card:hover .hero-card-bar {
    transform: scaleX(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 20;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.mouse-dot {
    width: 4px;
    height: 12px;
    background-color: var(--color-white);
    border-radius: 2px;
}

.bg-shapes::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 10%;
    right: 5%;
    border-radius: 50%;
    background: #9dd56714;
    pointer-events: none;
    z-index: 0;
    animation: float-wide 30s ease-in-out infinite;
}

.bg-shapes::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: #0000c20d;
    pointer-events: none;
    z-index: 0;
    animation: float-cross 25s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.bg-lines::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: 15%;
    right: 8%;
    border-radius: 50%;
    background: rgba(157, 213, 103, 0.08);
    pointer-events: none;
    z-index: 0;
    animation: float-wide 35s ease-in-out infinite;
}

.bg-lines::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 8%;
    background: rgba(0, 0, 194, 0.06);
    pointer-events: none;
    z-index: 0;
    animation: float-cross 28s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.bg-shapes-alt {
    position: relative;
    overflow: hidden;
}

.bg-shapes-alt::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 10%;
    right: 5%;
    border-radius: 50%;
    background: rgba(157, 213, 103, 0.05);
    pointer-events: none;
    z-index: 0;
    animation: float-wide 30s ease-in-out infinite;
}

.bg-shapes-alt::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: rgba(0, 0, 194, 0.03);
    pointer-events: none;
    z-index: 0;
    animation: float-cross 25s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-neutral-900);
    color: var(--color-white);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.3s; }

.stat-number {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 60px;
    }
}

.stat-label {
    color: var(--color-neutral-400);
    font-weight: 300;
}

/* About Section */
.about-section {
    padding: 128px 24px;
    background-color: var(--color-white);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(157, 213, 103, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(157, 213, 103, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 60px;
    }
}

.about-paragraph {
    font-size: 18px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neutral-900);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 300;
    font-size: 18px;
    transition: gap 0.3s;
}

.about-link:hover {
    gap: 16px;
}

.about-link svg {
    transition: transform 0.3s;
}

.about-link:hover svg {
    transform: translateX(4px);
}

.about-image {
    position: relative;
    height: 600px;
}

.about-image-shadow {
    position: absolute;
    inset: 0;
    background-color: var(--color-neutral-200);
    transform: translate(16px, 16px);
}

.about-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services-section {
    padding: 128px 24px;
    background-color: var(--color-neutral-50);
}

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

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

.services-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .services-title {
        font-size: 60px;
    }
}

.services-subtitle {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    background-color: var(--color-white);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-image-wrapper {
    height: 320px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 40px;
}

.service-card-title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--color-neutral-900);
}

.service-card-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-700);
    font-weight: 300;
    margin-bottom: 12px;
}

.service-list-item svg {
    color: var(--color-neutral-900);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neutral-900);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 300;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 16px;
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Projects Section */
.projects-section {
    padding: 128px 24px;
    background-color: var(--color-white);
    background-image: 
        linear-gradient(to right, rgba(157, 213, 103, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(157, 213, 103, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.projects-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.projects-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .projects-title {
        font-size: 60px;
    }
}

.projects-subtitle {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    cursor: pointer;
}

.project-image-wrapper {
    height: 320px;
    background-color: var(--color-neutral-200);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.project-card:hover .project-image-wrapper {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.project-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 300;
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.project-tag-fengshui,
.project-tag-feng-shui {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.project-tag-completed {
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.project-tag-current {
    background-color: #D1FAE5;
    color: #065F46;
}

.project-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-neutral-900);
    transition: color 0.3s;
}

.project-card:hover .project-title {
    color: var(--color-neutral-600);
}

.project-description {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-neutral-500);
    font-weight: 300;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.projects-cta {
    text-align: center;
}

/* References Section */
.references-section {
    padding: 96px 0;
    background-color: var(--color-neutral-50);
}

.references-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.references-title {
    font-size: 36px;
    font-weight: 200;
    text-align: center;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .references-title {
        font-size: 48px;
    }
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: carouselScroll 30s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    width: 256px;
    height: 128px;
    margin: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: filter 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.carousel-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    padding: 200px 24px 128px 24px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 60px;
    }
}

.contact-text {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: var(--color-neutral-900);
    color: var(--color-white);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer-logo {
    height: 64px;
    object-fit: contain;
}

.footer-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer-text {
    color: var(--color-neutral-300);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: var(--color-neutral-300);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 300;
    font-size: 14px;
    transition: color 0.3s;
    text-align: left;
    text-decoration: none;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-link:focus {
    outline: none;
    color: var(--color-white);
}

.footer-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-icon {
    color: var(--color-neutral-300);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-neutral-800);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-neutral-400);
    font-weight: 300;
}

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

.footer-legal-link {
    font-size: 14px;
    color: var(--color-neutral-400);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: var(--color-white);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bgSlide1 {
    0%, 33.33% {
        opacity: 1;
    }
    33.34%, 100% {
        opacity: 0;
    }
}

@keyframes bgSlide2 {
    0%, 33.33% {
        opacity: 0;
    }
    33.34%, 66.66% {
        opacity: 1;
    }
    66.67%, 100% {
        opacity: 0;
    }
}

@keyframes bgSlide3 {
    0%, 66.66% {
        opacity: 0;
    }
    66.67%, 100% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

@keyframes float-wide {
    0% {
        transform: translate(0) scale(1) rotate(0);
    }
    20% {
        transform: translate(120px, -100px) scale(1.2) rotate(72deg);
    }
    40% {
        transform: translate(-80px, -140px) scale(0.9) rotate(144deg);
    }
    60% {
        transform: translate(-140px, 80px) scale(1.1) rotate(216deg);
    }
    80% {
        transform: translate(80px, 120px) scale(0.95) rotate(288deg);
    }
    100% {
        transform: translate(0) scale(1) rotate(360deg);
    }
}

@keyframes float-cross {
    0% {
        transform: translate(0) scale(1) rotate(0);
    }
    25% {
        transform: translate(-150px, 100px) scale(1.15) rotate(45deg);
    }
    50% {
        transform: translate(150px, -100px) scale(0.85) rotate(90deg);
    }
    75% {
        transform: translate(-100px, -120px) scale(1.1) rotate(135deg);
    }
    100% {
        transform: translate(0) scale(1) rotate(180deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-slide-in-left {
    opacity: 0;
}

.animate-slide-in-left.revealed {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 1;
}

.animate-slide-in-right {
    opacity: 0;
}

.animate-slide-in-right.revealed {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 1;
}

.animate-scale-in {
    opacity: 0;
}

.animate-scale-in.revealed {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 1;
}

.animate-fade-in-up {
    opacity: 0;
}

.animate-fade-in-up.revealed {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1;
}

/* Utility Classes */
.hover-lift {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Architektur Page Styles */
.architektur-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.architektur-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center center;
}

.architektur-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8));
}

.architektur-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
    width: 100%;
}

.architektur-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.architektur-badge-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: var(--color-white);
}

.architektur-hero-title {
    font-size: 60px;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1;
}

@media (min-width: 768px) {
    .architektur-hero-title {
        font-size: 96px;
    }
}

.architektur-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .architektur-hero-description {
        font-size: 24px;
    }
}

.architektur-section {
    padding: 128px 24px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .architektur-section {
        padding: 128px 32px;
    }
}

.architektur-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .architektur-grid-5 {
        grid-template-columns: 2fr 3fr;
    }
}


.architektur-section-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 16px;
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-900);
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.architektur-section-badge-white {
    background-color: var(--color-white);
}

.architektur-section-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .architektur-section-title {
        font-size: 60px;
    }
}

.architektur-section-title-center {
    text-align: center;
}

.architektur-section-text {
    font-size: 18px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.architektur-link-group {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-900);
    cursor: pointer;
    margin-top: 32px;
}

.architektur-link-text {
    font-weight: 300;
}

.architektur-link-arrow {
    transition: transform 0.3s;
}

.architektur-link-group:hover .architektur-link-arrow {
    transform: translateX(8px);
}

.architektur-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.architektur-image-wrapper {
    position: relative;
    height: 400px;
}

.architektur-image-offset {
    transform: translateY(32px);
}

.architektur-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#prinzipien {
    background-color: #fafafa;
}

#leistungen {
    background-color: var(--color-white);
}

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

.architektur-prinzipien-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .architektur-prinzipien-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.architektur-prinzipien-card {
    position: relative;
    background-color: var(--color-white);
    padding: 40px;
    overflow: hidden;
    transition: all 0.5s;
}

.architektur-prinzipien-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.architektur-prinzipien-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background-color: var(--color-neutral-50);
    border-radius: 50%;
    transform: translate(64px, -64px);
    transition: transform 0.7s;
}

.architektur-prinzipien-card:hover .architektur-prinzipien-card-bg {
    transform: translate(64px, -64px) scale(1.5);
}

.architektur-prinzipien-card-content {
    position: relative;
    z-index: 1;
}

.architektur-prinzipien-icon {
    color: var(--color-neutral-900);
    margin-bottom: 24px;
}

.architektur-prinzipien-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--color-neutral-900);
}

.architektur-prinzipien-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
}

.architektur-leistungen-header {
    margin-bottom: 80px;
}

.architektur-leistungen-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .architektur-leistungen-title {
        font-size: 60px;
    }
}

.architektur-leistungen-description {
    font-size: 18px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
}

.architektur-leistungen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .architektur-leistungen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.architektur-leistungen-image-wrapper {
    position: relative;
    height: 350px;
    margin-bottom: 24px;
    overflow: hidden;
}

.architektur-leistungen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.architektur-leistungen-card:hover .architektur-leistungen-image {
    transform: scale(1.1);
}

.architektur-leistungen-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent, transparent);
}

.architektur-leistungen-image-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.architektur-leistungen-card-title-white {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 8px;
}

.architektur-leistungen-card-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 16px;
}

.architektur-leistungen-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.architektur-leistungen-list-item {
    font-size: 14px;
    color: var(--color-neutral-500);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.architektur-leistungen-list-dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-neutral-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.architektur-cta {
    padding: 128px 24px;
    background-color: var(--color-neutral-100);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .architektur-cta {
        padding: 128px 32px;
    }
}

.architektur-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.architektur-cta-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .architektur-cta-title {
        font-size: 60px;
    }
}

.architektur-cta-text {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.architektur-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.architektur-cta-button:hover {
    background-color: rgba(157, 213, 103, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animation delays for scroll reveal */
.scroll-reveal:nth-child(1) { animation-delay: 0s; }
.scroll-reveal:nth-child(2) { animation-delay: 0.1s; }
.scroll-reveal:nth-child(3) { animation-delay: 0.2s; }
.scroll-reveal:nth-child(4) { animation-delay: 0.3s; }

.animate-scale-in.revealed:nth-child(1) { animation-delay: 0s; }
.animate-scale-in.revealed:nth-child(2) { animation-delay: 0.15s; }
.animate-scale-in.revealed:nth-child(3) { animation-delay: 0.3s; }

.animate-fade-in-up.revealed:nth-child(1) { animation-delay: 0s; }
.animate-fade-in-up.revealed:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-in-up.revealed:nth-child(3) { animation-delay: 0.2s; }

/* Feng Shui Page Styles */
.fengshui-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fengshui-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/1029599/pexels-photo-1029599.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center center;
}

.fengshui-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8));
}

.fengshui-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
    width: 100%;
}

.fengshui-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fengshui-badge-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: var(--color-white);
}

.fengshui-hero-title {
    font-size: 60px;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1;
}

@media (min-width: 768px) {
    .fengshui-hero-title {
        font-size: 96px;
    }
}

.fengshui-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .fengshui-hero-description {
        font-size: 24px;
    }
}

.fengshui-section {
    padding: 128px 24px;
    position: relative;
}

.fengshui-section.bg-shapes,
.fengshui-section.bg-shapes-alt {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .fengshui-section {
        padding: 128px 32px;
    }
}

.fengshui-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fengshui-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .fengshui-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.fengshui-image-col {
    position: relative;
}

.fengshui-image-wrapper {
    position: relative;
}

.fengshui-image-decor {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    background-color: rgba(157, 213, 103, 0.2);
    border-radius: 50%;
}

.fengshui-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-text-col {
    position: relative;
    z-index: 10;
}

.fengshui-section-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 16px;
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-900);
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.fengshui-section-badge-green {
    background-color: rgba(157, 213, 103, 0.2);
    color: var(--color-primary-dark);
}

.fengshui-section-badge-white {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.fengshui-section-badge-blue {
    background-color: rgba(0, 0, 194, 0.1);
    color: var(--color-primary-dark);
}

.fengshui-section-badge-green-small {
    background-color: rgba(157, 213, 103, 0.2);
    color: var(--color-primary-dark);
    padding: 3px 12px;
    font-size: 11px;
}

.fengshui-section-badge-white-small {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    padding: 3px 12px;
    font-size: 11px;
}

.fengshui-section-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .fengshui-section-title {
        font-size: 60px;
    }
}

.fengshui-section-title-center {
    text-align: center;
}

.fengshui-section-text {
    font-size: 18px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.fengshui-section-text-last {
    margin-bottom: 0;
}

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

.fengshui-section-description {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.fengshui-gradient-bg {
    background: linear-gradient(to bottom, rgba(157, 213, 103, 0.1), var(--color-white));
}

.fengshui-neutral-bg {
    background-color: var(--color-neutral-50);
}

.fengshui-accordion-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fengshui-accordion-item {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.fengshui-accordion-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-accordion-header {
    padding: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.fengshui-accordion-content-header {
    flex: 1;
}

.fengshui-accordion-title {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
}

.fengshui-accordion-subtitle {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.fengshui-accordion-button {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(157, 213, 103, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.fengshui-accordion-button:hover {
    background-color: rgba(157, 213, 103, 0.2);
}

.fengshui-accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary-dark);
    transition: transform 0.3s;
}

.fengshui-accordion-item.active .fengshui-accordion-icon {
    transform: rotate(180deg);
}

.fengshui-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 32px;
}

.fengshui-accordion-item.active .fengshui-accordion-content {
    max-height: 1000px;
    padding: 0 32px 32px;
}

.fengshui-accordion-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .fengshui-accordion-content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.fengshui-accordion-content-paragraph {
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-neutral-600);
    font-weight: 300;
}

.fengshui-accordion-image-wrapper {
    height: 256px;
    border-radius: 0;
    overflow: hidden;
}

.fengshui-accordion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fengshui-accordion-image-wrapper:hover .fengshui-accordion-image {
    transform: scale(1.05);
}

.fengshui-bagua-container {
    max-width: 64rem;
    margin: 0 auto;
}

.bagua-interactive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .bagua-interactive-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.bagua-interactive-left {
    position: relative;
    width: 100%;
}

.bagua-interactive-svg {
    width: 100%;
    height: auto;
}

.bagua-area path,
.bagua-area circle {
    transition: 0.2s;
    stroke: #ccc;
    stroke-width: 1px;
    cursor: pointer;
}

.bagua-area:hover path,
.bagua-area:hover circle {
    filter: brightness(108%);
}

.bagua-label-text {
    font-size: 12px;
    fill: #ffffff;
    pointer-events: none;
    text-anchor: middle;
    font-weight: 300;
}

.bagua-taichi-text {
    font-size: 12px;
    fill: white;
    pointer-events: none;
    text-anchor: middle;
    font-weight: 400;
}

.bagua-orientation-note {
    text-align: center;
    font-size: 14px;
    color: #737373;
    font-weight: 300;
    margin-top: 24px;
}

.bagua-interactive-right {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-height: 350px;
}

.bagua-info-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    background: #9DD56733;
    color: #0000C2;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.bagua-info-title {
    margin: 0 0 15px;
    font-size: 32px;
    font-weight: 300;
    color: var(--color-neutral-900);
}

.bagua-info-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-weight: 300;
}

.fengshui-prozess-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .fengshui-prozess-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fengshui-prozess-basis {
    position: sticky;
    top: 120px;
    align-self: start;
    height: fit-content;
}

@media (max-width: 1023px) {
    .fengshui-prozess-basis {
        position: relative;
        top: 0;
    }
}

.fengshui-prozess-basis-card {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-prozess-basis-title {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 32px;
    line-height: 1.2;
}

.fengshui-prozess-basis-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fengshui-prozess-basis-item {
    display: flex;
    gap: 16px;
}

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

.fengshui-prozess-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-dark);
}

.fengshui-prozess-basis-item-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
}

.fengshui-prozess-basis-item-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.6;
}

.fengshui-prozess-steps-title {
    font-size: 30px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 32px;
}

.fengshui-prozess-steps-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fengshui-prozess-steps-list::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    z-index: 0;
}

.fengshui-prozess-step-line {
    display: none;
}

.fengshui-prozess-step-item {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 16px;
    z-index: 1;
}

.fengshui-prozess-step-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fengshui-prozess-step-item .fengshui-prozess-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fengshui-prozess-step-number {
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.fengshui-prozess-step-content {
    flex: 1;
    min-width: 0;
}

.fengshui-prozess-step-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-neutral-900);
}

.fengshui-prozess-step-text {
    font-size: 14px;
    color: var(--color-neutral-500);
    font-weight: 300;
}

.fengshui-prozess-step-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-primary-dark);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: auto;
}

.fengshui-prozess-step-item:hover .fengshui-prozess-step-arrow:not(.fengshui-prozess-accordion-arrow) {
    transform: rotate(180deg);
}

.fengshui-prozess-accordion-item {
    cursor: pointer;
    flex-wrap: wrap;
}

.fengshui-prozess-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0;
    margin-top: 0;
    width: 100%;
    flex-basis: 100%;
}

.fengshui-prozess-accordion-item.active .fengshui-prozess-accordion-content {
    max-height: 500px;
}

.fengshui-prozess-accordion-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-neutral-600);
    font-weight: 300;
    padding-left: 56px;
}

.fengshui-prozess-accordion-item.active .fengshui-prozess-accordion-arrow {
    transform: rotate(180deg);
}

.fengshui-prozess-accordion-item .fengshui-prozess-accordion-arrow {
    transition: transform 0.3s ease;
}

.fengshui-pricing-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.fengshui-pricing-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s;
}

.fengshui-pricing-card:hover {
    border-left-color: var(--color-primary-dark);
    background-color: var(--color-white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-pricing-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--color-primary), rgba(157, 213, 103, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.fengshui-pricing-card:hover .fengshui-pricing-icon-wrapper {
    transform: scale(1.1);
}

.fengshui-pricing-icon {
    color: var(--color-primary-dark);
}

.fengshui-pricing-content {
    flex: 1;
    min-width: 0;
}

.fengshui-pricing-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 4px;
}

.fengshui-pricing-description {
    color: var(--color-neutral-600);
    font-weight: 300;
}

.fengshui-pricing-note {
    font-size: 14px;
    color: var(--color-neutral-500);
    font-weight: 300;
    margin-top: 4px;
}

.fengshui-pricing-price {
    flex-shrink: 0;
    text-align: right;
    font-size: 30px;
    font-weight: 300;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.fengshui-pricing-footer {
    text-align: center;
    margin-top: 64px;
}

.fengshui-pricing-footer-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 24px;
}

.fengshui-pricing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fengshui-pricing-cta-button:hover {
    background-color: rgba(157, 213, 103, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-cta {
    padding: 128px 24px;
    background-color: var(--color-neutral-50);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .fengshui-cta {
        padding: 128px 32px;
    }
}

.fengshui-cta-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

@media (min-width: 1024px) {
    .fengshui-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.fengshui-cta-title {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 32px;
    line-height: 1.2;
    color: var(--color-neutral-900);
}

@media (min-width: 768px) {
    .fengshui-cta-title {
        font-size: 60px;
    }
}

.fengshui-cta-text {
    font-size: 20px;
    color: var(--color-neutral-600);
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.6;
}

.fengshui-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 20px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fengshui-cta-button:hover {
    background-color: rgba(157, 213, 103, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.fengshui-cta-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .fengshui-cta-image {
        display: block;
    }
}

.fengshui-cta-image-border {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-neutral-200);
 
}

.fengshui-cta-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animation delays for Feng Shui page */
.fengshui-accordion-item:nth-child(1) { animation-delay: 0s; }
.fengshui-accordion-item:nth-child(2) { animation-delay: 0.1s; }
.fengshui-accordion-item:nth-child(3) { animation-delay: 0.2s; }
.fengshui-accordion-item:nth-child(4) { animation-delay: 0.3s; }
.fengshui-accordion-item:nth-child(5) { animation-delay: 0.4s; }
.fengshui-accordion-item:nth-child(6) { animation-delay: 0.5s; }
.fengshui-accordion-item:nth-child(7) { animation-delay: 0.6s; }
.fengshui-accordion-item:nth-child(8) { animation-delay: 0.7s; }

.fengshui-pricing-item:nth-child(1) { animation-delay: 0s; }
.fengshui-pricing-item:nth-child(2) { animation-delay: 0.1s; }
.fengshui-pricing-item:nth-child(3) { animation-delay: 0.2s; }
.fengshui-pricing-item:nth-child(4) { animation-delay: 0.3s; }
.fengshui-pricing-item:nth-child(5) { animation-delay: 0.4s; }





.contact-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3.75rem;
        text-align: left;
    }
}

.contact-description {
    font-size: 1.25rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 48px;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    color: var(--color-neutral-900);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-detail-content {
    text-align: left;
}

.contact-detail-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--color-neutral-900);
    text-align: left;
}

.contact-detail-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    text-align: left;
}

.contact-image-wrapper {
    height: 320px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background-color: var(--color-neutral-50);
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--color-neutral-700);
    text-align: left;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--color-white);
    border: 1px solid var(--color-neutral-200);
    border-radius: 2px;
    font-weight: 300;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-neutral-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--color-neutral-900);
    box-shadow: 0 0 0 1px var(--color-neutral-900);
}

.contact-form-textarea {
    resize: none;
    min-height: 144px;
}

.contact-form-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    padding: 16px 32px;
    border-radius: 2px;
    border: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-submit:hover:not(:disabled) {
    background-color: rgba(157, 213, 103, 0.9);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form-message {
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.contact-form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.contact-map-section {
    height: 384px;
    background-color: var(--color-neutral-200);
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Weitere Kompetenzen Page Styles */
.kompetenzen-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.kompetenzen-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23, 23, 23, 0.7), rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.8));
    z-index: 1;
}

.kompetenzen-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
    width: 100%;
}

.kompetenzen-hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.kompetenzen-hero-badge-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: white;
}

.kompetenzen-hero-title {
    font-size: 3.75rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1;
    color: white;
}

@media (min-width: 768px) {
    .kompetenzen-hero-title {
        font-size: 6rem;
    }
}

.kompetenzen-hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .kompetenzen-hero-description {
        font-size: 1.5rem;
    }
}

.kompetenzen-section {
    padding: 128px 24px;
    position: relative;
}

@media (min-width: 1024px) {
    .kompetenzen-section {
        padding: 128px 32px;
    }
}

.kompetenzen-section-white {
    background-color: var(--color-white);
}

.kompetenzen-section-gray {
    background-color: var(--color-neutral-50);
}

.kompetenzen-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

.kompetenzen-section-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-radius: 2px;
}

.kompetenzen-section-badge-green {
    background-color: rgba(157, 213, 103, 0.2);
    color: #0000C2;
}

.kompetenzen-section-title {
    font-size: 3rem;
    font-weight: 200;
    color: var(--color-neutral-900);
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .kompetenzen-section-title {
        font-size: 3.75rem;
    }
}

.kompetenzen-section-description {
    font-size: 1.25rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

.kompetenzen-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .kompetenzen-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .kompetenzen-content-grid-reverse {
        direction: rtl;
    }
    
    .kompetenzen-content-grid-reverse > * {
        direction: ltr;
    }
}

.kompetenzen-card {
    background-color: var(--color-neutral-50);
    padding: 48px;
    border-radius: 2px;
}

.kompetenzen-card-right {
    background-color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.kompetenzen-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.kompetenzen-card-icon-blue {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.kompetenzen-card-icon-amber {
    background: linear-gradient(to bottom right, #d97706, #b45309);
}

.kompetenzen-card-icon svg {
    color: white;
}

.kompetenzen-card-title {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .kompetenzen-card-title {
        font-size: 2.25rem;
    }
}

.kompetenzen-card-text {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 32px;
}

.kompetenzen-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.kompetenzen-card-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-600);
    font-weight: 300;
}

.kompetenzen-card-list-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.kompetenzen-card-list-bullet-blue {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.kompetenzen-card-list-bullet-amber {
    background: linear-gradient(to bottom right, #d97706, #b45309);
}

.kompetenzen-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neutral-900);
    font-weight: 300;
    transition: gap 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

.kompetenzen-card-button:hover {
    gap: 12px;
}

.kompetenzen-image-wrapper {
    height: 384px;
    background-color: var(--color-neutral-200);
    border-radius: 2px;
    overflow: hidden;
}

.kompetenzen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kompetenzen-cta-section {
    padding: 96px 24px;
    background-color: var(--color-neutral-100);
}

.kompetenzen-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.kompetenzen-cta-title {
    font-size: 2.25rem;
    font-weight: 200;
    margin-bottom: 32px;
    color: var(--color-neutral-900);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .kompetenzen-cta-title {
        font-size: 3rem;
    }
}

.kompetenzen-cta-description {
    font-size: 1.25rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 48px;
}

.kompetenzen-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

@media (min-width: 768px) {
    .kompetenzen-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.kompetenzen-cta-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 2px;
    border: 1px solid var(--color-neutral-200);
}

.kompetenzen-cta-card-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--color-neutral-900);
}

.kompetenzen-cta-card-text {
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
}

.kompetenzen-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    border-radius: 2px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.kompetenzen-cta-button:hover {
    background-color: rgba(157, 213, 103, 0.9);
}

/* U2 Team Page Styles */
.team-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.team-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23, 23, 23, 0.7), rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.8));
    z-index: 1;
}

.team-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
    width: 100%;
}

.team-hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.team-hero-badge-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    color: white;
}

.team-hero-title {
    font-size: 3.75rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1;
    color: white;
}

@media (min-width: 768px) {
    .team-hero-title {
        font-size: 6rem;
    }
}

.team-hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .team-hero-description {
        font-size: 1.5rem;
    }
}

.team-members-section {
    padding: 128px 24px;
    background-color: var(--color-white);
    position: relative;
}

@media (min-width: 1024px) {
    .team-members-section {
        padding: 128px 32px;
    }
}

.team-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

.team-section-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-radius: 2px;
}

.team-section-badge-green {
    background-color: rgba(157, 213, 103, 0.2);
    color: #0000C2;
}

.team-section-badge-white {
    background-color: var(--color-white);
    color: #0000C2;
}

.team-section-title {
    font-size: 3rem;
    font-weight: 200;
    color: var(--color-neutral-900);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .team-section-title {
        font-size: 3.75rem;
    }
}

.team-members-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .team-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member-card {
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.team-member-image-wrapper {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-member-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(157, 213, 103, 0.2), rgba(0, 0, 194, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.team-member-card:hover .team-member-image-overlay {
    opacity: 1;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.team-member-card:hover .team-member-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
}

.team-member-role {
    color: #0000C2;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.team-member-description {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 16px;
}

.team-member-link {
    font-size: 0.875rem;
    color: #0000C2;
    font-weight: 300;
    transition: text-decoration 0.3s ease;
}

.team-member-card:hover .team-member-link {
    text-decoration: underline;
}

.team-member-card:nth-child(1) { animation-delay: 0s; }
.team-member-card:nth-child(2) { animation-delay: 0.15s; }
.team-member-card:nth-child(3) { animation-delay: 0.3s; }
.team-member-card:nth-child(4) { animation-delay: 0.45s; }
.team-member-card:nth-child(5) { animation-delay: 0.6s; }
.team-member-card:nth-child(6) { animation-delay: 0.75s; }

.team-values-section {
    padding: 128px 24px;
    background-color: var(--color-neutral-50);
    position: relative;
}

@media (min-width: 1024px) {
    .team-values-section {
        padding: 128px 32px;
    }
}

.team-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .team-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-value-card {
    position: relative;
    z-index: 10;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
}

.team-value-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-value-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, rgba(157, 213, 103, 0.1), rgba(0, 0, 194, 0.1));
    border-radius: 50%;
    margin-right: -64px;
    margin-top: -64px;
    transition: transform 0.7s ease;
}

.team-value-card:hover .team-value-card-bg {
    transform: scale(1.5);
}

.team-value-card-content {
    position: relative;
}

.team-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-bottom: 24px;
}

.team-value-icon svg {
    color: #0000C2;
}

.team-value-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--color-neutral-900);
}

.team-value-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
}

.team-philosophy-section {
    padding: 128px 24px;
    background: linear-gradient(to bottom right, var(--color-neutral-50), var(--color-white));
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .team-philosophy-section {
        padding: 128px 32px;
    }
}

.team-philosophy-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.team-philosophy-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.team-philosophy-bg-orb-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background-color: rgba(157, 213, 103, 0.1);
}

.team-philosophy-bg-orb-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background-color: rgba(0, 0, 194, 0.05);
}

.team-philosophy-container {
    position: relative;
    z-index: 10;
}

.team-philosophy-header {
    text-align: center;
    margin-bottom: 96px;
}

.team-philosophy-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 16px;
    background-color: #0000C2;
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-radius: 2px;
}

.team-philosophy-title {
    font-size: 3.75rem;
    font-weight: 200;
    color: var(--color-neutral-900);
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .team-philosophy-title {
        font-size: 4.5rem;
    }
}

.team-philosophy-title-accent {
    color: var(--color-primary);
}

.team-philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .team-philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-philosophy-carousel {
    position: relative;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.team-philosophy-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-philosophy-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease-in-out;
}

.team-philosophy-carousel-slide-active {
    opacity: 1;
    transform: scale(1);
}

.team-philosophy-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-philosophy-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.team-philosophy-carousel-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
}

.team-philosophy-carousel-badge {
    color: var(--color-primary);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-philosophy-carousel-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.team-philosophy-carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.team-philosophy-carousel-dot {
    height: 6px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.team-philosophy-carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.team-philosophy-carousel-dot-active {
    width: 32px;
    background-color: var(--color-primary);
}

.team-philosophy-carousel-dot:not(.team-philosophy-carousel-dot-active) {
    width: 6px;
}

.team-philosophy-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-philosophy-accordion-item {
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--color-neutral-100);
}

.team-philosophy-accordion-header {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.team-philosophy-accordion-header:hover {
    background-color: var(--color-neutral-50);
}

.team-philosophy-accordion-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.team-philosophy-accordion-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-philosophy-accordion-icon-green {
    background-color: var(--color-primary);
}

.team-philosophy-accordion-icon-blue {
    background-color: #0000C2;
}

.team-philosophy-accordion-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.team-philosophy-accordion-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-neutral-900);
}

.team-philosophy-accordion-chevron {
    width: 20px;
    height: 20px;
    color: var(--color-neutral-400);
    transition: transform 0.3s ease;
}

.team-philosophy-accordion-chevron-rotated {
    transform: rotate(180deg);
}

.team-philosophy-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.team-philosophy-accordion-content-open {
    max-height: 400px;
}

.team-philosophy-accordion-text {
    padding: 0 24px 24px 24px;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
}

.team-cta-section {
    padding: 128px 24px;
    background-color: var(--color-neutral-50);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .team-cta-section {
        padding: 128px 32px;
    }
}

.team-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.team-cta-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 32px;
    color: var(--color-neutral-900);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .team-cta-title {
        font-size: 3.75rem;
    }
}

.team-cta-description {
    font-size: 1.25rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 48px;
}

.team-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background-color: var(--color-primary);
    color: var(--color-primary-dark);
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-cta-button:hover {
    background-color: rgba(157, 213, 103, 0.9);
    transform: translateY(-4px);
}

/* Team Member Modal Styles */
.team-member-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-member-modal.team-member-modal-active {
    opacity: 1;
    visibility: visible;
}

.team-member-modal-overlay {
    position: absolute;
    inset: 0;
}

.team-member-modal-content {
    background-color: var(--color-white);
    border-radius: 8px;
    max-width: 64rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}

.team-member-modal-relative {
    position: relative;
}

.team-member-modal-close {
    position: sticky;
    top: 16px;
    left: 100%;
    margin-left: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--color-neutral-900);
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    float: right;
}

.team-member-modal-close:hover {
    background-color: var(--color-neutral-800);
}

.team-member-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
}

@media (min-width: 768px) {
    .team-member-modal-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.team-member-modal-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.team-member-modal-name {
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 8px;
}

.team-member-modal-role {
    color: #0000C2;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.team-member-modal-content-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.team-member-modal-section-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-member-modal-section-title-bar {
    width: 4px;
    height: 24px;
    background-color: var(--color-primary);
}

.team-member-modal-section-text {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    font-size: 16px;
}

.team-member-modal-section-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-member-modal-section-list-item {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.team-member-modal-section-list-bullet {
    width: 8px;
    height: 8px;
    background-color: #0000C2;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Projects Page */
/* Projects Hero Section */
.projects-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.projects-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.projects-hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.projects-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--color-white);
    width: 100%;
}

.projects-hero-title {
    font-size: 60px;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .projects-hero-title {
        font-size: 96px;
    }
}

.projects-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    max-width: 42rem;
}

@media (min-width: 768px) {
    .projects-hero-description {
        font-size: 24px;
    }
}

/* Projects Filter and Grid Section */
.projects-page-section {
    padding-top: 128px;
    padding-bottom: 128px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: var(--color-white);
}

@media (min-width: 1024px) {
    .projects-page-section {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.projects-page-container {
    max-width: 1280px;
    margin: 0 auto;
}

.projects-page-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.projects-filter-btn {
    padding: 8px 24px;
    border-radius: 2px;
    font-weight: 300;
    transition: all 0.3s ease;
    border: none;
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
    cursor: pointer;
    font-size: 14px;
}

.projects-filter-btn:hover {
    background-color: var(--color-neutral-200);
}

.projects-filter-btn-active {
    background-color: var(--color-neutral-900);
    color: var(--color-white);
}

.projects-filter-btn-active:hover {
    background-color: var(--color-neutral-800);
}

.projects-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .projects-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.projects-page-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-page-card:hover {
    transform: translateY(-4px);
}

.projects-page-card-image-wrapper {
    height: 320px;
    background-color: var(--color-neutral-200);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.projects-page-card:hover .projects-page-card-image-wrapper {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.projects-page-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.projects-page-card:hover .projects-page-card-image {
    transform: scale(1.1);
}

.projects-page-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.projects-page-card-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.projects-page-card-tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 300;
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.projects-page-card-tag-fengshui,
.projects-page-card-tag-feng-shui {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.projects-page-card-tag-realisiert {
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.projects-page-card-tag-aktuell {
    background-color: #D1FAE5;
    color: #065F46;
}

.projects-page-card-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-neutral-900);
    transition: color 0.3s ease;
}

.projects-page-card:hover .projects-page-card-title {
    color: var(--color-neutral-600);
}

.projects-page-card-description {
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
}

.projects-page-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--color-neutral-500);
    font-weight: 300;
    margin-top: 8px;
}

.projects-page-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.projects-page-card-meta-item svg {
    flex-shrink: 0;
}

/* Hide filtered cards */
.projects-page-card.hidden {
    display: none;
}

/* Project Detail Page */
.project-detail-wrapper {
    min-height: 100vh;
    padding-top: 80px;
}

.project-detail-section {
    padding: 64px 24px;
    background-color: var(--color-white);
}

/* Remove underlines from all text content in project detail */
.project-detail-section h1,
.project-detail-section h2,
.project-detail-section h3,
.project-detail-section h4,
.project-detail-section h5,
.project-detail-section h6,
.project-detail-section p,
.project-detail-section span:not(.project-detail-back-btn span):not(.project-detail-nav-link span),
.project-detail-section div,
.project-detail-section li,
.project-detail-section .project-detail-title,
.project-detail-section .project-detail-description,
.project-detail-section .project-detail-meta,
.project-detail-section .project-detail-meta-item,
.project-detail-section .project-detail-section-title,
.project-detail-section .project-detail-feature-item,
.project-detail-section .project-detail-tag {
    text-decoration: none !important;
}

.project-detail-container {
    max-width: 1280px;
    margin: 0 auto;
}

.project-detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-neutral-600);
    font-weight: 300;
    margin-bottom: 48px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.project-detail-back-btn:hover {
    color: var(--color-neutral-900);
}

.project-detail-back-btn svg {
    transition: transform 0.3s ease;
}

.project-detail-back-btn:hover svg {
    transform: translateX(-4px);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .project-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Gallery */
.project-detail-gallery {
    position: relative;
}

.project-detail-main-image-wrapper {
    position: relative;
    height: 500px;
    background-color: var(--color-neutral-200);
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 16px;
}

.project-detail-slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.project-detail-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.project-detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-detail-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-neutral-900);
}

.project-detail-nav-btn:hover {
    background-color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.project-detail-nav-btn-prev {
    left: 16px;
}

.project-detail-nav-btn-next {
    right: 16px;
}

.project-detail-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.project-detail-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.project-detail-dot.active {
    width: 32px;
    background-color: var(--color-white);
}

.project-detail-thumbnails-wrapper-carousel {
    position: relative;
    margin-top: 0;
}

.project-detail-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.project-detail-thumbnails::-webkit-scrollbar {
    display: none;
}

.project-detail-thumbnails-wrapper-carousel:hover .project-detail-thumbnails-nav-btn {
    opacity: 1;
    visibility: visible;
}


.project-detail-thumbnails-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-neutral-900);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.project-detail-thumbnails-nav-btn:hover {
    background-color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-detail-thumbnails-nav-prev {
    left: 8px;
}

.project-detail-thumbnails-nav-next {
    right: 8px;
}

.project-detail-thumbnail {
    flex: 0 0 calc(25% - 6px);
    height: 80px;
    background-color: var(--color-neutral-200);
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    border: none;
    padding: 0;
    position: relative;
    min-width: calc(25% - 6px);
    max-width: calc(25% - 6px);
}

.project-detail-thumbnail:hover {
    opacity: 1;
}

.project-detail-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #0000C2;
}

.project-detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Info */
.project-detail-info {
    display: flex;
    flex-direction: column;
}

.project-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-detail-tag {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
}

.project-detail-tag {
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.project-detail-tag-fengshui,
.project-detail-tag-feng-shui {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.project-detail-tag-realisiert {
    background-color: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.project-detail-tag-aktuell {
    background-color: #D1FAE5;
    color: #065F46;
}

.project-detail-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 24px;
    color: var(--color-neutral-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .project-detail-title {
        font-size: 3.75rem;
    }
}

.project-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--color-neutral-600);
    font-weight: 300;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-neutral-200);
}

.project-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-detail-meta-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.project-detail-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.project-detail-about {
    margin-bottom: 32px;
}

.project-detail-section-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-neutral-900);
    margin-bottom: 16px;
}

.project-detail-description {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    font-weight: 300;
    line-height: 1.75;
}

.project-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-detail-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-neutral-700);
    font-weight: 300;
}

.project-detail-feature-bullet {
    width: 8px;
    height: 8px;
    background-color: #9DD567;
    border-radius: 9999px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Navigation */
.project-detail-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 48px;
    border-top: 1px solid var(--color-neutral-200);
}

.project-detail-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-neutral-600);
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.project-detail-nav-link:hover {
    color: var(--color-neutral-900);
}

.project-detail-nav-link svg {
    transition: transform 0.3s ease;
}

.project-detail-nav-link-prev:hover svg {
    transform: translateX(-4px);
}

.project-detail-nav-link-next:hover svg {
    transform: translateX(4px);
}

.project-detail-nav-link-content {
    display: flex;
    flex-direction: column;
}

.project-detail-nav-link-label {
    font-size: 12px;
    color: var(--color-neutral-400);
    margin-bottom: 4px;
}

.project-detail-nav-link-title {
    font-weight: 300;
}

