*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #163A4C;
  --navy-dark: #0f2537;
  --teal-card: #2E5D7F;
  --btn-dark:  #163A4C;
  --gold-text: #f0b429;
  --text:      #1a1a2e;
  --text-light:#666;
  --bg-review: #DEEFF9;
  --border:    #d0dde8;
  --green:     #27ae60;

  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);

  --content-max:          1220px;
  --content-pad-desktop:  48px;
  --content-pad-mobile:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

[id] { scroll-margin-top: calc(var(--nav-offset, 88px) + 12px); }


.max-w {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
}

.section,
.section-bg-light,
.why-section,
.testi-section,
.cta-sec,
.ins-section,
.one-call,
.faq-section {
  padding: 40px 0;
}

.section-bg-light { background: #F2F8FD; }

.s-center { text-align: center; }

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title-xl { font-size: clamp(30px, 4vw, 48px); }
.section-title-lg { font-size: clamp(30px, 4vw, 46px); }

.section-head-mb-36 { margin-bottom: 36px; }
.section-head-mb-30 { margin-bottom: 30px; }
.center-mb-28 { text-align: center; margin-bottom: 28px; }

.text-lead-17   { font-size: 20px; margin-top: 10px; }
.text-white-lead { font-size: 20px; color: #fff; margin-top: 12px; }

.quick-start-label { font-size: 24px; font-weight: 700; color: var(--navy); }

.btn-center { display: flex; justify-content: center; margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.mt-44 { margin-top: 44px; }


.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--btn-dark);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-family: 'Poppins', sans-serif;
}
.btn-cta:hover { background: var(--teal-card); }

.btn-cta-pill-lg {
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
}

.logo-wrap img { margin: 5px 0; }

.img-ph-wrap {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #b8ccd8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.img-ph-wrap svg   { opacity: .5; position: relative; z-index: 1; }
.img-ph-wrap span  { font-size: 12px; font-weight: 700; color: rgba(0,0,0,.4); position: relative; z-index: 1; text-align: center; padding: 0 16px; line-height: 1.5; }

.img-ph-min-320 { min-height: 320px; }
.img-ph-min-340 { min-height: 340px; }
.img-ph-min-360 { min-height: 360px; }

.media-frame     { padding: 0; overflow: hidden; position: relative; }
.media-frame-320 { min-height: 320px; }
.media-frame-340 { min-height: 340px; }
.media-frame-360 { min-height: 360px; }

.media-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

nav .nav-inner {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap { display: flex; align-items: center; }

.nav-links { display: flex; gap: 36px; flex: 1; justify-content: center; }
.nav-links a { font-size: 16px; font-weight: 700; color: var(--navy); transition: color .15s; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .15s;
}

.btn-get-started {
  background: var(--btn-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.btn-get-started:hover { background: #0c1e30; }

.hero { background: var(--navy); padding: 40px 0; }

.hero-inner {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 432px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.16);
}

.hero h1 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 28px; }

.hero-body { color: #fff; font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.hero-body strong { color: #fff; font-weight: 700; }

.hero-card { background: var(--teal-card); border-radius: 14px; padding: 36px 32px; }
.hero-card h2 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hero-card .card-sub { color: #fff; font-size: 16px; margin-bottom: 22px; line-height: 1.6; }

.cst-landing input { width: 100%; padding: 15px 18px; border: none; border-radius: 8px; font-size: 15px; color: var(--navy); margin-bottom: 14px; outline: none; }
.cst-landing:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.25); }

#field_19_35, .gform_required_legend, .gform-field-label {
  display: none;
}

.btn-talk {
  width: 100%;
  padding: 17px;
  background: var(--btn-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
  margin-bottom: 18px;
}
.btn-talk:hover { background: #0c1e30; }

.card-promise { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.5; }

.reviews { background: var(--bg-review); padding: 40px 0; }

.reviews-inner {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.g-logo { width: 26px; height: 26px; flex-shrink: 0; }

.review-stars { display: inline-flex; align-items: center; gap: 4px; line-height: 1; }
.review-stars .star-icon { width: 16px; height: 16px; flex: 0 0 16px; display: block; }

.review-text { font-size: 16px; color: #333; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.review-author { font-size: 16px; font-weight: 700; }

.reviews-cta-wrap { background: var(--bg-review); width: 100%; padding: 0 0 40px; }
.reviews-cta-inner {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  gap: 8px;
}

.tl-connector {
  position: absolute;
  top: 23px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: #3B7EAB;
  z-index: 0;
  border-radius: 2px;
}

.tl-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; z-index: 1; text-align: center; }

.tl-pill {
  background: linear-gradient(135deg, #3B7EAB, #67A6C8);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  width: 120px;
  height: 46px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.tl-label { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.tl-label strong { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.tl-label span   { font-size: 16px; color: #163A4C; }

.how-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 56px;
  border: 1px solid var(--border);
}

.how-card-left { padding: 48px 44px; display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.how-card-note { font-size: 16px; color: #1C1C20; line-height: 1.65; text-align: center; }
.how-card-quote { background: #F2F8FD; border-radius: 12px; padding: 28px; }
.how-card-quote p { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.5; text-align: center; }
.how-card-right { position: relative; min-height: 360px; }

.how-photo-ph {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #b8d4e4, #8ab8d0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-section { background: #DEEFF9; }

.why-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: stretch; }

.why-photo { border-radius: 16px; overflow: hidden; }
.why-photo-ph { width: 100%; height: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; border-radius: 16px; }

.why-feat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.why-feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.why-feat-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.why-feat-icon { font-size: 26px; line-height: 1; display: inline-flex; }

.why-feat-card h3 { font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.why-feat-card p  { font-size: 16px; color: #1C1C20; line-height: 1.7; }

.testi-section { background: #F2F8FD;}

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s;
}
.testi-card:hover { transform: translateY(-3px); }

.testi-top { display: flex; align-items: center; gap: 10px; }

.testi-text { font-size: 16px; color: #1C1C20; line-height: 1.5; flex: 1; }

.testi-author-block { display: flex; flex-direction: column; gap: 2px; }
.testi-name     { font-size: 16px; font-weight: 700; color: var(--navy); }
.testi-location { font-size: 16px; color: #1C1C20; }

.testi-badge {
  background: rgba(59,126,171,.10);
  color: var(--navy);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1.4;
}

.cta-sec { background: var(--navy); }

.cta-title { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: #fff; line-height: 1.15; }

.cta-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--teal-card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.cta-photo { position: relative; }

.cta-photo-ph {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, #a0c4d8, #78a8be);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-form-inner { padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.cta-form-inner h3 { font-size: 20px; font-weight: 700; color: #fff; }
.cta-form-sub { font-size: 16px; color: #fff; margin-top: -6px; }

.cta-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-input { padding: 14px 16px; border: none; border-radius: 10px; font-size: 14px; color: #999; background: #fff; outline: none; transition: box-shadow .15s; }
.cta-input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.cta-input-full { grid-column: 1 / -1; }

.cta-btn-submit {
  width: 100%;
  padding: 17px;
  background: var(--btn-dark);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.cta-btn-submit:hover { background: #0c1e30; }

.cta-promise { font-size: 16px; color: rgba(255,255,255,1); line-height: 1.5; }
.cta-promise strong { color: #fff; }

.ins-section { background: #DEEFF9; }

.ins-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.ins-card {
  border-radius: 16px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px; 
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.ins-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.ins-card p  { font-size: 16px; color: rgba(28,28,32,1); line-height: 1.75; }
.ins-card-note { color: #888; font-size: 14px; line-height: 1.7; }

.ins-card-green { background: linear-gradient(160deg, #e8f7ee 0%, #fff 60%); border: 1.5px solid #a8d4b8; }
.ins-card-white { background: #fff; border: 1.5px solid var(--border); }

.one-call { background: var(--navy); text-align: center; }

.one-call-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.one-call-sub   { font-size: 20px; color: #fff; max-width: 710px; margin: 0 auto 28px; line-height: 1.7; }

.call-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 8px; }
.call-badge {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-pill-wrap { display: flex; justify-content: center; margin: 32px 0 16px; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--navy);
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  transition: background .15s;
}
.phone-pill:hover { background: #DEEFF9; }

.one-call-alt { color: #fff; font-size: 20px; margin-bottom: 40px; }
.link-underline-white { color: #fff; font-weight: 700; text-decoration: underline; }

.locs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 auto; }

.loc-card { background: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 14px 12px; text-align: left; }
.loc-card-inner { display: flex; align-items: flex-start; gap: 14px; }
.loc-pin  { width: 39px; height: 50px; color: rgba(22,58,76,1); flex-shrink: 0; margin-top: 2px; }
.loc-name { font-weight: 700; font-size: 24px; color: rgba(22,58,76,1); margin-bottom: 6px; }
.loc-addr { font-size: 16px; color: rgba(22,58,76,1); line-height: 1.6; }

.one-call-hours { color: #fff; font-size: 20px; margin-top: 32px; }

.faq-section { background: #fff; }

.faq { color: rgba(73,38,79,1); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 20px 4px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(73,38,79,1);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { color: #3a1a6a; }

.faq-icon { font-size: 12px; color: #3a1a6a; flex-shrink: 0; transition: transform .35s ease; display: inline-block; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(90deg); }

.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; padding: 0 4px 0 26px; }
.faq-item.open .faq-a-inner { padding-bottom: 20px; }

.faq-a { font-size: 16px; color: rgba(28,28,32,1); line-height: 1.8; }

.prefooter-bar {
  background: rgba(73,38,79,1);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9530;
}
.prefooter-text { color: #fff; font-size: 20px; font-weight: 700; }
@media (max-width: 768px) {

  .prefooter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
  }

  nav {  
  position: relative !important; 
}

  .prefooter-text {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }
  .how-card-left {
    padding: 20px;
  }

  .prefooter-btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    white-space: nowrap!important;
    font-size: 17px !important;
    padding: 0.575em 0.4em!important
  }

  .prefooter-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    white-space: nowrap!important;
    font-size: 17px!important;
    padding: 0.575em 0.4em!important
  }
  .prefooter-bar {
        padding-top: 30px!important;
        padding-bottom: 30px!important
    }
}
.gform_submission_error {
  color: #fa8b8b;
  font-size: 20px;
}
.gform_validation_errors ol {
  color: #fa8b8b;
  margin-bottom: 20px;
  margin-left: 15px;
}
html:focus-within {
    scroll-behavior: auto !important;
}
.gform_validation_errors:focus-visible {
outline: 0;
} 

.prefooter-btn-white {
  background: #fff;
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: opacity .15s;
  white-space: nowrap;
}
.prefooter-btn-white:hover { opacity: .9; }

.prefooter-btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

footer { background: var(--navy); padding: 52px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  padding-bottom: 48px;
}

.footer-left    { display: flex; flex-direction: column; gap: 28px; }
.footer-top-row { display: flex; gap: 40px; }

.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { color: #fff; font-size: 17px; text-decoration: underline; }

.footer-actions  { display: flex; flex-direction: column; gap: 16px; }

.footer-get-started {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  width: fit-content;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 16px; }

.footer-family h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-family p  { font-size: 16px; color: #fff; line-height: 1.7; }

.footer-right      { display: flex; flex-direction: column; gap: 18px; }
.footer-brand-row  { display: flex; align-items: center; gap: 14px; }
.footer-brand-text { display: flex; flex-direction: column; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.4; }
.footer-desc       { font-size: 16px; color: #fff; line-height: 1.75; }

.footer-services { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-top: 6px; }
.footer-service-item { display: flex; align-items: center; gap: 12px; }
.footer-service-item > span,
.footer-service-item > div > span { font-size: 14px; color: rgba(255,255,255,1); font-weight: 700; }
.footer-service-stack > span { display: block; }

.footer-speech-title { font-size: 14px; font-weight: 900; color: #fff; }
.footer-speech-sub   { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,1);
}

@media (max-width: 1100px) {
  nav .nav-inner { flex-wrap: wrap; padding: 8px 0; }
}

@media (max-width: 960px) {
  .max-w,
  nav .nav-inner,
  .hero-inner,
  .reviews-inner,
  .reviews-cta-inner,
  .footer-inner,
  .footer-bottom-bar {
    width: calc(100% - (var(--content-pad-mobile) * 2));
  }

  .nav-links { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }

  .reviews { padding: 32px 0; }
  .reviews-inner { grid-template-columns: 1fr; }

  .section,
  .why-section,
  .testi-section,
  .cta-sec,
  .ins-section,
  .one-call,
  .faq-section {
    padding: 40px 0;
  }

  .testi-grid { grid-template-columns: 1fr; }

  .cta-card { grid-template-columns: 1fr; }
  .cta-photo-ph { min-height: 220px; }

  .ins-cards { grid-template-columns: 1fr; }
  .locs { grid-template-columns: 1fr; }

  .phone-pill { font-size: 18px; padding: 14px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top-row { flex-direction: column; }
  .prefooter-bar { padding: 20px; }

  .review-stars .star-icon { width: 14px; height: 14px; flex-basis: 14px; }
}

@media (max-width: 900px) {
  .why-row { grid-template-columns: 1fr; }
  .why-photo-ph { min-height: 240px; }

  .timeline-row { flex-direction: column; align-items: stretch; gap: 14px; padding: 0; }
  .tl-connector { display: none; }
  .tl-step { flex-direction: row; text-align: left; align-items: center; gap: 14px; }
  .tl-pill { width: 56px; height: 56px; min-width: 56px; margin-bottom: 0; font-size: 20px; border-radius: 50%; }
  .tl-label { align-items: flex-start; }
}

@media (max-width: 760px) {
  .how-card { grid-template-columns: 1fr; }
  .how-photo-ph { min-height: 240px; }
  .call-badges { flex-direction: column; align-items: center; }
  .cta-form-grid { grid-template-columns: 1fr; }
  .footer-services { grid-template-columns: 1fr; }
}


.hero-card .gform_footer, .cta-sec .gform_footer {
  margin: 8px 0 0;
  padding: 0;
}

.hero-card .gform_wrapper input[type="submit"],
.hero-card .gform_wrapper .gform_button, .cta-sec .gform_wrapper input[type="submit"], .cta-sec .gform_wrapper .gform_button {
  display: block;
  width: 100%;
  height: 54px;
  background: var(--btn-dark, #163A4C);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.hero-card .gform_wrapper input[type="submit"]:hover,
.hero-card .gform_wrapper .gform_button:hover, .cta-sec .gform_wrapper input[type="submit"]:hover, .cta-sec .gform_wrapper .gform_button:hover {
  background: #0c1e30;
}



.hero-card .gform_wrapper input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-form-inner .gform_required_legend,
.cta-form-inner .gfield_label,
.cta-form-inner .gfield_description,
.cta-form-inner .gform_validation_container {
  display: none !important;
}

.cta-form-inner .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.cta-form-inner .gfield {
  margin: 0;
}

.cta-form-inner .gfield--width-half {
  grid-column: span 1;
}

.cta-form-inner .gfield--width-full {
  grid-column: 1 / -1;
}

.cta-form-inner .gform_wrapper input[type="text"],
.cta-form-inner .gform_wrapper input[type="tel"],
.cta-form-inner .gform_wrapper input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  color: #1a2a3a;
  outline: none;
  transition: box-shadow 0.2s;
  font-family: inherit;
}

.cta-form-inner .gform_wrapper input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-form-inner .gform_footer {
  margin: 4px 0 0;
  padding: 0;
}

.cta-form-inner .gform_wrapper input[type="submit"],
.cta-form-inner .gform_wrapper .gform_button {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--btn-dark, #163A4C);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.cta-form-inner .gform_wrapper input[type="submit"]:hover,
.cta-form-inner .gform_wrapper .gform_button:hover {
  background: #0c1e30;
}

.cta-promise {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;  
}

.cta-promise strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .cta-form-inner .gform_fields {
    grid-template-columns: 1fr;
  }

  .cta-form-inner .gfield--width-half {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  nav .nav-inner {
    min-height: 64px;
    flex-wrap: nowrap;
    padding: 0;
    gap: 10px;
  }

  .logo-wrap img {
    width: 64px;
    height: auto;
  }

  .nav-phone {
    padding: 8px 14px;
    font-size: 16px;
    gap: 6px;
    white-space: nowrap;
  }

  .btn-get-started {
    padding: 9px 16px;
    font-size: 16px;
    white-space: nowrap;
  }
}

@media (max-width: 540px) {
  nav .nav-inner {
    min-height: 56px;
    gap: 8px;
  }

  .logo-wrap img {
    width: 56px;
  }

  .nav-right {
    gap: 6px;
  }

  .nav-phone {
    padding: 7px 10px;
    font-size: 16px;
    gap: 5px;
    border-width: 1px;
  }

  .nav-phone svg {
    display: none;
  }

  .btn-get-started {
    padding: 8px 12px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .logo-wrap img {
    width: 40px;
  }

  .nav-phone {
    padding: 7px 8px;
    font-size: 16px;
  }

  .btn-get-started {
    padding: 7px 10px;
    font-size: 16px;
  }
}
.skip-link {
    position: absolute !important;
    top: -100px !important;
    left: 16px !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: nowrap !important;
    z-index: 99999;
    padding: 8px 16px;
    background: #163A4C;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.1s;
}
.skip-link:focus {
    top: 8px !important;
}
.gf-hero-wrap {
    min-height: 150px; 
}

.btn-arrow {
  display: inline-block;  
  line-height: 1;
}

@media (max-width: 540px) {
  .btn-arrow {
    display: none!important;
  }
  #how-it-works {
    padding-top: 0!important;
  }
}

.hero-card .gform_ajax_spinner,
.cta-form-inner .gform_ajax_spinner {
  display: inline-block !important;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  vertical-align: middle;
  opacity: 1 !important;
}
/* ── Locations Photo Grid Section ─────────────────────────────── */
.lp2-locations-grid-section {
  padding: 40px 0;
}

.lp2-loc-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Last-row pair spans full width and centres its two cards */
.lp2-loc-photo-pair {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.lp2-loc-photo-pair .lp2-loc-photo-card {
  /* Match the width of a single grid column */
  width: calc((100% - 48px) / 3);
}

.lp2-loc-photo-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}

.lp2-loc-photo-card:hover { 
  box-shadow: var(--shadow-md);
}

.lp2-loc-photo-wrap {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #c8dde9;
}

.lp2-loc-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}


.lp2-loc-photo-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp2-loc-photo-body strong {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.lp2-loc-photo-body span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* 2-col at tablet */
@media (max-width: 900px) {
  .lp2-loc-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp2-loc-photo-pair {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .lp2-loc-photo-pair .lp2-loc-photo-card {
    width: calc((100% - 24px) / 2);
  }
}

/* 1-col at mobile */
@media (max-width: 560px) {
  .lp2-loc-photo-grid {
    grid-template-columns: 1fr;
  }

  .lp2-loc-photo-pair {
    flex-direction: column;
    gap: 24px;
  }

  .lp2-loc-photo-pair .lp2-loc-photo-card {
    width: 100%;
  }
}

.gform_validation_container,
.gform-field-label--hidden,
li.gfield.gform_validation_container {
    display: none !important;
    visibility: hidden !important;
}


.gf-hero-wrap .gfield_select,
.gf-hero-wrap select,
.gf-cta-wrap .gfield_select,
.gf-cta-wrap select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 15px 40px 15px 18px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #1a2a3a;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    margin-bottom: 14px;
}

.gf-hero-wrap select option[value=""],
.gf-cta-wrap select option[value=""],
.gf-hero-wrap select option.gf_placeholder,
.gf-cta-wrap select option.gf_placeholder {
    display: none;
}

.gf-hero-wrap select:focus,
.gf-cta-wrap select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.gfield_visibility_hidden {
  display: none;
}
#what-is-aba {
  padding-top: 0;
}