﻿/* Features Section */
.features {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(301px, 1fr));
    gap: 30px;
    /*margin-top: 50px;*/
}

.feature-card {
    background: #FFFFFF26;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #43BAFF;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .feature-card h4 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.6;
    }

    .feature-card p {
        line-height: 1.6;
    }

/* Process Section */
.process {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    background: #142125;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(25, 39, 43, 0.12);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid #43BAFF;
}

    .step:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(25, 39, 43, 0.18);
    }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #43BAFF 0%, #25a8f0 100%);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(67, 186, 255, 0.3);
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
/*    font-size: 1.5rem;*/
    line-height: 1.6;
}

/* Tech Stack Section */
 .tech-stack {
    background: #fff;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(301px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-category {
    background: #FFFFFF26;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #43BAFF;
}
    .tech-category h4 {
        font-size: 2rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .tech-category p {
        line-height: 1.6;
    }

/* Why Choose Us Section */

.why-choose {
    max-width: 1200px;
    margin: 0 auto;
}

    .why-choose h2 {
        text-align: center;
        font-size: 3rem;
        color: #E1F2F2;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        padding-bottom: 20px;
    }

        .why-choose h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #43BAFF, #2a9dd8);
            border-radius: 2px;
        }

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 186, 255, 0.2);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .benefit-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 186, 255, 0.1) 0%, rgba(67, 186, 255, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .benefit-item:hover {
        transform: translateY(-8px);
        border-color: #43BAFF;
        box-shadow: 0 20px 40px rgba(67, 186, 255, 0.2);
    }

        .benefit-item:hover::before {
            opacity: 1;
        }

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #43BAFF, #2a9dd8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #19272B;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(67, 186, 255, 0.3);
    transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

    .benefit-content h5 {
        font-size: 1.4rem;
        color: #43BAFF;
        margin-bottom: 12px;
        font-weight: 600;
        transition: color 0.3s ease;
    }

.benefit-item:hover .benefit-content h5 {
    color: #E1F2F2;
}

.benefit-content p {
    color: #E1F2F2;
    line-height: 1.6;
    /*font-size: 1rem;*/
    opacity: 0.9;
}

@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 2.2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 25px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .benefit-content h5 {
        font-size: 1.5rem;
    }

    .benefit-content p {
        font-size: 1.5rem;
    }
    .process {
        padding: 60px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        padding: 30px 20px;
        text-align: center;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .step h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .step p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .why-choose h2 {
        font-size: 1.8rem;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .process {
        padding: 50px 15px;
    }

    .step {
        padding: 25px 18px;
        border-radius: 8px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .step h4 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 1.5rem;
    }
}
