/**
 * AI HERO SECTION - CENTERED VERTICAL LAYOUT
 * Komplett unterschiedliche Anordnung zum normalen Hero
 */

/* ========================================
   BASE SECTION - CENTERED DESIGN
   ======================================== */
.ai-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #FFFFFF 0%,
        #F9FAFB 50%,
        #FFFFFF 100%
    );
    overflow: hidden;
}

/* Subtle Background Decoration */
.ai-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle at center,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* ========================================
   CENTERED LAYOUT
   ======================================== */
.ai-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ai-hero-text {
    max-width: 100%;
    margin-bottom: 60px;
}

/* ========================================
   BADGE
   ======================================== */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(99, 102, 241, 0.08) 100%
    );
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #7C3AED;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.ai-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ========================================
   TITLE & DESCRIPTION
   ======================================== */
.ai-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #111827;
}

.ai-hero-title .gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero-description {
    font-size: 19px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FEATURE GRID - HORIZONTAL CARDS
   ======================================== */
.ai-features-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ai-feature-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ai-feature-quick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(99, 102, 241, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.ai-feature-quick:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1) inset;
}

.ai-feature-quick:hover::before {
    opacity: 1;
}

.ai-feature-quick-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ai-feature-quick:hover .ai-feature-quick-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.ai-feature-quick-icon svg {
    width: 28px;
    height: 28px;
}

.ai-feature-quick > div:last-child {
    position: relative;
    z-index: 1;
}

.ai-feature-quick strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.ai-feature-quick p {
    font-size: 13px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ========================================
   TRUST BADGE - BELOW FEATURES
   ======================================== */
.ai-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.06) 0%, 
        rgba(147, 197, 253, 0.04) 100%
    );
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.ai-trust-badge svg {
    flex-shrink: 0;
    color: #3B82F6;
    width: 18px;
    height: 18px;
}

.ai-trust-badge strong {
    color: #111827;
    font-weight: 700;
}

/* ========================================
   SCREENSHOT VISUAL - FULL WIDTH CENTERED
   ======================================== */
.ai-hero-visual {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.ai-screenshot-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 40px 80px rgba(139, 92, 246, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.ai-screenshot-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 1px rgba(139, 92, 246, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 50px 100px rgba(139, 92, 246, 0.15);
}

.ai-screenshot-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot Badge - Below Image */
.ai-screenshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.06));
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #7C3AED;
    margin-top: 20px;
}

.ai-screenshot-badge svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .ai-features-quick {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    
    .ai-feature-quick {
        padding: 24px 16px;
    }
    
    .ai-feature-quick-icon {
        width: 56px;
        height: 56px;
    }
    
    .ai-feature-quick strong {
        font-size: 14px;
    }
    
    .ai-feature-quick p {
        font-size: 12px;
    }
}

/* iPad Landscape */
@media (max-width: 1024px) {
    .ai-hero {
        padding: 80px 0;
    }
    
    .ai-hero-title {
        font-size: 46px;
    }
    
    .ai-hero-description {
        font-size: 18px;
    }
    
    .ai-features-quick {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ai-hero-text {
        margin-bottom: 50px;
    }
}

/* iPad Portrait & Tablets */
@media (max-width: 768px) {
    .ai-hero {
        padding: 70px 0;
    }
    
    .ai-hero-title {
        font-size: 40px;
    }
    
    .ai-hero-description {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .ai-features-quick {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .ai-feature-quick {
        padding: 20px 14px;
    }
    
    .ai-trust-badge {
        margin-bottom: 50px;
        padding: 14px 20px;
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ai-hero {
        padding: 60px 0;
    }
    
    .ai-badge {
        padding: 6px 14px;
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .ai-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .ai-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .ai-hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .ai-hero-text {
        margin-bottom: 40px;
    }
    
    /* 1 Spalte auf Mobile */
    .ai-features-quick {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .ai-feature-quick {
        padding: 20px;
    }
    
    .ai-feature-quick-icon {
        width: 52px;
        height: 52px;
    }
    
    .ai-feature-quick-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .ai-feature-quick strong {
        font-size: 15px;
    }
    
    .ai-feature-quick p {
        font-size: 13px;
    }
    
    .ai-trust-badge {
        margin-bottom: 40px;
        padding: 12px 18px;
        font-size: 12px;
        text-align: center;
    }
    
    .ai-screenshot-container {
        border-radius: 16px;
    }
    
    .ai-screenshot-badge {
        margin-top: 16px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .ai-hero-title {
        font-size: 28px;
    }
    
    .ai-hero-description {
        font-size: 15px;
    }
    
    .ai-feature-quick strong {
        font-size: 14px;
    }
    
    .ai-feature-quick p {
        font-size: 12px;
    }
}
