.about-elcom {
    padding: 80px 20px;
    background: radial-gradient(circle at top left, rgba(110, 185, 43, 0.10), transparent 30%), linear-gradient(180deg, #f8faf8 0%, var(--white-white) 100%);
    color: #1f2937;
}
.about-elcom__hero {
    max-width: 860px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-elcom__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 800;
}

.about-elcom__subtitle {
    margin: 40px 0;
    font-size: 18px;
    line-height: 1.7;
}

.about-elcom__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.about-elcom__card {
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: var(--white-white);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.about-elcom__card h2,
.about-elcom__section h2,
.about-elcom__footer h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.3;
}

.about-elcom__card p,
.about-elcom__section p,
.about-elcom__footer p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.75;
}

.about-elcom__card p:last-child,
.about-elcom__section p:last-child,
.about-elcom__footer p:last-child {
    margin-bottom: 0;
}

.about-elcom__list {
    margin: 0;
    padding-left: 20px;
}

.about-elcom__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-elcom__list li:last-child {
    margin-bottom: 0;
}

.about-elcom__section {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 32px;
}

.about-elcom__content,
.about-elcom__quote,
.about-elcom__section--accent,
.about-elcom__footer {
    padding: 32px;
    border-radius: 8px;
    background: var(--white-white);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
    border: 1px solid #e5e7eb;
}

.about-elcom__quote {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6eb92b 0%, #4d8c1f 100%);
    border: none;
}

.about-elcom__quote p {
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--white-white);
}

.about-elcom__section--accent {
    margin-bottom: 32px;
    background: linear-gradient(180deg, #f7fbf3 0%, #ffffff 100%);
}

.about-elcom__footer {
    text-align: center;
}

.about-elcom__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 28px;
    border-radius: 8px;
    background: var(--green-accent);
    color: var(--white-white);
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s ease;
}

.about-elcom__button:hover {
    background: #5aa021;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .about-elcom__grid,
    .about-elcom__section {
        grid-template-columns: 1fr;
    }

    .about-elcom__quote p {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .about-elcom {
        padding: 56px 16px;
    }

    .about-elcom__card,
    .about-elcom__content,
    .about-elcom__quote,
    .about-elcom__section--accent,
    .about-elcom__footer {
        padding: 22px;
        border-radius: 20px;
    }

    .about-elcom__subtitle {
        font-size: 16px;
    }
}