/* ===========================================
   ГЛАВНАЯ СЕКЦИЯ (HERO)
   =========================================== */

.hero {
    background-color: var(--color-bg-hero);
    padding: 4rem 0;
}

/* ===========================================
   КОНТЕНТ HERO СЕКЦИИ
   =========================================== */

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

/* ===========================================
   ЗАГОЛОВКИ И ТЕЛЕФОН
   =========================================== */

.hero__title {
    font-size: 18px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero__subtitle {
    --section-title-mb: 1.5rem;
}

a.hero__phone[href^="tel:"] {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-link);
    text-decoration: underline;
    margin-bottom: 5rem;
    transition: color 0.2s ease;
}

a.hero__phone[href^="tel:"]:hover {
    color: var(--color-link-hover);
}

/* ===========================================
   СЕТКА УСЛУГ
   =========================================== */

.hero__services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* ===========================================
   ОТДЕЛЬНАЯ УСЛУГА
   =========================================== */

.hero__service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 1rem;
    background-color: var(--color-bg-primary);
    width: 145px;
    min-height: 145px;
    padding: 1.2rem 1rem;
    border-radius: var(--border-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 auto;
}

.hero__service:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===========================================
   ИКОНКИ УСЛУГ
   =========================================== */

.hero__service-icon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.hero__service-icon:hover {
    transform: scale(1.05);
}

/* ===========================================
   ТЕКСТ УСЛУГ
   =========================================== */

.hero__service-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-link);
    line-height: 1.3;
}
