/* AISCI Homepage - Clean Design ohne Hexagone */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Falls der Titel anders heißt */
.home .ast-page-title,
.home .site-content h1:first-child {
    display: none !important;
}

/* Trennlinien zwischen Sections */
.section-divider {
    height: 1px;
    background: #d8d8d9;
    margin: 60px 40px;
}

/* Hero Section - FULL WIDTH */
.hero-section {
    background: linear-gradient(135deg, #1f3050 0%, #2a4870 100%);
    color: white;
    padding: 100px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.search-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.search-form button {
    padding: 15px 30px;
    background: #dcda1c;
    color: #1f3050;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #b8b617;
    transform: translateY(-2px);
}

/* Challenges Section - FULL WIDTH */
.challenges-section {
    padding: 80px 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1f3050;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.challenges-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.challenge-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 48, 80, 0.1);
    border-color: #dcda1c;
}

.challenge-card h3 {
    color: #1f3050;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.challenge-card p {
    color: #666;
    line-height: 1.6;
}

/* Navigator Integration */
.navigator-integration {
    background: linear-gradient(135deg, #dcda1c 0%, #b8b617 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    color: #1f3050;
}

.navigator-integration h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.navigator-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.navigator-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.navigator-feature {
    background: rgba(31, 48, 80, 0.1);
    padding: 25px;
    border-radius: 10px;
}

.navigator-feature h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.navigator-cta {
    display: inline-block;
    background: #1f3050;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.navigator-cta:hover {
    background: #2a4870;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Warum AISCI direkt nach Header */
.why-aisci-section {
    padding: 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -120px; /* Noch stärker nach oben */
    position: relative;
    z-index: 10;
}

.why-aisci-header {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(31, 48, 80, 0.3), rgba(31, 48, 80, 0.3)), #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 80px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.why-aisci-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
}

.why-aisci-content {
    padding: 0 0 80px 0;
}

.why-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.why-highlights {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #dcda1c;
}

.why-highlights h4 {
    color: #1f3050;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.why-highlights ul {
    list-style: none;
    padding: 0;
}

.why-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
}

.why-highlights li:before {
    content: "✓";
    color: #dcda1c;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.image-placeholder {
    background: #f0f0f0;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.download-btn {
    display: inline-block;
    background: #1f3050;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.download-btn:hover {
    background: #dcda1c;
    color: #1f3050;
}

/* Kundenstimmen Section - FULL WIDTH */
.testimonials-section {
    padding: 80px 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials-content h2 {
    color: #1f3050;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.testimonials-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.testimonial-preview {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 900px;
    border-left: 5px solid #dcda1c;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #1f3050;
    font-size: 1.1rem;
}

/* Erfolgs-Statistiken */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, #1f3050, #2a4870);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(31, 48, 80, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dcda1c;
    display: block;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.cta-button {
    background: #1f3050;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #dcda1c;
    color: #1f3050;
    transform: translateY(-2px);
}

/* News Section - FULL WIDTH */
.news-section {
    padding: 80px 0;
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.news-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.news-content h2 {
    color: #1f3050;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.news-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .navigator-features {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-divider {
        margin: 40px 20px;
    }
    
    .why-aisci-header h2 {
        font-size: 2.5rem;
    }
    
    .navigator-integration {
        padding: 30px 25px;
    }
    
    .testimonial-preview {
        padding: 25px;
    }
}