:root {
  --navy: #17324d;
  --slate: #2d455f;
  --teal: #3e8ea3;
  --sand: #d9c3a3;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #203040;
  --muted: #5b6d7f;
  --border: #dde5ea;
  --shadow: 0 12px 32px rgba(18, 36, 54, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.tagline {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 680px;
}

.hero {
  padding: 52px 0 36px;
}

.hero-copy {
  background: linear-gradient(135deg, rgba(23,50,77,0.98), rgba(62,142,163,0.95));
  border-radius: 20px;
  padding: 56px;
  color: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dfeef3;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin-top: 0;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.3rem, 4vw, 4.3rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 16px; color: var(--navy); }
h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }

.subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 760px;
}

.hero-actions,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  transition: all 0.18s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta.secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(255,255,255,0.5);
}

.site-header .cta.secondary {
  color: var(--navy);
  border-color: var(--navy);
}

.trust-points,
.checklist {
  margin: 24px 0 0;
  padding-left: 20px;
}

.trust-points li,
.checklist li {
  margin-bottom: 8px;
}

main section {
  padding: 28px 0;
}

.problem-section,
.request-card,
.callout,
.testimonial-card,
.cta-band,
.faq-section article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.problem-section,
.cta-band {
  padding: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid article,
.request-card {
  padding: 24px;
}

.callout {
  border-left: 6px solid var(--teal);
}

.testimonial-card {
  border-left: 6px solid var(--sand);
}

.byline,
.placeholder-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.request-section .request-card {
  max-width: 760px;
}

.footer {
  padding: 40px 0 56px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    padding: 34px 24px;
  }

  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }
}
