/* ============================================
   АСКУЭ Онлайн — Страница технического обслуживания
   maintenance.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1a2d4a;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Шапка ===== */
.header {
  display: flex;
  align-items: center;
  padding: 22px 60px;
  background: #233d4f;
}

.header__logo img {
  height: 28px;
  display: block;
}

/* ===== Основной контент ===== */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 80px;
}

/* ===== Изображение ===== */
.image-wrap {
  flex: 0 0 340px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 12px 40px rgba(26, 45, 74, 0.12));
}

/* ===== Текстовый блок ===== */
.content {
  flex: 1;
  max-width: 500px;
}

.content__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a9ee4;
  background: rgba(58, 158, 228, 0.10);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.content__title {
  font-size: 38px;
  font-weight: 700;
  color: #1a2d4a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.content__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #3a9ee4, #1db4c8);
  border-radius: 2px;
  margin-bottom: 20px;
}

.content__text {
  font-size: 15px;
  font-weight: 400;
  color: #6b84a0;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ===== Кнопка ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #3a9ee4;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 18px rgba(58, 158, 228, 0.32);
}

.btn:hover {
  background: #2176bc;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58, 158, 228, 0.40);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(58, 158, 228, 0.25);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ===== Футер ===== */
.footer {
  padding: 18px 60px;
  border-top: 1px solid #e2eaf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6b84a0;
}

.footer a {
  color: #6b84a0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover { color: #3a9ee4; }

.footer__links {
  display: flex;
  gap: 24px;
}

/* ===== Адаптив ===== */
@media (max-width: 860px) {
  .header { padding: 18px 24px; }

  .main {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
    text-align: center;
  }

  .image-wrap {
    flex: none;
    max-width: 240px;
  }

  .content { max-width: 100%; }

  .content__title { font-size: 28px; }

  .content__divider { margin-left: auto; margin-right: auto; }

  .footer {
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
