/* Clickdoc site stylesheet — shared by index.html, privacy.html, terms.html and the
   comparison pages. Lifted verbatim out of site/index.html's inline <style>; each page keeps
   its own page-specific rules in its own <style> block, which loads after this file and wins.

   One deliberate change during the move: the h1/h2 sizing below is scoped to .wrap, the marketing
   shell, because privacy.html and terms.html now load this file too and set their own document
   typography on a bare <main>. Element-level rules that no document page uses (section, footer)
   stay unscoped. */
:root { --primary: #d9480f; --ink: #1a1d26; --ink-2: #4b5563; --ink-3: #9ca3af; --bg: #fafaf9; --surface: #fff; --border: #e5e7eb; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); line-height: 1.55; }
a { color: var(--primary); }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
header { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.brand { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.brand span { color: var(--primary); }
nav a { margin-left: 20px; color: var(--ink-2); text-decoration: none; }
.hero { padding: 56px 0 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.wrap h1 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; }
.lede { font-size: 1.15rem; color: var(--ink-2); margin: 0 0 24px; }
.btn { display: inline-flex; align-items: center; min-height: 48px; padding: 0 22px; border-radius: 8px; background: var(--primary); color: #fff; font-weight: 600; text-decoration: none; border: 1px solid var(--primary); }
.btn:hover { background: #c23f0b; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); margin-left: 8px; }
.btn:focus-visible, a:focus-visible { outline: 3px solid rgba(217,72,15,.4); outline-offset: 2px; }
.shot { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px -16px rgba(0,0,0,.35); background: #fff; }
.shot img { display: block; width: 100%; height: auto; }
section { padding: 40px 0; border-top: 1px solid var(--border); }
.wrap h2 { font-size: 1.6rem; letter-spacing: -0.01em; margin: 0 0 20px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--ink-2); }
.price { text-align: center; }
.price .amt { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; }
.price small { display: block; color: var(--ink-3); font-weight: 500; font-size: 1rem; }
.price .buy { margin-top: 16px; }
.price p { margin-bottom: 0; }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.compare th, .compare td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.compare th { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); background: var(--bg); }
.compare tr:last-child td { border-bottom: 0; }
footer { padding: 30px 0 50px; color: var(--ink-3); font-size: .9rem; }
@media (max-width: 820px) { .hero, .grid { grid-template-columns: 1fr; } nav { display: none; } }

/* Comparison pages: the source line under a table, the honest-limits lists, the CTA row. */
.source { color: var(--ink-3); font-size: .9rem; margin: 12px 0 0; }
.source a { color: var(--ink-2); }
.checklist { margin: 0; padding-left: 20px; color: var(--ink-2); }
.checklist li { margin-bottom: 8px; }
.table-scroll { overflow-x: auto; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-row .btn-ghost { margin-left: 0; }
