*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #163A4C;
  --navy-dark: rgba(22, 58, 76, 1);
  --teal-card: rgba(59, 126, 171, 1);
  --btn-dark: #163A4C;
  --gold-text: rgba(251, 210, 0, 1);
  --text: #1a1a2e;
  --text-light: #666;
  --bg-review: #DEEFF9;
  --bg-light: #F2F8FD;
  --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;
  --nav-offset: 76px;
}

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) + 12px);
}

.max-w {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
}

.s-center {
  text-align: center;
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-44 {
  margin-top: 44px;
}

.section-head-mb-36 {
  margin-bottom: 36px;
}

.section-head-mb-30 {
  margin-bottom: 30px;
}

.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(28px, 3.5vw, 44px);
}

.text-lead-17 {
  font-size: 18px;
  margin-top: 10px;
  color: #444;
}

.lp2-section {
  padding: 40px 0;
}

.lp2-section-light {
  padding: 40px 0;
  background: var(--bg-light);
}

.lp2-section-blue {
  padding: 40px 0;
  background: var(--bg-review);
}

.lp2-section-navy {
  padding: 40px 0;
  background: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--btn-dark);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  text-align: center;
}

.btn-cta:hover {
  background: var(--teal-card);
}

.btn-arrow {
  display: inline-block;
  line-height: 1;
}

.media-frame {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.media-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.img-ph-wrap {
  width: 100%;
  height: 100%;
  background: #b8ccd8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.skip-link {
  position: absolute !important;
  top: -100px !important;
  left: 16px !important;
  z-index: 99999;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.1s;
}

.skip-link:focus {
  top: 8px !important;
}

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;
}

.logo-wrap img {
  margin: 5px 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color .15s;
}

.nav-links a:hover {
  color: var(--teal-card);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-get-started {
  background: var(--btn-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}

.btn-get-started:hover {
  background: var(--teal-card);
}

.lp2-hero {
  background: var(--navy);
  padding: 40px 0 60px;
  text-align: center;
}

.lp2-hero-inner {
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.lp2-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.lp2-stars {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lp2-star {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.lp2-stars .lp2-star:first-child,
.lp2-stars .lp2-star:last-child {
  width: 22px;
  height: 22px;
}

.lp2-rating-label {
  color: var(--gold-text);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
}

.lp2-h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}

.lp2-br {
  display: block;
}

.lp2-quote {
  margin-bottom: 32px;
  max-width: 720px;
}

.lp2-quote p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #fff;
  line-height: 1.7;
  margin-bottom: 8px;
}

.lp2-quote cite {
  font-style: italic;
  font-size: 15px;
  color: #fff;
  display: block;
}

.lp2-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-card);
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  transition: background .15s;
  margin-bottom: 16px;
}

.lp2-hero-btn:hover {
  background: #3a6f93;
}

.lp2-hero-promise {
  color: #fff;
  font-size: 15px;
}

.lp2-trust-bar {
  background: var(--teal-card);
  padding: 18px 0;
  border-bottom: 1px solid #c6dfed;
}

.lp2-trust-inner {
  max-width: var(--content-max);
  width: calc(100% - (var(--content-pad-desktop) * 2));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 32px;
}

.lp2-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.lp2-check {
  width: 18px;
  height: 18px;
  color: #fff;
  flex-shrink: 0;
}

.lp2-dark-title {
  color: #1a2a3a;
}

.lp2-section-sub {
  font-size: 20px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.lp2-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.lp2-feat-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: transform .2s, box-shadow .2s;
}

.lp2-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lp2-feat-icon {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lp2-feat-icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.lp2-feat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp2-feat-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.lp2-feat-body p {
  font-size: 16px;
  color: #3a4a5a;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .lp2-feat-grid {
    grid-template-columns: 1fr;
  }

  .lp2-feat-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}


#field_19_35,
.gform_required_legend,
.gform-field-label
 {
  display: none;
}

.cst-landing-2 .gform_footer {
  margin: 8px 0 0;
  padding: 0;
}

.cst-landing-2 .gform_wrapper input[type="submit"],
.cst-landing-2 .gform_wrapper .gform_button {
  display: block;
  width: 100%;
  height: 54px;
  background: var(--btn-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.cst-landing-2 .gform_wrapper input[type="submit"]:hover,
.cst-landing-2 .gform_wrapper .gform_button:hover {
  background: #0c1e30;
}

@media (max-width: 960px) {

  nav .nav-inner,
  .lp2-hero-inner,
  .lp2-trust-inner {
    width: calc(100% - (var(--content-pad-mobile) * 2));
  }

  .nav-links {
    display: none;
  }

  .lp2-hero {
    padding: 52px 0 44px;
  }

  .lp2-h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .lp2-br {
    display: inline;
  }

  .lp2-trust-inner {
    gap: 8px 20px;
  }

  .lp2-trust-item {
    font-size: 14px;
  }

  .lp2-section,
  .lp2-section-light,
  .lp2-section-blue,
  .lp2-section-navy {
    padding: 52px 0;
  }
}

@media (max-width: 540px) {
  .lp2-trust-item {
    white-space: normal;
  }

  .lp2-hero-btn {
    padding: 16px 32px;
    font-size: 16px;
  }

  .btn-arrow {
    display: none !important;
  }

  .logo-wrap img {
    width: 60px;
    height: auto;
  }

  .btn-get-started {
    padding: 9px 16px;
    font-size: 14px;
  }

  .lp2-feat-card {
    padding: 15px;
  }

  .max-w {
    width: 90%;
  }
}


:root {
  --purple: #49264F;
  --purple-hover: #3a1a40;
}

.lp2-testi-section {
  background: #fff; 
}

.lp2-testi-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--purple);
  line-height: 1.18;
  margin-bottom: 14px;
}


.lp2-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp2-testi-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: transform .2s, box-shadow .2s;
}

.lp2-testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lp2-testi-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp2-g-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.lp2-testi-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.lp2-tstar {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lp2-outcome-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(22, 58, 76, 0.1);
  font-size: 16px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 50px;
  width: fit-content;
}

.lp2-testi-text {
  font-size: 16px;
  color: #2a3a4a;
  line-height: 1.7;
  flex: 1;
}

.lp2-testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.lp2-testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.lp2-testi-loc {
  font-size: 16px;
  color: rgba(28, 28, 32, 1);
}

.lp2-btn-purple {
  background: var(--purple);
}

.lp2-btn-purple:hover {
  background: var(--purple-hover);
}

@media (max-width: 900px) {
  .lp2-testi-grid {
    grid-template-columns: 1fr;
  }

  .lp2-testi-card {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

.lp2-compare-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  overflow: visible;
}

.lp2-compare-col {
  display: flex;
  flex-direction: column;
}

.lp2-vs-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 108px;
  height: 108px;
  background: rgba(107, 170, 221, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  z-index: 10;
  border: 2px solid #fff;
}

.lp2-compare-cell {
  padding: 15px 54px;
  font-size: 16px;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.lp2-cell-left {
  background: #fff;
  color: rgba(0,0,0,1);
  justify-content: flex-end;
  text-align: right;
}

.lp2-cell-right {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.lp2-cell-head {
  padding: 44px 54px 0;
  align-items: center;
}

.lp2-cell-head.lp2-cell-left  { border-radius: 20px 20px 0 0;min-height: 98px; padding-top: 38px; }
.lp2-cell-head.lp2-cell-right { border-radius: 20px 20px 0 0;padding-top: 32px; }
.lp2-cell-last.lp2-cell-left  { border-radius: 0 0 20px 20px; padding-bottom: 28px; }
.lp2-cell-last.lp2-cell-right { border-radius: 0 0 20px 20px; padding-bottom: 28px; }

.lp2-compare-head {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lp2-compare-head-left  { color: var(--navy); }
.lp2-compare-head-right { color: #fff; }

.lp2-compare-right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.lp2-cmp-check {
  width: 20px;
  height: 20px;
  color: #fff;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .lp2-compare-wrap {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
    padding-top: 0;
  }

  .lp2-vs-badge {
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -20px auto;
    z-index: 10;
    width: 52px;
    height: 52px;
    font-size: 16px;
    order: 2; 
  }

  .lp2-compare-col-left  { order: 1; }
  .lp2-compare-col-right { order: 3; }

  .lp2-cell-left {
    justify-content: flex-start;
    text-align: left;
  }

  .lp2-cell-head.lp2-cell-left  { border-radius: 20px 20px 0 0; padding: 32px 28px 0; padding-bottom: 15px; }
  .lp2-cell-head.lp2-cell-right { border-radius: 20px 20px 0 0; padding: 32px 28px 0; }
  .lp2-cell-last.lp2-cell-left  { border-radius: 0 0 20px 20px; padding-bottom: 30px; }
  .lp2-cell-last.lp2-cell-right { border-radius: 0 0 20px 20px; }

  .lp2-compare-cell {
    padding: 14px 28px;
  }
}

.lp2-process-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 230px 1fr 450px;
  border: 1px solid var(--border);
  column-gap: 20px;
  padding: 25px 20px;
}


.lp2-process-sidebar {
  background: #DEEFF9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 20px;
}

.lp2-process-sidebar-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}
.lp2-process-sidebar-text span {
  font-weight: 400;
}

.lp2-process-steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
}

.lp2-process-steps::before {
  content: '';
  position: absolute;
  left: 44px;
  top: 55px;
  bottom: 54px;
  width: 2px;
  background: rgba(59, 126, 171, 1);
  z-index: 0;
}

.lp2-process-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  position: relative;
  z-index: 1;
}

.lp2-step-pill {
  flex-shrink: 0;
  width: 88px;
  height: 46px;
  border-radius: 50px;
  background: var(--teal-card);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.lp2-step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lp2-step-body strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.lp2-step-body span {
  font-size: 16px;
  color: rgba(22, 58, 76, 1);
  line-height: 1.4;
}

.lp2-process-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.lp2-process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1060px) {
  .lp2-process-card {
    grid-template-columns: 140px 1fr 320px;
  }
}

@media (max-width: 860px) {
  .lp2-process-card {
    grid-template-columns: 1fr;
  }

  .lp2-process-sidebar {
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid #c6dfed;
  }

  .lp2-process-sidebar-text {
    font-size: 17px;
  }

  .lp2-process-steps {
    padding: 32px 28px;
  }

  .lp2-process-steps::before {
    left: 44px;
    top: 49px;
    bottom: 49px;
  }

  .lp2-process-photo {
    height: 280px;
  }
}

.lp2-cta-section {
  background: var(--navy);
}

.lp2-cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.lp2-cta-sub {
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
  line-height: 1.7;
}

.lp2-cta-card {
  display: grid;
  grid-template-columns: 418px 1fr;
  overflow: hidden;
  column-gap: 20px;
}

.lp2-cta-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-height: 480px;
}

.lp2-cta-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lp2-cta-form-panel {
  background: var(--teal-card);
  padding: 40px 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  border-radius: 20px;
}

.lp2-cta-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.lp2-cta-form-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 4px;
}

.lp2-gf-wrap .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.lp2-gf-wrap .gfield {
  margin: 0;
}

.lp2-gf-wrap .gfield--width-half {
  grid-column: span 1;
}

.lp2-gf-wrap .gfield--width-full {
  grid-column: 1 / -1;
}

.lp2-gf-wrap .gform_required_legend,
.lp2-gf-wrap .gfield_label,
.lp2-gf-wrap .gfield_description,
.lp2-gf-wrap .gform_validation_container {
  display: none !important;
}

.lp2-gf-wrap .gform_wrapper input[type="text"],
.lp2-gf-wrap .gform_wrapper input[type="tel"],
.lp2-gf-wrap .gform_wrapper input[type="email"],
.lp2-gf-wrap .gform_wrapper textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  font-size: 15px;
  color: #1a2a3a;
  outline: none;
  transition: box-shadow .2s;
  font-family: inherit;
  resize: none;
}

.lp2-gf-wrap .gform_wrapper textarea {
  height: 52px;
  min-height: 52px;
  line-height: 1.5;
  padding-top: 15px;
}

.lp2-gf-wrap .gform_wrapper input:focus,
.lp2-gf-wrap .gform_wrapper textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
  background: #fff;
}

.lp2-gf-wrap .gform_footer {
  margin: 6px 0 0;
  padding: 0;
  margin-top: 20px;
}

.lp2-gf-wrap .gform_wrapper input[type="submit"],
.lp2-gf-wrap .gform_wrapper .gform_button {
  display: block;
  width: 100%;
  height: 56px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
  letter-spacing: .01em;
}

.lp2-gf-wrap .gform_wrapper input[type="submit"]:hover,
.lp2-gf-wrap .gform_wrapper .gform_button:hover {
  background: var(--navy-dark);
}


.lp2-cta-promise {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .lp2-cta-card {
    grid-template-columns: 1fr;
  }

  .lp2-cta-photo {
    height: 360px;
        margin-bottom: 20px;
  }

  .lp2-cta-form-panel {
    padding: 32px 24px;
  }

  .lp2-gf-wrap .gform_fields {
    grid-template-columns: 1fr;
  }

  .lp2-gf-wrap .gfield--width-half {
    grid-column: 1 / -1;
  }
}

.lp2-ins-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #a8d4b8;
  background: linear-gradient(160deg, #e8f7ee 0%, #fff 50%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lp2-ins-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.lp2-ins-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.lp2-ins-lead {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.lp2-ins-note {
  font-size: 16px;
  color: rgba(28, 28, 32, 1);
  line-height: 1.7;
}

.lp2-ins-action {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .lp2-ins-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }
}

.lp2-locations-section {
  text-align: center;
}

.lp2-locations-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lp2-locations-sub {
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
  line-height: 1.7;
}



.lp2-loc-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .10);
}

.lp2-loc-pin {
  width: 36px;
  height: 36px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.lp2-loc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp2-loc-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.lp2-loc-addr {
  font-size: 16px;
  color: rgba(28, 28, 32, 1);
  line-height: 1.55;
}

.lp2-hours {
  color: #fff;
  font-size: 20px;
  margin-top: 32px;
}

.lp2-locs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

@media (max-width: 960px) {
  .lp2-locs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .lp2-locs {
    grid-template-columns: 1fr;
  }

  .lp2-loc-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 760px) {

  .lp2-loc-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

.lp2-faq-section {
  background: #fff;
  padding: 40px 0;
}

.lp2-faq-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--purple);
  line-height: 1.18;
  margin-bottom: 14px;
}

.lp2-faq-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.lp2-faq-item {
  border-bottom: 1px solid var(--border);
}

.lp2-faq-item.open .lp2-faq-q {
  color: rgba(73, 38, 79, 1);
}

.lp2-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 20px 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.lp2-faq-q:hover {
  color: var(--teal-card);
}

.lp2-faq-icon {
  font-size: 11px;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform .35s ease;
  display: inline-block;
  line-height: 1;
}

.lp2-faq-item.open .lp2-faq-icon {
  transform: rotate(90deg);
}

.lp2-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.lp2-faq-item.open .lp2-faq-a-wrap {
  grid-template-rows: 1fr;
}

.lp2-faq-a-inner {
  overflow: hidden;
  padding: 0 4px 0 26px;
}

.lp2-faq-item.open .lp2-faq-a-inner {
  padding-bottom: 20px;
}

.lp2-faq-a {
  font-size: 16px;
  color: #3a4a5a;
  line-height: 1.8;
}

.lp2-prefooter-bar {
  background: var(--purple);
  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;
}

.lp2-prefooter-phone {
  display: inline-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;
  transition: border-color .15s;
}

.lp2-prefooter-phone:hover {
  border-color: #fff;
}

.lp2-prefooter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .15s;
}

.lp2-prefooter-btn:hover {
  opacity: .90;
}
.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;
} 
@media (max-width: 768px) {

  .lp2-prefooter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px;
  }

nav {  
  position: relative !important; 
}
  .lp2-prefooter-phone {
    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;
  }

  .lp2-prefooter-btn {
    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;
  }

}


.lp2-footer {
  background: var(--navy-dark);
  padding: 52px 0 0;
}

.lp2-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;
}

.lp2-footer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lp2-footer-top-row {
  display: flex;
  gap: 40px;
}

.lp2-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 0;
}

.lp2-footer-nav a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}

.lp2-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp2-footer-get-started {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  width: fit-content;
  transition: background .15s;
}

.lp2-footer-get-started:hover {
  background: rgba(255, 255, 255, .08);
}

.lp2-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp2-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
}

.lp2-footer-family h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.lp2-footer-family p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.lp2-footer-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp2-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp2-footer-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
}

.lp2-footer-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 6px;
}

.lp2-footer-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp2-footer-service-item>span {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.lp2-footer-service-stack {
  display: flex;
  flex-direction: column;
}

.lp2-footer-service-stack span {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  display: block;
}

.lp2-footer-bottom {
  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: 14px;
  color: #fff;
}

@media (max-width: 960px) {

  .lp2-footer-inner,
  .lp2-footer-bottom {
    width: calc(100% - (var(--content-pad-mobile) * 2));
  }

  .lp2-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp2-footer-top-row {
    flex-direction: column;
  }

  .lp2-prefooter-bar {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 540px) {
  .lp2-footer-services {
    grid-template-columns: 1fr;
  }
  .lp2-process-steps {
        padding: 12px 0px!important;
    }
    
    .lp2-step-pill {
      width: 46px!important;
    }
    .lp2-process-steps::before {
      display: none !important;
    }
}

@media (max-width: 760px) {
  .lp2-faq-section {
    padding: 52px 0;
  }
}

/* ── 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%;
  }
}

.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: 800px; 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(3, 1fr); gap: 16px; margin: 0 auto; max-width: 1000px; }

.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; }

.gform_validation_container,
.gform-field-label--hidden,
li.gfield.gform_validation_container {
    display: none !important;
    visibility: hidden !important;
}

.lp2-gf-wrap .gfield_select,
.lp2-gf-wrap select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: auto;
    padding: 14px 40px 14px 16px;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #6b7280;
    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;
}



.lp2-gf-wrap select option[value=""] {
    color: #9ca3af;
}

.lp2-gf-wrap select:has(option[value=""]:checked) {
    color: #6b7280;
}
.lp2-gf-wrap select option[value=""] {
    display: none;
}
.lp2-gf-wrap .gfield_select,
.lp2-gf-wrap select {
    background-color: #fff;
    color: #6b7280; /* match your input text color */
}

.lp2-gf-wrap select option:not([value=""]) {
    color: #6b7280;
}
.lp2-gf-wrap input:focus,
.lp2-gf-wrap textarea:focus,
.lp2-gf-wrap .gfield_select:focus,
.lp2-gf-wrap select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}
.mobile-break { display: none; }

@media (max-width: 768px) {
  .mobile-break { display: block; }
}
.gfield_visibility_hidden {
  display: none;
}

/* ================================================================
   NEW SECTIONS — Autism Evaluations landing page additions
   Append these rules to the end of landing-2.css
   ================================================================ */


/* ── Shared: dark subtitle variant ─────────────────────────────── */
/* Used in testimonials section (already in HTML, now defined) */
.lp2-section-sub-dark {
  color: #3a4a5a;
}


/* ── Educational content body ───────────────────────────────────── */
/* Sections 1, 2, 3: prose wrapper */
.lp2-edu-body {
  max-width: 860px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp2-edu-body p {
  font-size: 17px;
  color: #2a3a4a;
  line-height: 1.8;
}

.lp2-edu-subhead {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: -6px;
}

.lp2-edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp2-edu-list li {
  font-size: 17px;
  color: #2a3a4a;
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}

.lp2-edu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-card);
  flex-shrink: 0;
}


/* ── Educational CTA block ──────────────────────────────────────── */
/* Appears at the bottom of each educational section */
.lp2-edu-cta-block {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-review);
  border-radius: 18px;
  padding: 36px 40px;
  border: 1px solid #c6dfed;
}

.lp2-edu-cta-headline {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.lp2-edu-cta-sub {
  font-size: 16px;
  color: #3a4a5a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.lp2-edu-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.lp2-edu-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  transition: color .15s;
}

.lp2-edu-phone:hover {
  color: var(--teal-card);
}

@media (max-width: 640px) {
  .lp2-edu-cta-block {
    padding: 28px 24px;
  }

  .lp2-edu-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp2-edu-cta-row .btn-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ── Section 4: Service area block ─────────────────────────────── */
/* Sits inside #locations, below the photo grid */
.lp2-service-area-block {
  margin-top: 52px;
  padding: 40px 44px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.lp2-service-area-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.lp2-service-area-block p {
  font-size: 16px;
  color: #2a3a4a;
  line-height: 1.8;
  margin-bottom: 14px;
}

.lp2-service-area-block p:last-of-type {
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .lp2-service-area-block {
    padding: 28px 24px;
    margin-top: 36px;
  }

  .lp2-service-area-title {
    font-size: 22px;
  }
}