/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg0: #0b0f1a;
  --bg1: #0e1420;
  --bg2: #131c2e;
  --bg3: #192337;
  --bg4: #1e2a40;
  --bg5: #243048;
  --blue: #4a9eff;
  --blue-dim: rgba(74, 158, 255, .12);
  --blue-border: rgba(74, 158, 255, .25);
  --green: #3ecf8e;
  --green-dim: rgba(62, 207, 142, .12);
  --text: #f0f4ff;
  --text2: #8b9ab5;
  --text3: #4a5876;
  --border: rgba(255, 255, 255, .06);
  --border2: rgba(255, 255, 255, .1);
  --r: 14px;
  --r-sm: 10px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .4), 0 8px 24px rgba(0, 0, 0, .3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg0);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 90px;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg0);
}

::-webkit-scrollbar-thumb {
  background: var(--bg4);
  border-radius: 3px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 26, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0b0f1a;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: .25rem;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  color: var(--text2);
  padding: 6px 12px;
  border-radius: 7px;
  transition: background .15s, color .15s;
}

.nav-links a:hover {
  background: var(--bg3);
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.btn-blue {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 8px 24px;
  border-radius: 8px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}

.btn-blue:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  padding: 4rem 1.5rem 3.5rem;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--text3);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--text3);
  transition: color .15s;
}

.breadcrumb a:hover {
  color: var(--text2);
}

.breadcrumb-sep {
  opacity: .5;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .875rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.125rem;
}

.hero-desc {
  font-size: 19px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  padding: 12px 28px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
}

.btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  font-family: inherit;
  padding: 12px 28px;
  border-radius: 9px;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.btn-outline:hover {
  background: var(--bg3);
  border-color: var(--border2);
}

/* verdict mini */
.verdict-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.verdict-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--text2);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}

.verdict-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green {
  background: var(--green);
}

.dot-red {
  background: #f87171;
}

/* quick-start card */
.qs-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.qs-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .875rem;
}

.qs-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .625rem;
  letter-spacing: -.02em;
}

.qs-card p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.qs-checks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.qs-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.qs-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(62, 207, 142, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--green);
  flex-shrink: 0;
}

.qs-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.qs-price {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .875rem 1rem;
}

.qs-price .amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}

.qs-price .period {
  font-size: 14px;
  color: var(--text3);
  margin-top: 1px;
}

/* ─── SCROLL PILLS ───────────────────────────────────── */
.pills-row {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .875rem 1.5rem;
  background: var(--bg1);
}

.pills-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 16px;
  color: var(--text2);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 18px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.pill:hover,
.pill.active {
  background: var(--bg4);
  color: var(--text);
  border-color: var(--border2);
}

/* ─── SECTIONS ───────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2.5rem;
  padding: 3rem 0;
}

/* TOC */
.toc {
  position: sticky;
  top: 80px;
  align-self: start;
}

.toc-inner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.toc-head {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text3);
}

.toc-link {
  display: block;
  padding: .5rem 1rem;
  font-size: 16px;
  color: var(--text2);
  border-left: 2px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}

.toc-link:hover {
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}

.toc-link.active {
  color: var(--blue);
  border-left-color: var(--blue);
  background: var(--blue-dim);
}

/* Article */
.article section {
  margin-bottom: 3rem;
  scroll-margin-top: 80px;
}

.sec-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
  margin: 1.5rem 0 .6rem;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 .5rem;
}

p {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: .8rem;
  font-weight: 300;
}

p strong {
  color: var(--text);
  font-weight: 500;
}

ul, ol {
  padding-left: 1.25rem;
  margin-bottom: .8rem;
}

li {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 4px;
  font-weight: 300;
}

li strong {
  color: var(--text);
  font-weight: 500;
}

/* ─── BONUS & DEPOSIT CARDS (HORIZONTAL) ────────────── */
.bonus-grid {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 1.5rem 0;
}

.bonus-card {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: .6;
}

.bonus-step {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: .6rem;
}

.bonus-from {
  position: absolute;
  top: 1.4rem;
  right: 1.2rem;
  font-size: 14px;
  color: var(--text3);
}

.bonus-pct {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}

.bonus-cap {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: .875rem;
}

.bonus-fs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-dim);
  border: 1px solid rgba(62, 207, 142, .2);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.bonus-card .btn-cta {
  margin-top: auto;
}

/* ─── IN-CONTENT CTA BOX ──────────────────────────────── */
.content-cta-box {
  background: linear-gradient(90deg, var(--bg2), var(--bg3));
  border: 1px solid var(--blue-border);
  border-radius: var(--r);
  padding: 1.75rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.content-cta-info {
  flex: 1;
}

.content-cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.content-cta-desc {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 0;
}

/* ─── NOTICE ──────────────────────────────────────────── */
.notice {
  background: rgba(74, 158, 255, .05);
  border: 1px solid var(--blue-border);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.35rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notice-ico {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
  flex-shrink: 0;
}

.notice p {
  color: rgba(200, 220, 255, .75);
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

.notice strong {
  color: var(--blue);
}

/* ─── STEP LIST ───────────────────────────────────────── */
.steps {
  display: grid;
  gap: 8px;
  margin: 1rem 0;
}

.step-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .15s;
}

.step-row:hover {
  border-color: var(--border2);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-txt {
  font-size: 16.5px;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}

.step-txt strong {
  color: var(--text);
  font-weight: 500;
}

/* ─── FEATURE CARDS (HORIZONTAL) ─────────────────────── */
.feat-grid {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.feat-card {
  flex: 1;
  min-width: 240px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: border-color .2s, transform .15s;
}

.feat-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.feat-icon-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.05em;
  background: var(--blue-dim);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.feat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.feat-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

/* live dot */
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  display: inline-block;
  margin-right: 6px;
  animation: lp 1.5s infinite;
}

@keyframes lp {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ─── PAY TABLE ──────────────────────────────────────── */
.table-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 1.25rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: var(--bg3);
}

th {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 16px;
  color: var(--text2);
  font-weight: 300;
  vertical-align: middle;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  font-weight: 500;
  color: var(--text);
}

.table-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.table-list li {
  font-size: 16px;
  margin-bottom: 2px;
}

.badge-green {
  display: inline-block;
  font-size: 14px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(62, 207, 142, .2);
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 600;
}

.badge-yellow {
  display: inline-block;
  font-size: 14px;
  background: rgba(234, 179, 8, .1);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, .2);
  padding: 3px 9px;
  border-radius: 5px;
  font-weight: 600;
}

/* ─── SUPPORT ─────────────────────────────────────────── */
.support-grid {
  display: grid;
  gap: 12px;
  margin: 1.25rem 0;
}

.support-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .15s;
}

.support-card:hover {
  border-color: var(--border2);
}

.support-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.support-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
}

.support-desc a {
  color: var(--blue);
}

/* ─── CTA SECTION (HORIZONTAL FACT CARDS) ────────────── */
.cta-section {
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cta-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: .375rem;
}

.cta-sub {
  font-size: 16.5px;
  color: var(--text3);
  margin-bottom: 2rem;
}

.cta-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cta-card {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .15s, transform .15s;
}

.cta-card:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.cta-card.featured {
  border-color: rgba(74, 158, 255, .35);
  background: rgba(74, 158, 255, .04);
}

.cta-feat-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  padding: 3px 9px;
  border-radius: 5px;
  align-self: flex-start;
}

.kf-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text3);
}

.kf-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}

.kf-big.blue {
  color: var(--blue);
}

.kf-sub {
  font-size: 15px;
  color: var(--text3);
}

.kf-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.kf-mini {
  background: var(--bg3);
  border-radius: 8px;
  padding: .65rem .8rem;
}

.kf-mini .kf-label {
  margin-bottom: 4px;
}

.kf-mini-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 6px;
}

.stars-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.btn-cta {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s, transform .1s;
  margin-top: auto;
}

.btn-cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ─── STICKY BOTTOM BANNER ────────────────────────────── */
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 20, 32, .95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--blue-border);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .5);
}

.sticky-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sticky-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sticky-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.sticky-badge {
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.sticky-inner .btn-blue {
  min-width: 180px;
  text-align: center;
  padding: 12px 24px;
  font-size: 17px;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-section {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .15s;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}

.faq-toggle {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform .2s, background .15s, color .15s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--blue-dim);
  color: var(--blue);
  border-color: var(--blue-border);
}

.faq-a {
  display: none;
  padding: .75rem 1.25rem 1.1rem;
  font-size: 16.5px;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

.faq-a.show {
  display: block;
}

.faq-a ul {
  padding-left: 1.2rem;
  margin-top: 6px;
}

.faq-a ul li {
  margin-bottom: 5px;
}

/* ─── AUTHOR ─────────────────────────────────────────── */
.author-section {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.author-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(74, 158, 255, .12);
  border: 1px solid rgba(74, 158, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.author-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -.01em;
}

.author-role {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .6rem;
}

.author-bio {
  font-size: 16.5px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: .75rem;
  font-weight: 300;
}

.author-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.author-meta-i {
  font-size: 15px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.author-meta-i span {
  color: var(--text2);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-bottom: .75rem;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0b0f1a;
  font-weight: 800;
}

.footer-note {
  font-size: 15px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto .75rem;
  font-weight: 300;
}

.footer-copy {
  font-size: 14px;
  color: var(--text3);
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .qs-card {
    display: none;
  }
}

@media(max-width:700px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .toc {
    display: none;
  }
  .bonus-grid,
  .cta-grid,
  .feat-grid {
    flex-direction: column;
  }
  .nav-links {
    display: none;
  }
  h1 {
    font-size: 2.2rem;
  }
  .sticky-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
  .sticky-content {
    flex-direction: column;
    gap: 0.25rem;
  }
}