/* Produkte-Screen CSS */

/* ============================================================
   HERO SECTION - Premium Look (wie SaaS-Screen)
   ============================================================ */

.home-hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 30%, var(--color-bg-primary) 70%, var(--color-bg-secondary) 100%);
    padding: 80px 0;
}

.home-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, var(--color-accent-blue-2) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, var(--color-accent-yellow-2) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, var(--color-accent-blue-08) 0%, transparent 50%);
    z-index: 1;
    animation: particles-float 25s ease-in-out infinite;
}

@keyframes particles-float {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 50% 50%;
        opacity: 0.8;
    }
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg-secondary) 100%);
    opacity: 0.4;
    z-index: 2;
}

.home-hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 450px;
    opacity: 0.3;
    z-index: 2;
    filter: drop-shadow(0 0 40px var(--color-accent-blue-2));
}

.home-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.home-hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    background-size: 200% 200%;
    color: var(--color-bg-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    margin-bottom: 32px;
    box-shadow: 0 6px 20px var(--color-accent-blue-3),
                0 0 40px var(--color-accent-yellow-2);
    animation: badge-shimmer 5s ease-in-out infinite;
    position: relative;
    border: 2px solid var(--color-accent-yellow-2);
}

@keyframes badge-shimmer {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 6px 20px var(--color-accent-blue-3),
                    0 0 40px var(--color-accent-yellow-2);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 8px 25px var(--color-accent-blue-3),
                    0 0 50px var(--color-accent-yellow-2);
    }
}

.home-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 28px;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.home-hero-cta {
    margin-top: 45px;
}

.home-hero-cta-button {
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-blue-2);
}

/* Produkt-Übersicht-Section */
#products-overview-section {
    padding: 40px 0 80px;
}

#products-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid-Layout für Produkt-Karten */
#products-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Produkt-Karten - Hochwertiges Design (Teaser) */
.products-product-tile {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 50px 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 4px 20px rgba(43, 90, 160, 0.08),
        0 8px 30px rgba(43, 90, 160, 0.05),
        0 0 0 1px rgba(43, 90, 160, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hochwertiger Glanz-Effekt im Hintergrund */
.products-product-tile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(244, 185, 66, 0.1) 0%,
        rgba(43, 90, 160, 0.05) 30%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

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

.products-product-tile:hover {
    transform: translateY(-12px) scale(1.015);
    border-color: rgba(43, 90, 160, 0.2);
    box-shadow: 
        0 12px 40px rgba(43, 90, 160, 0.15),
        0 20px 60px rgba(43, 90, 160, 0.1),
        0 0 0 1px rgba(43, 90, 160, 0.1),
        0 0 80px rgba(244, 185, 66, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 40%, #FFFFFF 100%);
}

.products-product-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.products-product-title {
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 50%, #2B5AA0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: gradient-shift 8s ease infinite;
    position: relative;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Zusätzlicher Glanz-Effekt für Headlines */
.products-product-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.products-product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-top: 10px;
    font-weight: 600;
}

.products-product-explanation {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #718096;
    margin-top: 12px;
    font-weight: 400;
}


/* Pakete (Widget-Integration) */
.products-product-packages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.products-package {
    padding: 20px;
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.05) 0%, rgba(244, 185, 66, 0.05) 100%);
    border: 1px solid rgba(43, 90, 160, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.products-package:hover {
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.1) 0%, rgba(244, 185, 66, 0.1) 100%);
    border-color: rgba(43, 90, 160, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 90, 160, 0.1);
}

.products-package-title {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.products-package-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4B942 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
}


/* Pricing-Optionen (Portallösung) */
.products-product-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.products-pricing-option {
    padding: 20px;
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.05) 0%, rgba(244, 185, 66, 0.05) 100%);
    border: 1px solid rgba(43, 90, 160, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.products-pricing-option:hover {
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.1) 0%, rgba(244, 185, 66, 0.1) 100%);
    border-color: rgba(43, 90, 160, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 90, 160, 0.1);
}

.products-pricing-title {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.products-pricing-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4B942 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Marketing-Optionen (Eigenregie) */
.products-product-marketing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.products-marketing-option {
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.05) 0%, rgba(244, 185, 66, 0.05) 100%);
    border: 1px solid rgba(43, 90, 160, 0.1);
    border-radius: 12px;
    text-align: center;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.products-marketing-option:hover {
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.1) 0%, rgba(244, 185, 66, 0.1) 100%);
    border-color: rgba(43, 90, 160, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 90, 160, 0.1);
}

.products-marketing-title {
    margin: 0;
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Features-Liste */
.products-product-features {
    margin-top: auto;
}

.products-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-feature-item {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #2B5AA0 0%, #F4B942 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2rem;
}

/* CTA-Button in Kacheln - Hochwertiges Design */
.products-product-cta {
    margin-top: 40px;
    padding-top: 0;
    text-align: center;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.products-detail-link {
    display: inline-block;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    color: #FFFFFF;
    border-radius: 25px;
    box-shadow: 
        0 4px 15px rgba(43, 90, 160, 0.3),
        0 0 20px rgba(43, 90, 160, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.products-detail-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.products-detail-link:hover::before {
    left: 100%;
}

.products-detail-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #1E3F70 0%, #2B5AA0 100%);
    box-shadow: 
        0 8px 25px rgba(43, 90, 160, 0.4),
        0 0 40px rgba(244, 185, 66, 0.2);
}

/* ============================================================
   DETAIL-SECTIONS (Detaillierte Erklärungen)
   ============================================================ */

.products-details {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

#products-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-detail-section {
    margin-bottom: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    scroll-margin-top: 120px;
}

.products-detail-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Hochwertige Headlines für Detail-Sections */
.products-detail-header .widget-headline-h2 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 50%, #2B5AA0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: gradient-shift 8s ease infinite;
    position: relative;
}

.products-detail-header .widget-headline-h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

.products-detail-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 20px auto 0;
}

.products-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.products-detail-subsection {
    margin-bottom: 50px;
}

.products-detail-subsection:last-child {
    margin-bottom: 0;
}

/* Hochwertige H3-Headlines in Detail-Subsections */
.products-detail-subsection .widget-headline-h3 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.products-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-top: 15px;
}

/* Widget-Typen */
.products-detail-widget-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.products-detail-widget-type {
    padding: 25px;
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.05) 0%, rgba(244, 185, 66, 0.05) 100%);
    border: 1px solid rgba(43, 90, 160, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent-blue);
    transition: all 0.3s ease;
}

.products-detail-widget-type:hover {
    background: linear-gradient(135deg, rgba(43, 90, 160, 0.1) 0%, rgba(244, 185, 66, 0.1) 100%);
    border-color: rgba(43, 90, 160, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 90, 160, 0.1);
}

.products-detail-widget-type h4,
.products-detail-widget-type .widget-headline-h4 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.products-detail-widget-type p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Integrationsmethoden */
.products-detail-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.products-detail-method {
    padding: 25px;
    background-color: var(--color-background-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent-blue);
}

.products-detail-method h4,
.products-detail-method .widget-headline-h4 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

.products-detail-method p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Pakete */
.products-detail-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.products-detail-package {
    padding: 25px;
    background-color: var(--color-background-secondary);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
}

.products-detail-package:hover {
    border-color: var(--color-accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-accent-blue-2);
}

.products-detail-package h4,
.products-detail-package .widget-headline-h4 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 15px;
}

.products-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    margin-bottom: 10px;
}

.products-detail-package-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Pricing-Optionen */
.products-detail-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.products-detail-pricing-option {
    padding: 25px;
    background-color: var(--color-background-secondary);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
}

.products-detail-pricing-option:hover {
    border-color: var(--color-accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-accent-blue-2);
}

.products-detail-pricing-option h4,
.products-detail-pricing-option .widget-headline-h4 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 15px;
}

.products-detail-pricing-option .products-detail-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F4B942 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.products-detail-pricing-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Marketing-Optionen */
.products-detail-marketing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.products-detail-marketing-option {
    padding: 20px;
    background-color: var(--color-background-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent-yellow);
}

.products-detail-marketing-option h4,
.products-detail-marketing-option .widget-headline-h4 {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3F70 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.products-detail-marketing-option p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Features-Liste in Detail-Sections */
.products-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.products-detail-feature-item {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.products-detail-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tablet (600px - 768px) */
@media (min-width: 600px) {
    #products-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .products-product-tile {
        min-height: 300px;
        height: auto;
    }
    
    .products-product-packages {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .products-package {
        flex: 1;
        min-width: 150px;
    }
    
    .products-product-pricing {
        flex-direction: row;
    }
    
    .products-pricing-option {
        flex: 1;
    }
    
    .products-product-marketing {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-marketing {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1024px - 1366px) */
@media (min-width: 1024px) {
    #products-hero-section {
        padding: 80px 0;
    }
    
    #products-overview-section {
        padding: 60px 0 100px;
    }
    
    #products-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .products-product-tile {
        min-height: 350px;
        height: auto;
    }
    
    .products-product-marketing {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-packages {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-detail-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-marketing {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-detail-widget-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .home-hero {
        padding: 100px 0;
    }
    
    #products-overview-section {
        padding: 80px 0 120px;
    }
    
    #products-overview-grid {
        gap: 50px;
    }
}

/* ============================================================
   GRÜNDER SECTION (wie SaaS-Screen)
   ============================================================ */

.home-about {
    padding: 100px 40px;
    background-color: var(--color-bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-bg-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 24px;
}

.founders-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 60px auto 0;
}

.founder-card {
    text-align: center;
    flex: 0 0 auto;
}

.founder-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--color-accent-blue);
    box-shadow: 0 10px 30px var(--color-accent-blue-2);
    transition: all 0.3s ease;
}

.founder-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--color-accent-yellow-2);
    border-color: var(--color-accent-yellow);
}

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

.founder-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.founder-role {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.founders-connection {
    position: relative;
    width: 100px;
    height: 4px;
    flex: 0 0 auto;
}

.connection-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    border-radius: 2px;
    position: relative;
}

.connection-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 4px;
    background: var(--color-accent-yellow);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        left: 0;
        opacity: 1;
    }
    50% {
        left: calc(100% - 20px);
        opacity: 0.7;
    }
}

/* ============================================================
   CONTACT SECTION - Premium Form (wie SaaS-Screen)
   ============================================================ */

#products-contact-form {
    padding: 100px 40px;
    background-color: var(--color-bg-primary);
}

#products-contact-form .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.products-contact-form {
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
}

.products-contact-form:hover {
    box-shadow: 0 15px 50px var(--color-accent-blue-2);
    border-color: var(--color-accent-blue);
}

.products-form-field {
    margin-bottom: 35px;
}

.products-form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
    letter-spacing: 0.3px;
}

.products-form-required {
    color: var(--color-error);
    margin-left: 4px;
    font-weight: 700;
}

.products-form-input,
.products-form-textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: var(--font-family-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.products-form-input:focus,
.products-form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 4px var(--color-accent-blue-08),
                0 4px 12px var(--color-accent-blue-2);
    transform: translateY(-2px);
}

.products-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.products-form-error {
    display: block;
    color: var(--color-error);
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
}

.products-form-submit {
    text-align: center;
    margin-top: 45px;
}

.products-form-button {
    padding: 18px 60px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-accent-blue-2);
}

/* Mobile Anpassungen */
@media (max-width: 576px) {
    .products-product-tile {
        min-height: auto;
        height: auto;
    }
}

/* Mobile Anpassungen für Gründer-Section */
@media (max-width: 768px) {
    .founders-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .founders-connection {
        width: 4px;
        height: 60px;
    }
    
    .connection-line {
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--color-accent-blue) 0%, var(--color-accent-yellow) 100%);
    }
    
    .connection-pulse {
        width: 4px;
        height: 20px;
        animation: pulse-vertical 2s ease-in-out infinite;
    }
    
    @keyframes pulse-vertical {
        0%, 100% {
            top: 0;
            opacity: 1;
        }
        50% {
            top: calc(100% - 20px);
            opacity: 0.7;
        }
    }
}
