/* ===================== STORY SECTION ===================== */

.story-section {
    padding: 120px 80px;
    font-family: Montserrat, sans-serif;

    .story-wrapper {
        display: flex;
        gap: 60px;
        align-items: center;

        .story-image {
            flex: 1;

            img {
                width: 100%;
                height: 500px;
                object-fit: cover;
                border-radius: 12px;
            }
        }

        .story-text {
            flex: 1;

            .story-label {
                font-weight: 300;
                font-size: 0.95rem;
                color: rgba(0, 0, 0, 0.5);
                margin-bottom: 8px;
                letter-spacing: 0.5px;
            }

            h2 {
                font-weight: 500;
                font-size: 2.2rem;
                margin-bottom: 25px;
                line-height: 1.3;
            }

            p {
                font-family: Inter, sans-serif;
                font-weight: 300;
                font-size: 0.95rem;
                line-height: 1.8;
                color: rgba(0, 0, 0, 0.6);
                margin-bottom: 16px;
            }
        }
    }
}

/* ===================== VALUES SECTION ===================== */

.values-section {
    padding: 100px 80px;
    background: rgba(0, 0, 0, 0.02);
    font-family: Montserrat, sans-serif;

    .values-header {
        text-align: center;
        margin-bottom: 60px;

        p {
            font-weight: 300;
            color: rgba(0, 0, 0, 0.5);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        h2 {
            font-weight: 500;
            font-size: 2rem;
            text-transform: uppercase;
        }
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;

        .value-card {
            text-align: center;
            padding: 50px 35px;
            background: white;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .value-icon {
                width: 65px;
                height: 65px;
                background: rgba(0, 0, 0, 0.82);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto 25px;
                color: white;
                font-size: 1.4rem;
            }

            h3 {
                font-weight: 500;
                font-size: 1.15rem;
                margin-bottom: 12px;
                letter-spacing: 0.3px;
            }

            p {
                font-family: Inter, sans-serif;
                font-weight: 300;
                font-size: 0.9rem;
                line-height: 1.7;
                color: rgba(0, 0, 0, 0.55);
            }
        }
    }
}

/* ===================== TEAM SECTION ===================== */

.team-section {
    padding: 100px 80px;
    font-family: Montserrat, sans-serif;

    .team-header {
        text-align: center;
        margin-bottom: 60px;

        p {
            font-weight: 300;
            color: rgba(0, 0, 0, 0.5);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        h2 {
            font-weight: 500;
            font-size: 2rem;
            text-transform: uppercase;
        }
    }

    .team-grid {
        display: flex;
        justify-content: center;
        gap: 50px;

        .team-card {
            width: 300px;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .team-card-img {
                height: 350px;
                overflow: hidden;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.4s ease;
                }
            }

            &:hover .team-card-img img {
                transform: scale(1.03);
            }

            .team-card-info {
                padding: 30px;

                h3 {
                    font-weight: 500;
                    font-size: 1.2rem;
                    margin-bottom: 4px;
                    letter-spacing: 0.3px;
                }

                span {
                    font-family: Inter, sans-serif;
                    font-weight: 400;
                    font-size: 0.85rem;
                    color: rgba(0, 0, 0, 0.45);
                    letter-spacing: 0.3px;
                }

                p {
                    font-family: Inter, sans-serif;
                    font-weight: 300;
                    font-size: 0.9rem;
                    line-height: 1.7;
                    color: rgba(0, 0, 0, 0.55);
                    margin-top: 14px;
                }
            }
        }
    }
}

/* ===================== STATS SECTION ===================== */

.stats-section {
    padding: 80px;
    font-family: Montserrat, sans-serif;

    .stats-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;

        .stat-item {
            text-align: center;

            h2 {
                font-size: 3.5rem;
                font-weight: 500;
                letter-spacing: 1px;
                margin-bottom: 8px;
            }

            p {
                font-family: Inter, sans-serif;
                font-weight: 300;
                font-size: 0.95rem;
                color: rgba(0, 0, 0, 0.5);
                letter-spacing: 0.5px;
            }
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: rgba(0, 0, 0, 0.15);
        }
    }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
    .story-section {
        padding: 80px 40px;

        .story-wrapper {
            gap: 40px;

            .story-image img {
                height: 400px;
            }

            .story-text h2 {
                font-size: 1.8rem;
            }
        }
    }

    .values-section {
        padding: 80px 40px;

        .values-grid {
            gap: 25px;

            .value-card {
                padding: 40px 25px;
            }
        }
    }

    .team-section {
        padding: 80px 40px;

        .team-grid {
            gap: 30px;

            .team-card .team-card-img {
                height: 300px;
            }
        }
    }

    .stats-section {
        padding: 60px 40px;

        .stats-wrapper {
            gap: 50px;

            .stat-item h2 {
                font-size: 2.8rem;
            }
        }
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 20px;

        .story-wrapper {
            flex-direction: column;
            gap: 30px;

            .story-image img {
                height: 300px;
            }

            .story-text h2 {
                font-size: 1.6rem;
            }
        }
    }

    .values-section {
        padding: 60px 20px;

        .values-header {
            margin-bottom: 40px;

            h2 {
                font-size: 1.6rem;
            }
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 20px;

            .value-card {
                padding: 35px 25px;
            }
        }
    }

    .team-section {
        padding: 60px 20px;

        .team-grid {
            flex-direction: column;
            align-items: center;
            gap: 25px;

            .team-card {
                max-width: 100%;
                width: 100%;

                .team-card-img {
                    height: 280px;
                }
            }
        }
    }

    .stats-section {
        padding: 50px 20px;

        .stats-wrapper {
            flex-direction: column;
            gap: 35px;

            .stat-divider {
                width: 60px;
                height: 1px;
            }

            .stat-item h2 {
                font-size: 2.5rem;
            }
        }
    }
}

@media (max-width: 480px) {
    .story-section .story-wrapper .story-image img {
        height: 220px;
    }

    .stats-section .stats-wrapper .stat-item h2 {
        font-size: 2rem;
    }
}
