/* Phase 1 landing — one shared stylesheet, mobile-first, no framework. */
:root {
  --bg: #faf8f4;
  --ink: #22303c;
  --muted: #5c6b78;
  --accent: #0e6b5e;
  --accent-ink: #ffffff;
  --card: #ffffff;
  --line: #e3ded4;
  --warn-bg: #fdf6e7;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.6 Georgia, 'Times New Roman', serif;
}
header.site, main, footer.site { max-width: 720px; margin: 0 auto; padding: 0 20px; }
header.site { padding-top: 28px; display: flex; justify-content: space-between; align-items: baseline; }
.brand { font-weight: bold; font-size: 1.05rem; letter-spacing: .02em; text-decoration: none; color: var(--ink); }
.brand span { color: var(--accent); }
.pilot-tag { font-size: .8rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 2px 10px; }

h1 { font-size: 1.9rem; line-height: 1.25; margin: 40px 0 12px; }
.sub { font-size: 1.1rem; color: var(--muted); margin: 0 0 28px; }
h2 { font-size: 1.25rem; margin: 44px 0 10px; }
p, li { color: var(--ink); }
.muted { color: var(--muted); font-size: .92rem; }
a { color: var(--accent); }

.steps { padding-left: 0; list-style: none; counter-reset: step; }
.steps li { counter-increment: step; margin: 14px 0; padding-left: 44px; position: relative; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 2px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  font: bold .95rem/28px Georgia, serif; text-align: center;
}

.dossier { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 18px 22px; }
.dossier ul { margin: 8px 0 4px; padding-left: 20px; }

table.offers { width: 100%; border-collapse: collapse; font-size: .95rem; background: var(--card); }
table.offers th, table.offers td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
table.offers th { background: var(--bg); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
table.offers tr.ours { background: #eef6f4; }
.offers-wrap { overflow-x: auto; }

.cta-block { margin: 30px 0; text-align: center; }
a.cta {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  text-decoration: none; font-size: 1.15rem; padding: 14px 34px; border-radius: 8px;
}
a.cta:hover { filter: brightness(1.08); }
.cta-note { margin-top: 10px; }

.faq dt { font-weight: bold; margin-top: 18px; }
.faq dd { margin: 4px 0 0 0; }

.notice { background: var(--warn-bg); border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; font-size: .95rem; }

form.checkout { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 22px; margin: 24px 0; }
form.checkout label { display: block; margin: 14px 0 4px; font-weight: bold; font-size: .95rem; }
form.checkout input[type=text], form.checkout input[type=email],
form.checkout select, form.checkout textarea {
  width: 100%; padding: 10px; font: inherit; border: 1px solid var(--line); border-radius: 6px; background: #fff;
}
form.checkout .radio-row label, form.checkout .consent label { font-weight: normal; display: inline; margin: 0 4px 0 4px; }
form.checkout .radio-row, form.checkout .consent { margin-top: 8px; }
form.checkout button {
  margin-top: 20px; width: 100%; background: var(--accent); color: var(--accent-ink);
  border: 0; border-radius: 8px; font: inherit; font-size: 1.1rem; padding: 13px; cursor: pointer;
}
.price-inline { font-weight: bold; }

footer.site { margin-top: 60px; padding-bottom: 40px; border-top: 1px solid var(--line); }
footer.site p { font-size: .82rem; color: var(--muted); }

@media (min-width: 700px) { h1 { font-size: 2.3rem; } }
