/* Product Page Styles */

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--neutral-color);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-pipeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-pipeline .pipeline-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInStep 0.8s ease-in-out forwards;
}

.process-pipeline .pipeline-step:nth-child(1) { animation-delay: 0.2s; }
.process-pipeline .pipeline-step:nth-child(3) { animation-delay: 0.6s; }
.process-pipeline .pipeline-step:nth-child(5) { animation-delay: 1.0s; }
.process-pipeline .pipeline-step:nth-child(7) { animation-delay: 1.4s; }
.process-pipeline .pipeline-step:nth-child(9) { animation-delay: 1.8s; }

.process-pipeline .step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 18px;
    transform: scale(0);
    animation: scaleIn 0.5s ease-out forwards;
}

.process-pipeline .pipeline-step:nth-child(1) .step-icon { animation-delay: 0.4s; }
.process-pipeline .pipeline-step:nth-child(3) .step-icon { animation-delay: 0.8s; }
.process-pipeline .pipeline-step:nth-child(5) .step-icon { animation-delay: 1.2s; }
.process-pipeline .pipeline-step:nth-child(7) .step-icon { animation-delay: 1.6s; }
.process-pipeline .pipeline-step:nth-child(9) .step-icon { animation-delay: 2.0s; }

.process-pipeline .pipeline-step h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-pipeline .pipeline-step p {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.4;
}

.process-pipeline .pipeline-arrow {
    font-size: 24px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    margin-top: 40px;
    opacity: 0;
    animation: slideInArrow 0.4s ease-in-out forwards;
}

.process-pipeline .pipeline-arrow:nth-child(2) { animation-delay: 0.7s; }
.process-pipeline .pipeline-arrow:nth-child(4) { animation-delay: 1.1s; }
.process-pipeline .pipeline-arrow:nth-child(6) { animation-delay: 1.5s; }
.process-pipeline .pipeline-arrow:nth-child(8) { animation-delay: 1.9s; }

/* Key Benefits Section */
.key-benefits {
    padding: var(--section-padding) 0;
}

.key-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 100%;
    height: auto;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--neutral-color);
    border-radius: 8px;
}

.use-cases h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.use-case-list {
    list-style: none;
    padding: 0;
}

.use-case-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--dark-text);
}

.use-case-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sample Outputs Section */
.sample-outputs {
    padding: var(--section-padding) 0;
    background-color: var(--neutral-color);
}

.sample-outputs h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.outputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.output-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.output-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.sample-data {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--dark-text);
}

.risk-score {
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 10px;
}

.risk-score.high {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.sample-data ul {
    margin: 0;
    padding-left: 20px;
}

.sample-data li {
    margin-bottom: 5px;
}

/* Industries Section */
.industries-served {
    padding: var(--section-padding) 0;
}

.industries-served h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
}

.industry-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.industry-card p {
    color: var(--dark-text);
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding) 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-pipeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-pipeline .pipeline-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .outputs-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Fix for header spacing */
body {
    padding-top: 80px; /* Add space for fixed header */
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--primary-color);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav .btn-outline {
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: 600;
}

.main-nav .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.product-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-hero .subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-overview {
    padding: var(--section-padding) 0;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.overview-content > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-text);
    line-height: 1.5;
}

.how-it-works {
    background-color: #f8f9fa;
    padding: var(--section-padding) 0;
}

.how-it-works h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step p {
    color: var(--dark-text);
    line-height: 1.5;
}

.cta-section {
    padding: var(--section-padding) 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Final Call to Action */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--light-text);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.final-cta .btn-primary {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    color: var(--primary-color);
}

.final-cta .btn-primary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-secondary {
    color: var(--light-text);
    border-color: var(--light-text);
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Footer styling to match main page */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 60px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
