:root {
    --dark: #0A1A2F;
    --dark-light: #1E2F3F;
    --gold: #C6A43B;
    --gold-light: #E5C56A;
    --gray: #5A6B7A;
    --light: #F8F9FC;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 26, 47, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo.scrolled .logo-img {
    height: 55px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.desktop-nav.scrolled {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-list li a:hover {
    color: var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.menu-trigger.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    pointer-events: none;
}

.menu-trigger:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.menu-text {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* ========== FULLSCREEN MENU ========== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 47, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition-delay: 0.1s;
}

.fullscreen-menu.active .menu-container {
    opacity: 1;
    transform: translateY(0);
}

.menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo-img {
    height: 55px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.menu-close {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-close i {
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
    border-color: var(--gold);
}

.menu-close:hover i {
    color: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.menu-col {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.menu-col:nth-child(1) { animation-delay: 0.1s; }
.menu-col:nth-child(2) { animation-delay: 0.2s; }
.menu-col:nth-child(3) { animation-delay: 0.3s; }

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

.menu-col h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

.menu-col h3 i {
    font-size: 1rem;
    color: var(--gold);
}

.menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-col ul li {
    margin-bottom: 0.8rem;
}

.menu-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.menu-col ul li a i {
    width: 24px;
    font-size: 1rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.menu-col ul li a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.menu-col ul li a:hover i {
    transform: translateX(3px);
}

.menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.menu-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.menu-contact a i {
    color: var(--gold);
    font-size: 0.9rem;
}

.menu-contact a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.menu-social {
    display: flex;
    gap: 1rem;
}

.menu-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.8) 0%, rgba(10, 26, 47, 0.3) 100%);
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 1s ease forwards 4s;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(198, 164, 59, 0.2);
    backdrop-filter: blur(5px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(198, 164, 59, 0.4);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.hero-highlight {
    color: var(--gold);
    display: inline-block;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.hero-btn.primary {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

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

.hero-btn.secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.7;
}

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

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

.hero-services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0 2.5rem;
}

.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: var(--transition);
}

.hero-service-item i {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-service-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-service-item:hover i {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-5px);
}

/* ========== GALERIE & INTRO ========== */
.gallery-intro {
    padding: 60px 0 30px;
    background: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.intro-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem auto;
}

.intro-text {
    font-size: 1rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.hero-gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
}

.gallery-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

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

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-card:active {
    transform: scale(0.98);
}

.gallery-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: inline-block;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========== ALLGEMEINE SECTIONS ========== */
section {
    padding: 120px 8%;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
}

.line-center {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem auto;
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
    padding: 100px 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(198,164,59,0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--dark);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 0;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-light);
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========== ELEKTROINSTALLATION ========== */
.elektroinstallation {
    padding: 100px 0;
    background: var(--white);
}

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

.elektro-text .section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.elektro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.elektro-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.elektro-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.elektro-subsections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.elektro-sub {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.elektro-sub:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: var(--white);
}

.elektro-sub i {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

.elektro-sub h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.elektro-sub p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.elektro-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.elektro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.elektro-image:hover img {
    transform: scale(1.05);
}

/* ========== SANITÄR, HEIZUNG, LÜFTUNG ========== */
.sanitaer, .heizung, .lueftung {
    padding: 100px 0;
}

.sanitaer { background: var(--white); }
.heizung { background: var(--light); }
.lueftung { background: var(--white); }

.sanitaer-grid, .heizung-grid, .lueftung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sanitaer-content h2, .heizung-content h2, .lueftung-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.sanitaer-content .lead, .heizung-content .lead, .lueftung-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.sanitaer-content p, .heizung-content p, .lueftung-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
}

.sanitaer-list, .lueftung-list {
    list-style: none;
    margin-top: 1.5rem;
}

.sanitaer-list li, .lueftung-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sanitaer-list li i, .lueftung-list li i {
    color: var(--gold);
    width: 24px;
}

.heizung-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 1.5rem;
}

.heizung-features .feature {
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.heizung-features .feature:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.heizung-features .feature i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.heizung-features .feature h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== BELEUCHTUNGSTECHNIK ========== */
.beleuchtungstechnik {
    padding: 100px 0;
    background: var(--light);
}

.beleuchtung-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.beleuchtung-text .section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.beleuchtung-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.beleuchtung-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.beleuchtung-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.beleuchtung-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.led-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.led-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray);
    padding: 0.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.led-benefit i {
    color: var(--gold);
    width: 24px;
    font-size: 1rem;
}

.led-benefit:hover {
    transform: translateX(5px);
    background: var(--gold);
    color: var(--dark);
}

.led-benefit:hover i {
    color: var(--dark);
}

.beleuchtung-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-block {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(198, 164, 59, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-block i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-block h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.feature-block p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.hersteller {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hersteller h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.partner-logos span {
    font-weight: 600;
    color: var(--gold);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 30px;
    transition: var(--transition);
}

.partner-logos span:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ========== NETZWERKTECHNIK ========== */
.netzwerktechnik {
    padding: 100px 0;
    background: var(--white);
}

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

.netzwerk-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.netzwerk-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.netzwerk-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.netzwerk-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.netzwerk-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== SPRECHANLAGEN ========== */
.sprechanlagen {
    padding: 100px 0;
    background: var(--light);
}

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

.sprechanlagen-text .section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.sprechanlagen-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.sprechanlagen-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.sprechanlagen-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.sprechanlagen-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.sprechanlagen-features .feature {
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.sprechanlagen-features .feature:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: var(--white);
}

.sprechanlagen-features .feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.sprechanlagen-features .feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.sprechanlagen-features .feature p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.sprechanlagen-cta {
    margin-top: 1.5rem;
}

.sprechanlagen-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.sprechanlagen-cta .btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.8rem;
}

.sprechanlagen-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sprechanlagen-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sprechanlagen-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
}

.image-badge i {
    color: var(--gold);
}

/* ========== LOXONE SECTION (STARTSEITE) ========== */
.loxone-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--dark) 0%, #0F2A3F 100%);
    color: var(--white);
}

.loxone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loxone-content .section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.loxone-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.loxone-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.loxone-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.loxone-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Features */
.loxone-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.loxone-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.loxone-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.loxone-feature i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 0.2rem;
}

.loxone-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--white);
}

.loxone-feature p {
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.loxone-cta {
    margin-top: 1.5rem;
}

.btn-loxone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-loxone:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.cta-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
}

/* Bild Bereich */
.loxone-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.loxone-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.loxone-image:hover img {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
}

.image-badge i {
    color: var(--gold);
    font-size: 1rem;
}

/* ========== LOXONE SECTION - RESPONSIVE ========== */
@media (max-width: 1024px) {
    .loxone-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .loxone-content {
        text-align: center;
    }
    
    .loxone-line {
        margin: 0 auto 1.5rem auto;
    }
    
    .loxone-features {
        max-width: 500px;
        margin: 2rem auto;
    }
    
    .loxone-image {
        max-width: 500px;
        margin: 0 auto;
        order: -1;
    }
}

@media (max-width: 768px) {
    .loxone-section {
        padding: 60px 5% !important;
    }
    
    .loxone-content h2 {
        font-size: 1.8rem !important;
    }
    
    .loxone-content .lead {
        font-size: 1rem !important;
    }
    
    .loxone-features {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        max-width: 100% !important;
    }
    
    .loxone-feature {
        text-align: left;
        padding: 0.8rem !important;
    }
    
    .loxone-feature i {
        font-size: 1.2rem !important;
    }
    
    .loxone-feature h4 {
        font-size: 0.9rem !important;
    }
    
    .loxone-feature p {
        font-size: 0.75rem !important;
    }
    
    .image-badge {
        bottom: 15px;
        left: 15px;
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .btn-loxone {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .loxone-section {
        padding: 50px 4% !important;
    }
    
    .loxone-content h2 {
        font-size: 1.5rem !important;
    }
    
    .loxone-feature {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .loxone-feature i {
        margin-top: 0 !important;
    }
    
    .image-badge {
        bottom: 10px;
        left: 10px;
        padding: 0.3rem 0.8rem;
        font-size: 0.6rem;
    }
    
    .btn-loxone {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ========== PHOTOVOLTAIK ========== */
.pv-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pv-text .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.benefit-card {
    padding: 1.5rem;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.pv-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.pv-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== PLANUNG & ABLAUF ========== */
.prozess {
    padding: 100px 8%;
    background: var(--white);
}

.prozess-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
}

.prozess-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.prozess-step:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--gold);
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.prozess-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.prozess-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.prozess-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========== ZUSAMMENSPIEL ========== */
.zusammenspiel-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.zusammenspiel-content {
    max-width: 1400px;
    margin: 0 auto;
}

.zusammenspiel-section .section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.zusammenspiel-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.zusammenspiel-section .section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.section-headline {
    font-size: 1.8rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.zusammenspiel-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.zusammenspiel-text {
    padding-right: 1rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.lead-text strong {
    color: var(--gold);
}

.zusammenspiel-text > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.zusammenspiel-text > p strong {
    color: var(--gold);
}

.zusammenspiel-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.zusammenspiel-result {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.zusammenspiel-result i {
    font-size: 2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.zusammenspiel-result p {
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.zusammenspiel-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 100%;
}

.zusammenspiel-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.zusammenspiel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.zusammenspiel-image:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

/* ========== ABOUT ========== */
.about {
    background: var(--white);
    text-align: center;
    padding: 100px 8%;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 2rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FAQ BEREICH ========== */
.faq-section {
    padding: 80px 8%;
    background: var(--light);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.faq-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.faq-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 0.95rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(198, 164, 59, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.2rem 1.5rem;
    border-top: 1px solid #eee;
    background: var(--white);
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.faq-footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

.faq-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-footer a:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 8% 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(3px);
    display: inline-block;
}

.image-credits {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
}

.image-credits h4 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.image-credits p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
    line-height: 1.5;
}

.credit-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.credit-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.credit-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.copyright-note {
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.webdesign-credit {
    margin-top: 0.5rem;
}

.webdesign-credit a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.webdesign-credit a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(198, 164, 59, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-content {
    padding: 24px;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cookie-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: none;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
}

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

.cookie-btn-settings {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.cookie-btn-settings:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ========== COOKIE MODAL ========== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
}

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cookie-modal-close:hover {
    color: var(--gold);
    background: rgba(0, 0, 0, 0.05);
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-category {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

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

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 34px;
}

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

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

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

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-category-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.cookie-category-info p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* ========== CHAT BUTTON ========== */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    padding: 12px 24px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(198, 164, 59, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(198, 164, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(198, 164, 59, 0); }
}

.chat-button:hover {
    transform: scale(1.05);
    background: var(--gold-light);
}

.chat-button-icon i {
    font-size: 1.5rem;
    color: var(--dark);
}

.chat-button-text {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(198, 164, 59, 0.2);
}

.chat-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 550px;
}

.chat-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, #0F2A3F 100%);
    border-radius: 24px 24px 0 0;
    color: var(--white);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 1.5rem;
    color: var(--dark);
}

.chat-header-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.chat-header-text p {
    font-size: 0.75rem;
    opacity: 0.8;
    margin: 0;
}

.chat-modal-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-modal-close i {
    color: var(--white);
    font-size: 1rem;
}

.chat-modal-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.chat-modal-close:hover i {
    color: var(--dark);
}

.chat-modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.chat-messages {
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    display: flex;
    animation: messageSlideIn 0.3s ease;
}

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

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-message.bot .message-bubble {
    background: var(--light);
    color: var(--dark);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-bubble {
    background: var(--gold);
    color: var(--dark);
    border-bottom-right-radius: 4px;
}

.message-bubble p {
    margin: 0;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--dark);
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.chat-option-btn i {
    color: var(--gold);
    width: 20px;
    font-size: 1rem;
}

.chat-option-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateX(5px);
}

.chat-option-btn:hover i {
    color: var(--dark);
}

.chat-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.chat-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.chat-contact-link i {
    color: var(--gold);
    width: 24px;
    font-size: 1rem;
}

.chat-contact-link:hover {
    background: var(--gold);
    color: var(--dark);
}

.chat-modal-footer {
    padding: 15px 20px 20px;
    border-top: 1px solid #eee;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.1);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn i {
    font-size: 1rem;
    color: var(--dark);
}

.chat-send-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.chat-note {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    margin: 0;
}

/* ========== ZERTIFIKATS-BADGE ========== */
.certificate-badge {
    background: var(--white);
    padding: 40px 8%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.certificate-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--light);
    border-radius: 60px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.certificate-item i {
    font-size: 1.3rem;
    color: var(--gold);
}

.certificate-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
}

.certificate-item p {
    font-size: 0.7rem;
    color: var(--gray);
    margin: 0;
}

/* ========== EINFACHE 3-PUNKTE-LEISTE ========== */
.what-we-do-short {
    background: var(--light);
    padding: 20px 8%;
    border-bottom: 1px solid #eee;
}

.simple-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.simple-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.simple-item i {
    color: var(--gold);
    font-size: 1rem;
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .nav-list { gap: 0.8rem; }
    .nav-list li a { font-size: 0.75rem; }
}

@media (max-width: 1024px) {
    .pv-wrapper, .elektro-wrapper, .beleuchtung-wrapper,
    .sprechanlagen-wrapper, .sanitaer-grid, .heizung-grid,
    .lueftung-grid, .zusammenspiel-grid, .loxone-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid, .netzwerk-grid, .prozess-steps, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .header-right { gap: 0.8rem; }
}

@media (max-width: 768px) {
    section { padding: 80px 5% !important; }
    
    .sticky-header { padding: 0.5rem 1rem !important; }
    .logo-img { height: 40px !important; }
    .menu-text { display: none !important; }
    .menu-trigger { padding: 0.45rem !important; background: transparent !important; border: none !important; }
    .social-icons { gap: 0.3rem !important; }
    .social-icon { width: 32px !important; height: 32px !important; font-size: 0.9rem !important; }
    
    .services-grid, .netzwerk-grid, .prozess-steps, .features-grid,
    .hero-gallery .gallery-grid, .benefits, .led-benefits, .heizung-features, .elektro-subsections,
    .sprechanlagen-features, .loxone-features {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-image { height: 220px !important; }
    h2 { font-size: 1.8rem !important; }
    
    .menu-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .menu-container { padding: 1rem !important; }
    .menu-logo-img { height: 42px !important; }
    .menu-close { width: 40px !important; height: 40px !important; }
    .menu-footer { flex-direction: column !important; align-items: flex-start !important; }
    .menu-contact { flex-direction: column !important; gap: 12px !important; }
    
    .hero-content h1 { font-size: 1.6rem !important; }
    .hero-buttons { flex-direction: column !important; align-items: center !important; }
    .hero-btn { width: 80% !important; justify-content: center !important; }
    
    .pv-image, .elektro-image, .heizung-media, .sanitaer-media, .lueftung-media, .beleuchtung-features, .sprechanlagen-image, .zusammenspiel-image, .loxone-image {
        order: -1 !important;
    }
    
    .pv-text, .elektro-text, .sanitaer-content, .heizung-content, .lueftung-content, .beleuchtung-text, .sprechanlagen-text, .zusammenspiel-text, .loxone-content {
        text-align: center !important;
    }
    
    .footer-grid { grid-template-columns: 1fr !important; text-align: center !important; }
    .credit-links { flex-direction: column !important; align-items: center !important; }
    
    .cookie-consent { left: 10px !important; right: 10px !important; max-width: none !important; }
    .cookie-buttons { flex-direction: column !important; }
    
    .chat-button { bottom: 20px !important; right: 20px !important; padding: 10px 18px !important; }
    .chat-button-text { display: none !important; }
    .chat-modal { bottom: 80px !important; right: 20px !important; width: calc(100vw - 40px) !important; max-width: 350px !important; }
    
    .loxone-hero { min-height: 300px !important; }
    .loxone-hero-content h1 { font-size: 2rem !important; }
    
    .rechtliches-hero { min-height: 250px !important; }
    .rechtliches-hero-content h1 { font-size: 2rem !important; }
    .rechtliches-content { padding: 25px !important; }
    
    .kontakt-hero-content h1 { font-size: 2rem !important; }
    .kontakt-info { grid-template-columns: 1fr !important; }
    .kontakt-formular { padding: 25px !important; }
    .map-wrapper iframe { height: 300px !important; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.4rem !important; }
    .hero-service-item i { width: 45px !important; height: 45px !important; font-size: 1.2rem !important; }
    .hero-btn { width: 90% !important; }
    .gallery-image { height: 200px !important; }
    .social-icon { width: 28px !important; height: 28px !important; font-size: 0.8rem !important; }
    .feature-item { flex-direction: column !important; align-items: center !important; text-align: center !important; }
    .zusammenspiel-result { flex-direction: column !important; text-align: center !important; }
    .zusammenspiel-image { max-width: 280px !important; }
    .chat-modal { left: 10px !important; right: 10px !important; width: auto !important; max-width: none !important; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid, .netzwerk-grid, .features-grid, .prozess-steps {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero-content h1 { font-size: 2.5rem !important; }
    .menu-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (hover: none) and (pointer: coarse) {
    .menu-trigger, .chat-button, .hero-btn, .btn-primary, .feature-card, .gallery-card, .prozess-step, .service-card {
        cursor: pointer !important;
    }
    .feature-card:hover, .gallery-card:hover, .prozess-step:hover, .service-card:hover {
        transform: none !important;
    }
    .feature-card:active, .gallery-card:active, .prozess-step:active, .service-card:active {
        transform: scale(0.98) !important;
    }
}
/* ========== KARRIERESEITE ========== */
.karriere-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark) 0%, #0F2A3F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.karriere-hero-content {
    padding: 0 20px;
}

.karriere-hero-content .section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.karriere-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.karriere-hero-content .hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.karriere-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========== WARUM WIR ========== */
.why-us {
    padding: 80px 8%;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.why-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.why-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

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

.why-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ========== OFFENE STELLEN ========== */
.open-positions {
    padding: 80px 8%;
    background: var(--light);
}

.positions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.positions-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.positions-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.positions-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

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

.position-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.position-header h3 {
    font-size: 1.3rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.position-badge {
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.position-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.position-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.position-details span {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.position-details i {
    color: var(--gold);
    font-size: 0.85rem;
}

.btn-apply {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.btn-apply:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ========== BEWERBUNGSFORMULAR ========== */
.application-form {
    padding: 80px 8%;
    background: var(--white);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.form-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.form-header p {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-header a {
    color: var(--gold);
    text-decoration: none;
}

.form-header a:hover {
    text-decoration: underline;
}

.form-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.form-group label {
    position: absolute;
    left: 2.8rem;
    top: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
    background: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.1);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.7rem;
    background: var(--white);
    padding: 0 0.5rem;
    color: var(--gold);
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--gold);
    font-size: 1rem;
}

.file-upload input {
    padding: 1rem;
    cursor: pointer;
}

.file-upload i {
    top: 1rem;
}

.file-info {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.25rem;
    margin-left: 2.8rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-check label {
    position: static;
    font-size: 0.85rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.4;
}

.form-check a {
    color: var(--gold);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.btn-submit {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 164, 59, 0.3);
}

.form-success {
    text-align: center;
    padding: 3rem;
    background: var(--light);
    border-radius: 20px;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.form-success p {
    color: var(--gray);
}

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

/* ========== RESPONSIVE KARRIERESEITE ========== */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .karriere-hero {
        min-height: 300px;
    }
    
    .karriere-hero-content h1 {
        font-size: 2rem;
    }
    
    .karriere-hero-content p {
        font-size: 1rem;
    }
    
    .why-us,
    .open-positions,
    .application-form {
        padding: 60px 5%;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .position-card {
        padding: 1.5rem;
    }
    
    .position-header {
        flex-direction: column;
        text-align: center;
    }
    
    .position-details {
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-card i {
        font-size: 2rem;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
    }
    
    .position-header h3 {
        font-size: 1.1rem;
    }
    
    .position-details {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        left: 2.5rem;
        top: 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-group i {
        left: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========== KONTAKTSEITE ========== */
.kontakt-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark) 0%, #0F2A3F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.kontakt-hero-content {
    padding: 0 20px;
}

.kontakt-hero-content .section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.kontakt-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.kontakt-hero-content .hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.kontakt-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ========== KONTAKT SECTION ========== */
.kontakt-section {
    padding: 80px 8%;
    background: var(--light);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== INFO CARDS ========== */
.kontakt-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-card a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.5;
}

/* ========== KONTAKT FORMULAR ========== */
.kontakt-formular {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(198, 164, 59, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.kontakt-formular h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* ========== FORM GROUP ========== */
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.form-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.95rem;
    background: transparent;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.1);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    background: var(--white);
    padding: 0 8px;
    color: var(--gold);
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.form-group textarea ~ i {
    top: 18px;
    transform: none;
}

/* ========== SELECT STYLES ========== */
.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select ~ i {
    pointer-events: none;
}

/* ========== FORM CHECK ========== */
.form-check {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.4;
}

.form-check a {
    color: var(--gold);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

/* ========== SUBMIT BUTTON ========== */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 164, 59, 0.3);
}

/* ========== FORM SUCCESS ========== */
.form-success {
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    animation: fadeIn 0.5s ease;
}

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

.form-success i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.form-success p {
    color: var(--gray);
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 0 8% 80px;
}

.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========== RESPONSIVE KONTAKTSEITE ========== */
@media (max-width: 1024px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontakt-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kontakt-hero {
        min-height: 300px;
    }
    
    .kontakt-hero-content h1 {
        font-size: 2rem;
    }
    
    .kontakt-hero-content p {
        font-size: 1rem;
    }
    
    .kontakt-section {
        padding: 50px 5%;
    }
    
    .kontakt-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .kontakt-formular {
        padding: 25px;
    }
    
    .kontakt-formular h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .map-section {
        padding: 0 5% 50px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        left: 40px;
        font-size: 0.9rem;
    }
    
    .form-group i {
        left: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kontakt-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .kontakt-hero-content p {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card i {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p,
    .info-card a {
        font-size: 0.85rem;
    }
    
    .kontakt-formular h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 10px 10px 35px;
        font-size: 0.9rem;
    }
    
    .form-group label {
        left: 35px;
        font-size: 0.85rem;
    }
    
    .form-group i {
        left: 10px;
        font-size: 0.9rem;
    }
    
    .form-check label {
        font-size: 0.75rem;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-success {
        padding: 25px;
    }
    
    .form-success i {
        font-size: 3rem;
    }
    
    .form-success h4 {
        font-size: 1.2rem;
    }
}

/* ========== LOXONE UNTERSEITE ========== */
.loxone-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark) 0%, #0F2A3F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.loxone-hero-content {
    padding: 0 20px;
}

.loxone-hero-content .section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.loxone-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.loxone-hero-content .hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.loxone-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Einführung */
.loxone-intro {
    padding: 80px 8%;
    background: var(--white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.loxone-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.loxone-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.loxone-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Vorteile */
.loxone-benefits {
    padding: 80px 8%;
    background: var(--light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.benefits-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.benefits-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Funktionen */
.loxone-functions {
    padding: 80px 8%;
    background: var(--white);
}

.functions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.functions-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.functions-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.functions-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

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

.function-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 59, 0.1);
}

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

.function-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.function-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.function-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Integration */
.loxone-integration {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.integration-text .integration-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.integration-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.integration-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem 0 1.5rem 0;
}

.integration-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.integration-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid rgba(198, 164, 59, 0.2);
}

.integration-feature i {
    color: var(--gold);
    font-size: 1rem;
}

.integration-feature span {
    font-size: 0.85rem;
    color: var(--dark);
}

.integration-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.integration-image img {
    width: 100%;
    height: auto;
    display: block;
}

.integration-image .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
}

.integration-image .image-badge i {
    color: var(--gold);
}

/* Testimonial */
.loxone-testimonial {
    padding: 80px 8%;
    background: var(--light);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(198, 164, 59, 0.1);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* CTA Bereich */
.loxone-cta {
    padding: 80px 8%;
    background: var(--white);
    text-align: center;
}

.loxone-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.loxone-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .functions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-text {
        text-align: center;
    }
    
    .integration-line {
        margin: 1rem auto;
    }
    
    .integration-features {
        justify-content: center;
    }
    
    .integration-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .loxone-hero {
        min-height: 300px;
    }
    
    .loxone-hero-content h1 {
        font-size: 2rem;
    }
    
    .loxone-hero-content p {
        font-size: 1rem;
    }
    
    .loxone-intro,
    .loxone-benefits,
    .loxone-functions,
    .loxone-integration,
    .loxone-testimonial,
    .loxone-cta {
        padding: 60px 5%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .function-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .loxone-cta h3 {
        font-size: 1.5rem;
    }
    
    .loxone-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefit-card i {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .function-card i {
        font-size: 1.8rem;
    }
    
    .function-card h3 {
        font-size: 1rem;
    }
    
    .integration-features {
        flex-direction: column;
        align-items: center;
    }
    
    .integration-feature {
        width: 100%;
        justify-content: center;
    }
}

/* ========== RESPONSIVE DESIGN - MOBILE FIRST ========== */

/* Smartphone (max-width: 768px) */
@media (max-width: 768px) {
    
    /* ===== Allgemeine Anpassungen ===== */
    body {
        font-size: 14px;
    }
    
    section {
        padding: 60px 5% !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .section-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
    }
    
    .section-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* ===== HEADER MOBILE ===== */
    .sticky-header {
        padding: 0.5rem 1rem !important;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    .logo.scrolled .logo-img {
        height: 35px !important;
    }
    
    .menu-text {
        display: none !important;
    }
    
    .menu-trigger {
        padding: 0.45rem !important;
        background: transparent !important;
        border: none !important;
    }
    
    .menu-trigger:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .social-icons {
        gap: 0.3rem !important;
    }
    
    .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    /* ===== HERO MOBILE ===== */
    .hero-content {
        bottom: 15% !important;
        padding: 0 15px !important;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-badge {
        font-size: 0.6rem !important;
        padding: 4px 12px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-divider {
        width: 50px !important;
        margin: 12px auto !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-services {
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .hero-service-item i {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
    
    .hero-service-item span {
        font-size: 0.65rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    .hero-btn {
        width: 80% !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-scroll span {
        display: none !important;
    }
    
    /* ===== GALERIE MOBILE ===== */
    .gallery-intro {
        padding: 40px 0 20px !important;
    }
    
    .intro-title {
        font-size: 1.5rem !important;
    }
    
    .intro-text {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
    }
    
    .hero-gallery {
        padding: 50px 0 !important;
    }
    
    .hero-gallery .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .gallery-image {
        height: 220px !important;
    }
    
    .gallery-overlay {
        padding: 15px !important;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem !important;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem !important;
    }
    
    /* ===== ALLE GRIDS AUF 1 SPALTE ===== */
    .pv-wrapper,
    .elektro-wrapper,
    .sanitaer-grid,
    .heizung-grid,
    .lueftung-grid,
    .beleuchtung-wrapper,
    .sprechanlagen-wrapper,
    .zusammenspiel-grid,
    .services-grid,
    .prozess-steps,
    .netzwerk-grid,
    .features-grid,
    .benefits-grid,
    .functions-grid,
    .integration-content,
    .loxone-grid,
    .why-grid,
    .berufe-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* ===== BILD REIHENFOLGE (Bild zuerst) ===== */
    .pv-image,
    .elektro-image,
    .heizung-media,
    .sanitaer-media,
    .lueftung-media,
    .beleuchtung-features,
    .sprechanlagen-image,
    .zusammenspiel-image,
    .loxone-image,
    .integration-image {
        order: -1 !important;
        margin-bottom: 20px !important;
    }
    
    /* ===== TEXT ZENTRIEREN ===== */
    .pv-text,
    .elektro-text,
    .sanitaer-content,
    .heizung-content,
    .lueftung-content,
    .beleuchtung-text,
    .sprechanlagen-text,
    .zusammenspiel-text,
    .loxone-content,
    .integration-text {
        text-align: center !important;
    }
    
    /* ===== BENEFITS & FEATURES ===== */
    .benefits,
    .led-benefits,
    .heizung-features,
    .elektro-subsections,
    .sprechanlagen-features,
    .loxone-features,
    .integration-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    /* ===== PROZESS SCHRITTE ===== */
    .prozess-steps {
        gap: 20px !important;
    }
    
    .prozess-step {
        padding: 25px 15px !important;
    }
    
    .step-number {
        top: -12px !important;
        left: 15px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .step-icon {
        font-size: 2rem !important;
    }
    
    .prozess-step h3 {
        font-size: 1.1rem !important;
    }
    
    .prozess-step p {
        font-size: 0.85rem !important;
    }
    
    /* ===== ZUSAMMENSPIEL ===== */
    .section-headline {
        font-size: 1.3rem !important;
    }
    
    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .feature-item i {
        width: auto !important;
        margin-bottom: 5px !important;
    }
    
    .zusammenspiel-result {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
    }
    
    .zusammenspiel-image {
        max-width: 100% !important;
    }
    
    /* ========== RESPONSIVE DESIGN - MOBILE FIRST ========== */

/* Smartphone (max-width: 768px) */
@media (max-width: 768px) {
    
    /* ===== Allgemeine Anpassungen ===== */
    body {
        font-size: 14px;
    }
    
    section {
        padding: 60px 5% !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    
    .section-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
    }
    
    .section-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* ===== STICKY HEADER - IMMER SICHTBAR ===== */
    .sticky-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(10, 26, 47, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 1000 !important;
        padding: 0.5rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    .logo.scrolled .logo-img {
        height: 35px !important;
    }
    
    .menu-text {
        display: none !important;
    }
    
    .menu-trigger {
        padding: 0.45rem !important;
        background: transparent !important;
        border: none !important;
    }
    
    .menu-trigger:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .social-icons {
        gap: 0.3rem !important;
    }
    
    .social-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    /* ===== HERO MOBILE ===== */
    .hero {
        margin-top: 70px !important; /* Platz für Header */
    }
    
    .hero-content {
        bottom: 15% !important;
        padding: 0 15px !important;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-badge {
        font-size: 0.6rem !important;
        padding: 4px 12px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-divider {
        width: 50px !important;
        margin: 12px auto !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-services {
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .hero-service-item i {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
    
    .hero-service-item span {
        font-size: 0.65rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    .hero-btn {
        width: 80% !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .hero-scroll span {
        display: none !important;
    }
    
    /* ===== GALERIE MOBILE ===== */
    .gallery-intro {
        padding: 40px 0 20px !important;
    }
    
    .intro-title {
        font-size: 1.5rem !important;
    }
    
    .intro-text {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
    }
    
    .hero-gallery {
        padding: 50px 0 !important;
    }
    
    .hero-gallery .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .gallery-image {
        height: 220px !important;
    }
    
    .gallery-overlay {
        padding: 15px !important;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem !important;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem !important;
    }
    
    /* ===== ALLE GRIDS AUF 1 SPALTE ===== */
    .pv-wrapper,
    .elektro-wrapper,
    .sanitaer-grid,
    .heizung-grid,
    .lueftung-grid,
    .beleuchtung-wrapper,
    .sprechanlagen-wrapper,
    .zusammenspiel-grid,
    .services-grid,
    .prozess-steps,
    .netzwerk-grid,
    .features-grid,
    .benefits-grid,
    .functions-grid,
    .integration-content,
    .loxone-grid,
    .why-grid,
    .berufe-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* ===== BILD REIHENFOLGE (Bild zuerst) ===== */
    .pv-image,
    .elektro-image,
    .heizung-media,
    .sanitaer-media,
    .lueftung-media,
    .beleuchtung-features,
    .sprechanlagen-image,
    .zusammenspiel-image,
    .loxone-image,
    .integration-image {
        order: -1 !important;
        margin-bottom: 20px !important;
    }
    
    /* ===== TEXT ZENTRIEREN ===== */
    .pv-text,
    .elektro-text,
    .sanitaer-content,
    .heizung-content,
    .lueftung-content,
    .beleuchtung-text,
    .sprechanlagen-text,
    .zusammenspiel-text,
    .loxone-content,
    .integration-text {
        text-align: center !important;
    }
    
    /* ===== BENEFITS & FEATURES ===== */
    .benefits,
    .led-benefits,
    .heizung-features,
    .elektro-subsections,
    .sprechanlagen-features,
    .loxone-features,
    .integration-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    /* ===== PROZESS SCHRITTE ===== */
    .prozess-steps {
        gap: 20px !important;
    }
    
    .prozess-step {
        padding: 25px 15px !important;
    }
    
    .step-number {
        top: -12px !important;
        left: 15px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    .step-icon {
        font-size: 2rem !important;
    }
    
    .prozess-step h3 {
        font-size: 1.1rem !important;
    }
    
    .prozess-step p {
        font-size: 0.85rem !important;
    }
    
    /* ===== ZUSAMMENSPIEL ===== */
    .section-headline {
        font-size: 1.3rem !important;
    }
    
    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .feature-item i {
        width: auto !important;
        margin-bottom: 5px !important;
    }
    
    .zusammenspiel-result {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
    }
    
    .zusammenspiel-image {
        max-width: 100% !important;
    }
    
    /* ===== LOXONE SEITE - KORRIGIERT ===== */
    .loxone-section {
        padding: 60px 5% !important;
    }
    
    .loxone-hero {
        min-height: 300px !important;
        margin-top: 70px !important;
    }
    
    .loxone-hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .loxone-hero-content p {
        font-size: 0.9rem !important;
    }
    
    .loxone-intro {
        padding: 50px 5% !important;
    }
    
    .video-wrapper {
        margin: 0 auto 1.5rem !important;
    }
    
    .loxone-text .lead {
        font-size: 1rem !important;
    }
    
    .loxone-benefits,
    .loxone-functions,
    .loxone-integration,
    .loxone-testimonial {
        padding: 50px 5% !important;
    }
    
    .benefit-card {
        padding: 1.5rem !important;
    }
    
    .function-card {
        padding: 1.5rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
        margin: 0 5% !important;
    }
    
    .testimonial-card p {
        font-size: 0.95rem !important;
    }
    
    .loxone-cta {
        padding: 50px 5% !important;
    }
    
    .loxone-cta h3 {
        font-size: 1.3rem !important;
    }
    
    /* ===== KONTAKTSEITE ===== */
    .kontakt-hero {
        min-height: 300px !important;
        margin-top: 70px !important;
    }
    
    .kontakt-hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .kontakt-section {
        padding: 50px 5% !important;
    }
    
    .kontakt-info {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .info-card {
        padding: 20px !important;
    }
    
    .kontakt-formular {
        padding: 25px !important;
    }
    
    .kontakt-formular h3 {
        font-size: 1.3rem !important;
    }
    
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 12px 12px 40px !important;
        font-size: 0.9rem !important;
    }
    
    .map-section {
        padding: 0 5% 50px !important;
    }
    
    .map-wrapper iframe {
        height: 250px !important;
    }
    
    /* ===== KARRIERESEITE ===== */
    .karriere-hero {
        min-height: 300px !important;
        margin-top: 70px !important;
    }
    
    .karriere-hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .why-us,
    .open-positions,
    .application-form {
        padding: 50px 5% !important;
    }
    
    .why-card {
        padding: 1.5rem !important;
    }
    
    .position-card {
        padding: 1.5rem !important;
    }
    
    .position-header {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .position-details {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    /* ===== AUSBILDUNGSSEITE ===== */
    .ausbildung-hero {
        min-height: 300px !important;
        margin-top: 70px !important;
    }
    
    .ausbildung-hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .ausbildung-highlight {
        padding: 30px 5% !important;
    }
    
    .ausbildung-banner {
        padding: 1.5rem !important;
    }
    
    .ausbildung-banner-content h2 {
        font-size: 1.3rem !important;
    }
    
    .why-ausbildung,
    .ausbildungsberufe,
    .azubi-stimme {
        padding: 50px 5% !important;
    }
    
    .beruf-card {
        padding: 1.5rem !important;
    }
    
    .beruf-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .beruf-icon i {
        font-size: 1.6rem !important;
    }
    
    .stimme-card {
        padding: 1.5rem !important;
    }
    
    /* ===== FOOTER MOBILE ===== */
    footer {
        padding: 40px 5% 20px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .footer-col h4 {
        margin-bottom: 1rem !important;
    }
    
    .image-credits {
        margin: 1.5rem 0 !important;
        padding: 1rem !important;
    }
    
    .credit-links {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    /* ===== COOKIE POPUP MOBILE ===== */
    .cookie-consent {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        max-width: none !important;
    }
    
    .cookie-buttons {
        flex-direction: column !important;
    }
    
    .cookie-btn {
        text-align: center !important;
    }
    
    /* ===== CHAT MOBILE ===== */
    .chat-button {
        bottom: 20px !important;
        right: 20px !important;
        padding: 10px 18px !important;
    }
    
    .chat-button-text {
        display: none !important;
    }
    
    .chat-button-icon i {
        font-size: 1.3rem !important;
    }
    
    .chat-modal {
        bottom: 80px !important;
        right: 20px !important;
        width: calc(100vw - 40px) !important;
        max-width: 350px !important;
    }
    
    /* ===== FULLSCREEN MENU MOBILE - MITLAUFEND ===== */
    .fullscreen-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 2000 !important;
    }
    
    .menu-container {
        padding: 1rem !important;
        height: 100% !important;
        overflow-y: auto !important;
    }
    
    .menu-header {
        position: sticky !important;
        top: 0 !important;
        background: rgba(10, 26, 47, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        padding: 1rem 1.5rem !important;
        margin-bottom: 1rem !important;
        z-index: 10 !important;
    }
    
    .menu-logo-img {
        height: 40px !important;
    }
    
    .menu-close {
        width: 40px !important;
        height: 40px !important;
    }
    
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .menu-col h3 {
        margin-bottom: 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .menu-col ul li a {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .menu-footer {
        position: sticky !important;
        bottom: 0 !important;
        background: rgba(10, 26, 47, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 1rem !important;
        margin-top: 1rem !important;
        gap: 0.8rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .menu-contact {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .menu-social {
        justify-content: center !important;
    }
}

/* ===== SEHR KLEINE GERÄTE (max-width: 480px) ===== */
@media (max-width: 480px) {
    section {
        padding: 50px 4% !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-content h1 {
        font-size: 1.4rem !important;
    }
    
    .hero-service-item i {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .hero-service-item span {
        font-size: 0.6rem !important;
    }
    
    .hero-btn {
        width: 90% !important;
    }
    
    .gallery-image {
        height: 200px !important;
    }
    
    .social-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    
    .step-icon {
        font-size: 1.8rem !important;
    }
    
    .prozess-step h3 {
        font-size: 1rem !important;
    }
    
    .feature-item i {
        font-size: 1.5rem !important;
    }
    
    .feature-item h4 {
        font-size: 0.9rem !important;
    }
    
    .zusammenspiel-image {
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    .btn-primary, .btn-loxone, .btn-submit {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .chat-modal {
        left: 10px !important;
        right: 10px !important;
        bottom: 70px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .chat-messages {
        max-height: 180px !important;
    }
    
    .chat-option-btn {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }
    
    .info-card i {
        font-size: 1.8rem !important;
    }
    
    .info-card h3 {
        font-size: 0.9rem !important;
    }
    
    .loxone-hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .kontakt-hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .karriere-hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .ausbildung-hero-content h1 {
        font-size: 1.5rem !important;
    }
}

/* ===== TABLET (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    section {
        padding: 80px 6% !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .services-grid,
    .netzwerk-grid,
    .features-grid,
    .prozess-steps,
    .benefits-grid,
    .functions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .nav-list {
        gap: 0.8rem !important;
    }
    
    .nav-list li a {
        font-size: 0.75rem !important;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .kontakt-info {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .why-grid,
    .berufe-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .loxone-hero {
        margin-top: 80px !important;
    }
    
    .kontakt-hero,
    .karriere-hero,
    .ausbildung-hero {
        margin-top: 80px !important;
    }
}

/* ===== TOUCH-OPTIMIERUNGEN ===== */
@media (hover: none) and (pointer: coarse) {
    .menu-trigger,
    .chat-button,
    .hero-btn,
    .btn-primary,
    .service-card,
    .gallery-card,
    .prozess-step,
    .feature-card,
    .benefit-card,
    .function-card {
        cursor: pointer !important;
    }
    
    .service-card:hover,
    .gallery-card:hover,
    .prozess-step:hover,
    .feature-card:hover,
    .benefit-card:hover,
    .function-card:hover {
        transform: none !important;
    }
    
    .service-card:active,
    .gallery-card:active,
    .prozess-step:active,
    .feature-card:active,
    .benefit-card:active,
    .function-card:active {
        transform: scale(0.98) !important;
    }
}