/* ========================================
   MTC AI Homepage Styles
   Theme: Modern, Tech-forward, Professional
   ======================================== */

/* === Global Styles === */
.ai-home-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    font-size: 26px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a2332;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 2.5rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #1a2332;
    color: #fff;
}

.btn-primary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.3);
}

.btn-primary-large {
    background: #FDB813;
    color: #1a2332;
    padding: 20px 50px;
    font-size: 2.4rem;
}

.btn-primary-large:hover {
    background: #ffc933;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 184, 19, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 20px 50px;
    font-size: 2.4rem;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a2332;
    border: 2px solid #1a2332;
}

.btn-outline:hover {
    background: #1a2332;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.25);
}

.btn-cta-large {
    background: linear-gradient(135deg, #FDB813 0%, #ff9800 100%);
    color: #1a2332;
    padding: 22px 60px;
    font-size: 2.2rem;
    border-radius: 8px;
}

.btn-cta-large:hover {
    background: linear-gradient(135deg, #ffc933 0%, #ffa726 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 184, 19, 0.5);
}

/* === S1: Hero Section === */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.9) 50%, rgba(52, 73, 94, 0.85) 100%),
                url('/wp-content/uploads/2026/02/mtc-hero-home.jpg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(253, 184, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #FDB813;
}

.hero-subtitle {
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-trust {
    text-align: center;
}

.trust-text {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.client-logos {
    display: flex;
    justify-content: center;
}

.logo-slider {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.client-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 26px;
    border-radius: 20px;
    font-size: 2.4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === S2: Pain Points === */
.pain-points-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pain-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pain-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.pain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pain-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.pain-card p {
    color: #666;
    line-height: 1.7;
    font-size: 2rem;
}

/* === S3: Two Pillars === */
.two-pillars-section {
    padding: 100px 0;
    background: #fff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.pillar-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pillar-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.pillar-header {
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%),
                url('/wp-content/uploads/2026/02/mtc-pillar-sap.jpg') center/cover no-repeat;
}

.pillar-intelligence .pillar-header {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%),
                url('/wp-content/uploads/2026/02/mtc-pillar-ai.jpg') center/cover no-repeat;
    color: #fff;
}

.pillar-header h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.pillar-label {
    display: inline-block;
    background: #FDB813;
    color: #1a2332;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 2.4rem;
    font-weight: 600;
}

.pillar-content {
    padding: 30px;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pillar-features li {
    padding: 12px 0;
    font-size: 2.1rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.pillar-features li:last-child {
    border-bottom: none;
}

/* === S4: How It Works === */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    position: relative;
}

.timeline-item {
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FDB813 0%, #ff9800 100%);
    color: #1a2332;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.timeline-content h3 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.timeline-duration {
    color: #FDB813;
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    font-size: 2rem;
}

/* === S5: Why MTC === */
.why-mtc-section {
    padding: 100px 0;
    background: #1a2332;
    color: #fff;
}

.why-mtc-section .section-title {
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    color: #FDB813;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 2rem;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.8rem;
    font-weight: 700;
    color: #FDB813;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 2.4rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === S5.5: Customer Testimonials === */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.quote-icon {
    font-size: 4rem;
    color: #FDB813;
    line-height: 1;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 2.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

.author-name {
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.25rem;
    font-size: 2rem;
}

.author-title {
    font-size: 2.4rem;
    color: #999;
    margin: 0;
}

/* === S6: AI Use Cases === */
.ai-use-cases-section {
    padding: 100px 0;
    background: #fff;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.use-case-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    border-left: 4px solid #FDB813;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.use-case-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.use-case-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
}

.use-case-card h4 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.use-case-card p {
    color: #666;
    font-size: 2rem;
    line-height: 1.7;
}

/* === S7: Case Study === */
.case-study-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.case-study-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 3rem;
    align-items: center;
}

.case-badge {
    display: inline-block;
    background: #FDB813;
    color: #1a2332;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.case-intro {
    font-size: 2.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.case-highlights li {
    padding: 10px 0;
    font-size: 2.1rem;
    color: #333;
}

.case-study-image {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.case-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: #999;
    font-size: 2.2rem;
    text-align: center;
    padding: 40px;
}

/* === S8: AI Assessment CTA === */
.ai-assessment-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #fff;
}

.assessment-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.assessment-box h2 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.assessment-intro {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.assessment-benefits {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 2.4rem;
}

.benefit-icon {
    color: #FDB813;
    font-size: 2.4rem;
    font-weight: 700;
}

.assessment-guarantee {
    font-size: 2.4rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* === S9: Blog Preview === */
.blog-preview-section {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: #FDB813;
    color: #1a2332;
    padding: 6px 18px;
    border-radius: 12px;
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-link {
    color: #1a2332;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #FDB813;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .case-study-featured {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 20px;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
