:root {
  --navy: #0b1f3a;
  --navy-light: #13294f;
  --gold: #c8a44d;
  --gold-light: #e0c589;
  --ink: #1a1a1a;
  --gray: #5a6472;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --border: #e3e6ea;
  --radius: 10px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

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

/* Header */
header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}
nav.main-nav a:hover { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity .15s ease;
}
.btn:hover { opacity: .88; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.hero .eyebrow {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 820px;
}
.hero p.lede {
  font-size: 18px;
  color: #d6dbe4;
  max-width: 640px;
  margin: 0 0 32px;
}
.hero .fine-print {
  margin-top: 16px;
  font-size: 13px;
  color: #aab2c0;
}

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat .num { font-size: 32px; font-weight: 700; color: var(--navy); }
.stat .label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }
h2 { font-size: 28px; color: var(--navy); margin: 0 0 16px; }
h2.center { text-align: center; }
p.section-lede { color: var(--gray); font-size: 16px; max-width: 640px; }
p.section-lede.center { margin: 0 auto 40px; text-align: center; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
}
.card h3 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.card .badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.card .price { font-size: 26px; font-weight: 700; color: var(--navy); margin: 12px 0; }
.card .price small { font-size: 13px; font-weight: 400; color: var(--gray); }

/* Form */
form.deal-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 6px;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-sub { font-size: 14px; color: var(--gray); margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.submit-row { margin-top: 28px; }
.form-msg { margin-top: 16px; padding: 14px; border-radius: 6px; font-size: 14px; display: none; }
.form-msg.success { background: #e8f5ec; color: #1e6b34; display: block; }
.form-msg.error { background: #fbe9e9; color: #a12a2a; display: block; }
.form-msg.loading { background: var(--bg-alt); color: var(--gray); display: block; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #b7c0cf;
  padding: 40px 0;
  font-size: 13px;
  margin-top: 40px;
}
footer.site-footer a { color: #d6dbe4; }
footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { display: none; }
}
