/* ============================================
   GCLUBLAO - Promotional Website
   Color matched to member.gclublao.com
   ============================================ */

:root {
  --bg: #050507;
  --bg-card: #101014;
  --bg-card-hover: #18181e;
  --bg-alt: #0a0a0e;
  --gold: #c9a44a;
  --gold-light: #e8d08a;
  --gold-dark: #a6832e;
  --gold-grad: linear-gradient(135deg, #e8d08a, #c9a44a, #a6832e);
  --gold-grad-r: linear-gradient(135deg, #a6832e, #c9a44a, #e8d08a);
  --text: #eaeaea;
  --text-2: #6b6b78;
  --border: rgba(201, 164, 74, 0.2);
  --border-s: rgba(255, 255, 255, 0.05);
  --success: #34d399;
  --r: 14px;
  --input-bg: #16161c;
  --r-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: 'Prompt', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: rgba(201,164,74,0.25); border-radius: 3px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- Utility ---------- */
.text-gradient {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-s);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.6rem; font-weight: 800; letter-spacing: 6px;
  text-decoration: none;
}
.nav-links {
  display: flex; list-style: none; gap: 28px;
}
.nav-links a {
  text-decoration: none; color: var(--text-2); font-size: 0.88rem;
  font-weight: 400; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,164,74,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--gold);
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: rgba(201,164,74,0.18);
  border-color: var(--gold-light);
}

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.3rem; cursor: pointer;
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
  position: fixed; top: 14px; right: 14px; z-index: 100;
  display: flex; gap: 4px;
  background: rgba(16,16,20,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  background: transparent; border: none;
  color: var(--text-2);
  font-family: 'Prompt', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--gold-grad);
  color: #0a0a0a;
  font-weight: 600;
}
.lang-btn:not(.active):hover {
  color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: 80px 0 32px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-svg {
  position: absolute; bottom: -5%; left: -10%;
  width: 120%; height: auto; opacity: 0.15;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 720px; margin: 0 auto;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-2);
  letter-spacing: 1px; margin-bottom: 24px;
}
.label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
}

.hero-title {
  font-size: 3.2rem; font-weight: 800; line-height: 1.25;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.8; margin-bottom: 24px;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-grad); color: #0a0a0a;
  font-family: 'Prompt', sans-serif;
  font-weight: 600; font-size: 0.92rem;
  border: none; border-radius: var(--r-sm);
  padding: 14px 28px;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::after { left: 100%; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,164,74,0.3);
}
.btn-gold.btn-full { width: 100%; justify-content: center; }
.btn-gold.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--r); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-2);
  font-family: 'Prompt', sans-serif;
  font-weight: 400; font-size: 0.92rem;
  border: none; padding: 14px 20px;
  text-decoration: none; cursor: pointer;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost i { font-size: 0.75rem; transition: transform 0.3s; }
.btn-ghost:hover i { transform: translateX(4px); }

.btn-outline-gold {
  display: block; text-align: center;
  background: transparent; color: var(--gold);
  font-family: 'Prompt', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-gold:hover {
  background: rgba(201,164,74,0.08);
  border-color: var(--gold-light);
}

/* ---------- Hero Metrics ---------- */
.hero-metrics {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 24px 0;
  max-width: 600px;
  margin: 0 auto;
}
.metric {
  flex: 1; text-align: center;
}
.metric-val {
  font-size: 1.6rem; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.metric-label {
  font-size: 0.72rem; color: var(--text-2); margin-top: 4px;
}
.metric-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* ---------- Sections ---------- */
.section { padding: 40px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center; margin-bottom: 28px;
}
.section-head h2 {
  font-size: 2.2rem; font-weight: 700; margin-top: 12px;
}
.section-sub {
  font-size: 0.85rem; color: var(--text-2); margin-top: 8px;
}

.tag {
  display: inline-block;
  background: rgba(201,164,74,0.08);
  color: var(--gold);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1px;
}

/* ---------- Feature Cards ---------- */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 24px 20px;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,164,74,0.15), rgba(201,164,74,0.05));
  border: 1px solid rgba(201,164,74,0.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1rem; font-weight: 600; margin-bottom: 8px;
}
.card p {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.7;
}

/* ---------- Package Cards ---------- */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: stretch;
}
.pkg-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px; margin: 0 auto;
}
.pkg-grid-1 {
  grid-template-columns: 1fr;
  max-width: 380px; margin: 0 auto;
}
.pkg {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.pkg:hover { border-color: var(--border); }
.pkg-pop {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(201,164,74,0.08);
}
.pkg-pop::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,74,0.6), transparent);
}
.pkg-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #0a0a0a;
  padding: 3px 14px; border-radius: 20px;
  font-size: 0.68rem; font-weight: 600;
  white-space: nowrap;
}
.pkg-name {
  font-size: 1.15rem; font-weight: 700;
}
.pkg-detail {
  font-size: 0.75rem; color: var(--text-2); margin-top: 4px;
}
.pkg-price {
  font-size: 2.2rem; font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
  line-height: 1;
}
.pkg-price span {
  font-size: 0.8rem; font-weight: 400;
  margin-left: 2px;
}
.pkg-currency {
  font-size: 1rem; font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-period {
  font-size: 0.75rem; color: var(--text-2); margin-top: -4px; margin-bottom: 16px;
}
.pkg-list {
  list-style: none; text-align: left;
  margin-bottom: 20px;
}
.pkg-list li {
  padding: 5px 0; font-size: 0.82rem;
  display: flex; align-items: center; gap: 8px;
  color: var(--text-2);
}
.pkg-list li i {
  color: var(--success); font-size: 0.65rem; width: 12px; text-align: center;
}
.pkg .btn-outline-gold,
.pkg .btn-gold {
  margin-top: auto;
}

.pay-btn {
  width: 100%; cursor: pointer;
  font-family: 'Prompt', sans-serif;
}
.pay-btn:disabled {
  opacity: 0.6; cursor: wait;
}

/* ---------- Crypto Line ---------- */
.crypto-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-2);
}
.crypto-line i {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.6;
}
.crypto-line span:first-child {
  margin-right: 4px;
}

.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 20px;
}
.pricing-note i {
  color: var(--gold); opacity: 0.5; margin-right: 4px;
}

/* ---------- Timeline ---------- */
.timeline {
  display: flex; align-items: center; justify-content: center;
  max-width: 800px; margin: 0 auto;
}
.tl-item {
  display: flex; align-items: center; gap: 12px;
}
.tl-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: linear-gradient(135deg, rgba(201,164,74,0.15), rgba(201,164,74,0.05));
  border: 1px solid rgba(201,164,74,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.tl-text {
  white-space: nowrap;
}
.tl-text h3 {
  font-size: 0.85rem; font-weight: 600; line-height: 1.2;
}
.tl-text p {
  font-size: 0.72rem; color: var(--text-2); line-height: 1.4; margin-top: 2px;
}
.tl-connector {
  width: 32px; min-width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  margin: 0 6px;
}

/* ---------- CTA Box ---------- */
.cta-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,74,0.6), transparent);
}
.cta-glow {
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(201,164,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-size: 2rem; font-weight: 700; margin-bottom: 12px;
}
.cta-inner > p {
  color: var(--text-2); font-size: 0.95rem; margin-bottom: 24px;
}
.cta-points {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-points span {
  font-size: 0.82rem; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
}
.cta-points i { color: var(--success); font-size: 0.72rem; }
.cta-note {
  margin-top: 16px; font-size: 0.75rem; color: var(--text-2); letter-spacing: 0.5px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-s);
  padding: 20px 0;
  text-align: center;
}
.footer p {
  font-size: 0.72rem; color: var(--text-2);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; max-width: 800px; margin: 0 auto;
}
.faq-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  transition: border-color 0.3s;
}
.faq-card:hover {
  border-color: var(--border);
}
.faq-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(201,164,74,0.15), rgba(201,164,74,0.05));
  border: 1px solid rgba(201,164,74,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  margin: 0 auto 12px;
}
.faq-card h4 {
  font-size: 0.8rem; font-weight: 600; margin-bottom: 6px;
  line-height: 1.4;
}
.faq-card p {
  font-size: 0.72rem; color: var(--text-2); line-height: 1.5;
}

/* ---------- Order Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%; max-width: 420px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,74,0.5), transparent);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none;
  color: var(--text-2); font-size: 1rem;
  cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-title {
  font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
}
.modal-pkg {
  font-size: 0.82rem; color: var(--gold); margin-bottom: 20px;
}
.modal-field {
  margin-bottom: 16px;
}
.modal-field label {
  display: block; font-size: 0.78rem; color: var(--text-2);
  margin-bottom: 6px; font-weight: 400;
}
.modal-field input {
  width: 100%; padding: 12px 14px;
  background: var(--input-bg);
  border: 1px solid var(--border-s);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Prompt', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  transition: border-color 0.25s;
}
.modal-field input:focus {
  outline: none;
  border-color: rgba(201,164,74,0.4);
  box-shadow: 0 0 0 3px rgba(201,164,74,0.06);
}
.modal-field input::placeholder {
  color: var(--text-2);
}
.field-hint {
  display: block; font-size: 0.7rem; color: var(--text-2);
  margin-top: 6px; line-height: 1.4;
}
.field-opt {
  font-size: 0.7rem; color: var(--text-2); font-weight: 300;
}
.field-req {
  color: var(--gold); font-size: 0.8rem;
}
.bot-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(13,202,240,0.08);
  border: 1px solid rgba(13,202,240,0.2);
  border-radius: var(--r-sm);
  padding: 10px;
  color: #0dcaf0;
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.bot-link:hover {
  background: rgba(13,202,240,0.15);
  border-color: #0dcaf0;
}
#orderSubmit { margin-top: 8px; }

/* ---------- Success Page ---------- */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: var(--bg);
}
.success-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.success-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,74,0.6), transparent);
}
.success-icon {
  font-size: 3rem; color: var(--success); margin-bottom: 16px;
}
.success-card h1 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.success-sub {
  font-size: 0.88rem; color: var(--text-2); margin-bottom: 28px;
}
.success-details {
  background: var(--input-bg);
  border-radius: var(--r-sm);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.success-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-s);
  font-size: 0.82rem;
}
.success-row:last-child { border-bottom: none; }
.success-row span { color: var(--text-2); }
.success-row strong { color: var(--text); font-weight: 500; }
.success-note {
  font-size: 0.75rem; color: var(--text-2); margin-bottom: 24px;
}

/* ---------- To Top ---------- */
.to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
  z-index: 90;
}
.to-top.show {
  opacity: 1; pointer-events: auto;
}
.to-top:hover {
  background: rgba(201,164,74,0.1);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-featured { order: -1; }
  .hero-title { font-size: 2.4rem; }
}

@media (max-width: 640px) {
  html { font-size: 14px; }

  .nav-links, .nav-cta { display: none; }
  .nav-links.active {
    display: flex; position: fixed; inset: 0; z-index: 99;
    background: rgba(5,5,7,0.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  }
  .nav-links.active a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 101; }

  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-sub br { display: none; }

  .hero-metrics {
    flex-wrap: wrap; gap: 0; padding: 16px;
    border-radius: var(--r-sm);
  }
  .metric { flex: 0 0 50%; padding: 8px 0; }
  .metric-divider { display: none; }

  .grid-3 { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }

  .section { padding: 40px 0; }
  .section-head h2 { font-size: 1.7rem; }

  .cta-box { padding: 40px 24px; border-radius: 16px; }
  .cta-inner h2 { font-size: 1.5rem; }
  .cta-points { flex-direction: column; align-items: center; gap: 8px; }

  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .pkg-grid-2 { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .pkg-pop { order: -1; }

  .timeline {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tl-connector { display: none; }
  .tl-item {
    background: var(--bg-card);
    border: 1px solid var(--border-s);
    border-radius: var(--r-sm);
    padding: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px; text-align: center;
  }
  .footer-brand p br { display: none; }
  .footer-col { text-align: center; }
  .footer-col a, .footer-info { justify-content: center; }
}
