body.hosting-page {
  background: #0c1018;
}

body.hosting-page .page-wrap {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 56px);
}

.hosting-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0c1018 url("../images/zemewhosting-hero.png") center / cover no-repeat;
}

.hosting-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(10, 14, 24, 0.78) 0%, rgba(12, 18, 32, 0.52) 42%, rgba(8, 12, 22, 0.84) 100%),
    radial-gradient(ellipse 85% 65% at 30% 20%, rgba(255, 220, 160, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
  pointer-events: none;
}

.hosting-main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
}

.hosting-wrap {
  width: min(34rem, 100%);
}

.hosting-card {
  text-align: center;
  padding: clamp(1.75rem, 5vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: 1rem;
  background: rgba(14, 18, 28, 0.44);
  border: 1px solid rgba(160, 200, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 8px 32px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(100, 160, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hosting-card h1 {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  color: #f2f6fb;
}

.hosting-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.92);
  margin-bottom: 0.5rem;
}

.hosting-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(210, 220, 232, 0.88);
  font-size: 1.05rem;
  font-weight: 900;
}

.hosting-wrap-actions {
  margin-top: 1.25rem;
  text-align: center;
}

.hosting-what-btn {
  font-family: inherit;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #f2f6fb;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(160, 200, 255, 0.28);
  background: rgba(18, 26, 42, 0.72);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hosting-what-btn:hover {
  background: rgba(28, 40, 62, 0.88);
  border-color: rgba(180, 210, 255, 0.45);
}

.hosting-what-btn:focus-visible {
  outline: 2px solid rgba(140, 190, 255, 0.85);
  outline-offset: 3px;
}

.hosting-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.hosting-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.hosting-modal {
  width: min(28rem, 100%);
  max-height: min(85vh, 32rem);
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border-radius: 1rem;
  background: rgba(16, 22, 36, 0.96);
  border: 1px solid rgba(160, 200, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  text-align: left;
  transform: translateY(8px);
  transition: transform 0.2s ease;
}

.hosting-modal-backdrop.is-open .hosting-modal {
  transform: translateY(0);
}

.hosting-modal h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: #f2f6fb;
}

.hosting-modal p {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.65;
  color: rgba(210, 220, 232, 0.92);
  margin: 0;
}

.hosting-modal-close {
  float: right;
  margin: -0.25rem 0 0.5rem 0.75rem;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(200, 215, 235, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
}

.hosting-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hosting-modal-close:focus-visible {
  outline: 2px solid rgba(140, 190, 255, 0.85);
  outline-offset: 2px;
}

body.hosting-page.modal-open {
  overflow: hidden;
}

body.hosting-page .footer {
  position: relative;
  z-index: 1;
  background: rgba(14, 22, 35, 0.92);
}
