/* HERO */
.hosting-hero {
  padding: 70px 0 40px;
  background: #04042c;
  color: #fff;
  text-align: center;
}
.hosting-hero h1 {
  margin-bottom: 8px;
  font-weight: 700;
  color:#ff7854;
}
.hosting-hero .lead {
  color: #ddd;
  margin-bottom: 16px;
}
.hero-ctas {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Subtitles */
.subtitle { color: #666; }

/* FEATURES */
.features-grid .feature-card {
  margin-bottom: 18px;
}
.features-grid .feature-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* PLANS */
.plan-grid .plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 18px 18px 22px;
  position: relative;
  margin-bottom: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.plan-card .plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.plan-card .plan-head h3 {
  margin: 0;
  font-weight: 700;
}
.plan-card .price .big {
  font-size: 2rem;
  font-weight: 800;
  color: #9243f9;
}
.plan-card .price .per {
  color: #666;
  margin-left: 2px;
}
.plan-card .plan-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.plan-card .plan-list li {
  margin: 6px 0;
  padding-left: 20px;
  position: relative;
}
.plan-card .plan-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #9243f9;
  font-weight: 700;
}
.plan-card .plan-ctas {
  margin-top: auto;
}
.plan-card .btn { width: 100%; }

.plan-card.featured {
  border: 2px solid #9243f9;
}
.plan-card .ribbon {
  position: absolute;
  top: -10px; right: -10px;
  background: #9243f9;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

/* FAQ */
.faq-grid h4 {
  font-weight: 700;
}
.faq-grid p {
  color: #555;
}

/* CTA */
.hosting-cta {
  padding: 60px 0;
  background: #f9f9f9;
}
