/* LogBoek marketing + support site — shared styles.
   Brand: deep navy #0B2545, with a slightly lighter navy #1D4E89 for
   buttons/links/hover. No bright blue (reads as purple). Light theme. */

:root {
  --navy: #0b2545;
  --navy-deep: #071a34;
  --navy-soft: #12315e;
  /* "Accent" is a navy-blue, not a bright blue — buttons/links use the approved
     navy so nothing reads as purple. */
  --accent: #1d4e89;
  --accent-dark: #0b2545;
  --accent-tint: #eaf0f8;
  --ink: #0b2545;
  --muted: #5b6b82;
  --line: #e4e9f1;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --ok: #12805c;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.14);
  --wrap: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); margin: 0 0 0.4em; }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.3rem); margin: 0 0 0.5em; }
h3 { font-size: 1.2rem; margin: 0 0 0.4em; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.brand:hover { text-decoration: none; }
.brand .dot { color: var(--accent); }
.brand-mark { height: 30px; width: auto; display: block; margin-right: 10px; }
.site-footer .brand-mark { height: 34px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a.btn-primary { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 37, 69, 0.3);
}
.btn-primary:hover { background: var(--navy-soft); color: #fff; }
.btn-ghost { background: #fff; color: var(--accent); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: radial-gradient(
      1100px 460px at 72% -12%,
      rgba(43, 92, 158, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 92px 0 100px;
  overflow: hidden;
}
.hero h1 { color: #fff; max-width: 15ch; }
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 52ch;
  color: #cdddf5;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; }
.hero .badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #dbe8fb;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---- Sections ---- */
section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---- Grid / cards ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ---- Trust strip ---- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.96rem;
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.8rem;
}

/* ---- Pricing ---- */
.price-card { text-align: center; max-width: 460px; margin: 0 auto; }
.price { font-size: 3.4rem; font-weight: 800; color: var(--navy); margin: 0.1em 0 0.3em; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 600; }

/* ---- FAQ / details ---- */
details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2px 20px;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow 0.12s ease;
}
details[open] { box-shadow: var(--shadow); }
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.5rem; line-height: 1; }
details[open] summary::after { content: "–"; }

/* ---- Legal / prose pages ---- */
.prose { max-width: 740px; margin: 0 auto; padding: 56px 22px; }
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.4rem); }
.prose h2 { margin-top: 1.7em; font-size: 1.35rem; color: var(--navy); }
.prose h3 { margin-top: 1.3em; }
.prose .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.45em; }
.callout {
  background: var(--accent-tint);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 1.6em 0;
}
.placeholder {
  background: #fff6e5;
  border: 1px dashed #e0a940;
  border-radius: 6px;
  padding: 1px 8px;
  font-size: 0.9em;
  color: #8a5a00;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: #b9c6da;
  padding: 56px 0 34px;
  margin-top: 48px;
}
.site-footer a { color: #dbe6f7; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; }
.footer-col a { display: block; margin-bottom: 9px; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #8ea0b8;
}

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 72px; }

  /* Header: logo + CTA only. Text links live in the footer on mobile. */
  .nav { height: 58px; }
  .brand { font-size: 1.12rem; }
  .brand-mark { height: 26px; margin-right: 8px; }
  .nav-links, .nav-links.compact { display: flex; gap: 8px; align-items: center; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { padding: 9px 15px; font-size: 0.88rem; }

  .prose { padding: 32px 20px; }
}
