:root {
  --color-bg: #0f0f0f;
  --color-surface: #1a1a1a;
  --color-surface-2: #242424;
  --color-text: #ededed;
  --color-muted: #a2a2a2;
  --color-header: #0a0a0a;
  --color-accent: #e8b923;
  --color-accent-soft: rgba(232, 185, 35, 0.22);
  --color-red: #ef2814;
  --color-red-border: #d32010;
  --color-green: #66a42e;
  --color-green-hover: #4d7827;
  --border-radius-base: 6px;
  --heading-weight: 700;
  --section-padding: 2.6rem 0;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.72;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 900px; margin: 0 auto; padding-left: 1.3rem; padding-right: 1.3rem; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: 1.14;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.5rem); text-transform: none; margin: 0 0 1.1rem; text-align: center; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.5rem); margin: 2.8rem 0 1.3rem; text-align: center; }
h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.6rem auto 0;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
h3 { font-size: 1.6rem; margin: 2rem 0 0.6rem; color: var(--color-text); }
h4 { font-size: 1.28rem; margin: 1.5rem 0 0.5rem; color: var(--color-accent); }

p { margin: 0 0 1.15rem; }
a { color: var(--color-accent); text-decoration: none; transition: color .15s; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; color: #fff; }
em { color: var(--color-text); }

main { padding: 2.4rem 0 1rem; }

ul, ol { margin: 0 0 1.2rem; padding-left: 1.4rem; }
li { margin-bottom: 0.5rem; }

img { max-width: 100%; height: auto; }
.img-center { display: block; margin: 2.2rem auto; border-radius: var(--border-radius-base); }
.text-center { text-align: center; }
.my-2 { margin-top: 1.6rem; margin-bottom: 1.6rem; }

/* ---------- Header ---------- */
.site-header { background: var(--color-header); border-bottom: 1px solid var(--color-accent-soft); position: sticky; top: 0; z-index: 50; }
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  flex-wrap: wrap;
}
.header-left { display: inline-flex; align-items: center; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 150px; height: auto; display: block; }
.bonus-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.bonus-link:hover { color: #fff; text-decoration: none; }
.header-right { display: inline-flex; align-items: center; gap: 0.6rem; }
.hdr-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
  padding: 0.5rem 1.35rem;
  border-radius: var(--border-radius-base);
  color: #fff;
  display: inline-block;
  line-height: 1.3;
}
.hdr-btn:hover { text-decoration: none; color: #fff; }
.hdr-btn-red { border: 1px solid var(--color-red-border); background-color: var(--color-red); }
.hdr-btn-red:hover { border: 1px solid var(--color-red-border); background-color: var(--color-red); }
.hdr-btn-green { border: 1px solid var(--color-green); background-color: var(--color-green); }
.hdr-btn-green:hover { border: 1px solid var(--color-green); background-color: var(--color-green-hover); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-header);
  color: var(--color-text);
  border-top: 1px solid var(--color-accent-soft);
  padding: 2.2rem 0;
  margin-top: 3.4rem;
  font-size: 0.92rem;
}
.site-footer-inner { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
.site-footer a { color: var(--color-accent); }

/* ---------- Content CTA button (btn:) ---------- */
.cta-btn {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  background-color: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-red-border);
  border-radius: var(--border-radius-base);
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  text-decoration: none;
}
.cta-btn:hover { background-color: var(--color-red-border); color: #fff; text-decoration: none; }

/* ---------- Three CTA cards (like reference three-buttons) ---------- */
.three-cta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 2rem 0; }
.tcta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: #ededed;
  border: 1px solid #cfcfcf;
  border-radius: var(--border-radius-base);
  padding: 0.85rem 1.1rem;
  color: #171717;
  min-height: 74px;
  transition: transform .12s, box-shadow .12s;
}
.tcta-card:hover { text-decoration: none; color: #171717; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.tcta-text { display: flex; flex-direction: column; gap: 0.1rem; }
.tcta-eyebrow { font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.92rem; color: #171717; }
.tcta-desc { font-size: 0.82rem; line-height: 1.2; color: #333; text-transform: uppercase; letter-spacing: 0.01em; }
.tcta-icon { flex-shrink: 0; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; }
.tcta-icon svg { width: 42px; height: 42px; display: block; }

/* ---------- Crown element (like reference crown-element) ---------- */
.crown-cta {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 2.2rem 1.6rem 2rem;
  margin: 2.4rem 0;
  text-align: center;
}
.crown-icon { margin: 0 auto 0.4rem; width: 74px; height: 56px; }
.crown-icon svg { width: 74px; height: 56px; display: block; margin: 0 auto; }
.crown-title { font-family: var(--font-heading); font-weight: 700; font-style: italic; font-size: clamp(1.7rem, 4vw, 2.3rem); color: #fff; margin: 0.2rem 0 0.4rem; text-transform: none; }
.crown-sub { color: #d9d9d9; font-size: 1.05rem; margin: 0 0 1.4rem; }
.crown-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin: 0 0 1.6rem; }
.crown-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: #1d1d1d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: #ededed;
  font-size: 0.98rem;
  text-align: left;
}
.cp-icon { flex-shrink: 0; width: 26px; height: 26px; display: inline-flex; }
.cp-icon svg { width: 26px; height: 26px; display: block; }
.crown-btns { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }
.crown-btn {
  font-family: var(--font-heading); font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 1.05rem; padding: 0.72rem 2rem; border-radius: var(--border-radius-base); display: inline-block; line-height: 1.3;
}
.crown-btn:hover { text-decoration: none; }
.crown-btn-light { background: #ffffff; color: #111; border: 1px solid #ffffff; }
.crown-btn-light:hover { background: #e6e6e6; color: #111; }
.crown-btn-dark { background: #0a0a0a; color: #fff; border: 1px solid #ffffff; }
.crown-btn-dark:hover { background: #222; color: #fff; }

/* ---------- Table (info-table) ---------- */
.info-table { width: 100%; border-collapse: collapse; margin: 1.8rem 0; border: 1px solid var(--color-accent-soft); border-radius: var(--border-radius-base); overflow: hidden; }
.info-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: #111;
  background: var(--color-accent);
  text-align: left;
  padding: 0.75rem 1rem;
}
.info-table td { padding: 0.72rem 1rem; text-align: left; color: var(--color-text); border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-table tbody tr:nth-child(even) { background: var(--color-surface); }
.info-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Injected: stat-block (stats-row) ---------- */
.stats-row { display: flex; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.metric-item { flex: 1 1 0; min-width: 150px; text-align: center; padding: 0.4rem 1.4rem; border-left: 1px solid var(--color-accent-soft); }
.metric-item:first-child { border-left: none; }
.metric-val { display: block; font-family: var(--font-heading); font-weight: 700; font-style: italic; font-size: 2.7rem; line-height: 1.05; color: var(--color-accent); }
.metric-label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-top: 0.2rem; }

/* ---------- Injected: badge-row (cert-row) ---------- */
.cert-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0; justify-content: center; }
.cert-chip { border: 1px solid var(--color-accent); color: var(--color-accent); padding: 0.28rem 0.95rem; border-radius: 20px; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-heading); font-weight: 600; }

/* ---------- Structure: feature cards (list-cards) ---------- */
.feature-cards { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.9rem; }
.feature-cards li { background: var(--color-surface); border: 1px solid var(--color-accent-soft); border-radius: var(--border-radius-base); padding: 0.9rem 1.1rem; margin: 0; }

/* ---------- Structure: icon list ---------- */
.icon-list { list-style: none; padding-left: 0; }
.icon-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem; }
.icon-list li::before { content: "\25C6"; position: absolute; left: 0; color: var(--color-accent); font-size: 0.8rem; top: 0.28rem; }

/* ---------- Structure: numbered steps ---------- */
.numbered-steps { list-style: none; padding-left: 0; counter-reset: step; margin: 1.4rem 0; }
.numbered-steps > li { position: relative; padding-left: 3.2rem; margin-bottom: 1.1rem; min-height: 2.3em; }
.numbered-steps > li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 2.3em; height: 2.3em; background: var(--color-accent); color: #111; border-radius: 50%; text-align: center; line-height: 2.3em; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; }

/* ---------- Two-column panels (split-cols) ---------- */
.split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin: 1.6rem 0; }
.panel-item { background: var(--color-surface); border: 1px solid var(--color-accent-soft); border-radius: var(--border-radius-base); padding: 1.2rem 1.4rem; }
.panel-item h3 { margin-top: 0; }

/* ---------- Guide steps (title + desc) ---------- */
.guide-list { list-style: none; padding-left: 0; counter-reset: gstep; margin: 1.5rem 0; }
.guide-list > li { position: relative; padding-left: 3.4rem; margin-bottom: 1.3rem; }
.guide-list > li::before { counter-increment: gstep; content: counter(gstep); position: absolute; left: 0; top: 0.1rem; width: 2.4em; height: 2.4em; background: var(--color-surface-2); border: 1px solid var(--color-accent); color: var(--color-accent); border-radius: 50%; text-align: center; line-height: 2.4em; font-family: var(--font-heading); font-weight: 700; }
.guide-list .guide-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: #fff; display: block; margin-bottom: 0.15rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.4rem 0 0.2rem; }
.faq-item h3 { color: var(--color-accent); font-size: 1.3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .three-cta { grid-template-columns: 1fr; }
  .crown-pills { grid-template-columns: 1fr; }
  .split-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  .site-header-inner { justify-content: center; }
  .header-left { gap: 0.8rem; }
  .brand-logo { width: 128px; }
  .header-right { gap: 0.45rem; }
  .hdr-btn { padding: 0.45rem 0.95rem; font-size: 0.92rem; }

  .info-table { border: none; }
  .info-table thead { display: none; }
  .info-table tr { display: block; margin-bottom: 1rem; border: 1px solid var(--color-accent-soft); border-radius: var(--border-radius-base); overflow: hidden; }
  .info-table tbody tr:nth-child(even) { background: transparent; }
  .info-table td { display: flex; justify-content: space-between; gap: 0.6rem; text-align: right; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0.6rem 0.85rem; }
  .info-table tr td:last-child { border-bottom: none; }
  .info-table td::before { content: attr(data-label); font-family: var(--font-heading); font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.03em; text-align: left; flex-shrink: 0; }
}

@media (max-width: 480px) {
  .stats-row { flex-direction: column; }
  .metric-item { border-left: none; border-top: 1px solid var(--color-accent-soft); padding: 0.8rem 0; }
  .metric-item:first-child { border-top: none; }
  .crown-btns { flex-direction: column; }
  .crown-btn { width: 100%; }
}
