* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: Arial, sans-serif;
}

/* HERO С ФОНОМ */
.hero {
 min-height: 100vh;
 padding: 40px 20px;

 /* ✅ Градиент + картинка (НЕ НУЖЕН overlay) */
 background:
 linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
 url("./photo.jpg");

 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;

 display: flex;
 align-items: center;
 justify-content: center;
}

/* Контент */
.content {
 width: 100%;
 max-width: 1100px;
 color: #fff;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
}

/* Заголовки */
.content h1 {
 font-size: 48px;
 line-height: 1.15;
 margin-bottom: 12px;
}

.subtitle {
 font-size: 22px;
 margin-bottom: 10px;
}

/* Услуги */
.services-block {
 margin: 20px 0 24px;
}

.content h2 {
 font-size: 22px;
 margin-bottom: 6px;
}

.content h3 {
 font-size: 18px;
 font-weight: normal;
 line-height: 1.4;
}

/* Кнопки */
.actions {
 margin-top: 18px;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 12px;
}

.btn {
 display: inline-block;
 width: 100%;
 max-width: 320px;
 padding: 14px;
 font-size: 18px;
 color: #fff;
 text-decoration: none;
 border-radius: 12px;
 background: linear-gradient(180deg, #ffb100, #ff6a00);
 box-shadow: 0 10px 25px rgba(0,0,0,0.3);
 transition: transform 0.2s, box-shadow 0.2s;
 text-align: center;
}

.btn:hover {
 transform: translateY(-2px);
 box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Кнопка позвонить */
.call-btn {
 background: linear-gradient(180deg, #00c853, #009624);
}

.under-link {
 margin-top: 6px;
 display: inline-block;
 color: #fff;
 text-decoration: underline;
 font-size: 16px;
}

/* 📱 Адаптация */
@media (max-width: 768px) {

 .hero {
 padding: 24px 16px;
 }

.content h1 {
 font-size: 24px;
 }

 .subtitle {
 font-size: 15px;
 }

.content h2 {
 font-size: 15px;
 }

.content h3 {
 font-size: 14px;
 }

.btn {
 font-size: 16px;
 max-width: 280px;
 }

.under-link {
 font-size: 14px;
 }
}

@media (max-width: 360px) {
.content h1 {
 font-size: 20px;
 }
}

.phone {
    margin-top: 14px;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}