:root {
  --navy: #0b3d62;
  --accent: #f0a202;
  --bg: #f4f6f8;
  --text: #1f2933;
  --muted: #6b7785;
  --card: #ffffff;
  --line: #e3e8ee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: var(--navy); }

.demo-banner {
  background: #fff8e6;
  border-bottom: 1px solid #f0d68a;
  color: #6b5300;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
}

.site-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
.site-header .wrap { display: flex; align-items: center; gap: 12px; }
.brand { font-size: 22px; font-weight: bold; letter-spacing: .3px; }
.brand .tag { font-size: 12px; font-weight: normal; color: #b9d0e2; display: block; margin-top: 2px; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }

main { padding: 32px 0 48px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 22px;
}

h1 { font-size: 26px; margin: 0 0 6px; }
h2 { font-size: 19px; margin: 26px 0 8px; color: var(--navy); }
h3 { font-size: 16px; margin: 18px 0 6px; }
p.lead { font-size: 16px; color: var(--muted); margin-top: 0; }

label { display: block; font-weight: bold; margin: 16px 0 6px; font-size: 14px; }
input[type="text"], input[type="tel"], input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  font-size: 15px;
  border: 1px solid #c6cdd6;
  border-radius: 6px;
}
.hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  margin: 20px 0 8px;
}
.consent input { margin-top: 3px; flex: 0 0 auto; width: 18px; height: 18px; }
.consent label { margin: 0; font-weight: normal; font-size: 13.5px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #1f2933;
  font-weight: bold;
  font-size: 15px;
  padding: 13px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 18px;
}
.btn:hover { filter: brightness(0.96); }
.btn:disabled { background: #d9dee4; color: #9aa3ad; cursor: not-allowed; }

.disclosures { font-size: 13px; color: var(--muted); }
.disclosures strong { color: var(--text); }

.error { color: #b3261e; font-size: 13px; margin-top: 8px; min-height: 18px; }

.success-box {
  background: #eaf6ec;
  border: 1px solid #b6dcbd;
  border-radius: 8px;
  padding: 22px;
  color: #1f5132;
}
.success-box h2 { color: #1f5132; margin-top: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #eef1f4;
  color: var(--muted);
  font-size: 12.5px;
  padding: 20px 0;
}
.site-footer a { color: var(--navy); }
.site-footer .links { margin-bottom: 8px; }
.site-footer .links a { margin-right: 14px; }

.hidden { display: none; }
