/* ── GUIDE PAGES ── */
.guide-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; padding: 80px 0; }
.guide-toc { position: sticky; top: 100px; background: var(--navy2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.guide-toc h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray2); margin-bottom: 16px; }
.guide-toc a { display: block; font-size: 13px; color: var(--gray); padding: 6px 0; border-bottom: 1px solid var(--border2); transition: color 0.2s; line-height: 1.4; }
.guide-toc a:last-child { border-bottom: none; }
.guide-toc a:hover { color: var(--light); }
.guide-toc a.active { color: var(--light); }
.guide-cta-inline { background: rgba(78,168,222,0.07); border: 1px solid var(--border); border-left: 3px solid var(--light); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 32px 0; }
.guide-cta-inline p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.guide-cta-inline strong { color: var(--white); }

.guide-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin: 48px 0 16px; line-height: 1; }
.guide-body h2:first-child { margin-top: 0; }
.guide-body h2 span { color: var(--light); }
.guide-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin: 32px 0 12px; }
.guide-body p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.guide-body p strong { color: var(--white); font-weight: 600; }
.guide-body ul, .guide-body ol { margin: 0 0 20px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guide-body li { color: var(--gray); font-size: 15px; line-height: 1.7; padding-left: 24px; position: relative; }
.guide-body ul li::before { content: '→'; color: var(--light); position: absolute; left: 0; font-weight: 700; }
.guide-body ol { counter-reset: guide-counter; }
.guide-body ol li { counter-increment: guide-counter; }
.guide-body ol li::before { content: counter(guide-counter); color: var(--light); position: absolute; left: 0; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700; top: 3px; }
.guide-body li strong { color: var(--white); font-weight: 600; }

.guide-callout { background: var(--navy2); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin: 24px 0; }
.guide-callout.warning { border-left: 3px solid #f59e0b; background: rgba(245,158,11,0.05); }
.guide-callout.danger { border-left: 3px solid #ef4444; background: rgba(239,68,68,0.05); }
.guide-callout.success { border-left: 3px solid #4ade80; background: rgba(74,222,128,0.05); }
.guide-callout.info { border-left: 3px solid var(--light); background: rgba(78,168,222,0.05); }
.guide-callout-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.guide-callout.warning .guide-callout-label { color: #f59e0b; }
.guide-callout.danger .guide-callout-label { color: #ef4444; }
.guide-callout.success .guide-callout-label { color: #4ade80; }
.guide-callout.info .guide-callout-label { color: var(--light); }
.guide-callout p { margin: 0; font-size: 14px; color: var(--gray); line-height: 1.7; }
.guide-callout p strong { color: var(--white); }

.rate-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; }
.rate-table th { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray2); padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border); background: var(--navy3); }
.rate-table td { font-size: 13px; color: var(--gray); padding: 12px 14px; border-bottom: 1px solid var(--border2); vertical-align: top; line-height: 1.55; }
.rate-table td strong { color: var(--white); }
.rate-table td.rate { font-family: 'IBM Plex Mono', monospace; color: var(--light); font-weight: 500; }
.rate-table td.high { color: #ef4444; font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.rate-table td.med { color: #f59e0b; font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.rate-table td.low { color: #4ade80; font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:hover td { background: rgba(255,255,255,0.02); }

.step-block { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border2); }
.step-block:last-child { border-bottom: none; }
.step-n { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue); min-width: 40px; line-height: 1; flex-shrink: 0; }
.step-content h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 6px; }
.step-content p { color: var(--gray); font-size: 14px; line-height: 1.65; margin: 0; }

.guide-related { background: var(--navy2); border: 1px solid var(--border); border-radius: 10px; padding: 28px; margin-top: 48px; }
.guide-related h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray2); margin-bottom: 16px; }
.guide-related-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.guide-related-link { background: var(--navy3); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; transition: border-color 0.2s; }
.guide-related-link:hover { border-color: var(--light); }
.guide-related-link .grl-label { font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: var(--gray2); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.guide-related-link .grl-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); }

.guide-hero-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.guide-meta-tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gray2); letter-spacing: 0.1em; padding: 4px 10px; border: 1px solid var(--border); border-radius: 3px; }

@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; padding: 40px 0; }
  .guide-toc { position: static; display: none; }
  .guide-related-links { grid-template-columns: 1fr; }
  .rate-table { font-size: 12px; }
  .rate-table th, .rate-table td { padding: 8px 10px; }
}
