/* ============================================================
     SIMPLE INNER PAGES
     Used by: web-design, custom-development, ai-solutions,
              contact, web-hosting-order
   ============================================================ */

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

/* Generic centered content wrapper */
.page-content {
  max-width: 620px;
  width: 100%;
}

/* "Coming Soon" / category pill */
.page-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  border: 1px solid rgba(125, 211, 252, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

/* Page heading */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 30%, #7dd3fc 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  margin-bottom: calc(1.25rem - 0.1em);
}

/* Lead paragraph */
.page-intro {
  font-size: 1.05rem;
  color: #b4b4c8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Secondary paragraph */
.page-detail {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Single CTA link/button */
.cta-link {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}
.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.5);
}

/* ============================================================
     CONTACT PAGE
   ============================================================ */
.contact-content {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.contact-intro {
  font-size: 1.05rem;
  color: #b4b4c8;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ============================================================
     WEB HOSTING ORDER PAGE
   ============================================================ */
.order-content {
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.order-intro {
  font-size: 1.05rem;
  color: #b4b4c8;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: #7dd3fc;
}

/* ============================================================
     CONTACT CARDS (shared: contact + hosting-order)
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.2);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  margin-bottom: 0.4rem;
}
.contact-card-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e6edf3;
  margin-bottom: 0.4rem;
}
.contact-card-note {
  font-size: 0.82rem;
  color: #6b7280;
}

.contact-note {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.7;
  border-top: 1px solid rgba(125, 211, 252, 0.08);
  padding-top: 2rem;
}

/* ============================================================
     RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
