/* AI Innovation Page Specific Styles */

/* AI Hero Section */
.ai-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.2) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.ai-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease;
}

.ai-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: fadeInUp 1.2s ease;
}

.ai-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    animation: fadeInUp 1.4s ease;
}

.ai-stats-mini {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.ai-stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ai-stat-mini strong {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ai-stat-mini span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AI Flagship Projects Section */
.ai-flagship-projects {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--white) 100%);
}

.ai-project-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.ai-project-card[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

.ai-project-card:hover {
    box-shadow: 0 12px 48px rgba(200, 16, 46, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.ai-project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.ai-project-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(200, 16, 46, 0.2));
}

.ai-project-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-project-card h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ai-project-tagline {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.6;
}

.ai-project-content {
    margin-bottom: 40px;
}

.ai-intro {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.ai-project-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 32px 0 20px 0;
}

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

.ai-features-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ai-features-list li:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.ai-features-list li strong {
    display: block;
    font-size: 1.0625rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.ai-features-list li p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.ai-impact-box {
    background: linear-gradient(135deg, #fef5f6 0%, #fff0f2 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.ai-impact-box h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.impact-metric {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-size: 1rem;
}

.metric-detail {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

.ai-positioning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.8;
    border-left: 4px solid var(--primary-color);
}

.ai-positioning strong {
    color: var(--primary-color);
}

.ai-project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.btn-ai-demo {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-ai-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 1rem;
}

/* AI Advantage Section */
.ai-advantage {
    padding: 100px 0;
    background: var(--white);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.advantage-card {
    background: var(--bg-lighter);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.12);
    transform: translateY(-4px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 1.375rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Navigation Highlight */
.nav-highlight {
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(160, 13, 37, 0.1)) !important;
    color: var(--primary-color) !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-hero {
        padding: 80px 0 60px;
    }

    .ai-stats-mini {
        gap: 32px;
    }

    .ai-project-card {
        padding: 32px 24px;
    }

    .ai-project-icon {
        font-size: 3rem;
    }

    .ai-features-list li {
        flex-direction: column;
        gap: 12px;
    }

    .impact-metrics {
        grid-template-columns: 1fr;
    }

    .ai-project-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-ai-demo {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ai-hero h1 {
        font-size: 2rem;
    }

    .ai-subtitle {
        font-size: 1.25rem;
    }

    .ai-project-card h3 {
        font-size: 1.5rem;
    }
}
