/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://ecommercebrains.com/
 Description:  Child Theme für GeneratePress
 Author:       eCommerceBrains
 Author URI:   https://example.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  generatepress-child
*/



/* --- GLOBALE EINSTELLUNGEN & SMOOTH SCROLL --- */
html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #0C8BD1;
    --color-secondary: #013F74;
    --color-primary-hover: #0a74b3;
    --color-primary-light: #e7f5ff;
    --color-text-body: #555;
    --color-text-dark: #222;
    --shadow-card: 0 8px 25px rgba(0, 30, 60, 0.12);
}

/* --- SEITEN-HINTERGRUND --- */
body {
    background-color: #e8f4fc;
    background-image: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
/*Fix GeneratePress*/
.separate-containers .site-main {
    margin: 0;
}

/* --- GENERATEPRESS-CONTAINER TRANSPARENT --- */
.site-content .inside-article {
    background-color: transparent;
    padding: 0;
}

.entry-content > section {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}
.entry-content > section:first-child {
    padding-top: 100px;
}
.entry-content > section:last-child {
    padding-bottom: 50px;
}
@media(max-width: 768px){
    .entry-content > section {
        padding-top: 35px;
        padding-bottom: 35px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .entry-content > section:first-child {
        padding-top: 70px;
    }
    .entry-content > section:last-child {
        padding-bottom: 35px;
    }
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1800px;
    margin: 0 auto;
}
.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.top-bar-phone,
.top-bar-hours {
    display: flex;
    align-items: center;
    gap: 10px;
}
.top-bar-right {
    font-weight: 600;
    opacity: 0.9;
}
@keyframes ring-animation {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    50% { transform: rotate(0); }
    100% { transform: rotate(0); }
}
.phone-icon-wrapper {
    animation: ring-animation 4s ease-in-out infinite;
}
.phone-icon-wrapper svg,
.clock-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-top: 2px;
}
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        overflow: hidden;
        position: relative;
    }
    .top-bar-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        align-items: center;
        animation: slideTopBar 9s ease-in-out infinite;
        will-change: transform;
        width: 300vw;
    }
    .top-bar-left {
        display: contents;
    }
    .top-bar-phone,
    .top-bar-hours,
    .top-bar-right {
        whitespace: nowrap;
        flex-shrink: 0;
        font-size: 14px;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    @keyframes slideTopBar {
        0%, 30% {
            transform: translateX(0);
        }
        33.33%, 63.33% {
            transform: translateX(-100vw);
        }
        66.66%, 96.66% {
            transform: translateX(-200vw);
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* --- STICKY MILCHGLAS-HEADER --- */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.site-header .main-navigation,
.site-header .inside-header {
    background-color: transparent;
}
.site-header .inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
}
.site-logo {
    padding: 5px 0;
}
.site-logo img {
    height: auto;
    width: auto;
    vertical-align: middle;
}
.main-navigation {
    margin-left: auto;
}
.main-navigation .main-nav ul li a {
    color: var(--color-secondary);
    font-weight: 600;
}
.main-navigation .main-nav ul li a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .site-header .inside-header {
        padding: 8px 15px;
    }
}

/* --- HERO SEKTION (DIREKT AUF HINTERGRUND) --- */
.hero-section {
    /*padding: 50px 20px;*/
    margin-bottom: 0;
    /*padding: 50px 20px;*/
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 8px 20px 10px 20px;
    }
}
.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
}

/* Desktop: 50/50 */
@media (min-width: 1000px) {
    .hero-container {
        flex-wrap: nowrap;
    }
    .hero-content {
        flex: 1;
        width: 50%;
    }
    .hero-video-wrapper {
        flex: 1;
        width: 50%;
    }
}

/* Mobil */
.hero-content,
.hero-video-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-container {
        gap: 10px;
    }
}

/* Hero Kicker - MODERNE PILL/BADGE FORM */
.hero-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    background-color: rgba(12, 139, 209, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(12, 139, 209, 0.2);
}

.hero-headline {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-secondary);
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.hero-headline .highlight-orange {
    color: #ff6b35;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-text-dark);
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}

/* Hero Benefits (Bulletpoints) */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.hero-benefits li {
    font-size: 17px;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.hero-benefits li::before {
    content: '⦿';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-cta-primary,
.hero-cta-secondary {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 220px;
    white-space: nowrap;
}
.hero-cta-primary {
    background-color: #ff6b35;
    color: #ffffff;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.hero-cta-primary:hover {
    background-color: #e85a28;
    border-color: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}
.hero-cta-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.hero-cta-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Video Glow */
.hero-video-wrapper {
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(12, 139, 209, 0.4);
    max-width: 500px;
    margin: 0 auto;
}
.hero-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    display: block;
}

@media (min-width: 1000px) {
    .hero-video-wrapper {
        margin: 0 0 0 auto;
    }
}

/* Hero Trust Wrapper - NEUE GLASSMORPHISM BOX */
.hero-trust-wrapper {
    width: 100%;
    /*max-width: calc(100% - 40px);*/
    /*margin: 60px auto 0 auto;*/
    /*padding: 60px 40px;*/
}
.hero-trust-glassmorphism {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 30, 60, 0.1);
    border-radius: 16px;
}
.hero-trust-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}
.hero-logo-headline {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    text-align: center;
    margin: 0 0 40px 0;
}
.hero-logo-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 15px 10px 0px 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
    justify-content: center;
}
.hero-logo-grid::-webkit-scrollbar {
    display: none;
}
.hero-logo-item {
    text-align: center;
    flex: 0 0 140px;
    scroll-snap-align: center;
    min-width: 0;
}
.hero-logo-item img {
    max-height: 45px;
    width: auto;
    max-width: 100%;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}
.hero-logo-item img:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .hero-logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 20px;
        overflow-x: visible;
        padding: 20px 10px;
    }
    
    .hero-logo-item {
        flex: none;
    }
}

/* Anspruch Block - OHNE BOX, MIT DEZENTEM WEISSEN GLOW */
.hero-claim-container {
    text-align: center;
    max-width: 900px;
    margin: 0px auto 0 auto;
    padding: 0px 20px 0 20px;
    /*border-top: 2px solid rgba(12, 139, 209, 0.15);*/
}
.hero-claim-headline {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
hr.hero-claim-trenner {
    max-width: 900px;
    margin:0 auto;
    height:0;
    border-top: 2px solid rgba(12, 139, 209, 0.15);
}
.hero-claim-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-dark);
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}
.hero-claim-text strong {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 38px;
        margin-bottom: 8px;
    }
    .hero-subheadline {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .hero-kicker {
        font-size: 13px;
    }
    .hero-benefits li {
        font-size: 16px;
        padding-left: 28px;
        margin-bottom: 5px;
    }
    .hero-benefits {
        margin-bottom: 10px;
    }
    .hero-cta-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }
    .hero-logo-grid {
        gap: 20px;
    }
    .hero-logo-item {
        flex-basis: 100px;
    }
    .process-info-box {
        padding: 35px 25px;
    }
    .hero-trust-wrapper {
        /*padding: 40px 25px;*/
    }
    .hero-claim-headline {
        font-size: 26px;
    }
}

/* --- TRUST SEKTION MIT MILCHGLAS (VOLLE BREITE MIT RUNDEN ECKEN) --- */
.trust-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
    border-radius: 16px;
    /*max-width: calc(100% - 40px);*/
}
.trust-glassmorphism {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 30, 60, 0.1);
    padding: 30px;
    border-radius: 16px;
}
.trust-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}
.trust-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}
.trust-sub-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 35px;
    margin-top: 70px;
}
.team-center-text-full {
    text-align: center;
    max-width: 900px;
    margin: 25px auto 0 auto;
    color: var(--color-text-dark);
}
.team-center-text-full p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .team-center-text-full {
        text-align: left;
    }
}

/* Team Grid */
.team-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0 auto;
}
.team-member {
    text-align: center;
}
.team-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}
.team-image-wrapper img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.9);
}
.team-image-wrapper::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), #00c6ff);
    filter: blur(25px);
    opacity: 0.7;
}
.team-member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 5px 0;
}
.team-member-title {
    font-size: 16px;
    color: var(--color-text-body);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}
.team-member-bio {
    font-size: 17px;
    color: var(--color-primary);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .team-image-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Google Reviews */
.review-slider-wrapper {
    position: relative;
}

.review-slider-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 25px;
    padding: 15px 10px 25px 10px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.review-slider-grid::-webkit-scrollbar {
    display: none;
}

.review-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 139, 209, 0.3);
}

.review-slider-arrow:hover {
    background: var(--color-primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(12, 139, 209, 0.4);
}
.review-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    padding: 28px;
    text-align: left;
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 0;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
    .review-card {
        flex-basis: 45%;
    }
}
@media (min-width: 1024px) {
    .review-card {
        flex-basis: 31%;
    }
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-initial-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}
.initial-l { background-color: #673AB7; }
.initial-j { background-color: #FF9800; }
.initial-a { background-color: #4CAF50; }
.initial-s { background-color: #f44336; }
.initial-m { background-color: #03A9F4; }
.initial-t { background-color: #E91E63; }
.initial-u { background-color: #8D6E63; }

.review-author-info {
    display: flex;
    flex-direction: column;
}
.review-author-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-dark);
}
.review-author-date {
    font-size: 14px;
    color: var(--color-text-body);
}
.review-stars {
    color: #FF9800;
    font-size: 19px;
    margin-bottom: 12px;
}
.review-text {
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
}

/* Trust Badges - FLEXBOX MIT FESTER BREITE */
.trust-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: end;
    gap: 40px 30px;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 15px;
    width: 100%;
    max-width: 150px;
}
.trust-badge-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.trust-badge:hover .trust-badge-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(12, 139, 209, 0.3);
}
.trust-badge-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
}
.trust-badge-icon-special {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00c6ff 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(12, 139, 209, 0.4);
}
.trust-badge-text {
    font-size: 16px;
    color: var(--color-text-body);
    font-weight: 600;
    line-height: 1.3;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Info-Box zum Präqualifizierungs-Siegel - MODERNISIERT */
.trust-praequalifiziert-info {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.1);
    border: 1px solid rgba(12, 139, 209, 0.15);
    transition: all 0.3s ease;
}
.trust-praequalifiziert-info:hover {
    box-shadow: 0 8px 30px rgba(12, 139, 209, 0.15);
    transform: translateY(-2px);
}
.trust-praequalifiziert-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin: 0;
    text-align: left;
}
.trust-praequalifiziert-info strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 17px;
}
@media (max-width: 768px) {
    .trust-praequalifiziert-info > div .trust-badge-icon {
        margin: 0 auto 30px auto;
    }
}
@media (min-width: 769px) {

    .trust-praequalifiziert-info > div  {
        display: flex;
        gap: 40px;
        align-items: center;
    }
}
/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .trust-headline {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .trust-badge-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 20px;
        margin-top: 25px;
    }
    
    .trust-badge {
        width: 100%;
        max-width: none;
    }
    
    .trust-badge-icon {
        width: 60px;
        height: 60px;
    }
    
    .trust-badge-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .trust-badge-text {
        font-size: 13px;
        min-height: 36px;
    }
    
    .trust-praequalifiziert-info {
        padding: 18px;
        border-left-width: 4px;
        border-radius: 16px;
        margin-top: 25px;
    }
    
    .trust-praequalifiziert-info p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .trust-praequalifiziert-info strong {
        font-size: 16px;
        display: block;
        margin-bottom: 8px;
    }
}

/* --- PROCESS SEKTION (DIREKT AUF HINTERGRUND) --- */
.process-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
}
.process-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}
.process-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
.process-subheadline {
    font-size: 19px;
    color: var(--color-text-dark);
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    margin-bottom: 20px;
}

/* CTA Button nach Process Grid */
.process-cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    /*margin-bottom: 80px;*/
    letter-spacing: 0.3px;
}

.process-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: #e85a28;
}

.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.08);
    border: 1px solid rgba(12, 139, 209, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 28px 28px 24px 28px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #00c6ff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(12, 139, 209, 0.18);
    border-color: rgba(12, 139, 209, 0.3);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    text-align: center;
}

.process-step-subtitle {
    font-size: 12px;
    color: var(--color-primary);
    margin: 0 0 18px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.process-step p {
    text-align: left;
}

@media (max-width: 768px) {
    .process-step p {
        text-align: center;
    }
}

.process-step-text {
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
}

.process-step-icon {
    display: none;
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step-title {
        font-size: 17px;
    }
    
    .process-step-text {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Gut zu wissen Box - JETZT 50/50 MIT VIDEO */
.process-info-box {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 70px 20px 0 20px;
    margin-top: 70px;
    text-align: center;
    box-shadow: none;
    border: none;
    border-top: 2px solid rgba(12, 139, 209, 0.2);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.process-info-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    gap: 30px;
}
.process-info-text-column {
    flex: 1;
    text-align: left;
    min-width: 300px;
}
.process-info-video-column {
    flex: 1;
    min-width: 300px;
}
.process-info-video-wrapper {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(12, 139, 209, 0.25);
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border: 3px solid rgba(12, 139, 209, 0.1);
    transition: all 0.4s ease;
}

.process-info-video-wrapper:hover {
    box-shadow: 0 15px 50px rgba(12, 139, 209, 0.35);
    transform: translateY(-5px);
}

.process-info-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
    display: block;
}
@media (min-width: 1000px) {
    .process-info-text-column {
        flex: 1;
        width: 50%;
    }
    .process-info-video-column {
        flex: 1;
        width: 50%;
    }
    .process-info-content-wrapper {
        flex-wrap: nowrap;
    }
}
.process-info-headline {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    margin-top: 0;
    text-align: left;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
.process-info-text {
    font-size: 18px;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: left;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}
.process-info-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.process-info-benefits li {
    font-size: 17px;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}
.process-info-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
}
.process-info-cta {
    display: inline-block;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}
.process-info-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: #e85a28;
}

/* --- PRODUCT SEKTION (DIREKT AUF HINTERGRUND) --- */
.product-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
}
.product-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}
.product-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
.product-subheadline {
    font-size: 19px;
    color: var(--color-text-dark);
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Produktgrid als Slider */
    
.product-grid-wrapper {
    position: relative;
    max-width: 1800px;
    margin: 0 auto 0px auto;
}

.product-grid-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 15px 10px 25px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-grid-container::-webkit-scrollbar {
    display: none;
}

.product-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.08);
    border: 1px solid rgba(12, 139, 209, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 0 0 350px;
    scroll-snap-align: start;
    min-width: 0;
}

.product-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.product-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 139, 209, 0.3);
}

.product-slider-arrow:hover {
    background: var(--color-primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(12, 139, 209, 0.4);
}

@media (min-width: 1200px) {
    .product-tile {
        flex: 0 0 calc(33.333% - 20px);
    }
}

.product-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #00c6ff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(12, 139, 209, 0.18);
    border-color: rgba(12, 139, 209, 0.3);
}

.product-tile:hover::before {
    opacity: 1;
}

.product-tile-image {
    width: 100%;
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.product-tile-image::after {
    content: none;
}

.product-tile-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

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

.product-tile-content {
    padding: 28px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    text-align: center;
}

.product-tile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.product-tile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    width: 100%;
}

.product-tile-unit {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a9fd9 100%);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(12, 139, 209, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-tile:hover .product-tile-unit {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(12, 139, 209, 0.35);
}

.product-tile-description {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .product-tile {
        flex: 0 0 85%;
    }
    
    .product-tile-image {
        height: 200px;
    }
    
    .product-tile-content {
        padding: 22px;
    }
    
    .product-tile-name {
        font-size: 18px;
    }
    
    .product-tile-unit {
        font-size: 15px;
        padding: 5px 12px;
    }
}
.product-section-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #ff6b35;
    color: #ffffff;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.product-section-cta:hover {
    background-color: #e85a28;
    border-color: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* --- PARTNER SEKTION (DIREKT AUF HINTERGRUND) --- */
.partner-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
}
.partner-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}
.partner-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
.partner-subheadline {
    font-size: 19px;
    color: var(--color-text-dark);
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Partner Grid als Slider */
.partner-grid-wrapper {
    position: relative;
    max-width: 1800px;
    margin: 0 auto 0px auto;
}

.partner-grid-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 15px 10px 25px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partner-grid-container::-webkit-scrollbar {
    display: none;
}

.partner-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.08);
    border: 1px solid rgba(12, 139, 209, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 0 0 350px;
    scroll-snap-align: start;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.partner-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #00c6ff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(12, 139, 209, 0.18);
    border-color: rgba(12, 139, 209, 0.3);
}

.partner-tile:hover::before {
    opacity: 1;
}

.partner-tile-header {
    padding: 30px 30px 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 180px;
}

.partner-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.partner-logo {
    max-width: 240px;
    max-height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.partner-tile-content {
    padding: 28px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-quote {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0 0 auto 0;
    font-style: italic;
}

.partner-meta {
    margin-top: 20px;
}

.partner-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 5px 0;
}

.partner-title {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0 0 3px 0;
}

.partner-company {
    font-size: 14px;
    color: var(--color-text-body);
    margin: 0;
}

.partner-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.partner-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 139, 209, 0.3);
}

.partner-slider-arrow:hover {
    background: var(--color-primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(12, 139, 209, 0.4);
}

@media (min-width: 1200px) {
    .partner-tile {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .partner-tile {
        flex: 0 0 85%;
    }
    
    .partner-tile-header {
        flex-direction: row;
        padding: 18px;
        min-height: auto;
        gap: 15px;
    }
    
    .partner-profile-image {
        width: 90px;
        height: 90px;
    }
    
    .partner-logo {
        max-width: 180px;
        max-height: 90px;
    }
    
    .partner-tile-content {
        padding: 22px;
    }
    
    .partner-name {
        font-size: 17px;
    }
}

/* --- FAQ SEKTION (DIREKT AUF HINTERGRUND) --- */
.faq-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
}
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.faq-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}
.faq-subheadline {
    font-size: 19px;
    color: var(--color-text-dark);
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}
.faq-accordion {
    text-align: left;
}
.faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.faq-question {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-text-dark);
    padding: 22px 55px 22px 28px;
    cursor: pointer;
    position: relative;
    list-style: none;
}
.faq-question::after {
    content: '+';
    font-size: 26px;
    font-weight: 400;
    color: var(--color-primary);
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-item details[open] > .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    padding: 0px 28px 28px 28px;
    color: var(--color-text-body);
    line-height: 1.8;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.faq-answer p {
    font-size: 17px;
    margin-bottom: 0;
}
.faq-answer ul {
    padding-left: 20px;
    margin-top: 12px;
    font-size: 17px;
}

/* --- FINAL CTA SEKTION (MODERNE GLASSMORPHISM-BOX) --- */
.cta-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
    background: transparent;
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #024a7e 100%);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 63, 116, 0.3);
    text-align: center;
}

/* Dekorative Elemente im Hintergrund */
.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12, 139, 209, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-headline {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.cta-subheadline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    color: var(--color-secondary);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.cta-footer-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-container {
        padding: 60px 35px;
        border-radius: 24px;
    }
    
    .cta-headline {
        font-size: 34px;
    }
    
    .cta-subheadline {
        font-size: 17px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .cta-headline {
        font-size: 28px;
    }
    .hero-headline {
        font-size: 32px;
    }
    .process-headline,
    .product-headline,
    .trust-headline,
    .faq-headline {
        font-size: 32px;
    }
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 30px 20px 30px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer-links-section,
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-title,
.footer-contact-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-link:hover {
    color: white;
    padding-left: 8px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 8px 0;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 20px 20px 20px;
        margin-top: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo-section {
        grid-column: auto;
    }
    
    .footer-logo {
        max-width: 160px;
    }
    
    .footer-links-title,
    .footer-contact-title {
        font-size: 16px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
}

.contact-section {
    /*padding: 50px 20px;*/
    margin: 0 auto;
}

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

.contact-headline {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5);
}

.contact-subheadline {
    font-size: 19px;
    color: var(--color-text-dark);
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-form-column,
.contact-info-column {
    width: 100%;
}

.contact-form-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.08);
    border: 1px solid rgba(12, 139, 209, 0.1);
    text-align: left;
}

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box input[type="tel"],
.contact-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(12, 139, 209, 0.2);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 15px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(12, 139, 209, 0.1);
}

.contact-form-box textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-box input[type="submit"] {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    width: 100%;
}

.contact-form-box input[type="submit"]:hover {
    background: #e85a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(12, 139, 209, 0.08);
    border: 1px solid rgba(12, 139, 209, 0.1);
    text-align: left;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 30px 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.contact-info-text {
    flex: 1;
}

.contact-info-label {
    font-size: 14px;
    color: var(--color-text-body);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-info-value {
    font-size: 18px;
    color: var(--color-text-dark);
    font-weight: 600;
    margin: 0;
}

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

@media (max-width: 768px) {
    .contact-headline {
        font-size: 32px;
    }
    
    .contact-form-box,
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .contact-info-value {
        font-size: 16px;
    }
}

.contact-info-icon-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-info-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

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

.contact-info-link:hover::after {
    width: 100%;
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto 15px auto;
    /*padding: 0 20px;*/
}

.hero-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.hero-benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(12, 139, 209, 0.3);
}

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

.hero-benefit-content {
    flex: 1;
}

.hero-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.hero-benefit-text {
    font-size: 16px;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
    }
    
    .hero-benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hero-benefit-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-bottom: 15px;
    }
    
    .hero-benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-benefit-title {
        font-size: 17px;
    }
    
    .hero-benefit-text {
        font-size: 15px;
    }
}

.footer-minimal {
    padding: 30px 20px;
    /*margin: 50px 20px 0 20px;*/
    background: linear-gradient(135deg, var(--color-secondary) 0%, #024a7e 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 63, 116, 0.3);
}

.footer-minimal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12, 139, 209, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-minimal::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-minimal-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-minimal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-minimal-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-minimal-link:hover {
    color: #ffffff;
}

.footer-minimal-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
}

@media (max-width: 768px) {
    .footer-minimal {
        padding: 20px 20px;
        border-radius: 24px;
        /*margin: 40px 10px 0 10px;*/
    }
    
    .footer-minimal-links {
        gap: 15px;
    }
    
    .footer-minimal-link {
        font-size: 15px;
    }
}

.product-tile:nth-child(3) .product-tile-image img {
    transform: scale(1.4);
}

.product-tile:nth-child(3):hover .product-tile-image img {
    transform: scale(1.5);
}

.product-tile:nth-child(4) .product-tile-image img,
.product-tile:nth-child(6) .product-tile-image img,
.product-tile:nth-child(7) .product-tile-image img {
    transform: scale(1.8);
}

.product-tile:nth-child(4):hover .product-tile-image img,
.product-tile:nth-child(6):hover .product-tile-image img,
.product-tile:nth-child(7):hover .product-tile-image img {
    transform: scale(1.9);
}

.partner-tile:nth-child(1) .partner-logo,
.partner-tile:nth-child(2) .partner-logo {
    max-width: 280px;
    max-height: 100px;
}

.partner-tile:nth-child(3) .partner-logo,
.partner-tile:nth-child(4) .partner-logo,
.partner-tile:nth-child(5) .partner-logo {
    max-width: 180px;
    max-height: 100px;
}

@media (max-width: 768px) {
    .partner-tile:nth-child(1) .partner-logo,
    .partner-tile:nth-child(2) .partner-logo {
        max-width: 220px;
        max-height: 80px;
    }
    
    .partner-tile:nth-child(3) .partner-logo,
    .partner-tile:nth-child(4) .partner-logo,
    .partner-tile:nth-child(5) .partner-logo {
        max-width: 140px;
        max-height: 80px;
    }
}

.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.legal-section {
    padding: 30px 20px 80px 20px;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-headline {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: -1px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: 25px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px 20px;
    }
    
    .legal-headline {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
    
    .legal-content p,
    .legal-content ul li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero-logo-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 10px !important;
        overflow: visible !important;
    }
    
    .hero-logo-item {
        padding: 20px 15px !important;
    }
    
    .hero-logo-item img {
        max-height: 50px !important;
    }
}

@media (max-width: 768px) {
    .hero-claim-text {
        text-align: left;
    }
}



/* EINHEITLICHES MOBILE SPACING */
@media (max-width: 768px) {
    .hero-section,
    .trust-section,
    .process-section,
    .product-section,
    .partner-section,
    .faq-section,
    .contact-section,
    .cta-section {
        /*padding: 35px 15px !important;*/
        margin: 0 auto !important;
    }
    
    .trust-section {
        max-width: calc(100% - 20px) !important;
    }
    
    /* Alle Headlines in Mobile einheitlich */
    .hero-headline,
    .hero-claim-headline,
    .trust-headline,
    .process-headline,
    .product-headline,
    .partner-headline,
    .faq-headline,
    .contact-headline,
    .cta-headline {
        margin-bottom: 20px !important;
    }
    
    /* Alle Subheadlines einheitlich */
    .hero-subheadline,
    .trust-subheadline,
    .process-subheadline,
    .product-subheadline,
    .partner-subheadline,
    .faq-subheadline,
    .contact-subheadline,
    .cta-subheadline {
        margin-bottom: 20px !important;
    }
}

/* Process Step Subtitle immer zentriert (Desktop & Mobile) */
.process-step-subtitle {
    text-align: center !important;
}

/* Process Step Title immer zentriert (Desktop & Mobile) */
.process-step-title {
    text-align: center !important;
}
/* HERO TOP-ABSTAND AUF MOBILE REDUZIEREN */
@media (max-width: 768px) {
    .entry-content > section#hero {
        padding-top: 15px !important;
    }
}