/* Technologies Section */
.technologies {
    padding: 5rem 0;
    background: white;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .technologies-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .technologies-container {
        padding: 0 2rem;
    }
}

.technologies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.technologies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .technologies-title {
        font-size: 3rem;
    }
}

.technologies-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.technologies-process {
    margin-bottom: 5rem;
}

.process-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .process-title {
        font-size: 2.5rem;
    }
}

.process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .process-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #0d58c6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: #0d58c6;
}

.step-circle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.step-content {
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .step-title {
        font-size: 1.25rem;
    }
}

.step-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-details {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    margin-top: 1rem;
}

.process-step:hover .step-details {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.details-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.details-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
}

.details-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.details-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d58c6;
}

.details-icon svg {
    width: 1rem;
    height: 1rem;
}

.details-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.detail-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.detail-deliverables {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.75rem;
    color: #6b7280;
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
}

@media (min-width: 768px) {
    .process-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item:nth-child(1) .stat-number {
    color: #0d58c6;
}

.stat-item:nth-child(2) .stat-number {
    color: #0d58c6;
}

.stat-item:nth-child(3) .stat-number {
    color: #0d58c6;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.technology-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .technology-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-ai {
    background: #0d58c6;
}

.feature-icon-quality {
    background: #0d58c6;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-card:nth-child(1) .feature-dot {
    background: #0d58c6;
}

.feature-card:nth-child(2) .feature-dot {
    background: #0d58c6;
}

.feature-list-item span {
    color: #6b7280;
    line-height: 1.6;
}

.integration-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .integration-section {
        padding: 4rem 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
        align-items: center;
    }
}

.integration-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .integration-title {
        font-size: 2.25rem;
    }
}

.integration-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cad-systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.cad-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cad-system svg {
    width: 2rem;
    height: 2rem;
    color: #6b7280;
}

.cad-system span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.integration-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.integration-img {
    width: 100%;
    height: auto;
    display: block;
}

.integration-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .technologies {
        padding: 3rem 0;
    }
    
    .technologies-title {
        font-size: 2rem;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .step-details {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .details-card::before {
        display: none;
    }
} 
