﻿.desc {
    background: #121212; /* پس‌زمینه تیره */
    color: #e0e0e0; /* متن روشن */
    padding: 2rem;
    border-radius: 16px;
    line-height: 1.8;
    font-family: "peyda", sans-serif;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.desc p {
    color: #ffffff;
}

    /* تیترهای داخلی */
    .desc h4 {
        font-size: 1.4rem;
        color: #7343d3;
        margin: 2rem 0 1rem;
        position: relative;
    }

        .desc h4::before {
            content: "";
            position: absolute;
            bottom: -6px;
            right: 0;
            width: 50px;
            height: 3px;
            background: #7343d3;
            border-radius: 3px;
        }

        .desc h4::before {
            transition: width 0.3s ease;
        }

        .desc h4:hover::before {
            width: 80px;
        }

/* لیست مزایا */
.benefits-list {
    list-style: none;
    padding: 0;
}

    .benefits-list li {
        margin: 0.6rem 0;
        padding-left: 28px;
        position: relative;
    }

        .benefits-list li::before {
            content: "✔";
            color: #4caf50;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

/* ویژگی‌ها به صورت باکس */
.features-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1 1 200px;
    background: #1e1e1e;
    color:#fefefe;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-6px);
        background: #252525;
    }

    .feature-box i {
        font-size: 2rem;
        color: #7343d3;
        display: block;
        margin-bottom: 0.8rem;
    }

    .feature-box h5 {
        margin-bottom: 0.5rem;
        color: #ffffff;
    }

/* تایم‌لاین مراحل */
.steps-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.step {
    flex: 1 1 160px;
    background: #1e1e1e;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color:#ffffff
}

    .step:hover {
        background: #252525;
    }

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #7343d3;
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

/* باکس نقل قول */
.quote-box {
    background: #1e1e1e;
    padding: 1.5rem;
    border-right: 4px solid #7343d3;
    margin-top: 2rem;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

    .quote-box i {
        font-size: 1.5rem;
        color: #7343d3;
        position: absolute;
        font-family: "peyda";
        top: -10px;
        left: -10px;
        background: #121212;
        padding: 5px;
        border-radius: 50%;
    }
