:root {
  --color-navy: #0F172A;
  --color-charcoal: #1E293B;
  --color-light-gray: #F6F8FA;
  --color-border-gray: #E2E8F0;
  --color-brand: #0E7490;
  --color-brand-dark: #155E75;
  --color-slate: #64748B;
  --color-text-body: #475569;
  --color-white: #FFFFFF;
  --header-h: 124px;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
}

.wrap_main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.125rem;
}

.top-strip {
  background-color: var(--color-navy);
  color: #fff;
  padding: 9px 0;
  font-size: 13px;
}
.top-strip .strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.top-strip .strip-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-strip a, .top-strip .strip-item {
  color: rgba(255,255,255,0.88);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .25s;
}
.top-strip a:hover { color: #fff; }
.top-strip .material-symbols-outlined { font-size: 16px; }
.addr-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: rgba(255,255,255,0.7);
}
.addr-tag .material-symbols-outlined { font-size: 16px; }

@media (max-width: 600px) {
  .top-strip .hide-sm { display: none; }
  .addr-tag { display: none; }
}

.pageHead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--color-border-gray);
  transition: padding .3s, box-shadow .3s;
}
.pageHead .pageHead-row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brandLogo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.025em;
  transition: opacity .25s;
}
.brandLogo:hover { opacity: 0.88; }
.brandLogo em {
  font-style: normal;
  color: var(--color-brand);
  font-weight: 600;
  margin: 0 1px;
}
.brandLogo .logoMark {
  width: 38px;
  height: 38px;
  background: var(--color-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brandLogo .logoMark .material-symbols-outlined { font-size: 22px; color: #fff; }

.navList {
  display: none;
  align-items: center;
  gap: 4px;
}
.navList a {
  padding: 0.625rem 1rem;
  font-size: 15px;
  color: var(--color-charcoal);
  transition: color .25s;
}
.navList a:hover { color: var(--color-brand); }

.topAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--color-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color .25s;
}
.topAction:hover { background: var(--color-brand-dark); }

@media (min-width: 992px) {
  .navList { display: flex; }
}

.opener {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  background-color: var(--color-navy);
}
.opener .heroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.opener .heroBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoomEffect 32s forwards ease-out;
}
@keyframes heroZoomEffect {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}
.opener .heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.4) 100%);
  z-index: 1;
}
.opener .heroInner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 992px) {
  .opener .heroInner {
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
  }
}

.opener-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: rgba(14,116,144,0.12);
  border: 1px solid rgba(14,116,144,0.45);
  padding: 0.5em 1em;
  margin-bottom: 22px;
}
.opener-copy { color: #fff; }
.opener-copy h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 22px;
  color: #fff;
}
.opener-copy .opener-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.125rem;
  line-height: 1.6;
}
.opener-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 38px;
}
@media (min-width: 600px) {
  .opener-points { grid-template-columns: repeat(3, 1fr); }
}
.opener-points .ck {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.opener-points .ck .material-symbols-outlined {
  color: var(--color-brand);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.opener-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 600px) {
  .opener-actions { flex-direction: row; }
}

.btnPrimary, .btnGhost, .btnOutline, .btnGhostBand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.875rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color .3s, color .3s, border-color .3s;
  font-family: inherit;
  line-height: 1.2;
}
.btnPrimary { background: var(--color-brand); color: #fff; }
.btnPrimary:hover { background: var(--color-brand-dark); }
.btnPrimary.fullW { width: 100%; padding: 17px 22px; }

.btnGhost { background: #fff; color: var(--color-charcoal); }
.btnGhost:hover { background: var(--color-light-gray); }

.btnOutline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}
.btnOutline:hover { background: var(--color-charcoal); color: #fff; }

.btnGhostBand {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  gap: 8px;
}
.btnGhostBand:hover { background: #fff; color: var(--color-brand); }
.btnGhostBand.isStatic { cursor: default; }
.btnGhostBand.isStatic:hover { background: transparent; color: #fff; }
.btnGhostBand .material-symbols-outlined { font-size: 18px; }

.hero-formBox {
  background: #fff;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.35);
}
.formBox-wrap {
  border: 1px solid var(--color-border-gray);
}
.hero-formBox .innerCard {
  padding: 30px;
}
@media (min-width: 600px) {
  .hero-formBox .innerCard { padding: 2.25rem; }
}
.hero-formBox h3 {
  font-size: 21px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-formBox .formLede {
  color: var(--color-slate);
  font-size: 14px;
  margin-bottom: 22px;
  line-height: 1.55;
}
.hero-formBox form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fieldRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .fieldRow { grid-template-columns: 1fr 1fr; }
}
.fld input, .fld select, .fld textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border-gray);
  background: #fff;
  color: var(--color-charcoal);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .25s;
  outline: none;
}
.fld textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.fld input::placeholder, .fld textarea::placeholder { color: var(--color-slate); }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--color-brand); }
.fld select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%2364748B' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fileDrop {
  display: block;
  width: 100%;
  border: 2px dashed var(--color-border-gray);
  padding: 1.4em 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s;
  font-size: 13px;
  color: var(--color-slate);
}
.fileDrop:hover { border-color: var(--color-slate); }
.fileDrop input { display: none; }
.fileDrop .material-symbols-outlined {
  font-size: 26px;
  display: block;
  margin: 0 auto 6px;
  color: var(--color-slate);
}

.honeypot { display: none !important; }

.formNote {
  font-size: 11.5px;
  color: var(--color-slate);
  text-align: center;
  margin-top: 4px;
}
.formNote a { color: var(--color-brand); text-decoration: underline; }

.section_w   { padding: 5rem 0 4.75rem; }
.section_alt { padding: 78px 0 84px; background: var(--color-light-gray); position: relative; overflow: hidden; }
@media (min-width: 768px) {
  .section_w   { padding: 7rem 0 6.5rem; }
  .section_alt { padding: 110px 0 120px; }
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 1rem;
}
.h2-display {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--color-charcoal);
  margin-bottom: 18px;
}
.body-lg {
  font-size: 16.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  max-width: 680px;
}
.center-block { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.sec-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.sec-head .body-lg { margin: 0 auto; }

.about-block {
  padding: 76px 0 90px;
  background: #fff;
}
@media (min-width: 768px) {
  .about-block { padding: 6.5rem 0 7.25rem; }
}
.two-col-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.125rem;
  align-items: center;
}
@media (min-width: 992px) {
  .two-col-about { grid-template-columns: 1.05fr 1fr; gap: 4em; }
}
.about-block .txtCol p {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.125rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 1.75rem 0 2rem;
}
@media (min-width: 600px) {
  .about-features { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.about-features .ftr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-features .iconCheck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--color-light-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-features .iconCheck .material-symbols-outlined {
  color: var(--color-brand);
  font-size: 15px;
}
.about-features .ftr > span:last-child {
  font-size: 14.5px;
  color: var(--color-charcoal);
  font-weight: 500;
}
.about-block .imgCol { position: relative; }
.about-block .imgCol img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-block .imgCol img { height: 380px; }
}

.svcGrid-area .grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.375rem;
}
@media (min-width: 768px) {
  .svcGrid-area .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.svcCard {
  background: #fff;
  border: 1px solid var(--color-border-gray);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .25s;
  overflow: hidden;
}
.svcCard:hover {
  border-color: var(--color-slate);
  box-shadow: 0 10px 22px -8px rgba(15,23,42,0.12);
  transform: translateY(-2px);
}
.svcCard .imgFrame {
  height: 220px;
  overflow: hidden;
  background: var(--color-light-gray);
}
.svcCard .imgFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease-out;
}
.svcCard:hover .imgFrame img { transform: scale(1.05); }
.svcCard .body {
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svcCard h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color .3s;
}
.svcCard:hover h3 { color: var(--color-brand); }
.svcCard p {
  color: var(--color-text-body);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.svcCard .bullets {
  margin-bottom: 18px;
  padding-left: 1.1em;
  list-style: square;
}
.svcCard .bullets li {
  font-size: 13.5px;
  color: var(--color-slate);
  line-height: 1.5;
  margin-bottom: 7px;
}
.svcCard .bullets li::marker { color: var(--color-brand); }
.svcCard .bullets li:last-child { margin-bottom: 0; }
.svcCard .arrowMore {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dir-section .dirGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width: 600px) {
  .dir-section .dirGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .dir-section .dirGrid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.dirCard {
  background: #fff;
  border: 1px solid var(--color-border-gray);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
}
.dirCard:hover {
  border-color: var(--color-brand);
  box-shadow: 0 6px 16px -6px rgba(14,116,144,0.18);
}
.dirHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.dirAvatar {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  color: #fff;
}
.dirAvatar.avQ { background: linear-gradient(135deg, #0E7490 0%, #155E75 100%); }
.dirAvatar.avP { background: linear-gradient(135deg, #B45309 0%, #92400E 100%); }
.dirAvatar.avO { background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 100%); }
.dirAvatar.avA { background: linear-gradient(135deg, #047857 0%, #065F46 100%); }
.dirAvatar.avS { background: linear-gradient(135deg, #BE185D 0%, #9D174D 100%); }
.dirAvatar.avC { background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%); }

.dirMeta h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}
.dirZone {
  font-size: 12.5px;
  color: var(--color-slate);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dirZone .material-symbols-outlined { font-size: 14px; }
.dirBody {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 14px;
}
.dirTags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tagPill {
  font-size: 11.5px;
  padding: 4px 10px;
  background: var(--color-light-gray);
  color: var(--color-charcoal);
  border: 1px solid var(--color-border-gray);
  letter-spacing: 0.02em;
}
.dirFoot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-gray);
}
.ratingBox {
  font-size: 13px;
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ratingBox .starGlyph {
  color: #F59E0B;
  font-size: 1rem;
  line-height: 1;
}
.dir-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}

.reasons-area { position: relative; }
.reasons-area .dotPattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--color-border-gray) 1px, transparent 0);
  background-size: 24px 24px;
}
.reasons-area > .wrap_main {
  position: relative;
  z-index: 1;
}
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width: 600px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.reasons-card {
  background: #fff;
  border: 1px solid var(--color-border-gray);
  padding: 1.875rem 1.625rem;
  transition: border-color .3s, transform .25s;
}
.reasons-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}
.reasonsBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  padding: 0 10px;
  background: var(--color-light-gray);
  color: var(--color-brand);
  border: 1px solid var(--color-border-gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.reasons-card h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.reasons-card p {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.6;
}

.timeline-rail {
  max-width: 820px;
  margin: 0 auto;
}
.tlStep {
  display: flex;
  margin-left: 28px;
  padding-bottom: 2.375rem;
  border-left: 1px solid var(--color-border-gray);
  position: relative;
}
.tlStep.last {
  border-left: 1px solid transparent;
  padding-bottom: 0;
}
.tlMarker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  margin-right: 24px;
  background: #fff;
  border: 1px solid var(--color-border-gray);
  color: var(--color-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  transition: border-color .3s, color .3s;
}
.tlStep:hover .tlMarker {
  border-color: var(--color-brand);
  color: var(--color-brand);
}
.tlBody { padding-top: 12px; }
.tlBody h3 {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  transition: color .3s;
}
.tlStep:hover .tlBody h3 { color: var(--color-brand); }
.tlBody p {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.65;
}

.quotes-area .testGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .quotes-area .testGrid { grid-template-columns: repeat(3, 1fr); }
}
.testCard {
  background: #fff;
  border: 1px solid var(--color-border-gray);
  padding: 1.875rem 1.625rem;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s;
  position: relative;
}
.testCard:hover {
  border-color: var(--color-slate);
  box-shadow: 0 6px 18px -8px rgba(15,23,42,0.12);
}
.quoteGlyph {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: 0.6;
  color: rgba(14,116,144,0.3);
  margin-bottom: 14px;
  height: 30px;
}
.starRow {
  display: flex;
  gap: 1px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.starRow .halfStar { color: #FCD34D; }
.testTxt {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.testAuthor {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-gray);
}
.testInfo strong {
  display: block;
  font-size: 14.5px;
  color: var(--color-charcoal);
  font-weight: 600;
  margin-bottom: 2px;
}
.testInfo span {
  font-size: 12.5px;
  color: var(--color-slate);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq_item {
  background: #fff;
  border: 1px solid var(--color-border-gray);
  overflow: hidden;
  transition: border-color .3s;
}
.faq_item:hover { border-color: var(--color-slate); }
.faqBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 18px;
}
.faqBtn h3 {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.005em;
  transition: color .25s;
  line-height: 1.4;
}
.faqBtn:hover h3 { color: var(--color-brand); }
.faqBtn .material-symbols-outlined {
  font-size: 24px;
  color: var(--color-slate);
  transition: transform .3s, color .3s;
  flex-shrink: 0;
}
.faqBtn[aria-expanded="true"] .material-symbols-outlined {
  transform: rotate(180deg);
  color: var(--color-brand);
}
.faqPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faqPanel p {
  padding: 0 24px 24px;
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.7;
}

.closing-band {
  background: var(--color-brand);
  color: #fff;
  padding: 4.875rem 0 5.25rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .closing-band { padding: 7rem 0 7.5rem; }
}
.closing-band .ctaInner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.closing-band h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.closing-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.55;
}
.ctaBtns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 600px) {
  .ctaBtns { flex-direction: row; }
}
.btnPrimary.onWhite {
  background: #fff;
  color: var(--color-brand);
}
.btnPrimary.onWhite:hover { background: var(--color-light-gray); color: var(--color-brand-dark); }

.pageFoot {
  background: var(--color-light-gray);
  position: relative;
  overflow: hidden;
  padding: 4.375rem 0 1.875rem;
}
.pageFoot::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle at 1px 1px, var(--color-charcoal) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.pageFoot .wrap_main { position: relative; z-index: 1; }
.footGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 3.5rem;
}
@media (min-width: 600px) {
  .footGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .footGrid {
    grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
    gap: 48px;
  }
}
.footAbout .footLogo { margin-bottom: 1.125rem; }
.footTxt {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 320px;
}
.footAddr {
  font-size: 13.5px;
  color: var(--color-slate);
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
.footAddr .material-symbols-outlined {
  color: var(--color-brand);
  font-size: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.footAddr .indent { margin-left: 22px; display: block; }

.footHd {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 18px;
}
.footCol ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footCol ul a {
  font-size: 14px;
  color: var(--color-slate);
  transition: color .25s;
}
.footCol ul a:hover { color: var(--color-brand); }
.contactList li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--color-slate);
}
.contactList .material-symbols-outlined { color: var(--color-brand); font-size: 17px; }

.footBottom {
  border-top: 1px solid var(--color-border-gray);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footBottom { flex-direction: row; }
}
.copyTxt { font-size: 13px; color: var(--color-slate); }
.legalLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.legalLinks a {
  font-size: 13px;
  color: var(--color-slate);
  transition: color .25s;
}
.legalLinks a:hover { color: var(--color-brand); }

.thanksModal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.thanksModal[hidden] { display: none; }
.thanksOverlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.thanksBox {
  position: relative;
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  border-top: 4px solid var(--color-brand);
  animation: thanksIn .35s ease-out;
}
@keyframes thanksIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thanksX {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--color-slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .25s;
}
.thanksX:hover { color: var(--color-charcoal); }
.thanksX .material-symbols-outlined { font-size: 22px; }
.thanksIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(14,116,144,0.12);
  color: var(--color-brand);
  border-radius: 50%;
  margin-bottom: 14px;
}
.thanksIcon .material-symbols-outlined { font-size: 36px; font-variation-settings: 'FILL' 1, 'wght' 500; }
.thanksBox h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.thanksBox p {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}
.thanksBox .thanksSmall {
  font-size: 13px;
  color: var(--color-slate);
  background: var(--color-light-gray);
  padding: 12px;
  border: 1px solid var(--color-border-gray);
  margin-bottom: 22px;
}
.thanksBox .btnPrimary { width: 100%; }

@media (max-width: 991px) {
  .hero-formBox .innerCard { padding: 26px; }
  .top-strip { display: none; }
  .pageHead { padding: 14px 0; }
  .brandLogo { font-size: 19px; }
  .brandLogo .logoMark { width: 34px; height: 34px; }
  .brandLogo .logoMark .material-symbols-outlined { font-size: 19px; }
  .topAction { padding: 10px 16px; font-size: 11px; }
}
@media (max-width: 600px) {
  .navList { display: none; }
  .opener-copy h1 { font-size: 32px; }
  .opener-copy .opener-lede { font-size: 15.5px; }
  .h2-display { font-size: 26px; }
  .sec-head { margin-bottom: 40px; }
  .section_w, .section_alt, .about-block, .closing-band { padding: 60px 0; }
  .hero-formBox .innerCard { padding: 22px; }
  .hero-formBox h3 { font-size: 19px; }
  .reasons-card, .testCard, .dirCard { padding: 22px 20px; }
  .tlMarker { width: 48px; height: 48px; margin-left: -24px; margin-right: 18px; }
  .tlStep { margin-left: 24px; padding-bottom: 30px; }
  .footAddr .indent { margin-left: 0; }
  .legalLinks { gap: 14px; }
  .thanksBox { padding: 36px 22px 28px; }
  .thanksBox h3 { font-size: 19px; }
}
.page-hero {
  background: var(--color-light-gray);
  padding: 5.5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border-gray);
}
.page-hero .wrap_main { max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--color-charcoal);
  margin: 0;
}
.page-hero-lede {
  font-size: 16.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 1.25rem auto 0;
  max-width: 640px;
}
@media (max-width: 600px) {
  .page-hero { padding: 3.5rem 0 2.25rem; }
}

.legal-content {
  padding: 4.5rem 0 6rem;
  background: #fff;
}
.legal-content .wrap_main { max-width: 760px; }
.legal-content h2 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.875rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 1.125rem;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content strong { color: var(--color-charcoal); font-weight: 600; }
@media (max-width: 600px) {
  .legal-content { padding: 3rem 0 4rem; }
  .legal-content h2 { font-size: 19px; margin-top: 2rem; }
}

.svc-section .txtCol p {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.125rem;
}
.svc-section .imgCol img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .svc-section .imgCol img { height: 360px; }
}
@media (min-width: 992px) {
  .two-col-about.reversed > .imgCol { order: -1; }
}

.svc-textonly .textonly-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.svc-textonly .textonly-inner .eyebrow { display: inline-block; }
.svc-textonly .textonly-inner h2 { margin: 0 auto 1.25rem; }
.svc-textonly .textonly-inner .body-lg {
  margin: 0 auto 1.125rem;
  max-width: 720px;
}

.svc-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.svc-list li {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.6;
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.625rem;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7em;
  height: 1px;
  background: var(--color-brand);
}
.svc-list li:last-child { margin-bottom: 0; }
.svc-list.two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem 2rem;
  text-align: left;
  max-width: 720px;
  margin: 1.5rem auto 0;
}
@media (min-width: 700px) {
  .svc-list.two-cols { grid-template-columns: 1fr 1fr; }
}
.svc-list.two-cols li { margin-bottom: 0; }

.cookieBar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.92);
  padding: 1rem 18px;
  box-shadow: 0 -4px 24px -8px rgba(0,0,0,0.35);
}
.cookieBar[hidden] { display: none; }
.cookieBar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
  flex-wrap: wrap;
}
.cookieBar-text {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 360px;
  color: rgba(255,255,255,0.88);
}
.cookieBar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookieBar-link {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s;
}
.cookieBar-link:hover { color: #fff; }
.cookieBar .cookieBar-btn {
  padding: 0.7em 1.4em;
  font-size: 12px;
}
@media (max-width: 640px) {
  .cookieBar-inner { flex-direction: column; align-items: stretch; }
  .cookieBar-actions { justify-content: space-between; }
}