﻿.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #002855 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: 50% 25%;
    background-blend-mode: darken;
}

    .page-header h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 20px;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

.features-section {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--background);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(1, 31, 63, 0.1);
        border-color: rgba(255, 107, 53, 0.3);
        background: white;
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 28px;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

    .feature-card li:before {
        content: '•';
        position: absolute;
        left: 8px;
        color: var(--secondary);
        font-weight: bold;
        font-size: 20px;
    }

.workflow-section {
    background-color: white;
}

.workflow-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

    .workflow-steps:before {
        content: '';
        position: absolute;
        left: 40px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--secondary), rgba(255, 107, 53, 0.3));
        z-index: 1;
    }

@media (max-width: 768px) {
    .workflow-steps:before {
        left: 20px;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 768px) {
    .step-number {
        margin-right: 20px;
    }
}

.step-content {
    background: var(--background);
    border-radius: 10px;
    padding: 20px;
    flex-grow: 1;
    border-left: 4px solid var(--secondary);
}

    .step-content h4 {
        color: var(--primary);
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-content p {
        color: var(--text);
        font-size: 15px;
        opacity: 0.8;
    }

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #002855 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .flow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .step-content h4 {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}
