/* Page styles for https://earthgrid.com/server (loaded by grid.php). */
/* ---------------------------------------------------------------------------
   Server page. Same system as billing.php, prefixed .srv- so nothing collides
   with style.css or the .bill- classes.
--------------------------------------------------------------------------- */
.srv-wrap { max-width: 940px; margin: 0 auto; padding: 10px 10px 30px; color: #f2f2f2; text-align: left; }
.srv-wrap p { color: #e8e8e8; font-size: 17px; line-height: 1.7; }

.srv-hero { text-align: center; padding: 18px 0 30px; }
.srv-hero h1 {
  color: #fff; font-size: 50px; line-height: 1.08; margin: 0 0 14px;
  letter-spacing: 5px; text-transform: uppercase; font-weight: bold;
}
.srv-hero p { font-size: 21px; line-height: 1.45; color: #ddedfb; margin: 0; }

/* Chooser cards */
.srv-pick { display: flex; flex-wrap: wrap; gap: 16px; margin: 0 0 10px; }
.srv-card {
  flex: 1 1 180px;
  box-sizing: border-box;
  display: block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 22px 20px;
  text-decoration: none;
  transition: all .15s ease;
}
.srv-card:hover, .srv-card:focus {
  background: rgba(92,184,92,0.16);
  border-color: #5cb85c;
  transform: translateY(-3px);
  text-decoration: none;
}
.srv-card-featured { background: rgba(92,184,92,0.13); border-color: #5cb85c; }
.srv-num {
  display: inline-block; width: 28px; height: 28px; line-height: 28px;
  border-radius: 50%; background: #5cb85c; color: #fff;
  font-size: 14px; font-weight: bold; text-align: center; margin-bottom: 12px;
}
.srv-card-title { display: block; font-size: 20px; font-weight: bold; line-height: 1.25; color: #fff; margin-bottom: 7px; }
.srv-card-note  { display: block; font-size: 14px; line-height: 1.5; color: #c9d4dd; }

/* Sections */
.srv-sec { padding: 34px 0 10px; border-top: 1px solid rgba(255,255,255,0.14); margin-top: 30px; scroll-margin-top: 20px; }
.srv-eyebrow { display: block; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: #7fce7f; font-weight: bold; margin-bottom: 8px; }
.srv-sec h2 { color: #fff; font-size: 32px; line-height: 1.2; margin: 0 0 18px; font-weight: bold; }

/* Numbered story (the last 20%) */
.srv-steps { list-style: none; counter-reset: srvstep; padding: 0; margin: 24px 0; }
.srv-steps li {
  counter-increment: srvstep;
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px; line-height: 1.6; color: #e2e2e2;
}
.srv-steps li:last-child { border-bottom: 0; }
.srv-steps li:before {
  content: counter(srvstep);
  position: absolute; left: 0; top: 11px;
  width: 30px; height: 30px; line-height: 30px; border-radius: 50%;
  background: rgba(201,162,39,0.25); border: 1px solid #c9a227;
  color: #fff; font-weight: bold; font-size: 14px; text-align: center;
}

/* Two-column compare */
.srv-compare { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0; }
.srv-col { flex: 1 1 260px; border-radius: 8px; padding: 20px 22px; }
.srv-col p { font-size: 15px; line-height: 1.65; margin: 0; color: #e2e2e2; }
.srv-col-bad  { background: rgba(201,162,39,0.13); border-left: 3px solid #c9a227; }
.srv-col-good { background: rgba(92,184,92,0.13);  border-left: 3px solid #5cb85c; }
.srv-col-head { display: block; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: bold; margin-bottom: 12px; color: #fff; }
.srv-col ul { margin: 0; padding-left: 18px; }
.srv-col li { font-size: 15px; line-height: 1.6; color: #e2e2e2; margin-bottom: 6px; }

/* Feature grid */
.srv-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.srv-feat {
  flex: 1 1 250px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 16px 18px;
}
.srv-feat-title { display: block; color: #fff; font-weight: bold; font-size: 16px; margin-bottom: 4px; }
.srv-feat-note  { display: block; color: #c9d4dd; font-size: 14px; line-height: 1.5; }

.srv-callout {
  background: rgba(255,255,255,0.07);
  border-left: 3px solid #5cb85c;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 26px 0 0;
}
.srv-callout p { margin: 0; font-size: 16px; }

.srv-quote {
  text-align: center;
  font-size: 24px; line-height: 1.4; font-weight: bold; color: #fff;
  padding: 24px 10px; margin: 26px 0 0;
  border-top: 1px solid rgba(92,184,92,0.5);
  border-bottom: 1px solid rgba(92,184,92,0.5);
}

/* Buttons */
.srv-btn {
  display: inline-block;
  background: #5cb85c; color: #fff !important;
  font-size: 17px; font-weight: bold;
  padding: 14px 30px; border-radius: 5px;
  text-decoration: none; margin-top: 22px;
  transition: background .15s ease;
}
.srv-btn:hover, .srv-btn:focus { background: #4a9d4a; color: #fff !important; text-decoration: none; }
.srv-btn-dark { background: #222; border: 1px solid rgba(255,255,255,0.3); }
.srv-btn-dark:hover, .srv-btn-dark:focus { background: #000; }
.srv-fine { display: block; font-size: 14px; color: #b9c4cd; margin-top: 12px; }

.srv-end { text-align: center; padding: 34px 0 10px; border-top: 1px solid rgba(255,255,255,0.14); margin-top: 34px; }
.srv-end h3 { color: #fff; font-size: 28px; margin: 0 0 12px; font-weight: bold; }

@media (max-width: 700px) {
  .srv-hero h1 { font-size: 32px; letter-spacing: 3px; }
  .srv-hero p  { font-size: 18px; }
  .srv-sec h2  { font-size: 25px; }
  .srv-wrap p  { font-size: 16px; }
  .srv-quote   { font-size: 19px; }
}
