/* ─────────────────────────────────────────────────────────────────────────────
   pages.css  –  Shared styles for static informational pages
   (About Us, Contact Us, Customer Service, FAQ, Privacy, Refund, Terms)
───────────────────────────────────────────────────────────────────────────── */

/* ── Page hero / banner ─────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d14 0%, #13111f 60%, #1a0d2e 100%);
  padding: 72px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(100,116,139,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(100,116,139,.10) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.page-breadcrumb a {
  color: rgba(100,116,139,.75);
  text-decoration: none;
  transition: color .2s;
}
.page-breadcrumb a:hover { color: #94a3b8; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(100,116,139,.15);
  border: 1px solid rgba(100,116,139,.3);
  border-radius: 100px;
  padding: 4px 14px 4px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 16px;
}
.page-hero-tag svg { flex-shrink: 0; }

.page-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 14px;
}
.page-hero-title span {
  background: linear-gradient(90deg, #94a3b8, #64748b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 560px;
}

/* ── Page body wrapper ───────────────────────────────────────────────────── */
.page-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── Prose / rich-text content ───────────────────────────────────────────── */
.prose {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.75;
}
.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(100,116,139,.25);
  position: relative;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #64748b, #94a3b8);
  border-radius: 2px;
}
.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #c4b5fd;
  margin: 28px 0 8px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: #94a3b8; text-decoration: underline; text-decoration-color: rgba(100,116,139,.4); }
.prose a:hover { color: #c4b5fd; }

/* ── Callout / info box ─────────────────────────────────────────────────── */
.page-callout {
  background: rgba(100,116,139,.08);
  border: 1px solid rgba(100,116,139,.25);
  border-left: 3px solid #64748b;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.page-callout strong { color: #c4b5fd; }

/* ── FAQ accordion ───────────────────────────────────────────────────────── */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-group-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #64748b, #94a3b8);
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-item {
  border: 1px solid rgba(100,116,139,.18);
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: rgba(100,116,139,.45); }
.faq-item:hover { border-color: rgba(100,116,139,.35); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  gap: 16px;
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(100,116,139,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .25s;
}
.faq-item.open .faq-q-icon {
  background: rgba(100,116,139,.35);
  transform: rotate(45deg);
}
.faq-q-icon svg { width: 10px; height: 10px; stroke: #94a3b8; }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  border-top: 1px solid rgba(100,116,139,.1);
}
.faq-item.open .faq-a { display: block; }
.faq-a a {
  color: #94a3b8;
  text-decoration: underline;
  text-decoration-color: rgba(100,116,139,.4);
  transition: color .2s, text-decoration-color .2s;
}
.faq-a a:hover {
  color: #c4b5fd;
  text-decoration-color: rgba(196,181,253,.6);
}

/* ── Contact page ────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,116,139,.2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .25s, background .25s;
}
.contact-card:hover {
  background: rgba(100,116,139,.07);
  border-color: rgba(100,116,139,.4);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(100,116,139,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 18px; height: 18px; stroke: #94a3b8; }
.contact-card-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #94a3b8;
  margin-bottom: 4px;
}
.contact-card-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.contact-card-val a { color: #c4b5fd; text-decoration: none; }
.contact-card-val a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,116,139,.2);
  border-radius: 14px;
  padding: 32px;
}
.contact-form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(100,116,139,.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color .2s, background .2s;
  outline: none;
  box-sizing: border-box;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(100,116,139,.6);
  background: rgba(100,116,139,.07);
}
.form-group select option { background: #1a1128; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #64748b, #475569);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  letter-spacing: .01em;
}
.btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.btn-submit svg { width: 14px; height: 14px; stroke: currentColor; }

/* ── Customer service cards ──────────────────────────────────────────────── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
@media (max-width: 560px) { .cs-grid { grid-template-columns: 1fr; } }
.cs-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,116,139,.18);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  transition: border-color .25s, transform .2s;
}
.cs-card:hover { border-color: rgba(100,116,139,.45); transform: translateY(-2px); }
.cs-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(100,116,139,.2), rgba(100,116,139,.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.cs-card-icon svg { width: 22px; height: 22px; stroke: #94a3b8; }
.cs-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cs-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ── About stats ─────────────────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
}
@media (max-width: 540px) { .about-stats { grid-template-columns: 1fr 1fr; } }
.stat-card {
  background: rgba(100,116,139,.08);
  border: 1px solid rgba(100,116,139,.22);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #94a3b8;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Value pillars (About) ───────────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,116,139,.18);
  border-radius: 12px;
  padding: 22px;
  transition: border-color .25s, transform .2s;
}
.value-card:hover { border-color: rgba(100,116,139,.4); transform: translateY(-2px); }
.value-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.value-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.value-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ── Last updated badge ──────────────────────────────────────────────────── */
.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
}
.updated-badge svg { width: 12px; height: 12px; stroke: rgba(255,255,255,.4); }

/* ── TOC sidebar for legal pages ─────────────────────────────────────────── */
.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) { .legal-layout { grid-template-columns: 1fr; } }
.legal-toc {
  position: sticky;
  top: 80px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,116,139,.18);
  border-radius: 12px;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
}
.legal-toc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.legal-toc a {
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: #94a3b8; }
@media (max-width: 700px) { .legal-toc { display: none; } }

/* ── Activation guide pages ─────────────────────────────────────────────── */
.activation-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.activation-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(100,116,139,.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.activation-nav a:hover,
.activation-nav a.active {
  background: rgba(100,116,139,.12);
  border-color: rgba(100,116,139,.45);
  color: #c4b5fd;
}
.activation-nav a svg { width: 14px; height: 14px; flex-shrink: 0; }

.method-block {
  margin-bottom: 48px;
}
.method-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(100,116,139,.18), rgba(100,116,139,.08));
  border: 1px solid rgba(100,116,139,.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #c4b5fd;
  margin-bottom: 14px;
}
.method-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.method-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  line-height: 1.55;
}
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step-counter;
}
.steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 50px;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}
.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 32px;
  height: 32px;
  background: rgba(100,116,139,.18);
  border: 1px solid rgba(100,116,139,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  flex-shrink: 0;
}
.steps-list li strong { color: #fff; }

.method-divider {
  border: none;
  border-top: 1px solid rgba(100,116,139,.15);
  margin: 36px 0;
}

.troubleshoot-block {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(100,116,139,.18);
  border-radius: 12px;
  padding: 26px 28px;
  margin-top: 40px;
}
.troubleshoot-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.troubleshoot-title svg { width: 16px; height: 16px; stroke: #f59e0b; }
.troubleshoot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.troubleshoot-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.troubleshoot-list li:last-child { border-bottom: none; }
.troubleshoot-list li strong { color: #fbbf24; }

.gog-note {
  background: rgba(100,116,139,.07);
  border: 1px solid rgba(100,116,139,.2);
  border-left: 3px solid #64748b;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.gog-note strong { color: #c4b5fd; }

