/* Страница «Контакты» */
.site-contact {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero-блок */
.contact-hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 70%, #6ee7b7 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    pointer-events: none;
}
.contact-title {
    font-weight: 700;
    color: #065f46;
    font-size: 1.75rem;
}
.contact-lead {
    font-size: 1.05rem;
    color: #047857;
    line-height: 1.65;
}
.contact-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: #0f766e;
    opacity: 0.9;
}
.contact-hero-icon svg {
    width: 100%;
    height: 100%;
}

/* Карточка с контактами */
.contact-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}
.contact-email {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f766e;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-email:hover {
    color: #0d5c55;
}

