/* =============================================================
   GOALS by Splurjj — App Guide Page Styles
   guide.css  |  Companion to css/style.css
   ============================================================= */

/* ── Hero ─────────────────────────────────────────────────── */
.guide-hero {
  padding: 140px 0 80px;
  background: #000;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.guide-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.guide-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 20px;
  letter-spacing: -.02em;
}

.guide-hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}

.guide-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Table of Contents ──────────────────────────────────────── */
.guide-toc {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 48px 0;
}

.guide-toc-inner {
  max-width: 900px;
  margin: 0 auto;
}

.guide-toc h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.guide-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px 24px;
}

.guide-toc-list li a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}

.guide-toc-list li a:hover,
.guide-toc-list li a:focus-visible {
  color: #fff;
}

.guide-toc-list li a::before {
  content: '→';
  opacity: .4;
  font-size: .8rem;
}

/* ── Body wrapper ───────────────────────────────────────────── */
.guide-body {
  background: #000;
  padding: 80px 0 120px;
}

.guide-body .container {
  max-width: 900px;
}

/* ── Section blocks ─────────────────────────────────────────── */
.guide-section {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.guide-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}

.guide-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -.015em;
}

.guide-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin: 40px 0 12px;
}

.guide-section p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.guide-section ul,
.guide-section ol {
  padding-left: 24px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  font-size: 1rem;
}

.guide-section li {
  margin-bottom: 8px;
}

.guide-section strong {
  color: #fff;
  font-weight: 600;
}

/* ── Callout / tip boxes ─────────────────────────────────────── */
.guide-tip {
  background: rgba(255,255,255,.04);
  border-left: 3px solid rgba(255,255,255,.25);
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin: 28px 0;
}

.guide-tip p {
  margin: 0;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}

.guide-tip strong {
  color: #fff;
}

.guide-tip.guide-tip--warning {
  border-color: #e8a020;
  background: rgba(232,160,32,.07);
}

.guide-tip.guide-tip--success {
  border-color: #3ecf8e;
  background: rgba(62,207,142,.06);
}

/* ── Step grid ───────────────────────────────────────────────── */
.guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.guide-step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .25s;
}

.guide-step-card:hover {
  border-color: rgba(255,255,255,.18);
}

.guide-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.guide-step-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 6px;
}

.guide-step-card p {
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ── Feature grid ────────────────────────────────────────────── */
.guide-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.guide-feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;
}

.guide-feature-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 8px;
}

.guide-feature-card p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.guide-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

/* ── Offline badge ───────────────────────────────────────────── */
.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62,207,142,.1);
  color: #3ecf8e;
  border: 1px solid rgba(62,207,142,.25);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.offline-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf8e;
  display: inline-block;
}

/* ── Offline feature table ───────────────────────────────────── */
.guide-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.09);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
}

.guide-table th {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.guide-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: middle;
}

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

.guide-table .status-yes {
  color: #3ecf8e;
  font-weight: 600;
}

.guide-table .status-partial {
  color: #e8a020;
  font-weight: 600;
}

.guide-table .status-no {
  color: rgba(255,255,255,.3);
}

/* ── Print CTA bar ───────────────────────────────────────────── */
.guide-print-bar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.guide-print-bar-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 6px;
}

.guide-print-bar-text p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}

.guide-print-bar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── FAQ inside guide ────────────────────────────────────────── */
.guide-faq-list {
  margin-top: 28px;
}

.guide-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.guide-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}

.guide-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
  transition: transform .25s;
}

.guide-faq-item.open .guide-faq-q::after {
  transform: rotate(45deg);
}

.guide-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.guide-faq-item.open .guide-faq-a {
  max-height: 600px;
}

.guide-faq-a p {
  padding-bottom: 20px;
  color: rgba(255,255,255,.65);
  font-size: .96rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Footer (guide page inherits main footer styles) ─────────── */

/* ── Print styles ────────────────────────────────────────────── */
@media print {
  .nav,
  .guide-hero-actions,
  .guide-print-bar-actions,
  .footer,
  .guide-toc { display: none !important; }

  body, .guide-page {
    background: #fff !important;
    color: #000 !important;
  }

  .guide-hero {
    padding: 20px 0 16px;
    border-bottom: 2px solid #000;
  }

  .guide-hero h1,
  .guide-section h2,
  .guide-section h3,
  .guide-step-card h4,
  .guide-feature-card h4 {
    color: #000 !important;
  }

  .guide-section p,
  .guide-section ul,
  .guide-section ol,
  .guide-step-card p,
  .guide-feature-card p,
  .guide-faq-a p {
    color: #333 !important;
  }

  .guide-section-label,
  .section-label {
    color: #666 !important;
  }

  .guide-step-num {
    background: #000 !important;
    color: #fff !important;
  }

  .guide-tip {
    border-left-color: #000 !important;
    background: #f5f5f5 !important;
  }

  .guide-tip p {
    color: #333 !important;
  }

  .guide-table th {
    background: #eee !important;
    color: #000 !important;
  }

  .guide-table td {
    color: #333 !important;
  }

  .guide-step-card,
  .guide-feature-card {
    border-color: #ccc !important;
    background: #fafafa !important;
    page-break-inside: avoid;
  }

  .guide-section {
    page-break-inside: avoid;
    border-bottom-color: #ccc !important;
  }

  .guide-faq-a {
    max-height: none !important;
  }

  .offline-badge {
    border-color: #000 !important;
    color: #000 !important;
    background: #eee !important;
  }
}

/* ── Layout (sidebar + content) ─────────────────────────────── */
.guide-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  gap: 48px;
  background: #000;
}

/* Sticky sidebar */
.guide-toc {
  position: sticky;
  top: 80px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.guide-toc h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}

.toc-list li {
  margin-bottom: 2px;
}

.toc-list a {
  display: block;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .84rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  line-height: 1.45;
}

.toc-list a:hover,
.toc-list a.toc-active {
  background: rgba(255,255,255,.07);
  color: #fff;
}

/* Guide content */
.guide-content {
  min-width: 0;
}

/* ── Guide Hero meta ─────────────────────────────────────────── */
.guide-meta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Section styles ──────────────────────────────────────────── */
.guide-section {
  margin-bottom: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.guide-section.visible,
.guide-section.reveal.visible {
  opacity: 1;
  transform: none;
}

.guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.guide-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.section-num {
  font-size: 1rem;
  color: rgba(255,255,255,.25);
  font-weight: 400;
}

.guide-section h3,
.sub-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 36px 0 12px;
}

.guide-section p {
  color: rgba(255,255,255,.68);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.guide-section ul,
.guide-section ol,
.plain-list,
.inline-list {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  font-size: .96rem;
  padding-left: 22px;
  margin-bottom: 16px;
}

.guide-section li { margin-bottom: 6px; }

/* ── Platform install cards ──────────────────────────────────── */
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.platform-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .25s;
}

.platform-card:hover { border-color: rgba(255,255,255,.18); }

.platform-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.android-icon { background: rgba(61,220,132,.1); color: #3ddc84; }

.platform-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
}

.install-steps {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 16px;
}

.install-steps li { margin-bottom: 6px; }

.system-req {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ── Numbered steps ──────────────────────────────────────────── */
.steps-numbered {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.step-n {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color .2s;
}

.step-n:hover { border-color: rgba(255,255,255,.14); }

.step-n-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
}

.step-n > div {
  color: rgba(255,255,255,.68);
  font-size: .93rem;
  line-height: 1.7;
}

/* ── Tips / callouts ─────────────────────────────────────────── */
.guide-tip {
  background: rgba(255,255,255,.04);
  border-left: 3px solid rgba(255,255,255,.2);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.7;
}

.tip-label {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding-top: 2px;
}

.guide-callout {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  color: rgba(255,255,255,.65);
  font-size: .93rem;
  line-height: 1.75;
}

/* ── Feature table ───────────────────────────────────────────── */
.feature-table {
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  overflow: hidden;
}

.ft-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

.ft-row:last-child { border-bottom: none; }

.ft-header {
  background: rgba(255,255,255,.05);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Offline grid ────────────────────────────────────────────── */
.offline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.offline-card {
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px 24px;
}

.offline-card.available { border-color: rgba(62,207,142,.2); }
.offline-card.unavailable { border-color: rgba(255,255,255,.06); }

.offline-card-icon {
  font-size: 1.6rem;
  color: #3ecf8e;
  margin-bottom: 12px;
}

.unavail-icon { color: rgba(255,255,255,.25); }

.offline-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
}

.offline-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offline-card.available ul li::before {
  content: '✓ ';
  color: #3ecf8e;
  font-weight: 700;
}

.offline-card.unavailable ul li::before {
  content: '— ';
  color: rgba(255,255,255,.3);
}

.offline-card ul li {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── Tips grid ───────────────────────────────────────────────── */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tip-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .25s;
}

.tip-card:hover { border-color: rgba(255,255,255,.18); }

.tip-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: 12px;
}

.tip-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.tip-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0;
}

/* ── Guide FAQ ───────────────────────────────────────────────── */
.guide-faq { margin-top: 24px; }

.gfaq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}

.gfaq-item:last-child { border-bottom: none; }

.gfaq-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.gfaq-item p {
  font-size: .91rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin: 0;
}

/* ── Final CTA ───────────────────────────────────────────────── */
.guide-final-cta {
  text-align: center;
  margin-top: 64px;
  padding: 60px 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.02);
}

.guide-final-cta h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.guide-final-cta p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin-bottom: 28px;
}

.guide-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Print bar ───────────────────────────────────────────────── */
.guide-print-bar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 24px 0;
}

.guide-print-bar-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 6px;
}

.guide-print-bar-text p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}

.guide-print-bar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .guide-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 80px;
    gap: 0;
  }

  .guide-toc {
    position: relative;
    top: auto;
    max-height: none;
    margin-bottom: 40px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .guide-hero { padding: 120px 0 60px; }
  .guide-hero h1 { font-size: 2rem; }
  .guide-hero-actions { flex-direction: column; align-items: center; }

  .platform-cards { grid-template-columns: 1fr; }
  .offline-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .ft-row { grid-template-columns: 1fr; gap: 4px; }
  .ft-header { display: none; }

  .guide-print-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    margin: 0;
  }

  .guide-final-cta { padding: 40px 20px; }
  .guide-final-cta h3 { font-size: 1.4rem; }

  .toc-list { column-count: 2; }

  .step-n { flex-direction: row; }
}
