/* ContentFlow Generated CSS */

/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --primary-color: #9333ea;
    --primary-dark: #7e22ce;
    --text-dark: #333333;
}

/* Global Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark, #333333);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-color, #9333ea);
    text-decoration: none;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Photo Credit Overlay */
.image-with-credit {
    display: inline-block;
    position: relative;
    margin: 0;
    line-height: 0;
}

.image-with-credit img {
    display: block;
    max-width: 100%;
    height: auto;
}

.photo-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    pointer-events: auto;
    z-index: 10;
}

.photo-credit a,
.photo-credit-link {
    color: white;
    text-decoration: none;
}

.photo-credit a:hover,
.photo-credit-link:hover {
    text-decoration: underline;
}

/* Hero/Banner sections: figure becomes invisible, credit positions relative to section */
[class*="hero"] .image-with-credit,
[class*="banner"] .image-with-credit,
[class*="fullscreen"] .image-with-credit,
.hero-section .image-with-credit {
    display: contents;
}

/* Larger padding for hero sections */
[class*="hero"] .photo-credit,
[class*="banner"] .photo-credit,
[class*="fullscreen"] .photo-credit,
.hero-section .photo-credit {
    bottom: 20px;
    right: 20px;
}

/* Credit for background-image elements */
.photo-credit-bg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    pointer-events: auto;
    z-index: 10;
}

/* === navigation === */
/* Navigation Block CSS */

/* Smooth scroll behavior for entire page */
html {
    scroll-behavior: smooth;
}

/* Scroll offset for all sections with ID (for direct URL access) */
section[id],
div[id],
header[id],
footer[id] {
    scroll-margin-top: 90px;
}

.navigation-block {
    background: #fff;
    padding: 1rem 1rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation-block .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Social Media Bar */
.navigation-block .social-bar {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.navigation-block .social-bar a {
    color: var(--primary-color, #9333ea);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.navigation-block .social-bar a:hover {
    transform: scale(1.1);
    color: var(--primary-dark, #7e22ce);
}

.navigation-block.scrolled {
    padding: 0.5rem 1rem 1rem 1rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navigation-block.scrolled .social-bar {
    top: 1.5rem;
    transform: none;
}

.navigation-block .logo-container {
    margin-bottom: 1rem;
}

.navigation-block .logo-container img {
    max-height: 70px;
    width: auto;
    height: auto;
    max-width: 90%;
    transition: transform 0.3s ease;
}

.navigation-block .logo-container a {
    display: inline-block;
}

.navigation-block .logo-container img:hover {
    transform: scale(1.05);
}

.navigation-block nav {
    margin-top: 1rem;
}

.navigation-block .nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0;
    margin: 0;
    position: relative;
}

.navigation-block .nav-links li {
    list-style: none;
}

.navigation-block .nav-links a {
    text-decoration: none;
    color: var(--primary-color, #9333ea);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.navigation-block .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color, #9333ea);
    transition: width 0.3s ease;
}

.navigation-block .nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.navigation-block .mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color, #9333ea);
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-header h3 {
    margin: 0;
    color: var(--primary-color, #9333ea);
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color, #9333ea);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
}

.mobile-menu-nav a {
    color: var(--text-dark, #333333);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav a:hover {
    color: var(--primary-color, #9333ea);
}

.mobile-menu-social {
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
}

.mobile-menu-social a {
    color: var(--primary-color, #9333ea);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    transform: scale(1.1);
    color: var(--primary-dark, #7e22ce);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navigation-block .nav-links {
        display: none;
    }

    .navigation-block .social-bar {
        display: none;
    }

    .navigation-block .mobile-menu-button {
        display: block;
    }

    .navigation-block {
        padding: 1rem;
    }

    .navigation-block .logo-container {
        margin-bottom: 0;
    }

    .navigation-block .logo-container img {
        max-height: 50px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color, #9333ea);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark, #7e22ce);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.3rem;
    }
}

/* === content-split-advanced === */
/* Import Poppins Font */
.content-split-advanced {
    padding: 4rem 0;
    font-family: "Poppins", sans-serif;
}

.content-split-advanced .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-split-advanced .asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.content-split-advanced .asymmetric-grid.reverse {
    direction: rtl;
}

.content-split-advanced .asymmetric-grid.reverse > * {
    direction: ltr;
}

.content-split-advanced .reveal-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #555555;
}

.content-split-advanced .content-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 1rem;
    font-weight: 400;
}

.content-split-advanced .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.content-split-advanced .btn-primary {
    background: #9333ea;
    color: white;
}

.content-split-advanced .btn-primary:hover {
    background: #7e22ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.content-split-advanced .floating-image {
    position: relative;
}

.content-split-advanced .floating-image img,
.content-split-advanced .floating-image video {
    width: 100%;
    display: block;
}

.content-split-advanced .split-video {
    object-fit: cover;
}

.content-split-advanced .floating-image.image-standard img,
.content-split-advanced .floating-image.image-standard video {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-split-advanced .floating-image.image-boxed img,
.content-split-advanced .floating-image.image-boxed video {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.content-split-advanced .floating-image.image-rounded-small img,
.content-split-advanced .floating-image.image-rounded-small video {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.content-split-advanced .floating-image.image-no-shadow img,
.content-split-advanced .floating-image.image-no-shadow video {
    border-radius: 20px;
    box-shadow: none;
}

.content-split-advanced .image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #9333ea;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

[data-animation="auto"] .reveal-text,
[data-animation="reveal-only"] .reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease-out forwards;
}

[data-animation="auto"] .floating-image,
[data-animation="float-only"] .floating-image {
    animation: float 6s ease-in-out infinite;
}

.content-split-advanced.spacing-compact { padding: 2rem 0; }
.content-split-advanced.spacing-compact .asymmetric-grid { margin: 2rem 0; gap: 2rem; }
.content-split-advanced.spacing-large { padding: 6rem 0; }
.content-split-advanced.spacing-large .asymmetric-grid { margin: 6rem 0; gap: 6rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes revealText {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .content-split-advanced .asymmetric-grid { grid-template-columns: 1fr; gap: 2rem; margin: 2rem 0; }
    .content-split-advanced .asymmetric-grid.reverse { direction: ltr; }
    .content-split-advanced .floating-image { order: -1; }
    .content-split-advanced .reveal-text h2 { font-size: 2rem; }
    .content-split-advanced .image-overlay { width: 100px; height: 100px; top: -10px; right: -10px; }
}

/* Secondary Button Style */
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    color: #9333ea;
    border: 2px solid #9333ea;
}

.btn-secondary:hover {
    background: #9333ea;
    color: #ffffff;
    transform: translateY(-2px);
}

/* === footer === */
/* Footer Block Styles */
.footer-block {
    background: var(--text-dark, #333333);
    color: white;
    padding: 3rem 5%;
    text-align: center;
    margin-top: 4rem;
}

.footer-block .footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.footer-block .footer-logo:hover {
    transform: scale(1.05);
}

.footer-block .footer-copyright {
    margin: 0 0 1rem 0;
    color: white;
    font-weight: 300;
}

.footer-block .footer-links {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-block .footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-block .footer-link:hover {
    opacity: 0.7;
}

.footer-block .footer-separator {
    margin: 0 0.5rem;
    color: white;
    opacity: 0.5;
}

/* Social Media im Footer */
.footer-block .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-block .footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-block .footer-social a:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Style Variations */
.footer-block[data-background="primary"] {
    background: var(--primary-color, #9333ea);
}

.footer-block[data-background="light"] {
    background: var(--light-bg, #f8f8f8);
    color: var(--text-dark, #333333);
}

.footer-block[data-background="light"] .footer-logo {
    filter: none;
}

.footer-block[data-background="light"] .footer-copyright,
.footer-block[data-background="light"] .footer-link,
.footer-block[data-background="light"] .footer-separator {
    color: var(--text-dark, #333333);
}

.footer-block[data-background="light"] .footer-link {
    color: var(--primary-color, #9333ea);
}

.footer-block[data-background="light"] .footer-social a {
    color: var(--primary-color, #9333ea);
}

/* Text Alignment */
.footer-block[data-align="left"] {
    text-align: left;
}

.footer-block[data-align="left"] .footer-social {
    justify-content: flex-start;
}

.footer-block[data-align="right"] {
    text-align: right;
}

.footer-block[data-align="right"] .footer-social {
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-block {
        padding: 2rem 1rem;
    }
    
    .footer-block .footer-logo {
        height: 30px;
    }
    
    .footer-block .footer-links {
        font-size: 0.8rem;
    }
}.footer-block .footer-inca{margin-top:2rem;padding-top:1.5rem;border-top:1px solid                                 
  rgba(255,255,255,.2)}.footer-block .inca-logo{height:50px;opacity:.8}.footer-block .inca-logo:hover{opacity:1}                                                                                                               
  .footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:0.5rem 1.5rem;margin:1.5rem 0}                                                 
  .footer-nav                                                                                                                                       
  .footer-link{display:inline-flex;align-items:center;gap:0.3rem;color:rgba(255,255,255,0.8);text-decoration:none;font-size:0.95rem;transition:all  
  0.3s ease}                                                                                                                                        
  .footer-nav .footer-link:hover{color:#fff;transform:translateX(3px)}                                                                              
  .footer-nav .footer-link i{font-size:1rem;color:#9333ea}                                                                                          
  .footer-text{margin:1.5rem 0;color:rgba(255,255,255,0.7);font-size:0.9rem;line-height:1.6;max-width:600px;margin-left:auto;margin-right:auto}

/* === hero === */
/* Hero Block - From modern-style.css */
:root {
    --primary-color: #9333ea;
    --primary-dark: #7e22ce;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --white: #ffffff;
    --light-bg: #f8f8f8;
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 0; /* Changed from 120px for autonomous block */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-content {
    text-align: left;
    color: white;
    z-index: 2;
    padding: 4rem 10%;
    padding-bottom: 6rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
                 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: #e9d5ff; /* Light purple for "von morgen" */
}

.hero-content .subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 2rem 0;
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8),
                 0px 0px 15px rgba(0, 0, 0, 0.6);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    font-family: "Poppins", sans-serif;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 2rem 5%;
        padding-bottom: 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === content-split === */
/* Import Poppins Font */
/* Content Split Section */
.content-split-section {
    padding: 4rem 0;
    font-family: "Poppins", sans-serif;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Asymmetric Grid */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

/* Text Styles - KORREKT aus modern-style.css */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 0.8s ease-out forwards;
}

.reveal-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;  /* NICHT 700! */
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #555555;  /* NICHT #1a1a1a! */
}

/* Subtitle mit inline style überschreibt das hier */
.reveal-text p {
    /* Wird durch inline style="font-size: 1.2rem; margin-bottom: 2rem; font-weight: 300;" überschrieben */
}

/* Content Text */
.content-text p {
    font-size: 1rem;  /* NICHT 1.1rem! */
    line-height: 1.7;  /* NICHT 1.8! */
    color: #666666;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Floating Image - MIT Animation */
.floating-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Purple Circle Overlay */
.image-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #9333ea;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

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

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


/* Reverse Layout - Image left, Text right */
.content-split-section .asymmetric-grid.reverse {
    direction: rtl;
}

.content-split-section .asymmetric-grid.reverse > * {
    direction: ltr;
}

/* Mobile: Always stack vertically */
@media (max-width: 768px) {
    .content-split-section .asymmetric-grid.reverse {
        direction: ltr;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .floating-image {
        order: -1;
    }
    
    .reveal-text h2 {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .image-overlay {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }
}

/* Button Styles */
.content-split-section .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.content-split-section .btn-primary {
    background: #9333ea;
    color: white;
}

.content-split-section .btn-primary:hover {
    background: #7e22ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

/* Secondary Button Style */
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    color: #9333ea;
    border: 2px solid #9333ea;
}

.btn-secondary:hover {
    background: #9333ea;
    color: #ffffff;
}

/* === video-fullwidth === */
.video-fullwidth-section {                                                                                                           
      position: relative;                                                                                                                           
      width: 100%;                                                                                                                                  
      margin: 0;                                                                                                                                    
      padding: 0;                                                                                                                                   
      overflow: hidden;                                                                                                                             
  }                                                                                                                                                 
                                                                                                                                                    
  .video-header {                                                                                                                                   
      text-align: center;                                                                                                                           
      padding: 4rem 2rem 2rem 2rem;                                                                                                                 
      max-width: 1200px;                                                                                                                            
      margin: 0 auto;                                                                                                                               
  }                                                                                                                                                 
                                                                                                                                                    
  .video-header h2 {                                                                                                                                
      font-size: clamp(2rem, 5vw, 4rem);                                                                                                            
      font-weight: 500;                                                                                                                             
      line-height: 1.2;                                                                                                                             
      letter-spacing: -0.02em;                                                                                                                      
      margin: 0 0 1rem 0;                                                                                                                           
      color: #555;                                                                                                                                  
  }                                                                                                                                                 
                                                                                                                                                    
  .video-header h3 {                                                                                                                                
      font-size: clamp(1.1rem, 2vw, 1.4rem);                                                                                                        
      font-weight: 500;                                                                                                                             
      line-height: 1.3;                                                                                                                             
      letter-spacing: -0.01em;                                                                                                                      
      color: #666;                                                                                                                                  
      margin: 0;                                                                                                                                    
  }                                                                                                                                                 
                                                                                                                                                    
  .video-container {                                                                                                                                
      position: relative;                                                                                                                           
      width: 100%;                                                                                                                                  
  }                                                                                                                                                 
                                                                                                                                                    
  .fullwidth-video {                                                                                                                                
      width: 100%;                                                                                                                                  
      height: auto;                                                                                                                                 
      display: block;                                                                                                                               
      object-fit: cover;                                                                                                                            
  }                                                                                                                                                 
                                                                                                                                                    
  .video-height-50vh .fullwidth-video {                                                                                                             
      height: 50vh;                                                                                                                                 
  }                                                                                                                                                 
                                                                                                                                                    
  .video-height-75vh .fullwidth-video {                                                                                                             
      height: 75vh;                                                                                                                                 
  }                                                                                                                                                 
                                                                                                                                                    
  .video-height-100vh .fullwidth-video {                                                                                                            
      height: 100vh;                                                                                                                                
  }                                                                                                                                                 
                                                                                                                                                    
  @media (max-width: 768px) {                                                                                                                       
      .video-header {                                                                                                                               
          padding: 2rem 1rem 1.5rem 1rem;                                                                                                           
      }                                                                                                                                             
      .video-header h2 {                                                                                                                            
          font-size: 2rem;                                                                                                                          
      }                                                                                                                                             
  }

/* === service-cards === */
/* Services Section Styles */
.services-section {
    padding: 4rem 0;
}

/* Container matching other blocks (1400px instead of 1800px) */
.services-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.services-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #555555;
}

.services-section h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #666666;
}

/* Services Grid - WICHTIG: display: none Cards nicht mitzählen */
.services-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Service Card */
.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* Versteckte Cards aus Grid-Layout entfernen */
.service-card-modern[style*="display: none"] {
    display: none !important;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Top Border Gradient */
.service-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9333ea, #7e22ce);
}

/* Card Content */
.service-card-content {
    padding: 2.5rem;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: #9333ea;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon i {
    font-size: 1.5rem;
}

/* Card Title */
.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

/* Card Description */
.service-card-content p {
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Link */
.service-card-content a {
    transition: opacity 0.3s ease;
}

.service-card-content a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-section .container {
        padding: 0 2rem;
    }
    
    .services-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section .container {
        padding: 0 1.5rem;
    }
    
    .services-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-content {
        padding: 2rem;
    }
}

/* === references-marquee === */
/* References Marquee - Working Version */
.references-section {
    padding: 4rem 0;
    background: #f8f8f8;
    overflow: hidden;
}

/* Container wie andere Blöcke */
.references-section .container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10%;
}

.references-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    color: #555555;
}

/* Marquee innerhalb des Containers */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Track für Animation */
.marquee-track {
    display: flex;
    width: fit-content;
}

/* Reference Items */
.reference-item {
    flex: 0 0 auto;
    height: 160px;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.reference-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Hover */
.reference-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Center highlight */
.reference-item.center {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.25);
}

/* Mobile */
@media (max-width: 768px) {
    .references-section .container {
        padding: 0 5%;
    }
    
    .reference-item {
        height: 100px;
        margin: 0 1.5rem;
    }
}

/* === gallery-grid === */
/* Gallery Section - Exact copy from template */
.gallery-section {
    padding: 5rem 5%;
}

/* Container wie andere Blöcke */
.gallery-section .container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 10%;
}

.gallery-section h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #555555;
}

.gallery-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: #666666;
    margin-bottom: 0;
}

/* Gallery Grid */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* 4 Spalten als Default */
@media (min-width: 1200px) {
    .gallery-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: scale(1.02);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Overlay */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-overlay.active {
    display: flex;
}

.gallery-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.gallery-overlay .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-overlay .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Loading State */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section .container {
        padding: 0 5%;
    }
    
    .gallery-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-modern {
        grid-template-columns: 1fr;
    }
}

/* === free-content === */
.free-content-section{width:100%;margin:0;padding:0;box-sizing:border-box;font-family:"Poppins",sans-serif}                          
  .free-content-section.header-spacing-yes{padding-top:120px}                                                                                       
  .free-content-section.header-spacing-no{padding-top:0}                                                                                            
  .free-content-container{margin:0 auto;padding:60px 20px;box-sizing:border-box}                                                                    
  .container-narrow .free-content-container{max-width:800px}                                                                                        
  .container-medium .free-content-container{max-width:1000px}                                                                                       
  .container-wide .free-content-container{max-width:1200px}                                                                                         
  .container-full .free-content-container{max-width:100%;padding-left:5%;padding-right:5%}                                                          
  .padding-small .free-content-container{padding-top:20px;padding-bottom:20px}                                                                      
  .padding-medium .free-content-container{padding-top:40px;padding-bottom:40px}                                                                     
  .padding-large .free-content-container{padding-top:60px;padding-bottom:60px}                                                                      
  .padding-xlarge .free-content-container{padding-top:80px;padding-bottom:80px}                                                                     
  .bg-white{background:#fff}                                                                                                                        
  .bg-light{background:#f8f9fa}                                                                                                                     
  .bg-transparent{background:transparent}                                                                                                           
  .free-content-container h1{font-size:clamp(2rem,5vw,4rem);font-weight:500;line-height:1.2;letter-spacing:-0.02em;margin-bottom:1.5rem;color:#555} 
  .free-content-container h2{font-size:1.5rem;font-weight:500;line-height:1.2;letter-spacing:-0.02em;margin-top:2rem;margin-bottom:1rem;color:#555} 
  .free-content-container                                                                                                                           
  h3{font-size:1.25rem;font-weight:500;line-height:1.3;letter-spacing:-0.01em;margin-top:1.5rem;margin-bottom:0.8rem;color:#555}                    
  .free-content-container h4{font-size:1.1rem;font-weight:500;margin-top:1rem;margin-bottom:0.6rem;color:#555}                                      
  .free-content-container p{font-size:1rem;font-weight:400;color:#666;line-height:1.7;margin-bottom:1rem}                                           
  .free-content-container ul,.free-content-container ol{margin-left:2rem;margin-bottom:1rem;color:#666}                                             
  .free-content-container li{margin-bottom:0.5rem;line-height:1.7;font-weight:400}                                                                  
  .free-content-container a{color:#9333ea;text-decoration:none}                                                                                     
  .free-content-container a:hover{text-decoration:underline}                                                                                        
  .free-content-container strong{font-weight:600;color:#555}                                                                                        
  .free-content-container hr{border:none;border-top:2px dotted #999;margin:3rem 0;width:90%}                                                        
  @media(max-width:768px){.free-content-section.header-spacing-yes{padding-top:100px}.free-content-container                                        
  h1{font-size:2rem}.free-content-container h2{font-size:1.35rem}}

/* === faq === */
/* FAQ Block CSS */
.faq-section {
    padding: 6rem 0;
    padding-top: 250px; /* Space for fixed header */
    background: #ffffff;
}

.faq-section.bg-light {
    background: #f8f9fa;
}

.faq-section.bg-dark {
    background: #1a1a2e;
}

.faq-section.bg-dark .faq-header h2,
.faq-section.bg-dark .faq-subtitle {
    color: #ffffff;
}

.faq-section.bg-dark .faq-question {
    background: #16213e;
    color: #ffffff;
    border-color: #0f3460;
}

.faq-section.bg-dark .faq-answer {
    background: #0f3460;
    color: #e0e0e0;
}

.faq-section.spacing-compact {
    padding: 3rem 0;
    padding-top: 250px;
}

.faq-section.spacing-large {
    padding: 8rem 0;
    padding-top: 140px;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #555555;
    margin: 0 0 1rem 0;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    scroll-margin-top: 250px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: #555555;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    border-color: #9333ea;
    color: #9333ea;
}

.faq-question i {
    font-size: 1.5rem;
    color: #9333ea;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question {
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
    background: #9333ea;
    color: #ffffff;
    border-color: #9333ea;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-inner {
    padding: 1.5rem;
}

.faq-summary {
    font-weight: 500;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-answer-inner p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul,
.faq-answer-inner ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #666;
}

.faq-answer-inner li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
        padding-top: 250px;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 1.25rem;
    }
}

/* Force scroll offset */
.faq-section[id] {
    scroll-margin-top: 250px !important;
}


/* FORCE FAQ OFFSET */
.faq-section {
    padding-top: 250px !important;
    scroll-margin-top: 250px !important;
    margin-top: 0 !important;
}

/* === Consistent Heading Styles (Override) === */
h1, h2, h3, h4, h5, h6,
.hero-content h1,
.video-header h2,
.video-header h3,
.services-section h2,
.services-section h3,
.references-section h2,
.gallery-section h2,
.reveal-text h2,
.content-split-advanced .reveal-text h2,
.service-card-content h3,
.free-content-container h1,
.free-content-container h2,
.free-content-container h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.video-header h2,
.services-section h2,
.references-section h2,
.gallery-section h2,
.reveal-text h2,
.content-split-advanced .reveal-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.video-header h3,
.services-section h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.4;
}
