/* printSupply. — shared styles (Tommy 2026-07-21)
   Light theme: the family logo carries dark forest green, so the site runs on
   white (unlike the dark dashboard). Cyan #1FA9DE = print brand accent. */
:root {
  --cyan: #1FA9DE;
  --cyan-dark: #147ba3;
  --green: #31572c;
  --ink: #1d2b2f;
  --muted: #5b6b70;
  --line: #e3e9eb;
  --wash: #f4f8fa;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: #fff;
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 20; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
header.site img.logo { height: 30px; display: block; }
nav.main a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; margin-left: 22px; }
nav.main a:hover { color: var(--cyan); }
nav.main a.cta { background: var(--cyan); color: #fff; padding: 9px 18px; border-radius: 999px; }
nav.main a.cta:hover { background: var(--cyan-dark); color: #fff; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--wash), #fff); padding: 56px 0 48px; }
.hero h1 { font-size: clamp(28px, 4.5vw, 44px); line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero p.sub { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 0 24px; }
.btn { display: inline-block; background: var(--cyan); color: #fff; font-weight: 700; text-decoration: none;
       padding: 13px 28px; border-radius: 999px; border: 0; font-size: 16px; cursor: pointer; }
.btn:hover { background: var(--cyan-dark); }
.btn.ghost { background: #fff; color: var(--cyan); border: 2px solid var(--cyan); }
.btn.ghost:hover { background: var(--wash); }

/* Sections */
section { padding: 44px 0; }
section.alt { background: var(--wash); }
h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; letter-spacing: -0.3px; }
p.lead { color: var(--muted); margin: 0 0 26px; max-width: 640px; }
.grid { display: grid; gap: 18px; }
.grid.c3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.card .from { color: var(--green); font-weight: 800; font-size: 15px; margin-top: 10px; }
.tick { color: var(--green); font-weight: 700; margin-right: 6px; }

/* Pricing table */
table.price { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
              border-radius: 14px; overflow: hidden; font-size: 15px; }
table.price th, table.price td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
table.price th { background: var(--green); color: #fff; font-size: 13.5px; letter-spacing: 0.3px; }
table.price tr:last-child td { border-bottom: 0; }
table.price td.from { color: var(--green); font-weight: 700; white-space: nowrap; }
.price-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* Steps */
.steps { counter-reset: s; }
.steps .card { position: relative; padding-top: 26px; }
.steps .card::before { counter-increment: s; content: counter(s);
  position: absolute; top: -16px; left: 18px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--cyan); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Quote form */
form.quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
             box-shadow: 0 8px 30px rgba(29, 43, 47, 0.06); }
form.quote .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form.quote label { display: block; font-size: 13px; font-weight: 700; margin: 12px 0 4px; }
form.quote input, form.quote select, form.quote textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(31, 169, 222, 0.15);
}
form.quote button { margin-top: 18px; width: 100%; }
form.quote .fine { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-ok { background: #eef7ee; border: 1px solid #bcd9bc; color: var(--green); border-radius: 12px;
           padding: 22px; text-align: center; font-weight: 600; display: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; } /* honeypot */

/* FAQ */
details { border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; background: #fff; }
details summary { font-weight: 700; cursor: pointer; }
details p { color: var(--muted); margin: 10px 0 0; }

/* Trust strip */
.trust { display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted); font-size: 14px; font-weight: 600; }

/* Footer */
footer.site { border-top: 1px solid var(--line); padding: 30px 0 40px; color: var(--muted); font-size: 14px; }
footer.site a { color: var(--muted); }

/* Landing (ads) variant */
body.landing header.site .wrap { justify-content: center; }
body.landing .hero { padding: 34px 0 30px; }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  form.quote .row { grid-template-columns: 1fr; }
  nav.main a:not(.cta) { display: none; }
}
