/* ============================================================
   GX Digital Services LLC — Shared Stylesheet v2.1
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #0b1220;
  color: #e5e7eb;
  font-family: 'DM Sans', system-ui, Arial, sans-serif;
  background-image:
    linear-gradient(135deg, rgba(96,165,250,.08) 0%, rgba(34,197,94,.05) 100%),
    radial-gradient(circle at top, rgba(56,189,248,.08), transparent 40%);
}

a { color: #38bdf8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ── */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 0;
  text-align: center;
}
.nav a {
  display: inline-block;
  margin: 0 8px 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #dbe7f3;
  font-weight: 600;
  transition: .18s ease;
}
.nav a:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.35);
  background: rgba(255,255,255,.09);
}
.nav a.active {
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  color: #051018;
  font-weight: 800;
}

/* ── LAYOUT ── */
.wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px 40px;
}

.card {
  width: 100%;
  max-width: 900px;
  padding: 38px 40px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.40);
}

/* ── LOGO ── */
.logo-img {
  width: 100%;
  max-width: 600px;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(0,255,200,.25));
  animation: gxGlow 5s ease-in-out infinite;
  mix-blend-mode: lighten;
  border-radius: 24px;
}
@keyframes gxGlow {
  0%,100% { filter: drop-shadow(0 0 12px rgba(0,255,200,.18)); transform: translateY(0); }
  50%      { filter: drop-shadow(0 0 26px rgba(0,255,200,.38)); transform: translateY(-2px); }
}

/* ── PILL ── */
.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  color: #b8c0d0;
}

/* ── TYPOGRAPHY ── */
h1 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b8c0d0;
}
p {
  margin: 10px 0;
  color: #a8b0c0;
  font-size: 16px;
  line-height: 1.6;
}
.small { font-size: 13px; color: #9aa4b2; }
.center { text-align: center; }

/* ── SECTION DIVIDER ── */
.section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ── SERVICE GRID (3 col) ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 10px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0 10px;
}

.box {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.box:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,.35);
  background: rgba(255,255,255,.06);
}
.box b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.box span { font-size: 13px; color: #9aa4b2; }

/* ── CTA BUTTONS ── */
.cta {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  color: #051018;
  font-weight: 800;
  transition: opacity .18s ease, transform .18s ease;
}
.btn:hover { opacity: .88; transform: translateY(-2px); text-decoration: none; }
.btn.secondary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #e5e7eb;
  font-weight: 700;
}

/* ── FOOTER ── */
footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  color: #96a0b2;
  line-height: 1.6;
  text-align: center;
}
footer a { color: #6b7a8d; }
footer a:hover { color: #38bdf8; }

/* ── CONTACT ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.contact-item .label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #6b7a8d; margin-bottom: 2px; }
.contact-item .value { font-size: 14px; color: #dbe7f3; }

/* ── LEGAL PAGES (privacy / terms) ── */
.legal-body { text-align: left; }
.legal-body h3 {
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 15px;
  margin: 20px 0 6px;
}
.legal-body p, .legal-body li { font-size: 13px; color: #9aa4b2; line-height: 1.7; }
.legal-body ul { padding-left: 18px; margin: 6px 0 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .card { margin: 12px; padding: 26px 18px; }
  .grid  { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav { padding: 14px 14px 0; }
  .nav a { margin: 0 4px 10px; padding: 9px 12px; font-size: 14px; }
  h1 { font-size: 26px; }
}
