/* Homepage — doplňuje host-panel styl, nemění layout */

.host-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.07), rgba(15, 23, 42, 0.5));
}

.host-intro__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

.host-intro__text strong {
  color: #e2e8f0;
  font-weight: 700;
}

.host-svc-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .host-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.host-svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.55);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.host-svc-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 2px;
  border-radius: 1px;
  background: #f97316;
  opacity: 0.7;
}

.host-svc-tile:hover {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(30, 41, 59, 0.65);
  transform: translateY(-1px);
}

.host-svc-tile--game::before { background: #34d399; }
.host-svc-tile--game:hover { border-color: rgba(52, 211, 153, 0.35); }

.host-svc-tile--web::before { background: #38bdf8; }
.host-svc-tile--web:hover { border-color: rgba(56, 189, 248, 0.35); }

.host-svc-tile--vps::before { background: #a78bfa; }
.host-svc-tile--vps:hover { border-color: rgba(167, 139, 250, 0.35); }

.host-svc-tile--domain::before { background: #fbbf24; }
.host-svc-tile--domain:hover { border-color: rgba(251, 191, 36, 0.35); }

.host-svc-tile--dedi::before { background: #f97316; }

.host-svc-tile__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.host-svc-tile__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
}

.host-svc-tile__name {
  font-size: 0.875rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.25;
}

.host-svc-tile__desc {
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #64748b;
}

.host-svc-tile__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.host-svc-tile__price {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fb923c;
}

.host-svc-tile__meta {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
}

.host-svc-tile__arrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  transition: color 0.15s, transform 0.15s;
}

.host-svc-tile:hover .host-svc-tile__arrow {
  color: #fb923c;
  transform: translateX(2px);
}

.host-svc-tile--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .host-svc-tile--wide {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .host-svc-tile--wide .host-svc-tile__head {
    flex: 1;
  }

  .host-svc-tile--wide .host-svc-tile__foot {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
  }
}

.host-qo-highlight {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(249, 115, 22, 0.06);
  text-align: center;
}

.host-infra-meta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.6875rem;
  color: #64748b;
}

.host-infra-meta strong {
  color: #e2e8f0;
}
