/* RenderNow — shared styles for static marketing pages (pricing, how-it-works, faq) */
* { margin: 0; padding: 0; box-sizing: border-box; }

body.page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: #0a0e1a;
  color: #f8fafc;
  min-height: 100vh;
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Nav ── */
.topnav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: rgba(10,14,26,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-sm {
  font-size: 1.15rem; font-weight: 800; text-decoration: none;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.topnav-links { display: flex; gap: 18px; align-items: center; }
.topnav-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.topnav-links a:hover, .topnav-links a.active { color: #00d4ff; }
.btn-nav {
  padding: 8px 16px; border-radius: 8px; color: #fff !important;
  background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%); font-weight: 600;
}
.btn-nav:hover { opacity: .9; }

/* ── Layout ── */
.content { max-width: 920px; margin: 0 auto; padding: 40px 24px 80px; }
.page-hero { text-align: center; margin-bottom: 48px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: #94a3b8; font-size: 1.05rem; }
.headline-price { font-size: 3.4rem; font-weight: 800; margin-top: 16px;
  background: linear-gradient(135deg,#00d4ff,#7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.headline-price .cur { font-size: 1.6rem; vertical-align: super; }
.headline-price .per { font-size: 1rem; color: #64748b; font-weight: 500; -webkit-text-fill-color: #64748b; }

.section-title { text-align: center; font-size: 1.4rem; margin-top: 32px; }
.section-sub { text-align: center; color: #64748b; font-size: 0.85rem; margin: 6px 0 20px; }

/* ── Cards ── */
.glass-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); margin-top: 20px;
  transition: border-color .3s;
}
.glass-card:hover { border-color: rgba(0,212,255,0.2); }
.glass-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }

/* ── Credit packs ── */
.packs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; margin: 20px 0; }
.pack {
  position: relative; text-align: center; padding: 24px 16px;
  background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.06); border-radius: 16px;
  transition: transform .22s, border-color .22s, box-shadow .22s; cursor: default;
}
.pack:hover { transform: translateY(-5px); border-color: #00d4ff; box-shadow: 0 10px 28px rgba(0,212,255,0.15); }
.pack.popular { border-color: #7c3aed; }
.pack-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: #7c3aed; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.pack-amt { font-size: 2rem; font-weight: 800; color: #00d4ff; }
.pack-label { font-weight: 700; margin-top: 4px; }
.pack-sub { font-size: 0.75rem; color: #64748b; margin-top: 2px; }

/* ── Tables ── */
.tbl { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 0.9rem; }
.tbl th { text-align: left; color: #94a3b8; font-weight: 600; padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; }
.tbl td { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tbl tr { transition: background .15s; }
.tbl tbody tr:hover { background: rgba(255,255,255,0.03); }

.chip { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600;
  background: rgba(148,163,184,0.15); color: #cbd5e1; }
.chip-green { background: rgba(16,185,129,0.15); color: #34d399; }
.chip-blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.chip-amber { background: rgba(245,158,11,0.15); color: #fbbf24; }
.chip-red { background: rgba(239,68,68,0.15); color: #f87171; }

.note-box { margin-top: 14px; padding: 10px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; font-size: 0.8rem; }
.note-box strong { color: #00d4ff; }
.big-price { font-size: 2.6rem; font-weight: 800; color: #00d4ff; margin: 14px 0; }
.big-price .per { font-size: 0.9rem; color: #64748b; font-weight: 500; }
.muted-sm { color: #64748b; font-size: 0.8rem; }
.check-list { list-style: none; margin-top: 14px; }
.check-list li { padding: 4px 0 4px 22px; position: relative; font-size: 0.88rem; color: #cbd5e1; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #00d4ff; font-weight: 700; }

/* ── Included grid ── */
.incl { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 10px; margin-top: 14px; }
.incl-item { padding: 10px 12px; background: rgba(255,255,255,0.04); border-radius: 8px; font-size: 0.85rem; transition: transform .15s; }
.incl-item:hover { transform: translateX(4px); }

/* ── Step cards (how it works) ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; margin-top: 28px; }
.step {
  position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 26px 22px; overflow: hidden; min-height: 200px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-6px); border-color: #00d4ff; box-shadow: 0 12px 32px rgba(0,212,255,0.15); }
.step-num { position: absolute; top: -14px; right: -8px; font-size: 6rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.05); user-select: none; transition: color .25s; }
.step:hover .step-num { color: rgba(124,58,237,0.25); }
.step-icon { font-size: 2rem; position: relative; }
.step h3 { margin: 10px 0 8px; position: relative; }
.step p { font-size: 0.85rem; color: #94a3b8; position: relative; }
.step ul { list-style: none; margin-top: 12px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s, opacity .3s, margin .3s; position: relative; }
.step:hover ul { max-height: 240px; opacity: 1; margin-top: 12px; }
.step ul li { font-size: 0.78rem; color: #94a3b8; padding: 3px 0 3px 18px; position: relative; }
.step ul li::before { content: "✓"; position: absolute; left: 0; color: #00d4ff; }

/* ── FAQ accordion ── */
.faq-search { width: 100%; max-width: 480px; margin: 0 auto 8px; display: block; padding: 12px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; color: #f8fafc; font-size: 0.9rem; }
.faq-search:focus { outline: none; border-color: #00d4ff; }
.faq-cat { margin-top: 28px; }
.faq-cat-head { color: #00d4ff; font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; }
.faq-item { border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 10px; background: rgba(255,255,255,0.03); overflow: hidden; }
.faq-item[open] { border-color: rgba(0,212,255,0.3); }
.faq-item summary { padding: 15px 18px; cursor: pointer; font-weight: 600; font-size: 0.9rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "▼"; font-size: 0.7rem; color: #00d4ff; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding: 0 18px 16px; font-size: 0.86rem; color: #94a3b8; }

/* ── CTA + footer ── */
.cta-block { text-align: center; margin-top: 44px; }
.cta-block p { color: #94a3b8; margin-bottom: 12px; }
.btn-primary { display: inline-block; padding: 14px 28px; border-radius: 10px; text-decoration: none;
  background: linear-gradient(135deg,#00d4ff,#7c3aed); color: #fff; font-weight: 600; transition: transform .2s, opacity .2s; }
.btn-primary:hover { transform: scale(1.03); opacity: .92; }
.btn-primary.lg { padding: 16px 34px; font-size: 1.05rem; }
.disclaimer { margin-top: 28px; font-size: 0.7rem; color: #475569; text-align: center; }
.site-footer { text-align: center; padding: 30px 24px; font-size: 0.75rem; color: #475569; border-top: 1px solid rgba(255,255,255,0.05); }
.intro { text-align: center; color: #94a3b8; font-size: 1.05rem; }

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .topnav-links { gap: 14px; font-size: 0.82rem; }
}
