:root {
  --border: #e5e7eb;
  --white: #fff;
  --container: 1200px;
  --space-32: 32px;
  --space-24: 24px;
  --space-16: 16px;
  --text: #1a1a1a;
  --navy: #14418c;
  --space-8: 8px;
  --radius-8: 8px;
  --red: #d6252b;
  --red-dark: #b01d22;
  --space-48: 48px;
  --text-sub: #6b7280;
  --navy-dark: #0e2f66;
  --space-96: 96px;
  --pale-blue: #f5f8fc;
  --space-64: 64px;
  --radius-16: 16px;
  --radius-full: 999px;
  --radius-12: 12px;
  --space-4: 4px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.navbar {
  border-bottom: 1px solid var(--border);
  background-color: var(--white);
  width: 100%;
  height: 88px;
}

.navbar_container {
  height: 100%;
  max-width: var(--container);
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.site_logo {
  flex: none;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.site_logo_img {
  width: auto;
  height: 56px;
  display: block;
}

.navbar_menu {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.navbar_link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.navbar_link:hover {
  color: var(--navy);
}

.navbar_cta {
  flex: none;
}

.button_primary {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border-radius: var(--radius-8);
  background-color: var(--red);
  color: var(--white);
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.button_primary:hover {
  background-color: var(--red-dark);
}

.button_primary._w-button {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border-radius: var(--radius-8);
  background-color: var(--red);
  color: var(--white);
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.button_primary._w-button:hover {
  background-color: var(--red-dark);
}

.icon {
  flex: none;
  width: 24px;
  height: 24px;
}

.navbar_burger {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 40px;
  height: 40px;
  color: var(--text);
  flex: none;
  justify-content: center;
  align-items: center;
  display: none;
}

.container {
  max-width: var(--container);
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.heading_h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
}

.heading_h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.heading_h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.text_lead {
  color: var(--text-sub);
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.text_body {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.text_caption {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.eyebrow {
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.is-navy {
  color: var(--navy);
}

.is-sub {
  color: var(--text-sub);
}

.is-small {
  font-size: 24px;
  line-height: 1.4;
}

.text_accent, .text_cta {
  color: var(--red);
}

.button_secondary {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  color: var(--text);
  align-items: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
}

.button_outline_navy {
  border-color: var(--navy);
  color: var(--navy);
}

.button_outline_navy:hover {
  border-color: var(--navy-dark);
  color: var(--navy-dark);
}

.section_hero {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--pale-blue);
  overflow: hidden;
}

.hero_grid {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  display: grid;
}

.hero_content {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero_subcopy {
  color: var(--text-sub);
  letter-spacing: .06em;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.hero_tagline {
  color: var(--navy);
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.hero_actions {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-flow: wrap;
  display: flex;
}

.hero_visual {
  justify-content: center;
  display: flex;
}

.hero_visual_wrap {
  width: 100%;
  position: relative;
}

.hero_image {
  border-radius: var(--radius-16);
  object-fit: cover;
  width: 100%;
  display: block;
}

.hero_badge {
  border-radius: var(--radius-full);
  background-color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
  top: -16px;
  right: -16px;
  box-shadow: 0 4px 20px #14418c29;
}

.hero_badge_text {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.section_highlight {
  width: 100%;
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--white);
}

.highlight_row {
  grid-row-gap: 0;
  grid-column-gap: 0;
  flex-direction: row;
  align-items: stretch;
  display: flex;
}

.highlight_item {
  padding-right: var(--space-24);
  padding-left: var(--space-24);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  text-align: center;
  flex-direction: column;
  flex: 1 1 0;
  align-items: center;
  display: flex;
}

.highlight_icon {
  object-fit: contain;
  flex: none;
  width: 72px;
  height: 72px;
}

.highlight_title {
  color: var(--navy);
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.highlight_divider {
  background-color: var(--border);
  flex: none;
  align-self: stretch;
  width: 1px;
}

.section_header {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading_block {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.card_base {
  padding: var(--space-32);
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  border: 1px solid var(--border);
  border-radius: var(--radius-12);
  background-color: var(--white);
  flex-direction: column;
  display: flex;
  box-shadow: 0 1px 3px #0000000f;
}

.section_symptom {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--white);
}

.problem_layout {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  grid-template-rows: auto;
  grid-template-columns: 1fr 320px;
  align-items: stretch;
  display: grid;
}

.problem_grid {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.card_problem {
  padding: var(--space-24);
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.card_problem:hover {
  border-color: var(--navy);
}

.problem_icon {
  border-radius: var(--radius-full);
  background-color: var(--pale-blue);
  width: 88px;
  height: 88px;
  color: var(--navy);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.problem_icon_img {
  object-fit: contain;
  width: 68px;
  height: 68px;
}

.problem_text {
  color: var(--text);
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.problem_aside {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  display: flex;
}

.problem_illustration {
  object-fit: contain;
  width: 100%;
  display: block;
}

.problem_message {
  color: var(--text);
  text-align: center;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.grid_4col {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  grid-template-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.section_reason {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-image: linear-gradient(#f5f8fc, #fff);
}

.reason_layout {
  align-items: end;
  column-gap: var(--space-32);
  row-gap: var(--space-48);
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  display: grid;
}

.reason_heading {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  display: flex;
}

.reason_cards {
  grid-column-start: span 2;
}

.reason_count {
  color: var(--red);
  font-size: 1.4em;
}

.reason_brand_message {
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.card_reason {
  padding: var(--space-32);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  text-align: left;
  align-items: flex-start;
}

.reason_head {
  width: 100%;
  margin-bottom: var(--space-8);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.reason_icon {
  border-radius: var(--radius-full);
  background-color: var(--pale-blue);
  width: 88px;
  height: 88px;
  color: var(--navy);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.reason_icon_img {
  object-fit: contain;
  width: 68px;
  height: 68px;
}

.reason_number {
  color: var(--navy);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.reason_title {
  color: var(--text);
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.section_service {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--white);
}

.service_layout {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  grid-template-rows: auto;
  grid-template-columns: 1fr 340px;
  align-items: start;
  display: grid;
}

.symptom_box {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  flex-direction: column;
  display: flex;
}

.service_grid {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.card_service {
  padding: var(--space-24);
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  align-items: flex-start;
}

.card_service:hover {
  border-color: var(--navy);
}

.service_icon {
  border-radius: var(--radius-full);
  background-color: var(--pale-blue);
  width: 80px;
  height: 80px;
  color: var(--navy);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service_icon_img {
  object-fit: contain;
  width: 62px;
  height: 62px;
}

.service_text {
  grid-column-gap: var(--space-4);
  grid-row-gap: var(--space-4);
  flex-direction: column;
  display: flex;
}

.service_name {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.service_sub {
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.chip {
  grid-column-gap: var(--space-4);
  grid-row-gap: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  color: var(--text);
  align-items: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
}

.chip:hover {
  border-color: var(--navy);
}

.is-textonly {
  justify-content: center;
}

.chip_label {
  font-size: 13px;
  font-weight: 500;
}

.chip_grid {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.phone_mockup {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  flex: none;
  width: 260px;
  display: flex;
  position: relative;
}

.phone_frame {
  object-fit: contain;
  width: 100%;
  display: block;
}

.phone_caption {
  color: var(--navy);
  text-align: center;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.phone_badge {
  border-radius: var(--radius-full);
  background-color: var(--navy);
  width: 88px;
  height: 88px;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  position: absolute;
  bottom: -12px;
  right: -12px;
}

.service_footer {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid_5col {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  grid-template-rows: auto;
  grid-template-columns: repeat(5, 1fr);
  display: grid;
}

.section_flow {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--pale-blue);
}

.card_step {
  padding: var(--space-24);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  text-align: center;
  align-items: center;
}

.step_number {
  color: var(--navy);
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.step_title {
  color: var(--text);
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.section_price {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--white);
}

.price_grid {
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  display: grid;
}

.price_grid_solo {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.search_box {
  padding: var(--space-32);
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  align-items: stretch;
}

.price_list {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  display: flex;
}

.price_row {
  padding-bottom: var(--space-16);
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.price_label {
  color: var(--text-sub);
}

.price_value {
  color: var(--navy);
  white-space: nowrap;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.section_support {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--pale-blue);
}

.support_grid {
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  display: grid;
}

.link_list {
  grid-row-gap: 0;
  grid-column-gap: 0;
  flex-direction: column;
  display: flex;
}

.link_row {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link_row:hover {
  color: var(--navy);
}

.icon_arrow {
  width: 18px;
  height: 18px;
  color: var(--text-sub);
  flex: none;
}

.faq_list {
  grid-row-gap: 0;
  grid-column-gap: 0;
  flex-direction: column;
  display: flex;
}

.faq_item {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  display: flex;
}

.faq_head {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.faq_question {
  font-weight: 700;
}

.faq_answer {
  color: var(--text-sub);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.section_cta {
  width: 100%;
  padding-top: var(--space-96);
  padding-bottom: var(--space-96);
  background-color: var(--white);
}

.cta_grid {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  grid-template-rows: auto;
  grid-template-columns: 4fr 6fr;
  align-items: center;
  display: grid;
}

.cta_visual {
  justify-content: center;
  display: flex;
}

.cta_circle {
  border-top-left-radius: var(--radius-full);
  border-top-right-radius: var(--radius-full);
  border-bottom-left-radius: var(--radius-full);
  border-bottom-right-radius: var(--radius-full);
  background-color: var(--pale-blue);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 260px;
  display: flex;
  overflow: hidden;
}

.cta_image {
  object-fit: contain;
  width: 180px;
  height: 180px;
}

.cta_content {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.section_footer {
  width: 100%;
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
  border-top: 1px solid var(--border);
  background-color: var(--white);
}

.footer_inner {
  max-width: var(--container);
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.footer_nav {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer_link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.footer_link:hover {
  color: var(--navy);
}

.footer_copyright {
  color: var(--text-sub);
  flex: none;
}

.section_legal {
  width: 100%;
  padding-top: var(--space-64);
  padding-bottom: var(--space-96);
  background-color: var(--white);
}

.legal_wrap {
  grid-column-gap: var(--space-48);
  grid-row-gap: var(--space-48);
  flex-direction: column;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.legal_header {
  padding-bottom: var(--space-24);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  display: flex;
}

.legal_title {
  color: var(--navy);
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.legal_meta {
  color: var(--text-sub);
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.legal_body {
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  flex-direction: column;
  display: flex;
}

.legal_group {
  grid-column-gap: var(--space-16);
  grid-row-gap: var(--space-16);
  flex-direction: column;
  display: flex;
}

.legal_h2 {
  padding-bottom: var(--space-8);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--border);
  color: var(--navy);
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.legal_p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.legal_note {
  color: var(--text-sub);
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.legal_table {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--border);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--border);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--border);
  border-top-left-radius: var(--radius-8);
  border-top-right-radius: var(--radius-8);
  border-bottom-left-radius: var(--radius-8);
  border-bottom-right-radius: var(--radius-8);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.legal_tr {
  border-bottom: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 200px 1fr;
  display: grid;
}

.legal_th {
  padding: var(--space-16);
  background-color: var(--pale-blue);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.legal_td {
  padding: var(--space-16);
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.legal_more {
  grid-column-gap: var(--space-32);
  grid-row-gap: var(--space-32);
  flex-direction: column;
  display: flex;
}

.legal_link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.legal_link:hover {
  color: var(--navy-dark);
}

.notice_box {
  padding: var(--space-24);
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-8);
  background-color: var(--pale-blue);
  flex-direction: column;
  display: flex;
}

.notice_title {
  color: var(--red);
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.contact_form, .contact_form._w-form {
  grid-column-gap: var(--space-24);
  grid-row-gap: var(--space-24);
  flex-direction: column;
  display: flex;
}

.field_row {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  flex-direction: column;
  display: flex;
}

.field_label {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  color: var(--text);
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
}

.field_required {
  border-radius: var(--radius-full);
  background-color: var(--red);
  color: var(--white);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.field_input {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
}

.field_input:focus {
  border-color: var(--navy);
}

.field_input._w-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
}

.field_input._w-input:focus {
  border-color: var(--navy);
}

.field_select, .field_select._w-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
}

.field_textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  min-height: 180px;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.8;
}

.field_textarea:focus {
  border-color: var(--navy);
}

.field_textarea._w-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  min-height: 180px;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.8;
}

.field_textarea._w-input:focus {
  border-color: var(--navy);
}

.field_consent {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  align-items: center;
  display: flex;
}

.field_checkbox {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 0;
}

.field_consent_label {
  grid-column-gap: var(--space-8);
  grid-row-gap: var(--space-8);
  color: var(--text);
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
}

.form_submit {
  cursor: pointer;
  border-style: none;
  align-self: flex-start;
}

._w-input-parent._w-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-8);
  background-color: var(--white);
  width: 100%;
  color: var(--text);
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
}

._w-input-parent._w-input:focus {
  border-color: var(--navy);
}

@media screen and (max-width: 991px) {
  .navbar_container {
    padding-right: var(--space-32);
    padding-left: var(--space-32);
  }

  .navbar_menu, .navbar_cta {
    display: none;
  }

  .navbar_burger {
    display: inline-flex;
  }

  .container {
    padding-right: var(--space-32);
    padding-left: var(--space-32);
  }

  .section_hero {
    padding-top: var(--space-64);
    padding-bottom: var(--space-64);
  }

  .highlight_row {
    grid-column-gap: var(--space-32);
    grid-row-gap: var(--space-32);
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .highlight_divider {
    display: none;
  }

  .problem_layout {
    grid-column-gap: var(--space-32);
    grid-row-gap: var(--space-32);
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .grid_4col {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .reason_layout {
    row-gap: var(--space-32);
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .reason_cards {
    grid-column-start: span 1;
  }

  .reason_brand_message {
    text-align: center;
  }

  .service_layout {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .chip_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid_5col {
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .price_grid, .support_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .footer_inner {
    padding-right: var(--space-32);
    padding-left: var(--space-32);
    flex-direction: column;
    align-items: flex-start;
  }

  .legal_wrap {
    padding-right: var(--space-32);
    padding-left: var(--space-32);
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    height: 72px;
  }

  .navbar_container {
    padding-right: var(--space-24);
    padding-left: var(--space-24);
  }

  .site_logo_img {
    height: 44px;
  }

  .container {
    padding-right: var(--space-24);
    padding-left: var(--space-24);
  }

  .heading_h1 {
    font-size: 34px;
  }

  .heading_h2 {
    font-size: 26px;
  }

  .hero_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .hero_badge {
    width: 84px;
    height: 84px;
    top: -10px;
    right: -10px;
  }

  .hero_badge_text {
    font-size: 11px;
  }

  .highlight_icon {
    width: 60px;
    height: 60px;
  }

  .problem_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .problem_icon {
    width: 76px;
    height: 76px;
  }

  .problem_icon_img {
    width: 58px;
    height: 58px;
  }

  .reason_icon {
    width: 76px;
    height: 76px;
  }

  .reason_icon_img {
    width: 58px;
    height: 58px;
  }

  .service_grid {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .service_icon {
    width: 68px;
    height: 68px;
  }

  .service_icon_img {
    width: 52px;
    height: 52px;
  }

  .grid_5col {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .cta_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .cta_image {
    width: 150px;
    height: 150px;
  }

  .cta_content {
    text-align: center;
    align-items: center;
  }

  .footer_inner, .legal_wrap {
    padding-right: var(--space-24);
    padding-left: var(--space-24);
  }

  .legal_title {
    font-size: 26px;
  }

  .legal_tr {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .navbar_container, .container {
    padding-right: var(--space-16);
    padding-left: var(--space-16);
  }

  .highlight_row, .grid_4col, .grid_5col {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .search_box {
    padding: var(--space-24);
  }

  .footer_inner, .legal_wrap {
    padding-right: var(--space-16);
    padding-left: var(--space-16);
  }
}


