/* О компании — страница и карта */
.about-hero {
    background:
        radial-gradient(ellipse 120% 100% at 50% -20%, var(--green-100) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 90% 50%, var(--green-50) 0%, transparent 45%),
        var(--bg);
    padding: 3rem 1.5rem 3.5rem;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.about-hero p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 800px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.5rem 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 700;
}

.about-contacts {
    background: var(--green-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: fit-content;
}

[data-theme="dark"] .about-contacts {
    background: var(--green-25);
}

.about-contacts h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-600);
    margin-bottom: 0.75rem;
}

.about-contacts p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.about-contacts p:last-child {
    margin-bottom: 0;
}

.about-map-section h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-height: 400px;
    background: var(--green-50);
    position: relative;
}

.about-map-wrap iframe,
.about-map-wrap ymaps {
    display: block;
    width: 100%;
    min-height: 400px;
}

@media (min-width: 768px) {
    .about-map-wrap {
        min-height: 720px;
    }
    .about-map-wrap iframe,
    .about-map-wrap ymaps {
        min-height: 720px;
    }
}
