/* =====================================================
   KFP-SPEZIFISCHE MODERNE ANPASSUNGEN
   Überschreibungen für Klassenfixplaner 2.0
   ===================================================== */

/* Hero Section - KFP Farbschema mit besserem Kontrast */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #faf5ff 50%, #f3e8ff 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem !important;
}

/* Hero Geometric Shapes - Dezenter */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.015) 0%, transparent 70%);
    transform: rotate(-45deg);
    animation: float 25s ease-in-out infinite reverse;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
    50% { transform: translateY(-30px) rotate(50deg) scale(1.1); }
}

/* KFP Primary Color - Sanftes, modernes Lila */
:root {
    --kfp-primary: #8b5cf6;
    --kfp-primary-dark: #7c3aed;
    --kfp-primary-light: #a78bfa;
    --kfp-primary-lighter: #c4b5fd;
    --kfp-primary-lightest: #e9d5ff;
}

/* Trust Badge mit KFP-Farben und besserem Kontrast */
.trust-badge.glass-effect {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.trust-badge i {
    color: var(--kfp-primary) !important;
}

/* Hero Buttons - Modern Style */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 1.125rem 2.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
}

.hero .btn-primary {
    background: white !important;
    color: var(--kfp-primary) !important;
    border: 2px solid var(--kfp-primary) !important;
    font-weight: 700 !important;
}

.hero .btn-primary:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    border-color: var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15) !important;
}

.hero .btn-secondary {
    background: white !important;
    color: var(--kfp-primary) !important;
    border: 2px solid var(--kfp-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.hero .btn-secondary:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    color: var(--kfp-primary) !important;
    border-color: var(--kfp-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15) !important;
}

/* Button Ripple Effect */
.hero .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(105, 90, 218, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.hero .btn:hover::before {
    width: 200px;
    height: 200px;
}

.hero .btn-primary::before {
    background: rgba(255, 255, 255, 0.15);
}

/* Price Tag im Button */
.intro-price-tag {
    display: inline-block;
    background: var(--kfp-primary-lightest);
    color: var(--kfp-primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
    border: 1px solid var(--kfp-primary-lighter);
}

/* Hero Stats - Modern Cards */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 3rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-stats .stat {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(139, 92, 246, 0.08) !important;
    padding: 1.75rem 2rem !important;
    border-radius: 24px !important;
    text-align: center;
    min-width: 160px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hero-stats .stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15) !important;
    border-color: var(--kfp-primary-lighter) !important;
    background: white !important;
}

.hero-stats .stat-icon {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.75rem !important;
    transition: all 0.3s ease;
}

.hero-stats .stat-icon i {
    color: var(--kfp-primary) !important;
    font-size: 1.5rem !important;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-stats .stat:hover .stat-icon i {
    color: var(--kfp-primary-dark) !important;
    opacity: 1;
    transform: scale(1.1);
}

.hero-stats .stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: var(--kfp-primary) !important;
    display: block !important;
    line-height: 1.1 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em;
}

.hero-stats .stat-label {
    color: #64748b !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    line-height: 1.4;
    background: none !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline-block !important;
}

/* Spezielle Anpassung für kleinere Zahlen */
.hero-stats .stat-number {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Title & Text mit besserem Kontrast */
.hero-title {
    color: #1e293b !important;
	font-size: 42pt !important;
}

.hero-subtitle {
    color: #475569 !important;
    line-height: 1.7 !important;
}

/* KFP Feature Icons - Minimalistisch */
.ki-icon,
.feature-icon {
    background: var(--kfp-primary-lightest) !important;
    box-shadow: none !important;
    border: 2px solid var(--kfp-primary-lighter) !important;
}

.ki-icon i,
.feature-icon i {
    color: var(--kfp-primary) !important;
}

/* Feature Cards - Dezent ohne Schatten und Neigung */
.feature-card {
    background: white !important;
    border: 1px solid rgba(139, 92, 246, 0.15) !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.feature-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--kfp-primary) !important;
    background: rgba(139, 92, 246, 0.02) !important;
}

/* Stats Icons in Hero */
.stat-icon {
    color: var(--kfp-primary) !important;
}

/* Section Badges mit KFP-Farben */
.section-badge {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe) !important;
    color: var(--kfp-primary) !important;
    border: 1px solid var(--kfp-primary-lighter) !important;
}

/* Buttons mit KFP-Farben - Clean white design */
.btn-primary {
    background: white !important;
    border: 2px solid var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
}

.btn-primary:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    border-color: var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
}

/* KFP Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--kfp-primary) 0%, var(--kfp-primary-light) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Process Steps - Minimalistisches Design */
.ai-process-flow {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 3rem !important;
    margin: 3rem 0 !important;
    padding: 0 2rem !important;
}

.process-step {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(139, 92, 246, 0.08) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.process-step:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.08) !important;
    border-color: var(--kfp-primary-lighter) !important;
    background: white !important;
}

.process-step::before {
    display: none !important;
}

.step-icon {
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: 2px solid var(--kfp-primary-lighter) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.25rem !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.step-icon i {
    color: var(--kfp-primary) !important;
    font-size: 1.25rem !important;
    transition: all 0.3s ease !important;
}

.process-step:hover .step-icon {
    background: var(--kfp-primary-lightest) !important;
    border-color: var(--kfp-primary) !important;
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.step-arrow {
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: 2px solid var(--kfp-primary-lighter) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.step-arrow i {
    color: var(--kfp-primary) !important;
    font-size: 1rem !important;
}

.process-step:hover .step-arrow {
    background: var(--kfp-primary-lightest) !important;
    border-color: var(--kfp-primary) !important;
}

.process-step:last-child .step-arrow {
    display: none !important;
}

/* AI Process Stats */
.stat-value {
    color: var(--kfp-primary) !important;
}

/* Process Stats Section - Minimalistisches Design */
.process-stats .stat-icon {
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: 2px solid var(--kfp-primary-lighter) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.process-stats .stat-icon i {
    color: var(--kfp-primary) !important;
    font-size: 1.25rem !important;
    transition: all 0.3s ease;
}

.process-stats .stat-item:hover .stat-icon {
    border-color: var(--kfp-primary) !important;
    background: var(--kfp-primary-lightest) !important;
}

.process-stats .stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--kfp-primary) !important;
    margin-bottom: 0.5rem !important;
}

.process-stats .stat-ai-label,
.stat-ai-label {
    color: #64748b !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
}

/* Alle stat-item Elemente - Minimalistisch */
.stat-item .stat-icon {
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: 2px solid var(--kfp-primary-lighter) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.stat-item .stat-icon i {
    color: var(--kfp-primary) !important;
    font-size: 1.25rem !important;
}

/* KI Benefit Cards Hover-Effekt */
.ki-benefit-card::before {
    background: linear-gradient(90deg, var(--kfp-primary), var(--kfp-primary-light)) !important;
}

/* Screenshot Cards mit softem Schatten */
.screenshot-item {
    box-shadow: 0 4px 20px rgba(105, 90, 218, 0.08) !important;
}

.screenshot-item:hover {
    box-shadow: 0 12px 40px rgba(105, 90, 218, 0.15) !important;
}

/* Pricing Card Featured */
.pricing-card-pro {
    border-color: var(--kfp-primary) !important;
    box-shadow: 0 10px 40px rgba(105, 90, 218, 0.15) !important;
}

.pricing-card-pro::before {
    display: none !important; /* Entferne die obere Linie */
}

/* Pro Badge */
.pro-badge {
    background: linear-gradient(135deg, var(--kfp-primary), var(--kfp-primary-light)) !important;
    box-shadow: 0 2px 8px rgba(105, 90, 218, 0.3) !important;
}

/* Pricing Badges - Runder machen */
.pricing-badge {
    border-radius: 50px !important; /* Vollständig rund */
    padding: 8px 20px !important;
    font-size: 0.875rem !important;
}

.intro-price-badge {
    border-radius: 50px !important; /* Vollständig rund */
    padding: 8px 20px !important;
}

/* Popular Badge (Bald verfügbar) - Auch rund machen */
.popular-badge {
    border-radius: 50px !important; /* Vollständig rund */
    padding: 6px 16px !important;
}

/* Testimonial Card Modernisierung */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(105, 90, 218, 0.12);
}

.testimonial-quote {
    color: var(--kfp-primary);
    opacity: 0.2;
    font-size: 4rem;
}

/* FAQ Cards Modernisierung */
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(105, 90, 218, 0.08);
    border-color: rgba(105, 90, 218, 0.1);
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Form Modernisierung */
.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Ripple Effekte mit KFP-Farben */
.btn:not(.no-ripple)::after {
    background: rgba(105, 90, 218, 0.1) !important;
}

/* Footer Modernisierung */
.footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
    color: #e2e8f0 !important;
    border-top: 1px solid rgba(139, 92, 246, 0.2) !important;
    padding: 4rem 0 2rem !important;
    margin-top: 5rem !important;
}

.footer h4 {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.125rem !important;
}

.footer p {
    color: #94a3b8 !important;
    line-height: 1.7 !important;
}

.footer a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer a:hover {
    color: var(--kfp-primary-light) !important;
    transform: translateX(4px) !important;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 1.5rem !important;
}

.footer-logo span {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
}

.footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
}

.footer-contact-item {
    color: #cbd5e1 !important;
    margin-bottom: 0.75rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.1) !important;
    padding-top: 2rem !important;
    margin-top: 3rem !important;
    text-align: center !important;
}

.footer-bottom p {
    color: #64748b !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
}

/* Alle Buttons modernisieren - Subtiler */
.btn {
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.75rem 1.75rem !important;
}

/* Überschreibung für allgemeine btn-primary - Clean white design */
body .btn-primary {
    background: white !important;
    border: 2px solid var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

body .btn-primary:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    border-color: var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15) !important;
}

.btn-secondary,
.btn-outline {
    background: white !important;
    color: var(--kfp-primary) !important;
    border: 2px solid var(--kfp-primary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    color: var(--kfp-primary) !important;
    border-color: var(--kfp-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15) !important;
}

/* CTA Section Buttons */
.cta-section .btn-primary {
    padding: 1.125rem 2.5rem !important;
    font-size: 1.125rem !important;
    color: var(--kfp-primary) !important;
    background: white !important;
    border: 2px solid var(--kfp-primary) !important;
}

.cta-section .btn-primary:hover {
    color: var(--kfp-primary) !important;
    background: rgba(139, 92, 246, 0.05) !important;
}

/* Pricing Buttons */
.pricing-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Modal Buttons */
.modal .btn {
    border-radius: 50px !important;
}

/* Form Buttons */
.form .btn {
    margin-top: 1rem;
}

/* Navigation CTA Button - Clean white design */
.nav-cta {
    background: white !important;
    color: var(--kfp-primary) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    border: 2px solid var(--kfp-primary) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.nav-cta:hover {
    background: rgba(139, 92, 246, 0.05) !important;
    border-color: var(--kfp-primary) !important;
    color: var(--kfp-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.15) !important;
}

/* CRITICAL: Hero Container Layout Fix - Bild rechts neben Text wie bei FXP */
body section.hero .hero-container,
.hero .hero-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
}

body section.hero .hero-content,
.hero .hero-content {
    max-width: 600px !important;
    margin-left: 0 !important;
    order: 1 !important;
    grid-column: 1 !important;
}

body section.hero .hero-visual,
.hero .hero-visual {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    order: 2 !important;
    grid-column: 2 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    backdrop-filter: none !important;
    width: 100% !important;
}

body section.hero .software-mockup,
.hero .software-mockup {
    width: 100% !important;
    max-width: none !important;
    position: relative !important;
    z-index: 2 !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    backdrop-filter: none !important;
}

body section.hero .mockup-image,
.hero .mockup-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: block !important;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    .hero-stats {
        justify-content: center !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-visual {
        order: -1 !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem !important;
    }
    
    .hero-container {
        padding: 0 1rem !important;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
    }
    
    .trust-badge.glass-effect {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1rem;
        padding: 0;
    }
    
    .hero-stats .stat {
        flex: 1;
        min-width: 100px;
        padding: 1.25rem 0.75rem !important;
    }
    
    .hero-stats .stat-icon {
        width: auto !important;
        height: auto !important;
    }
    
    .hero-stats .stat-icon i {
        font-size: 1.25rem !important;
    }
    
    .hero-stats .stat-number {
        font-size: 2.25rem !important;
        min-height: 2.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8125rem !important;
        background: none !important;
        text-shadow: none !important;
    }
}

/* Process Steps - Responsive */
@media (max-width: 768px) {
    .ai-process-flow {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .process-step {
        padding: 1.5rem !important;
    }
    
    .step-arrow {
        display: none !important;
    }
}

/* Screenshots Section - Moderne Überarbeitung */
.screenshots {
    background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%) !important;
    padding: 5rem 0 !important;
}

.screenshots .section-header {
    text-align: center !important;
    margin-bottom: 4rem !important;
}

.screenshots .section-badge {
    background: linear-gradient(135deg, var(--kfp-primary-lightest), #ffffff) !important;
    color: var(--kfp-primary) !important;
    border: 1px solid var(--kfp-primary-lighter) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

.screenshots .section-title {
    font-size: 2.75rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.screenshots .section-subtitle {
    font-size: 1.25rem !important;
    color: #64748b !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Screenshots Grid - Masonry/Pinterest Style */
.screenshots-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    padding: 0 1rem !important;
}

.screenshot-item {
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative !important;
}

.screenshot-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.12) !important;
    border-color: var(--kfp-primary-lighter) !important;
}

.screenshot-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-bottom: none !important;
}

/* Screenshot Info - Modern Card Style */
.screenshot-overlay {
    padding: 1.5rem !important;
    background: white !important;
    position: relative !important;
}

.screenshot-overlay h4 {
    color: #1e293b !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.screenshot-overlay h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--kfp-primary);
    border-radius: 2px;
    display: inline-block;
}

.screenshot-overlay p {
    color: #64748b !important;
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Hover State - Subtle Glow Effect */
.screenshot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.screenshot-item:hover::before {
    opacity: 1;
}

/* Click Indicator */
.screenshot-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kfp-primary);
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screenshot-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Screenshot Responsive Design */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .screenshots .section-title {
        font-size: 2rem !important;
    }
    
    .screenshots .section-subtitle {
        font-size: 1.125rem !important;
    }
    
    .screenshot-item {
        border-radius: 16px !important;
    }
    
    .screenshot-overlay {
        padding: 1.25rem !important;
    }
}

/* Alternative Layout: Featured Screenshots */
.screenshot-item:nth-child(1) {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .screenshot-item:nth-child(1) {
        grid-column: span 1;
    }
}

/* FORCE GRID LAYOUT - Absolute override */
body .hero .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
}

body .hero .hero-container > * {
    position: relative !important;
}

body .hero .hero-container .hero-content {
    grid-column: 1 / 2 !important;
}

body .hero .hero-container .hero-visual {
    grid-column: 2 / 3 !important;
} 

/* Entferne Schatten von Pricing-Karten */
.pricing-card,
.pricing-card:hover,
.pricing-card-pro,
.pricing-card-pro:hover,
.test-card,
.test-card:hover,
.special-offer-card,
.upgrade-card {
    box-shadow: none !important;
}

/* Entferne auch den Schatten beim Hover */
.pricing-card:hover,
.pricing-card-pro:hover,
.test-card:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
} 