:root {
  --ink: #071d37;
  --muted: #536174;
  --line: #dbe4eb;
  --navy: #071d37;
  --blue: #174d92;
  --green: #73a91f;
  --gold: #d9903d;
  --paper: #ffffff;
  --wash: #f6faf8;
  --shadow: 0 18px 55px rgba(30, 45, 68, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #f9fbfb 0%, #eef6f3 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.preview-header {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(31, 54, 80, .08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 46px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: end;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 8px);
  height: 32px;
}

.brand-mark span {
  background: var(--blue);
  border-radius: 999px 999px 3px 3px;
  display: block;
}

.brand-mark span:nth-child(1) { height: 18px; }
.brand-mark span:nth-child(2) { height: 30px; background: var(--green); }
.brand-mark span:nth-child(3) { height: 22px; background: var(--gold); }

.brand-lockup strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-lockup strong span {
  color: var(--green);
}

.brand-lockup small {
  color: var(--muted);
  display: block;
  font-weight: 700;
  margin-top: 3px;
}

.preview-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-weight: 800;
}

.mobile-nav-toggle {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 1.1rem;
  height: 44px;
  justify-content: center;
  width: 48px;
}

.preview-nav a:not(.nav-cta):hover,
.preview-nav a:not(.nav-cta):focus {
  color: var(--green);
}

.nav-cta,
.primary-action {
  align-items: center;
  background: linear-gradient(135deg, #0b2545, #113865);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

main {
  margin: 0 auto;
  max-width: 1360px;
}

.hero-preview {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(620px, 1.22fr);
  min-height: 560px;
}

.hero-photo {
  min-height: 560px;
  overflow: hidden;
}

.hero-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  width: 100%;
}

.hero-copy {
  align-self: center;
  padding: 58px 72px;
}

.eyebrow {
  color: var(--green);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  max-width: 760px;
}

h1 span {
  color: var(--green);
  display: block;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.95rem);
}

.hero-subhead {
  border-top: 3px solid var(--green);
  color: var(--navy);
  font-size: 1.34rem;
  font-weight: 900;
  margin: 18px 0 16px;
  max-width: 640px;
  padding-top: 18px;
  white-space: nowrap;
}

.hero-copy > p:not(.eyebrow):not(.hero-subhead) {
  color: var(--muted);
  font-size: 1.13rem;
  max-width: 620px;
}

.hero-copy .primary-action {
  background: linear-gradient(135deg, #4f8f19, #7cb62b);
  margin: 18px 0 30px;
}

.trust-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.trust-row i,
.advisor-band li::before {
  color: var(--green);
}

.section-block {
  padding: 58px 56px 30px;
}

.section-block > h2 {
  margin: 0 auto 26px;
  max-width: 1200px;
  text-align: center;
}

.who-help h2 {
  white-space: nowrap;
}

.section-lead {
  color: var(--muted);
  font-size: 1.14rem;
  margin: -12px auto 28px;
  max-width: 880px;
  text-align: center;
}

.help-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
}

.help-grid article {
  align-items: center;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 22px;
  min-height: 102px;
  padding: 20px;
}

.help-grid i {
  align-items: center;
  background: #eef4f7;
  border-radius: 999px;
  color: var(--navy);
  display: inline-flex;
  flex: 0 0 58px;
  font-size: 1.45rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.help-grid strong {
  font-size: 1.15rem;
}

.advisor-band,
.carrier-panel,
.cta-band {
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 34px 56px;
}

.advisor-band {
  background: linear-gradient(135deg, #ffffff, #f2f8f6);
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
  padding: 42px 74px;
}

.advisor-band ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.advisor-band li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 12px;
}

blockquote {
  border-left: 1px solid #bfd0d7;
  margin: 0;
  padding-left: 58px;
}

blockquote i {
  color: var(--green);
  font-size: 2.2rem;
}

blockquote p {
  font-size: 1.26rem;
  margin: 18px 0;
  max-width: 520px;
}

cite {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

cite span {
  color: var(--muted);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .92rem;
  margin-top: 4px;
}

.coverage-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}

.coverage-grid span {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  min-height: 64px;
}

.coverage-grid i {
  color: var(--navy);
}

.carrier-panel {
  background: rgba(255, 255, 255, .86);
  padding: 32px 38px 18px;
}

.carrier-logo-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.carrier-logo-grid span {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 78px;
  padding: 14px 18px;
}

.carrier-logo-grid img {
  display: block;
  max-height: 46px;
  max-width: 220px;
  object-fit: contain;
  width: 100%;
}

.carrier-panel > p:last-child {
  color: var(--muted);
  margin: 18px 0 0;
}

.carrier-panel__intro {
  color: var(--muted);
  font-size: 1.02rem;
  margin: -2px 0 20px;
  max-width: 1160px;
}

.cta-band {
  align-items: center;
  background: var(--navy);
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 58px;
  padding: 32px 74px;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.cta-contact-link {
  align-items: center;
  color: #dbe7ef;
  display: inline-flex;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.cta-contact-link i {
  color: var(--green);
}

.cta-icon {
  align-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  display: flex;
  font-size: 2.5rem;
  height: 104px;
  justify-content: center;
  width: 104px;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
  margin: 4px 0;
}

.cta-band span {
  color: #dbe7ef;
}

.cta-band .primary-action {
  background: linear-gradient(135deg, #4f8f19, #7cb62b);
}

@media (max-width: 980px) {
  .preview-header,
  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-header {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .preview-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .preview-nav.is-open {
    align-items: stretch;
    display: grid;
    gap: 8px;
  }

  .preview-nav a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
  }

  .preview-nav .nav-cta {
    border: 0;
  }

  .hero-preview,
  .advisor-band,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .who-help h2 {
    white-space: normal;
  }

  .hero-subhead,
  .trust-row {
    white-space: normal;
  }

  .trust-row {
    flex-wrap: wrap;
  }

  .hero-photo {
    min-height: 420px;
  }

  .hero-copy {
    padding: 40px 28px;
  }

  .help-grid,
  .carrier-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  blockquote {
    border-left: 0;
    border-top: 1px solid #bfd0d7;
    padding: 30px 0 0;
  }
}

@media (max-width: 620px) {
  .preview-header,
  .section-block,
  .advisor-band,
  .carrier-panel,
  .cta-band {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .preview-header {
    margin: 0;
    padding: 18px 20px;
  }

  .help-grid,
  .coverage-grid,
  .carrier-logo-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.45rem;
  }
}
