:root {
  --bg: #f6f8fa;
  --card: #ffffff;
  --ink: #0f1b2d;
  --muted: #5b6b7f;
  --line: #e3e8ee;
  --brand: #1A2B4A;      /* Lemaan navy — matches the logo wordmark */
  --brand-ink: #11203a;
  --accent: #F59E0B;     /* Lemaan amber */
  --ok: #0b8457;
  --err: #c0392b;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16,27,45,.06), 0 8px 24px rgba(16,27,45,.06);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.wrap { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 18px; }
.row { display: flex; align-items: center; }
.row.gap { gap: 12px; }
.row.between { justify-content: space-between; }
.row.center { align-items: center; }
.wrap.row { display: flex; }
.row.wrap { flex-wrap: wrap; }

header.site { background: var(--brand); color: #fff; padding: 14px 0; }
header.site .brand { font-weight: 800; font-size: 22px; letter-spacing: .3px; }
header.site .brand .bn { color: var(--accent); }
header.site .cta-link { color: #fff; text-decoration: none; font-weight: 600; border: 1px solid rgba(255,255,255,.5); padding: 8px 14px; border-radius: 999px; }

.hero { background: linear-gradient(165deg, var(--brand), var(--brand-ink)); color: #fff; padding: 40px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero h1 { margin: 0 0 10px; font-size: clamp(28px, 6vw, 42px); line-height: 1.08; text-wrap: balance; }
.hero .accent { color: var(--accent); }
.hero .sub { margin: 0 0 16px; color: #c7d2e4; font-size: 17px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; display: block; border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 0 12px 30px rgba(0,0,0,.28); }
@media (max-width: 680px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-media img { aspect-ratio: 16 / 10; }
}

.badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 0; font-weight: 600; }
.badges.small { font-size: 14px; color: var(--muted); margin: 12px 0; }
.hero .badges { color: #dfe6f2; }

main.wrap { padding-top: 22px; padding-bottom: 40px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin: 0 0 18px; }
.card h2 { margin: 0 0 14px; font-size: 20px; }

label { display: block; font-weight: 600; font-size: 14px; margin: 0 0 12px; }
input, select, textarea {
  display: block; width: 100%; margin-top: 6px;
  font: inherit; color: var(--ink);
  padding: 12px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 520px) { .grid2 { grid-template-columns: 1fr; } }

label.check { display: flex; align-items: center; gap: 10px; font-weight: 500; }
label.check input { width: auto; margin: 0; }

fieldset { border: 0; padding: 0; margin: 0 0 14px; }
legend { font-weight: 600; font-size: 14px; padding: 0; margin-bottom: 8px; }
.choices { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .choices { grid-template-columns: 1fr; } }
.choice { position: relative; margin: 0; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: block; border: 1px solid var(--line); border-radius: 10px; padding: 12px; cursor: pointer; height: 100%; }
.choice strong { display: block; }
.choice em { display: block; font-style: normal; font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 2px; }
.choice input:checked + span { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); background: #eef2f9; }

button { font: inherit; cursor: pointer; border-radius: 10px; border: 0; }
button.primary { background: var(--brand); color: #fff; font-weight: 700; padding: 14px 18px; width: 100%; font-size: 16px; }
button.primary:hover { background: var(--brand-ink); }
button.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); padding: 14px 18px; font-weight: 600; }
button.link { background: none; color: var(--brand); text-decoration: underline; padding: 0; font: inherit; }
.row.gap button { flex: 1; }

.price-card { border-color: var(--brand); }
.price-head { text-align: center; padding: 8px 0 4px; }
.price-label { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.price-amount { font-size: 52px; font-weight: 800; line-height: 1.05; color: var(--brand-ink); }
.price-summary { color: var(--muted); margin: 4px 0 0; }
.shared-load { background: #fff8e8; border: 1px solid #f0e0b8; border-radius: 10px; padding: 12px; margin: 6px 0 14px; font-size: 14px; }
.shared-entry { margin: 14px 0 0; text-align: center; font-size: 14px; color: var(--muted); }
.shared-entry .link { font-weight: 600; }
.price-card-inner { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

.muted { color: var(--muted); }
.small { font-size: 13px; }
.err { color: var(--err); font-weight: 600; margin: 10px 0 0; }

.confirm { text-align: center; }
.tick { width: 56px; height: 56px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 30px; line-height: 56px; margin: 4px auto 10px; }

footer.site { border-top: 1px solid var(--line); padding: 22px 0 40px; color: var(--muted); }
footer.site .small { margin-top: 6px; }
