:root {
  --navy: #0b1f3a;
  --navy-2: #102b50;
  --gold: #f5b42c;
  --light: #f6f8fb;
  --white: #ffffff;
  --text: #172033;
  --muted: #5a667a;
  --border: #dbe2ec;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 20px rgba(245, 180, 44, .25);
}
.brand-text { font-size: 1rem; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: .95rem;
}
.nav-menu a {
  color: var(--white);
  text-decoration: none;
  opacity: .9;
}
.nav-menu a:hover { color: var(--gold); opacity: 1; }
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(245,180,44,.28), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 86px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin: 0 0 10px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(2.35rem, 5vw, 4.8rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
.hero-text { font-size: 1.2rem; max-width: 700px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { filter: brightness(.96); }
.btn-secondary { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.small-note { color: rgba(255,255,255,.72); font-size: .95rem; }
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.bolt {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 20px;
  font-size: 2rem;
  margin-bottom: 22px;
}
.hero-card ul { padding-left: 22px; margin-bottom: 0; color: rgba(255,255,255,.88); }
.section { padding: 78px 0; }
.section-alt { background: var(--light); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card, .checklist-box, .area-card, .contact-form {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,31,58,.06);
}
.card h3 { color: var(--navy); }
.card p, .split p, .area-card p { color: var(--muted); margin-bottom: 0; }
.split, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--border); }
.checklist li:before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.checklist li:last-child { border-bottom: 0; }
.pill-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill-wrap span {
  background: var(--light);
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
}
.contact-section { background: linear-gradient(180deg, var(--light), #fff); }
.contact-list { display: grid; gap: 10px; margin-top: 24px; }
.contact-list a { color: var(--navy); font-weight: 900; text-decoration: none; }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
}
textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .9rem; }
.site-footer { background: var(--navy); color: rgba(255,255,255,.82); padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-wrap p { margin: 0; }

@media (max-width: 850px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.16);
    padding: 18px;
    border-radius: 18px;
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 58px 0; }
  .section { padding: 58px 0; }
  .brand-text { font-size: .92rem; }
}
