:root {
  --blue: #003366;
  --blue-2: #00284c;
  --orange: #ff6600;
  --orange-2: #ff9933;
  --white: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --panel: #fafafa;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #f4f4f4;
  line-height: 1.5;
}
a { color: var(--orange); text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 18px; }

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}
.site-header img {
  height: 300px;         /* very large default */
  width: auto;
  display: block;
  margin: 0 auto 20px;
  max-width: 95%;
}
.tagline {
  margin: 12px 0 0;
  opacity: 1;
  font-size: 2.4rem;     /* big, like a headline */
  font-weight: 800;
  line-height: 1.3;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .site-header img {
    height: 500px;       /* fills top of phone screen */
  }
  .tagline {
    font-size: 3rem;     /* ~48px text on phones */
    font-weight: 900;
  }
}

/* Navigation (if needed later) */
.nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.nav a {
  color: var(--white);
  font-weight: 600;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.button.accent { background: var(--orange); color: var(--white); }
.button.accent:hover { background: var(--orange-2); }
.button.wide { width: 100%; }
.button.secondary { background: var(--blue-2); color: var(--white); }
.button.secondary:hover { filter: brightness(1.1); }

/* Hero */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.02));
}
.hero-inner { position: relative; z-index: 1; padding: 70px 0; }
.hero-content { text-align: center; max-width: 780px; margin: 0 auto; }
.hero h2 { margin: 0 0 10px; font-size: clamp(32px, 6vw, 64px); color: var(--white); font-weight: 900; }
.hero p { margin: 0 0 18px; color: var(--white); opacity: .95; font-size: 1.2rem; }

/* Sections */
.section { padding: 40px 0; background: #fff; }
.section.alt { background: var(--panel); }
.section-title { margin: 0 0 12px; font-size: clamp(24px, 4vw, 36px); color: var(--blue); text-align: center; font-weight: 800; }
.section-sub { margin: -4px 0 18px; color: var(--muted); text-align: center; font-size: 1.2rem; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; text-align: center; }
.card h4 { margin: .2rem 0 .4rem; color: var(--blue); font-size: 1.3rem; font-weight: 700; }

.grid-list {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px; margin: 0; padding: 0; list-style: none;
}
.grid-list li {
  background: #fff; border: 1px dashed #e5e7eb;
  padding: 12px; border-radius: 10px; text-align: center;
  font-size: 1.2rem;
}

/* Form */
.lead-form {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 18px; max-width: 720px; margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
label { display: block; font-weight: 700; margin-top: 12px; color: var(--ink); font-size: 1.1rem; }
input, textarea {
  width: 100%; padding: 14px; margin-top: 6px;
  border: 1px solid #d1d5db; border-radius: 8px; font-size: 16px;
  background: #fff; color: var(--ink);
}
.notice { font-size: 1rem; color: var(--muted); margin-top: 8px; }
.hidden { display: none; }

/* Footer */
.site-footer {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: var(--white); padding: 24px 0; margin-top: 20px;
  font-size: 1.1rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 12px;
}
.site-footer a { color: #ffcc00; font-weight: 600; }
.site-footer a:hover { color: var(--orange-2); }

/* Modal */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: none; align-items: center; justify-content: center;
  padding: 16px; z-index: 9999;
}
.modal[aria-hidden="false"] { display: flex; }
.modal-card {
  width: min(520px, 94vw); background: var(--white); color: var(--ink);
  border-radius: 12px; padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25); text-align: center;
}
.modal-card h2 { margin: 0 0 10px; font-size: 24px; color: var(--blue); font-weight: 700; }
.modal-actions {
  display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .grid-list { grid-template-columns: 1fr; }
}