/* ── Reset & Tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #09090f;
  --ink-2:    #12121e;
  --ink-3:    #1c1c2e;
  --surface:  #ffffff;
  --gold:     #c9a84c;
  --gold-2:   #e8c96a;
  --gold-dim: rgba(201,168,76,.15);
  --indigo:   #6366f1;
  --muted:    rgba(255,255,255,.45);
  --muted-2:  rgba(255,255,255,.18);
  --border:   rgba(255,255,255,.08);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --mono:     'DM Mono', monospace;
  --ease:     cubic-bezier(.16,1,.3,1);
  --radius:   14px;
  --chery: 'Cherry Bomb One', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--surface);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise overlay ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.gold { color: var(--gold); }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.35);
  padding: 5px 14px; border-radius: 999px;
  background: rgba(201,168,76,.06);
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
nav.scrolled {
  background: rgba(9,9,15,.85);
  backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  color: var(--surface); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.nav-logo-crown {
  width: 30px; height: 30px; background: var(--gold);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 16px; flex-shrink: 0;
  color: var(--ink);
  font-family: var(--chery);
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--surface); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 600 !important; font-size: 13px !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-2) !important; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 140px 28px 80px;
  position: relative; overflow: hidden;
}

/* Radial glow orbs */
.hero::after {
  content: '';
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, rgba(201,168,76,.08) 40%, transparent 70%);
  pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px; top: -100px; right: -150px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px; bottom: -50px; left: -100px;
  background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 70%);
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-eyebrow {
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) .2s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -.03em;
  max-width: 900px;
  animation: fadeUp .9s var(--ease) .35s both;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 24px; font-size: clamp(16px, 2vw, 20px);
  color: var(--muted); max-width: 580px; line-height: 1.7;
  font-weight: 300;
  animation: fadeUp .9s var(--ease) .5s both;
}

.hero-actions {
  margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .9s var(--ease) .65s both;
}
.btn-primary {
  background: var(--gold);
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 100%);
  color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 15px 34px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(201,168,76,.35), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .25s var(--ease), box-shadow .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,168,76,.45), 0 4px 12px rgba(0,0,0,.4);
}
.btn-ghost {
  color: var(--surface); font-weight: 500; font-size: 15px;
  padding: 15px 34px; border-radius: 10px; text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 72px; display: flex; gap: 0; flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 48px; width: 100%; max-width: 700px;
  animation: fadeUp .9s var(--ease) .8s both;
}
.hero-stat {
  flex: 1; min-width: 150px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: var(--muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════════ */
.logo-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.logo-strip::before, .logo-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(to left, var(--ink), transparent); }

.logo-track {
  display: flex; gap: 64px; align-items: center;
  animation: scroll-x 25s linear infinite;
  width: max-content;
}
.logo-track span {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-2); white-space: nowrap;
  user-select: none;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════════ */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-title {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 58px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.025em;
  margin-top: 18px;
}
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--muted);
  max-width: 520px; margin-left: auto; margin-right: auto;
  font-weight: 300; line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feat-card {
  background: var(--ink-2);
  padding: 40px 36px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--gold-dim), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.feat-card:hover { background: var(--ink-3); }
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 22px;
}
.feat-title {
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  margin-bottom: 10px; line-height: 1.25;
}
.feat-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.feat-pro {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,.2);
  padding: 3px 9px; border-radius: 999px; margin-top: 14px;
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS — TIMELINE
════════════════════════════════════════════════════════════ */
.how-section { padding: 120px 0; background: var(--ink-2); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 72px;
}
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.step { text-align: center; padding: 0 24px; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--ink); border: 1px solid rgba(201,168,76,.4);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700;
  color: var(--gold); margin: 0 auto 24px;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 8px var(--ink-2);
}
.step-title {
  font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 10px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   FREE VS PRO
════════════════════════════════════════════════════════════ */
.pricing-section { padding: 120px 0; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 72px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.pricing-card {
  border-radius: 20px; padding: 44px 40px;
  border: 1px solid var(--border);
  background: var(--ink-2);
  position: relative; overflow: hidden;
}
.pricing-card--pro {
  border-color: rgba(201,168,76,.4);
  background: linear-gradient(145deg, #181820 0%, #1e1e12 100%);
}
.pricing-card--pro::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%);
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 20px;
}
.pricing-plan {
  font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--serif); font-size: 52px; font-weight: 900; line-height: 1;
  margin: 16px 0 6px;
}
.pricing-price sup { font-size: 22px; vertical-align: super; }
.pricing-price sub { font-size: 16px; color: var(--muted); font-weight: 400; vertical-align: sub; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.pricing-divider {
  height: 1px; background: var(--border); margin-bottom: 28px;
}
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-list li {
  font-size: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.pricing-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-list li.locked { color: var(--muted); }
.pricing-list li.locked::before { content: '—'; color: var(--muted-2); }

.btn-pricing-free {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--surface);
  font-weight: 600; font-size: 14px;
  background: rgba(255,255,255,.04);
  transition: background .2s, border-color .2s;
}
.btn-pricing-free:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.btn-pricing-pro {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink); font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-pricing-pro:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,.4); }

/* ════════════════════════════════════════════════════════════
   SHORTCODES
════════════════════════════════════════════════════════════ */
.code-section { padding: 120px 0; background: var(--ink-2); }
.code-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 56px;
}
.code-card {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.code-card-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.code-dots { display: flex; gap: 6px; }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot-r { background: #ff5f57; }
.code-dot-y { background: #ffbd2e; }
.code-dot-g { background: #28c840; }
.code-card-title {
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .04em;
}
.code-body { padding: 24px 22px; }
.code-snippet {
  font-family: var(--mono); font-size: 13px; line-height: 1.8;
  color: #e2e8f0;
}
.code-tag    { color: var(--gold); }
.code-attr   { color: #93c5fd; }
.code-val    { color: #86efac; }
.code-comment{ color: rgba(255,255,255,.3); font-style: italic; }
.code-desc {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ── Attribute table ─────────────────────────────────────── */
.attr-table-wrap {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--ink-2); margin-top: 40px;
}
.attr-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.attr-table th {
  text-align: left; font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.06); padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.attr-table td {
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: top; line-height: 1.6;
}
.attr-table tr:last-child td { border-bottom: none; }
.attr-table td:first-child { font-family: var(--mono); color: var(--gold-2); white-space: nowrap; }
.attr-table td:nth-child(2) { font-family: var(--mono); color: #93c5fd; white-space: nowrap; }

/* ── Rule order list ──────────────────────────────────────── */
.rule-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: var(--gold);
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials { padding: 120px 0; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 72px;
}
.testi-card {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: var(--serif); font-size: 52px; line-height: .6;
  color: var(--gold); opacity: .35; margin-bottom: 16px;
  font-weight: 900;
}
.testi-text {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.8);
  font-style: italic; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(99,102,241,.3));
  border: 1px solid rgba(201,168,76,.25);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--gold);
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }

/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 140px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, rgba(99,102,241,.06) 40%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--serif); font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.08; letter-spacing: -.03em;
  max-width: 800px; margin: 0 auto 24px;
}
.cta-sub {
  font-size: 18px; color: var(--muted); max-width: 500px;
  margin: 0 auto 48px; font-weight: 300; line-height: 1.7;
}
.cta-note {
  margin-top: 20px; font-size: 13px; color: var(--muted-2);
}
.cta-note a { color: var(--gold); text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  text-decoration: none; color: var(--surface);
  display: flex; align-items: center; gap: 9px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--surface); }
.footer-copy { font-size: 13px; color: var(--muted-2); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .code-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .hero-stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
#faq {
  background: #0a0a0a;
  padding: 80px 0;
}
 
#faq .faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
 
/* Eyebrow label */
#faq .faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 20px;
  font-weight: 500;
}
 
/* Section heading */
#faq .faq-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
 
#faq .faq-heading em {
  font-style: italic;
  color: #c8c8c8;
  font-weight: 300;
}
 
/* Subtext */
#faq .faq-sub {
  text-align: center;
  color: #666;
  font-size: 15px;
  margin: 0 0 52px;
  line-height: 1.6;
}
 
#faq .faq-sub a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
#faq .faq-sub a:hover {
  color: #888;
}
 
/* FAQ list wrapper */
#faq .faq-list {
  border-top: 1px solid #1e1e1e;
}
 
/* Individual FAQ item */
#faq .faq-item {
  border-bottom: 1px solid #1e1e1e;
}
 
/* Accordion trigger button */
#faq .faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
 
/* Question text */
#faq .faq-question {
  font-size: 15px;
  font-weight: 600;
  color: #e8e8e8;
  line-height: 1.4;
}
 
/* +/× icon circle */
#faq .faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid #2e2e2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
 
#faq .faq-item.open .faq-icon {
  border-color: #444;
}
 
#faq .faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: #666;
  transition: transform 0.25s ease;
}
 
#faq .faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: #aaa;
}
 
/* Collapsible answer body */
#faq .faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
 
/* Answer text */
#faq .faq-answer {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin: 0 0 22px;
}
 
#faq .faq-answer a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
#faq .faq-answer a:hover {
  color: #ccc;
}
 
/* CTA block below FAQ */
#faq .faq-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
 
#faq .faq-btn-primary {
  display: inline-block;
  background: #f0f0f0;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s ease;
}
 
#faq .faq-btn-primary:hover {
  background: #ffffff;
}
 
#faq .faq-btn-secondary {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.15s ease;
}
 
#faq .faq-btn-secondary:hover {
  color: #888;
}
 
/* Responsive */
@media (max-width: 600px) {
  #faq .faq-heading {
    font-size: 28px;
  }
 
  #faq .faq-inner {
    padding: 0 20px;
  }
 
  #faq {
    padding: 56px 0;
  }
}