/* Freight Finder site — shared styles. Light, road-orange, fast. */
:root {
  --bg: #ffffff;
  --bg-raised: #f5f6f8;
  --ink: #111111;
  --ink-soft: #55606e;
  --accent: #ed4f24;
  --accent-dark: #c93f18;
  --blue: #007aff;
  --line: #e4e7ec;
  --max: 960px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
a { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

header.site { padding: 14px 0; border-bottom: 1px solid var(--line); }
header.site .wrap { display: flex; align-items: center; gap: 12px; }
header.site img { width: 36px; height: 36px; border-radius: 8px; }
header.site .name { font-weight: 700; font-size: 1.1em; color: var(--ink); text-decoration: none; }
header.site nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
header.site nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.95em; }
header.site nav a:hover { color: var(--ink); }

.hero { padding: 56px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(1.6em, 4.5vw, 2.5em); line-height: 1.2; margin: 0 0 14px; }
.hero .pitch { color: var(--ink-soft); font-size: 1.15em; max-width: 640px; margin: 0 auto 26px; }
.badges { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.badges img { height: 54px; width: auto; }
.shots { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.shots img {
  width: min(240px, 28vw);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

section { padding: 36px 0; }
section h2 { font-size: 1.5em; margin: 0 0 16px; }
section h3 { font-size: 1.1em; margin: 22px 0 8px; }
.muted { color: var(--ink-soft); }

ul.features { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 12px; }
ul.features li { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
ul.features b { color: var(--accent-dark); }

ol.steps { padding-left: 22px; }
ol.steps li { margin-bottom: 8px; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.pricing .plan { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.pricing .plan .price { font-size: 1.6em; font-weight: 700; margin: 4px 0; }
.pricing .plan .price small { font-size: 0.55em; font-weight: 400; color: var(--ink-soft); }

.faq details { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 10px 0; }
.faq p { margin-top: 4px; }

.cta { text-align: center; }
.cta-box {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px; margin: 28px 0; text-align: center;
}
.cta-box .badges { margin: 14px 0 0; }

footer.site { border-top: 1px solid var(--line); margin-top: 40px; padding: 30px 0 44px; color: var(--ink-soft); font-size: 0.9em; }
footer.site nav { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
footer.site a { color: var(--ink-soft); }
.disclaimer { font-size: 0.85em; line-height: 1.5; max-width: 720px; }

/* Guide / article pages */
article.guide h2 { border-bottom: 1px solid var(--line); padding-bottom: 6px; margin-top: 34px; }
article.guide table { border-collapse: collapse; width: 100%; margin: 12px 0; font-size: 0.95em; }
article.guide th, article.guide td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
article.guide th { color: var(--accent-dark); white-space: nowrap; }
article.guide .table-wrap { overflow-x: auto; }
article.guide .callout { background: #fff3e0; border-left: 4px solid var(--accent); padding: 10px 16px; border-radius: 0 8px 8px 0; margin: 16px 0; }
.breadcrumbs { font-size: 0.9em; color: var(--ink-soft); margin: 18px 0 0; }
.related { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; margin: 18px 0; line-height: 2; }

@media print {
  header.site, footer.site, .badges, .cta, .cta-box, .breadcrumbs, .related { display: none; }
  a { color: #111; text-decoration: none; }
}
