@import url("buttons.css");

.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/hero-about.jpg') no-repeat center center;
    background-size: cover;
}

.about-section {
    padding: 60px 0;
}

.about-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-description p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

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

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.about-advantages {
    margin: 60px 0;
    padding: 40px 0;
    background: #f9f9f9;
    border-radius: 8px;
}

.advantages-list {
    max-width: 700px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.advantage-icon {
    color: #d4af37;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-item span {
    color: #444;
    font-size: 1.05em;
}

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

.workflow-step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    background: #d4af37;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
}
.btn-tg {
    font-size: 3em;
    color: #0088CC;
}
.btn-wa {
    font-size: 3em;
    color: #2cb742;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .workflow-step {
        padding: 22px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.1em;
        margin-right: 18px;
    }

    .step-content h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 0;
    }

    .about-description {
        margin-bottom: 30px;
    }

    .about-description p {
        font-size: 1em;
    }

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

    .feature-card {
        padding: 25px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 115, 51, 0.1));
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .about-advantages {
        margin: 40px 0;
        padding: 25px 0;
    }

    .advantage-item {
        margin-bottom: 10px;
    }

    .advantage-item span {
        font-size: 0.95em;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-step {
        padding: 25px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .step-number {
        margin-right: 20px;
        margin-bottom: 0;
        width: 45px;
        height: 45px;
        font-size: 1.2em;
        flex-shrink: 0;
    }

    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .btn-tg, .btn-wa {
        font-size: 2em;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 0;
    }

    .about-description {
        padding: 0 15px;
    }

    .features-grid,
    .advantages-list,
    .workflow-steps {
        padding: 0 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }

    .advantage-item {
        align-items: flex-start;
    }

    .advantage-icon {
        margin-top: 2px;
    }

    .advantage-item span {
        font-size: 0.9em;
    }

    .workflow-step {
        padding: 20px;
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        margin-right: 15px;
    }

    .step-content h3 {
        font-size: 1.1em;
    }

    .step-content p {
        font-size: 0.9em;
    }

    .btn-tg, .btn-wa {
        font-size: 1.8em;
        margin: 0 5px;
    }

    .about-cta {
        margin-top: 30px;
    }
}

@media (max-width: 360px) {
    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .workflow-step {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        width: 38px;
        height: 38px;
        font-size: 1em;
    }

    .step-content {
        text-align: center;
    }

    .step-content h3 {
        font-size: 1em;
    }

    .step-content p {
        font-size: 0.85em;
    }

    .btn-tg, .btn-wa {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        margin: 10px auto 0;
    }
}

.feature-card,
.workflow-step,
.advantage-item {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card,
    .workflow-step {
        cursor: pointer;
    }

    .feature-card:active,
    .workflow-step:active {
        transform: scale(0.98);
    }
}