/* === Base Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #eee;
  background: #111;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* === Hero Section === */
.hero {
  text-align: center;
  padding-top: 4rem;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #1a1a1a, #000);
  color: #fff;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: #ccc; }
.hero .cta {
  display: inline-block; background: #ff5722; color: #fff; text-align: centre;
  padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 600;
}
/* Call-to-action button */
.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff5722;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}
.cta:hover {
  background: #e64a19;
  text-decoration: none;
}
/* Center hero heading + subtext */
.hero-subtext,
.site-title,
.hero-text-block {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px; /* keeps it readable */
}

/* === Top Offers === */
.top-offers {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; padding: 2rem 1rem;
}
.offer-box {
  flex: 1 1 250px; background: #1c1c1c; padding: 1.5rem;
  border-radius: 6px; text-align: center; border: 1px solid #333;
}
.offer-box h2 { margin-bottom: 0.5rem; color: #fff; }
.offer-box p { margin-bottom: 1rem; color: #aaa; }
.offer-box .cta {
  background: #ff5722; color: #fff; padding: 0.5rem 1rem; border-radius: 4px;
}

/* === VPS Section === */
.category { padding: 3rem 1rem; }
.vps-header-text { text-align: center; margin-bottom: 2rem; }
.vps-header-text h2 { color: #fff; }
.vps-header-text .intro { color: #aaa; }

/* Step 1 wrapper */
.step-row-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  margin-bottom: 2.5rem; /* GAP BELOW STEP 1 */
}
.step-row {
  display: flex; flex-wrap: wrap; gap: 2rem;
}
.step-row .step-box {
  flex: 1 1 300px;
  background: #1c1c1c; padding: 1.5rem;
  border-radius: 6px; border: 1px solid #333;
}
.step-box h3 { color: #fff; margin-bottom: 1rem; }
.location-select {
  width: 100%; padding: 0.5rem; margin-top: 0.5rem;
  background: #222; color: #eee; border: 1px solid #444; border-radius: 4px;
}
.location-desc { margin-top: 0.75rem; font-size: 0.9rem; color: #aaa; }

/* Features Box (two columns) */
.features-box ul {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}
.features-box li { margin-bottom: 0.5rem; color: #ccc; }

/* === Offer Grid (Step 2 Plans) === */
.plans-box {
  max-width: 1250px;
  margin: 0 auto;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 1.5rem;
  /* optional extra breathing room above Step 2, uncomment if you want more
  margin-top: 0.5rem;
  */
}
.plans-box h3 { color: #fff; margin-bottom: 1rem; }

.plans-box .offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .plans-box .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans-box .offer-grid { grid-template-columns: 1fr; }
}

.offer-card {
  display: flex; flex-direction: row;
  align-items: flex-start; justify-content: space-between;
  background: #1c1c1c; border: 1px solid #333;
  border-radius: 6px; padding: 1.5rem;
}
.offer-card .details { flex: 1; }
.offer-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.offer-card p { margin-bottom: 1rem; }
.offer-card .old-price { text-decoration: line-through; color: #777; margin-right: 0.5rem; }
.offer-card .new-price { color: #ff5722; font-weight: 700; }
.offer-card .billing { font-size: 0.85rem; color: #aaa; }
.offer-card .features { margin-bottom: 1rem; color: #ccc; }
.offer-card .features li { margin-bottom: 0.25rem; }
.offer-card .cta {
  display: inline-block; background: #ff5722; color: #fff;
  padding: 0.5rem 1rem; border-radius: 4px; text-align: center;
}
.offer-card .graphic { margin-left: 1rem; flex-shrink: 0; }
.offer-card .graphic img { width: 48px; height: 48px; }

/* Conversion Badges */
.badge {
  display: inline-block; margin-left: .5rem;
  padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 600;
  border-radius: 4px; color: #fff; vertical-align: middle;
}
.badge.popular { background: #ff5722; }
.badge.value   { background: #4caf50; }

/* Trust Signals */
.trust-signals {
  display: flex; justify-content: center; gap: 2rem;
  margin: 3rem auto; max-width: 900px; text-align: center;
}
.trust-signals .signal { flex: 1; color: #ccc; }
.trust-signals .icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }

/* Reviews (2 columns) */
.reviews {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 1000px; margin: 3rem auto; padding: 1rem;
}
.review-col blockquote {
  margin: 1.5rem 0; padding-left: 1rem;
  border-left: 3px solid #ff5722; font-style: italic; color: #ddd;
}
.review-col cite {
  display: block; margin-top: 0.5rem;
  font-style: normal; font-weight: 600; color: #aaa;
}
@media (max-width: 768px) {
  .reviews { grid-template-columns: 1fr; }
}

/* Footer */
.foot {
  text-align: center; padding: 2rem 1rem;
  background: #000; font-size: 0.85rem; color: #777;
}
.foot a.secondary-link { color: #aaa; margin: 0 0.5rem; }
/* FAQ Accordion */
.faq {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1rem;
}
.faq-header-text {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-header-text h2 {
  color: #fff;
}
.faq-header-text .intro {
  color: #aaa;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ff5722;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 0;
  border-bottom: 1px solid #333;
}
.faq-question[aria-expanded="true"] {
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 0.5rem 0 1rem;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
.faq-answer.show {
  display: block;
}
/* Footer logo sizing */
.logo-footer {
  height: 32px;
  width: auto;
  max-width: 160px;
  opacity: 0.85;
}
/* Force hero CTA button to center */
.hero a.cta {
  display: inline-block;
  margin: 1rem auto 0 auto;
}

.hero p {
  text-align: center;
}
/* Center ONLY the hero CTA button */
a.cta[href*="#plans"] {
  display: block;
  width: fit-content;
  margin: 1rem auto 0 auto;
  text-align: center;
}
/* Add top spacing above hero heading */
.site-title {
  margin-top: 3rem;   /* adjust as needed (2–5rem works well) */
}
.offer-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-card h3 .badge {
  margin-left: 1rem;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
}
/* Ribbon container */
.offer-card {
  position: relative; /* needed so the ribbon positions correctly */
  overflow: hidden;   /* hides ribbon overflow */
}

/* Ribbon itself */
.offer-card::before {
  content: "20% OFF";
  position: absolute;
  top: 12px;
  right: -40px;
  transform: rotate(45deg);
  background: #ff5722;
  color: #fff;
  font-weight: bold;
  padding: 5px 40px;
  font-size: 0.85rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
}
/* Remove inline plan labels like "Most Popular" or "Best Value" */
.offer-card .badge {
  display: none !important;
}
