/* Minimal stylesheet for the per-component landings.
 * Designed to be replaceable wholesale once a brand designer touches it. */
:root {
  --fg: #111;
  --muted: #555;
  --bg: #fff;
  --accent: #1f4e79;
  --accent-dim: #eef4fb;
  --border: #ddd;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, sans-serif; color: var(--fg); background: var(--bg); }
header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 2rem; border-bottom: 1px solid var(--border);
}
header .brand { font-weight: 700; font-size: 1.1rem; color: var(--accent); text-decoration: none; }
header nav { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; }
header nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
header nav a:hover { color: var(--fg); }
header nav a.cta-min {
  background: var(--accent); color: white; padding: 0.4rem 0.9rem; border-radius: 4px;
}
main { max-width: 920px; margin: 0 auto; padding: 4rem 2rem; }
.hero h1 { font-size: 2.75rem; margin: 0 0 0.5rem; }
.hero .subtitle { font-size: 1.25rem; color: var(--muted); margin: 0 0 1.5rem; font-style: italic; }
.hero .desc { font-size: 1.05rem; line-height: 1.55; max-width: 60ch; }
.price-card {
  background: var(--accent-dim); border-radius: 8px; padding: 1.25rem 1.5rem;
  margin: 2rem 0; max-width: 360px;
}
.price-card .row { display: flex; justify-content: space-between; margin: 0.25rem 0; }
.price-card .label { color: var(--muted); }
.price-card .amt { font-weight: 700; }
.cta-row { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.cta {
  background: var(--accent); color: white; padding: 0.75rem 1.4rem;
  border-radius: 4px; text-decoration: none; font-weight: 600;
}
.cta:hover { filter: brightness(1.1); }
.cta-secondary { color: var(--accent); text-decoration: none; font-weight: 500; }
section { margin-top: 3rem; }
section h2 { margin: 0 0 1rem; font-size: 1.4rem; }
footer {
  margin-top: 6rem; padding: 1.5rem 2rem;
  border-top: 1px solid var(--border); color: var(--muted);
  font-size: 0.9rem; text-align: center;
}
footer a { color: var(--muted); }
