/* Development Page Styles - Enhanced Marketing Version */

/* Ensure section headers are properly centered */
.development-process .section-header-home,
.development-outcomes .section-header-home,
.development-models .section-header-home {
    text-align: center;
    margin: 0 auto 3rem auto;
    max-width: 800px;
}

.development-process .section-header-home .section-title,
.development-outcomes .section-header-home .section-title,
.development-models .section-header-home .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
}

.development-process .section-header-home .section-subtitle,
.development-outcomes .section-header-home .section-subtitle,
.development-models .section-header-home .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.development-hero {
    background: #ffffff;
}





/* Process Section Enhanced */
.development-process {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 1));
    padding: 3rem 0; /* Reduced from 4rem */
}

.process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(226,232,240,0.5);
    transition: all 0.3s ease;
}

.process-item:last-child {
    border-bottom: none;
}

.process-item:hover {
    background: rgba(248, 250, 252, 0.5);
    border-radius: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(225 29 72), rgb(190 18 60));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(225, 29, 72, 0.4);
}

.step-content {
    min-width: 0; /* Prevents content from overflowing */
}

.step-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(15, 23, 42);
    transition: color 0.3s ease;
}

.step-content p {
    margin: 0 0 1.25rem 0;
    color: rgb(71, 85, 105);
    line-height: 1.7;
    font-size: 1.125rem;
}

.step-deliverable {
    background: rgba(248, 250, 252, 0.8);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.deliverable-title {
    font-weight: 600;
    color: rgb(15, 23, 42);
    display: block;
    margin-bottom: 0.5rem;
}

.deliverable-list {
    color: rgb(71, 85, 105);
    line-height: 1.6;
}

.process-item:hover .step-content h3 {
    color: rgb(225 29 72);
}

.process-item:hover .step-deliverable {
    background: rgba(225, 29, 72, 0.05);
    border-color: rgba(225, 29, 72, 0.2);
    transform: translateX(5px);
}





/* Outcomes Section - Enhanced with 2x2 Grid */
.development-outcomes {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    padding: 3rem 0; /* Reduced from 5rem */
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force 2x2 layout */
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* Reduced from 2.5rem */
    max-width: 1200px; /* Reduced from 1400px for better proportion */
    margin: 0 auto;
}

.outcome-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(225 29 72), rgb(190 18 60));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.outcome-item:hover::before {
    transform: scaleX(1);
}

.outcome-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(225, 29, 72, 0.2);
}

.outcome-metric {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(59, 130, 246, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

.outcome-metric i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgb(225 29 72), rgb(59, 130, 246));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outcome-item:hover .outcome-metric {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.2), rgba(59, 130, 246, 0.1));
}

.outcome-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 1rem;
}

.outcome-item > p {
    color: rgb(71, 85, 105);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.outcome-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.outcome-feature {
    background: rgba(248, 250, 252, 0.8);
    color: rgb(51, 65, 85);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.outcome-item:hover .outcome-feature {
    background: rgba(255, 245, 247, 0.9);
    border-color: rgba(225, 29, 72, 0.2);
    color: rgb(225, 29, 72);
}



/* Models Section */
.development-models {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    padding: 3rem 0; /* Reduced from 4rem */
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.model {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.model.featured {
    border: 2px solid rgb(225 29 72);
    transform: scale(1.05);
}

.model:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.model.featured:hover {
    transform: translateY(-4px) scale(1.05);
}

.model-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(225 29 72);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(225, 29, 72, 0.3);
}

.model-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.model-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 0.75rem;
}



.model-timeline {
    color: rgb(71, 85, 105);
    font-weight: 600;
    font-size: 0.875rem;
}

.model > p {
    color: rgb(71, 85, 105);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.model-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgb(71, 85, 105);
}

.model-features i {
    color: rgb(34, 197, 94);
    font-size: 0.875rem;
}

/* Final CTA Section */
.development-cta-wrapper {
    background: linear-gradient(135deg, rgb(225 29 72), rgb(190 18 60));
    color: white;
}

.final-cta {
    text-align: center;
    padding: 2rem 1rem;
}

.final-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.final-cta .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.cta-button.main {
    background: white;
    color: rgb(225 29 72);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button.main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: white;
    color: rgb(225 29 72);
    transform: translateY(-2px);
}





/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* AI-Powered Development Section - Horizontal Layout */
.ai-development-section {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(248, 250, 252, 0.9) 100%);
    padding: 4rem 0; /* Reduced from 5rem */
    position: relative;
    overflow: hidden;
}

.ai-development-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(225, 29, 72, 0.02) 0%, transparent 40%),
        linear-gradient(-45deg, rgba(59, 130, 246, 0.02) 60%, transparent 100%);
}

/* Main AI Feature Highlight */
.ai-main-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-feature-content {
    padding: 2rem;
}

.ai-feature-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgb(225 29 72), rgb(59, 130, 246));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-feature-content p {
    font-size: 1.25rem;
    color: rgb(71, 85, 105);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.ai-capabilities-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: rgb(51, 65, 85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.ai-capabilities-list li:last-child {
    border-bottom: none;
}

.ai-capabilities-list i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(225 29 72), rgb(190 18 60));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ai-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.ai-visual-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.ai-visual-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px -8px rgba(225, 29, 72, 0.15);
}

.ai-visual-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgb(225 29 72), rgb(59, 130, 246));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-visual-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    /* Ensure section headers remain centered on mobile */
    .development-process .section-header-home,
    .development-outcomes .section-header-home,
    .development-models .section-header-home {
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem; /* Reduced from 3rem */
    }
    
    .development-process .section-header-home .section-title,
    .development-outcomes .section-header-home .section-title,
    .development-models .section-header-home .section-title {
        text-align: center;
        font-size: 1.875rem;
    }


    
    .outcomes-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        grid-template-rows: auto; /* Auto rows on mobile */
        gap: 1.5rem; /* Reduced gap on mobile */
        padding: 0 1rem;
    }
    

    
    .process-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .process-item:hover {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .step-deliverable {
        font-size: 0.875rem;
        padding: 0.875rem 1rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model.featured {
        transform: none;
    }
    
    .model.featured:hover {
        transform: translateY(-4px);
    }
    
    .final-cta .cta-title {
        font-size: 2rem;
    }
    
    .final-cta .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    
    .ai-main-feature {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .ai-feature-content h3 {
        font-size: 2rem;
    }
    
    .ai-feature-content p {
        font-size: 1.1rem;
    }
    
    .ai-visual-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .ai-development-section {
        padding: 3rem 0; /* Reduced from 4rem */
    }
    
    .development-process {
        padding: 2.5rem 0; /* Further reduced for mobile */
    }
    
    .development-outcomes {
        padding: 2.5rem 0; /* Further reduced for mobile */
    }
    
    .ai-visual-grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

@media (max-width: 480px) {

    

    

    

} 