.hosting-card,
.hosting-feature-panel img,
.hosting-final-cta,
[data-animate] {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.hosting-hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hosting-hero .hero-title {
  max-width: 48rem;
  margin: 0 auto;
}

.hosting-hero .hero-subtitle {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--text-soft);
}

.hosting-hero-pills {
 display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.hosting-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px; 
  padding: 1.2rem 2rem;
  box-shadow: var(--shadow-soft);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 150px;
  height: 150px;

  gap: 0.8rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.hosting-pill i {
  color: var(--accent-soft);
  font-size: 1.8rem;
}

.hosting-hero-panel {
  padding: 1.8rem 1.7rem 1.9rem;
}

.hosting-plan-grid .hosting-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 2rem 1.6rem 2.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hosting-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 12px 30px rgba(0,0,0,0.9);
}

.hosting-card .hosting-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent-soft);
  margin-bottom: .9rem;
}

.hosting-card .highlighted {
  color: #facc15;
}

.hosting-featured {
  border-color: rgba(250,204,21,0.8);
}

.hosting-price span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-soft);
}

.hosting-features li {
  color: var(--text-soft);
  display: flex;
  gap: .45rem;
  margin-bottom: .35rem;
}

.hosting-feature-band ul li i {
  color: var(--accent-soft);
}

.hosting-feature-panel img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hosting-final-cta {
  max-width: 52rem;
  padding: 2.3rem 1.9rem 2.1rem;
  margin: 0 auto;
  text-align: center;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px) translateZ(0);
  transition: opacity .6s ease, transform .6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

@media (max-width: 991.98px) {
  .hosting-hero {
    padding-top: 5.2rem;
  }
}
@media (max-width: 767.98px) {
  .hosting-hero-pills {
display: flex;
    flex-direction: column;
    gap: 1.4rem; 
    width: 100%;
    align-items: center;
  }
  .hosting-pill{
   width: 100%;       
    max-width: 100%;    
    height: auto;      
    padding: 1.2rem;    
    border-radius: 12px; 
    
    flex-direction: row; 
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 1rem;     
  }
  .hosting-pill i{
     font-size: 1.8rem;
  }
}