/* AdaptLocal Help Center — shared article stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --paper: #FAF6EC; --paper-dim: #E5DFC9; --bone: #D2C9AE;
  --char: #14110B; --ink: #1A1810; --ink-soft: #3E382A; --ink-mute: #6E6650;
  --green: #2D5A3D; --green-dark: #16291E; --green-dim: rgba(45,90,61,0.08);
  --green-ring: rgba(45,90,61,0.2); --green-glow: #5BA374;
  --gold: #D4A44C; --surface: #FFFFFF;
  --warn-bg: #FFF8ED; --warn-border: #F5C842; --warn-text: #7A5A00;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Mona Sans', system-ui, sans-serif;
  --radius: 10px; --radius-sm: 7px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav.topnav { position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--paper-dim); padding: 0 clamp(20px,4vw,56px); height: 60px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.brand-mark { width: 32px; height: 32px; background: var(--green); color: var(--paper); display: grid; place-items: center; border-radius: 7px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-cta { background: var(--green); color: var(--paper); padding: 8px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; transition: background .2s; }
.nav-cta:hover { background: var(--green-dark); text-decoration: none; }

/* Layout */
.page { max-width: 1100px; margin: 0 auto; padding: 40px clamp(20px,4vw,56px) 96px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
@media (max-width: 760px) { .page { grid-template-columns: 1fr; gap: 32px; padding: 24px 20px 72px; } }

/* Sidebar */
.sidebar { position: sticky; top: 80px; }
@media (max-width: 760px) { .sidebar { display: none; } }
.sidebar-back { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-mute); margin-bottom: 20px; }
.sidebar-back svg { flex-shrink: 0; }
.sidebar-back:hover { color: var(--green); text-decoration: none; }
.sidebar-section { margin-bottom: 20px; }
.sidebar-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.sidebar-link { display: block; font-size: 13px; font-weight: 500; color: var(--ink-soft); padding: 4px 10px; border-radius: 6px; margin-bottom: 1px; transition: background .15s, color .15s; }
.sidebar-link:hover { background: var(--green-dim); color: var(--green); text-decoration: none; }
.sidebar-link.active { background: var(--green-dim); color: var(--green); font-weight: 600; }

/* On-this-page */
.on-this-page { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--paper-dim); }
.on-this-page-link { display: block; font-size: 12px; color: var(--ink-mute); padding: 3px 10px; border-radius: 5px; transition: color .15s; }
.on-this-page-link:hover { color: var(--green); text-decoration: none; }
.on-this-page-link.active { color: var(--green); font-weight: 600; }

/* Article header */
.article-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--paper-dim); }
.article-eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.article-title { font-family: var(--font-display); font-size: clamp(24px,3.5vw,36px); font-weight: 700; letter-spacing: -0.025em; color: var(--ink); line-height: 1.15; margin-bottom: 10px; }
.article-meta { font-size: 13px; color: var(--ink-mute); }

/* Prose */
.prose { font-size: 15px; line-height: 1.78; color: var(--ink-soft); }
.prose h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin: 40px 0 14px; letter-spacing: -0.015em; scroll-margin-top: 80px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; letter-spacing: -0.01em; scroll-margin-top: 80px; }
.prose p { margin-bottom: 14px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { font-style: italic; }
.prose code { font-family: 'SF Mono','Menlo','Consolas',monospace; font-size: 13px; background: var(--paper-dim); padding: 2px 6px; border-radius: 4px; color: var(--green-dark); }
.prose a { color: var(--green); font-weight: 500; }
.prose hr { border: none; border-top: 1px solid var(--paper-dim); margin: 32px 0; }

/* Callouts */
.callout { border-radius: var(--radius); padding: 14px 18px; margin: 20px 0; font-size: 14px; line-height: 1.65; }
.callout-warn { background: var(--warn-bg); border: 1px solid var(--warn-border); color: var(--warn-text); }
.callout-tip { background: var(--green-dim); border: 1px solid var(--green-ring); color: var(--green-dark); }
.callout strong { font-weight: 700; color: inherit; }
.callout ol, .callout ul { padding-left: 18px; margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 14px 0; display: flex; flex-direction: column; gap: 12px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 26px; height: 26px; flex-shrink: 0; background: var(--green); color: var(--paper); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 12px; font-weight: 700; margin-top: 1px; }
.step-body { font-size: 14px; line-height: 1.65; color: var(--ink-soft); padding-top: 3px; }
.step-body strong { color: var(--ink); }

/* Tables */
.carrier-table, .feature-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 18px 0; }
.carrier-table th, .feature-table th { text-align: left; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); padding: 8px 12px; border-bottom: 2px solid var(--paper-dim); }
.carrier-table td, .feature-table td { padding: 11px 12px; border-bottom: 1px solid var(--paper-dim); vertical-align: top; color: var(--ink-soft); line-height: 1.5; }
.carrier-table tr:last-child td, .feature-table tr:last-child td { border-bottom: none; }
.carrier-table td:first-child, .feature-table td:first-child { font-weight: 600; color: var(--ink); }
.carrier-table .note, .feature-table .note { font-size: 12px; color: var(--ink-mute); display: block; margin-top: 3px; }
.check { color: var(--green); font-weight: 700; }
.dash { color: var(--ink-mute); }

/* Contact */
.contact-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--paper-dim); }
.contact-card { flex: 1; min-width: 180px; background: var(--surface); border: 1px solid var(--paper-dim); border-radius: var(--radius); padding: 16px 18px; }
.contact-card-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.contact-card-body { font-size: 13px; color: var(--ink-mute); line-height: 1.55; }
.contact-card-body a { color: var(--green); font-weight: 500; }

/* Footer */
footer { background: var(--char); color: rgba(241,236,224,0.5); padding: 36px clamp(20px,4vw,56px) 24px; font-size: 13px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(241,236,224,0.9); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(241,236,224,0.55); transition: color .15s; }
.footer-links a:hover { color: rgba(241,236,224,0.9); text-decoration: none; }
